Merge remote-tracking branch 'vfio/next'
[deliverable/linux.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;
91acbeb6 94
a8ad0bd8 95 gobj = drm_gem_object_lookup(p->filp, data->handle);
91acbeb6
CK
96 if (gobj == NULL)
97 return -EINVAL;
98
758ac17f 99 p->uf_entry.robj = amdgpu_bo_ref(gem_to_amdgpu_bo(gobj));
91acbeb6
CK
100 p->uf_entry.priority = 0;
101 p->uf_entry.tv.bo = &p->uf_entry.robj->tbo;
102 p->uf_entry.tv.shared = true;
2f568dbd 103 p->uf_entry.user_pages = NULL;
758ac17f 104 *offset = data->offset;
91acbeb6
CK
105
106 drm_gem_object_unreference_unlocked(gobj);
758ac17f
CK
107
108 if (amdgpu_ttm_tt_get_usermm(p->uf_entry.robj->tbo.ttm)) {
109 amdgpu_bo_unref(&p->uf_entry.robj);
110 return -EINVAL;
111 }
112
91acbeb6
CK
113 return 0;
114}
115
d38ceaf9
AD
116int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data)
117{
4c0b242c 118 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
c5637837 119 struct amdgpu_vm *vm = &fpriv->vm;
d38ceaf9
AD
120 union drm_amdgpu_cs *cs = data;
121 uint64_t *chunk_array_user;
1d263474 122 uint64_t *chunk_array;
50838c8c 123 unsigned size, num_ibs = 0;
758ac17f 124 uint32_t uf_offset = 0;
54313503 125 int i;
1d263474 126 int ret;
d38ceaf9 127
1d263474
DC
128 if (cs->in.num_chunks == 0)
129 return 0;
130
131 chunk_array = kmalloc_array(cs->in.num_chunks, sizeof(uint64_t), GFP_KERNEL);
132 if (!chunk_array)
133 return -ENOMEM;
d38ceaf9 134
3cb485f3
CK
135 p->ctx = amdgpu_ctx_get(fpriv, cs->in.ctx_id);
136 if (!p->ctx) {
1d263474
DC
137 ret = -EINVAL;
138 goto free_chunk;
3cb485f3 139 }
1d263474 140
d38ceaf9 141 /* get chunks */
028423b0 142 chunk_array_user = (uint64_t __user *)(unsigned long)(cs->in.chunks);
d38ceaf9
AD
143 if (copy_from_user(chunk_array, chunk_array_user,
144 sizeof(uint64_t)*cs->in.num_chunks)) {
1d263474 145 ret = -EFAULT;
2a7d9bda 146 goto put_ctx;
d38ceaf9
AD
147 }
148
149 p->nchunks = cs->in.num_chunks;
e60b344f 150 p->chunks = kmalloc_array(p->nchunks, sizeof(struct amdgpu_cs_chunk),
d38ceaf9 151 GFP_KERNEL);
1d263474
DC
152 if (!p->chunks) {
153 ret = -ENOMEM;
2a7d9bda 154 goto put_ctx;
d38ceaf9
AD
155 }
156
157 for (i = 0; i < p->nchunks; i++) {
158 struct drm_amdgpu_cs_chunk __user **chunk_ptr = NULL;
159 struct drm_amdgpu_cs_chunk user_chunk;
160 uint32_t __user *cdata;
161
028423b0 162 chunk_ptr = (void __user *)(unsigned long)chunk_array[i];
d38ceaf9
AD
163 if (copy_from_user(&user_chunk, chunk_ptr,
164 sizeof(struct drm_amdgpu_cs_chunk))) {
1d263474
DC
165 ret = -EFAULT;
166 i--;
167 goto free_partial_kdata;
d38ceaf9
AD
168 }
169 p->chunks[i].chunk_id = user_chunk.chunk_id;
170 p->chunks[i].length_dw = user_chunk.length_dw;
d38ceaf9
AD
171
172 size = p->chunks[i].length_dw;
028423b0 173 cdata = (void __user *)(unsigned long)user_chunk.chunk_data;
d38ceaf9
AD
174
175 p->chunks[i].kdata = drm_malloc_ab(size, sizeof(uint32_t));
176 if (p->chunks[i].kdata == NULL) {
1d263474
DC
177 ret = -ENOMEM;
178 i--;
179 goto free_partial_kdata;
d38ceaf9
AD
180 }
181 size *= sizeof(uint32_t);
182 if (copy_from_user(p->chunks[i].kdata, cdata, size)) {
1d263474
DC
183 ret = -EFAULT;
184 goto free_partial_kdata;
d38ceaf9
AD
185 }
186
9a5e8fb1
CK
187 switch (p->chunks[i].chunk_id) {
188 case AMDGPU_CHUNK_ID_IB:
50838c8c 189 ++num_ibs;
9a5e8fb1
CK
190 break;
191
192 case AMDGPU_CHUNK_ID_FENCE:
d38ceaf9 193 size = sizeof(struct drm_amdgpu_cs_chunk_fence);
91acbeb6 194 if (p->chunks[i].length_dw * sizeof(uint32_t) < size) {
1d263474
DC
195 ret = -EINVAL;
196 goto free_partial_kdata;
d38ceaf9 197 }
91acbeb6 198
758ac17f
CK
199 ret = amdgpu_cs_user_fence_chunk(p, p->chunks[i].kdata,
200 &uf_offset);
91acbeb6
CK
201 if (ret)
202 goto free_partial_kdata;
203
9a5e8fb1
CK
204 break;
205
2b48d323
CK
206 case AMDGPU_CHUNK_ID_DEPENDENCIES:
207 break;
208
9a5e8fb1 209 default:
1d263474
DC
210 ret = -EINVAL;
211 goto free_partial_kdata;
d38ceaf9
AD
212 }
213 }
214
c5637837 215 ret = amdgpu_job_alloc(p->adev, num_ibs, &p->job, vm);
50838c8c 216 if (ret)
4acabfe3 217 goto free_all_kdata;
d38ceaf9 218
b5f5acbc
CK
219 if (p->uf_entry.robj)
220 p->job->uf_addr = uf_offset;
d38ceaf9 221 kfree(chunk_array);
1d263474
DC
222 return 0;
223
224free_all_kdata:
225 i = p->nchunks - 1;
226free_partial_kdata:
227 for (; i >= 0; i--)
228 drm_free_large(p->chunks[i].kdata);
229 kfree(p->chunks);
2a7d9bda 230put_ctx:
1d263474
DC
231 amdgpu_ctx_put(p->ctx);
232free_chunk:
233 kfree(chunk_array);
234
235 return ret;
d38ceaf9
AD
236}
237
238/* Returns how many bytes TTM can move per IB.
239 */
240static u64 amdgpu_cs_get_threshold_for_moves(struct amdgpu_device *adev)
241{
242 u64 real_vram_size = adev->mc.real_vram_size;
243 u64 vram_usage = atomic64_read(&adev->vram_usage);
244
245 /* This function is based on the current VRAM usage.
246 *
247 * - If all of VRAM is free, allow relocating the number of bytes that
248 * is equal to 1/4 of the size of VRAM for this IB.
249
250 * - If more than one half of VRAM is occupied, only allow relocating
251 * 1 MB of data for this IB.
252 *
253 * - From 0 to one half of used VRAM, the threshold decreases
254 * linearly.
255 * __________________
256 * 1/4 of -|\ |
257 * VRAM | \ |
258 * | \ |
259 * | \ |
260 * | \ |
261 * | \ |
262 * | \ |
263 * | \________|1 MB
264 * |----------------|
265 * VRAM 0 % 100 %
266 * used used
267 *
268 * Note: It's a threshold, not a limit. The threshold must be crossed
269 * for buffer relocations to stop, so any buffer of an arbitrary size
270 * can be moved as long as the threshold isn't crossed before
271 * the relocation takes place. We don't want to disable buffer
272 * relocations completely.
273 *
274 * The idea is that buffers should be placed in VRAM at creation time
275 * and TTM should only do a minimum number of relocations during
276 * command submission. In practice, you need to submit at least
277 * a dozen IBs to move all buffers to VRAM if they are in GTT.
278 *
279 * Also, things can get pretty crazy under memory pressure and actual
280 * VRAM usage can change a lot, so playing safe even at 50% does
281 * consistently increase performance.
282 */
283
284 u64 half_vram = real_vram_size >> 1;
285 u64 half_free_vram = vram_usage >= half_vram ? 0 : half_vram - vram_usage;
286 u64 bytes_moved_threshold = half_free_vram >> 1;
287 return max(bytes_moved_threshold, 1024*1024ull);
288}
289
14fd833e
CZ
290static int amdgpu_cs_bo_validate(struct amdgpu_cs_parser *p,
291 struct amdgpu_bo *bo)
292{
293 u64 initial_bytes_moved;
294 uint32_t domain;
295 int r;
296
297 if (bo->pin_count)
298 return 0;
299
300 /* Avoid moving this one if we have moved too many buffers
301 * for this IB already.
302 *
303 * Note that this allows moving at least one buffer of
304 * any size, because it doesn't take the current "bo"
305 * into account. We don't want to disallow buffer moves
306 * completely.
307 */
308 if (p->bytes_moved <= p->bytes_moved_threshold)
309 domain = bo->prefered_domains;
310 else
311 domain = bo->allowed_domains;
312
313retry:
314 amdgpu_ttm_placement_from_domain(bo, domain);
315 initial_bytes_moved = atomic64_read(&bo->adev->num_bytes_moved);
316 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
317 p->bytes_moved += atomic64_read(&bo->adev->num_bytes_moved) -
318 initial_bytes_moved;
319
320 if (unlikely(r)) {
321 if (r != -ERESTARTSYS && domain != bo->allowed_domains) {
322 domain = bo->allowed_domains;
323 goto retry;
324 }
325 }
326
327 return r;
328}
329
f69f90a1 330int amdgpu_cs_list_validate(struct amdgpu_cs_parser *p,
a5b75058 331 struct list_head *validated)
d38ceaf9 332{
d38ceaf9 333 struct amdgpu_bo_list_entry *lobj;
d38ceaf9
AD
334 int r;
335
a5b75058 336 list_for_each_entry(lobj, validated, tv.head) {
36409d12 337 struct amdgpu_bo *bo = lobj->robj;
2f568dbd 338 bool binding_userptr = false;
cc325d19 339 struct mm_struct *usermm;
d38ceaf9 340
cc325d19
CK
341 usermm = amdgpu_ttm_tt_get_usermm(bo->tbo.ttm);
342 if (usermm && usermm != current->mm)
343 return -EPERM;
344
2f568dbd
CK
345 /* Check if we have user pages and nobody bound the BO already */
346 if (lobj->user_pages && bo->tbo.ttm->state != tt_bound) {
347 size_t size = sizeof(struct page *);
348
349 size *= bo->tbo.ttm->num_pages;
350 memcpy(bo->tbo.ttm->pages, lobj->user_pages, size);
351 binding_userptr = true;
352 }
353
14fd833e
CZ
354 r = amdgpu_cs_bo_validate(p, bo);
355 if (r)
36409d12 356 return r;
14fd833e
CZ
357 if (bo->shadow) {
358 r = amdgpu_cs_bo_validate(p, bo);
359 if (r)
360 return r;
d38ceaf9 361 }
2f568dbd
CK
362
363 if (binding_userptr) {
364 drm_free_large(lobj->user_pages);
365 lobj->user_pages = NULL;
366 }
d38ceaf9
AD
367 }
368 return 0;
369}
370
2a7d9bda
CK
371static int amdgpu_cs_parser_bos(struct amdgpu_cs_parser *p,
372 union drm_amdgpu_cs *cs)
d38ceaf9
AD
373{
374 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
2f568dbd 375 struct amdgpu_bo_list_entry *e;
a5b75058 376 struct list_head duplicates;
840d5144 377 bool need_mmap_lock = false;
2f568dbd 378 unsigned i, tries = 10;
636ce25c 379 int r;
d38ceaf9 380
2a7d9bda
CK
381 INIT_LIST_HEAD(&p->validated);
382
383 p->bo_list = amdgpu_bo_list_get(fpriv, cs->in.bo_list_handle);
840d5144 384 if (p->bo_list) {
211dff55
CK
385 need_mmap_lock = p->bo_list->first_userptr !=
386 p->bo_list->num_entries;
636ce25c 387 amdgpu_bo_list_get_list(p->bo_list, &p->validated);
840d5144 388 }
d38ceaf9 389
3c0eea6c 390 INIT_LIST_HEAD(&duplicates);
56467ebf 391 amdgpu_vm_get_pd_bo(&fpriv->vm, &p->validated, &p->vm_pd);
d38ceaf9 392
758ac17f 393 if (p->uf_entry.robj)
91acbeb6
CK
394 list_add(&p->uf_entry.tv.head, &p->validated);
395
d38ceaf9
AD
396 if (need_mmap_lock)
397 down_read(&current->mm->mmap_sem);
398
2f568dbd
CK
399 while (1) {
400 struct list_head need_pages;
401 unsigned i;
402
403 r = ttm_eu_reserve_buffers(&p->ticket, &p->validated, true,
404 &duplicates);
f1037950
MO
405 if (unlikely(r != 0)) {
406 DRM_ERROR("ttm_eu_reserve_buffers failed.\n");
2f568dbd 407 goto error_free_pages;
f1037950 408 }
2f568dbd
CK
409
410 /* Without a BO list we don't have userptr BOs */
411 if (!p->bo_list)
412 break;
413
414 INIT_LIST_HEAD(&need_pages);
415 for (i = p->bo_list->first_userptr;
416 i < p->bo_list->num_entries; ++i) {
417
418 e = &p->bo_list->array[i];
419
420 if (amdgpu_ttm_tt_userptr_invalidated(e->robj->tbo.ttm,
421 &e->user_invalidated) && e->user_pages) {
422
423 /* We acquired a page array, but somebody
424 * invalidated it. Free it an try again
425 */
426 release_pages(e->user_pages,
427 e->robj->tbo.ttm->num_pages,
428 false);
429 drm_free_large(e->user_pages);
430 e->user_pages = NULL;
431 }
432
433 if (e->robj->tbo.ttm->state != tt_bound &&
434 !e->user_pages) {
435 list_del(&e->tv.head);
436 list_add(&e->tv.head, &need_pages);
437
438 amdgpu_bo_unreserve(e->robj);
439 }
440 }
441
442 if (list_empty(&need_pages))
443 break;
444
445 /* Unreserve everything again. */
446 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
447
f1037950 448 /* We tried too many times, just abort */
2f568dbd
CK
449 if (!--tries) {
450 r = -EDEADLK;
f1037950 451 DRM_ERROR("deadlock in %s\n", __func__);
2f568dbd
CK
452 goto error_free_pages;
453 }
454
455 /* Fill the page arrays for all useptrs. */
456 list_for_each_entry(e, &need_pages, tv.head) {
457 struct ttm_tt *ttm = e->robj->tbo.ttm;
458
459 e->user_pages = drm_calloc_large(ttm->num_pages,
460 sizeof(struct page*));
461 if (!e->user_pages) {
462 r = -ENOMEM;
f1037950 463 DRM_ERROR("calloc failure in %s\n", __func__);
2f568dbd
CK
464 goto error_free_pages;
465 }
466
467 r = amdgpu_ttm_tt_get_user_pages(ttm, e->user_pages);
468 if (r) {
f1037950 469 DRM_ERROR("amdgpu_ttm_tt_get_user_pages failed.\n");
2f568dbd
CK
470 drm_free_large(e->user_pages);
471 e->user_pages = NULL;
472 goto error_free_pages;
473 }
474 }
475
476 /* And try again. */
477 list_splice(&need_pages, &p->validated);
478 }
a5b75058 479
5a712a87 480 amdgpu_vm_get_pt_bos(p->adev, &fpriv->vm, &duplicates);
56467ebf 481
f69f90a1
CK
482 p->bytes_moved_threshold = amdgpu_cs_get_threshold_for_moves(p->adev);
483 p->bytes_moved = 0;
484
485 r = amdgpu_cs_list_validate(p, &duplicates);
f1037950
MO
486 if (r) {
487 DRM_ERROR("amdgpu_cs_list_validate(duplicates) failed.\n");
a5b75058 488 goto error_validate;
f1037950 489 }
a5b75058 490
f69f90a1 491 r = amdgpu_cs_list_validate(p, &p->validated);
f1037950
MO
492 if (r) {
493 DRM_ERROR("amdgpu_cs_list_validate(validated) failed.\n");
a8480309 494 goto error_validate;
f1037950 495 }
a8480309 496
5a712a87
CK
497 fpriv->vm.last_eviction_counter =
498 atomic64_read(&p->adev->num_evictions);
499
a8480309 500 if (p->bo_list) {
d88bf583
CK
501 struct amdgpu_bo *gds = p->bo_list->gds_obj;
502 struct amdgpu_bo *gws = p->bo_list->gws_obj;
503 struct amdgpu_bo *oa = p->bo_list->oa_obj;
a8480309
CK
504 struct amdgpu_vm *vm = &fpriv->vm;
505 unsigned i;
506
507 for (i = 0; i < p->bo_list->num_entries; i++) {
508 struct amdgpu_bo *bo = p->bo_list->array[i].robj;
509
510 p->bo_list->array[i].bo_va = amdgpu_vm_bo_find(vm, bo);
511 }
d88bf583
CK
512
513 if (gds) {
514 p->job->gds_base = amdgpu_bo_gpu_offset(gds);
515 p->job->gds_size = amdgpu_bo_size(gds);
516 }
517 if (gws) {
518 p->job->gws_base = amdgpu_bo_gpu_offset(gws);
519 p->job->gws_size = amdgpu_bo_size(gws);
520 }
521 if (oa) {
522 p->job->oa_base = amdgpu_bo_gpu_offset(oa);
523 p->job->oa_size = amdgpu_bo_size(oa);
524 }
a8480309 525 }
a5b75058 526
b5f5acbc
CK
527 if (p->uf_entry.robj)
528 p->job->uf_addr += amdgpu_bo_gpu_offset(p->uf_entry.robj);
529
a5b75058 530error_validate:
eceb8a15
CK
531 if (r) {
532 amdgpu_vm_move_pt_bos_in_lru(p->adev, &fpriv->vm);
a5b75058 533 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
eceb8a15 534 }
d38ceaf9 535
2f568dbd
CK
536error_free_pages:
537
d38ceaf9
AD
538 if (need_mmap_lock)
539 up_read(&current->mm->mmap_sem);
540
2f568dbd
CK
541 if (p->bo_list) {
542 for (i = p->bo_list->first_userptr;
543 i < p->bo_list->num_entries; ++i) {
544 e = &p->bo_list->array[i];
545
546 if (!e->user_pages)
547 continue;
548
549 release_pages(e->user_pages,
550 e->robj->tbo.ttm->num_pages,
551 false);
552 drm_free_large(e->user_pages);
553 }
554 }
555
d38ceaf9
AD
556 return r;
557}
558
559static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p)
560{
561 struct amdgpu_bo_list_entry *e;
562 int r;
563
564 list_for_each_entry(e, &p->validated, tv.head) {
565 struct reservation_object *resv = e->robj->tbo.resv;
e86f9cee 566 r = amdgpu_sync_resv(p->adev, &p->job->sync, resv, p->filp);
d38ceaf9
AD
567
568 if (r)
569 return r;
570 }
571 return 0;
572}
573
984810fc
CK
574/**
575 * cs_parser_fini() - clean parser states
576 * @parser: parser structure holding parsing context.
577 * @error: error number
578 *
579 * If error is set than unvalidate buffer, otherwise just free memory
580 * used by parsing context.
581 **/
582static void amdgpu_cs_parser_fini(struct amdgpu_cs_parser *parser, int error, bool backoff)
049fc527 583{
eceb8a15 584 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
984810fc
CK
585 unsigned i;
586
d38ceaf9 587 if (!error) {
28b8d66e
NH
588 amdgpu_vm_move_pt_bos_in_lru(parser->adev, &fpriv->vm);
589
d38ceaf9 590 ttm_eu_fence_buffer_objects(&parser->ticket,
984810fc
CK
591 &parser->validated,
592 parser->fence);
d38ceaf9
AD
593 } else if (backoff) {
594 ttm_eu_backoff_reservation(&parser->ticket,
595 &parser->validated);
596 }
984810fc 597 fence_put(parser->fence);
7e52a81c 598
3cb485f3
CK
599 if (parser->ctx)
600 amdgpu_ctx_put(parser->ctx);
a3348bb8
CZ
601 if (parser->bo_list)
602 amdgpu_bo_list_put(parser->bo_list);
603
d38ceaf9
AD
604 for (i = 0; i < parser->nchunks; i++)
605 drm_free_large(parser->chunks[i].kdata);
606 kfree(parser->chunks);
50838c8c
CK
607 if (parser->job)
608 amdgpu_job_free(parser->job);
91acbeb6 609 amdgpu_bo_unref(&parser->uf_entry.robj);
d38ceaf9
AD
610}
611
612static int amdgpu_bo_vm_update_pte(struct amdgpu_cs_parser *p,
613 struct amdgpu_vm *vm)
614{
615 struct amdgpu_device *adev = p->adev;
616 struct amdgpu_bo_va *bo_va;
617 struct amdgpu_bo *bo;
618 int i, r;
619
620 r = amdgpu_vm_update_page_directory(adev, vm);
621 if (r)
622 return r;
623
e86f9cee 624 r = amdgpu_sync_fence(adev, &p->job->sync, vm->page_directory_fence);
05906dec
BN
625 if (r)
626 return r;
627
d38ceaf9
AD
628 r = amdgpu_vm_clear_freed(adev, vm);
629 if (r)
630 return r;
631
632 if (p->bo_list) {
633 for (i = 0; i < p->bo_list->num_entries; i++) {
91e1a520
CK
634 struct fence *f;
635
d38ceaf9
AD
636 /* ignore duplicates */
637 bo = p->bo_list->array[i].robj;
638 if (!bo)
639 continue;
640
641 bo_va = p->bo_list->array[i].bo_va;
642 if (bo_va == NULL)
643 continue;
644
99e124f4 645 r = amdgpu_vm_bo_update(adev, bo_va, false);
d38ceaf9
AD
646 if (r)
647 return r;
648
bb1e38a4 649 f = bo_va->last_pt_update;
e86f9cee 650 r = amdgpu_sync_fence(adev, &p->job->sync, f);
91e1a520
CK
651 if (r)
652 return r;
d38ceaf9 653 }
b495bd3a
CK
654
655 }
656
e86f9cee 657 r = amdgpu_vm_clear_invalids(adev, vm, &p->job->sync);
b495bd3a
CK
658
659 if (amdgpu_vm_debug && p->bo_list) {
660 /* Invalidate all BOs to test for userspace bugs */
661 for (i = 0; i < p->bo_list->num_entries; i++) {
662 /* ignore duplicates */
663 bo = p->bo_list->array[i].robj;
664 if (!bo)
665 continue;
666
667 amdgpu_vm_bo_invalidate(adev, bo);
668 }
d38ceaf9
AD
669 }
670
b495bd3a 671 return r;
d38ceaf9
AD
672}
673
674static int amdgpu_cs_ib_vm_chunk(struct amdgpu_device *adev,
b07c60c0 675 struct amdgpu_cs_parser *p)
d38ceaf9 676{
b07c60c0 677 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
d38ceaf9 678 struct amdgpu_vm *vm = &fpriv->vm;
b07c60c0 679 struct amdgpu_ring *ring = p->job->ring;
d38ceaf9
AD
680 int i, r;
681
d38ceaf9 682 /* Only for UVD/VCE VM emulation */
b07c60c0 683 if (ring->funcs->parse_cs) {
9a79588c 684 p->job->vm = NULL;
b07c60c0
CK
685 for (i = 0; i < p->job->num_ibs; i++) {
686 r = amdgpu_ring_parse_cs(ring, p, i);
d38ceaf9
AD
687 if (r)
688 return r;
689 }
9a79588c
CK
690 } else {
691 p->job->vm_pd_addr = amdgpu_bo_gpu_offset(vm->page_directory);
281d144d 692
9a79588c
CK
693 r = amdgpu_bo_vm_update_pte(p, vm);
694 if (r)
695 return r;
696 }
d38ceaf9 697
9a79588c 698 return amdgpu_cs_sync_rings(p);
d38ceaf9
AD
699}
700
701static int amdgpu_cs_handle_lockup(struct amdgpu_device *adev, int r)
702{
703 if (r == -EDEADLK) {
704 r = amdgpu_gpu_reset(adev);
705 if (!r)
706 r = -EAGAIN;
707 }
708 return r;
709}
710
711static int amdgpu_cs_ib_fill(struct amdgpu_device *adev,
712 struct amdgpu_cs_parser *parser)
713{
714 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
715 struct amdgpu_vm *vm = &fpriv->vm;
716 int i, j;
717 int r;
718
50838c8c 719 for (i = 0, j = 0; i < parser->nchunks && j < parser->job->num_ibs; i++) {
d38ceaf9
AD
720 struct amdgpu_cs_chunk *chunk;
721 struct amdgpu_ib *ib;
722 struct drm_amdgpu_cs_chunk_ib *chunk_ib;
d38ceaf9 723 struct amdgpu_ring *ring;
d38ceaf9
AD
724
725 chunk = &parser->chunks[i];
50838c8c 726 ib = &parser->job->ibs[j];
d38ceaf9
AD
727 chunk_ib = (struct drm_amdgpu_cs_chunk_ib *)chunk->kdata;
728
729 if (chunk->chunk_id != AMDGPU_CHUNK_ID_IB)
730 continue;
731
d38ceaf9
AD
732 r = amdgpu_cs_get_ring(adev, chunk_ib->ip_type,
733 chunk_ib->ip_instance, chunk_ib->ring,
734 &ring);
3ccec53c 735 if (r)
d38ceaf9 736 return r;
d38ceaf9 737
b07c60c0
CK
738 if (parser->job->ring && parser->job->ring != ring)
739 return -EINVAL;
740
741 parser->job->ring = ring;
742
d38ceaf9 743 if (ring->funcs->parse_cs) {
4802ce11 744 struct amdgpu_bo_va_mapping *m;
3ccec53c 745 struct amdgpu_bo *aobj = NULL;
4802ce11
CK
746 uint64_t offset;
747 uint8_t *kptr;
3ccec53c 748
4802ce11
CK
749 m = amdgpu_cs_find_mapping(parser, chunk_ib->va_start,
750 &aobj);
3ccec53c
MO
751 if (!aobj) {
752 DRM_ERROR("IB va_start is invalid\n");
753 return -EINVAL;
d38ceaf9
AD
754 }
755
4802ce11
CK
756 if ((chunk_ib->va_start + chunk_ib->ib_bytes) >
757 (m->it.last + 1) * AMDGPU_GPU_PAGE_SIZE) {
758 DRM_ERROR("IB va_start+ib_bytes is invalid\n");
759 return -EINVAL;
760 }
761
3ccec53c 762 /* the IB should be reserved at this point */
4802ce11 763 r = amdgpu_bo_kmap(aobj, (void **)&kptr);
d38ceaf9 764 if (r) {
d38ceaf9
AD
765 return r;
766 }
767
4802ce11
CK
768 offset = ((uint64_t)m->it.start) * AMDGPU_GPU_PAGE_SIZE;
769 kptr += chunk_ib->va_start - offset;
770
b07c60c0 771 r = amdgpu_ib_get(adev, NULL, chunk_ib->ib_bytes, ib);
d38ceaf9
AD
772 if (r) {
773 DRM_ERROR("Failed to get ib !\n");
d38ceaf9
AD
774 return r;
775 }
776
777 memcpy(ib->ptr, kptr, chunk_ib->ib_bytes);
778 amdgpu_bo_kunmap(aobj);
d38ceaf9 779 } else {
b07c60c0 780 r = amdgpu_ib_get(adev, vm, 0, ib);
d38ceaf9
AD
781 if (r) {
782 DRM_ERROR("Failed to get ib !\n");
d38ceaf9
AD
783 return r;
784 }
785
786 ib->gpu_addr = chunk_ib->va_start;
787 }
d38ceaf9 788
3ccec53c 789 ib->length_dw = chunk_ib->ib_bytes / 4;
de807f81 790 ib->flags = chunk_ib->flags;
d38ceaf9
AD
791 j++;
792 }
793
758ac17f 794 /* UVD & VCE fw doesn't support user fences */
b5f5acbc 795 if (parser->job->uf_addr && (
758ac17f
CK
796 parser->job->ring->type == AMDGPU_RING_TYPE_UVD ||
797 parser->job->ring->type == AMDGPU_RING_TYPE_VCE))
798 return -EINVAL;
d38ceaf9
AD
799
800 return 0;
801}
802
2b48d323
CK
803static int amdgpu_cs_dependencies(struct amdgpu_device *adev,
804 struct amdgpu_cs_parser *p)
805{
76a1ea61 806 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
2b48d323
CK
807 int i, j, r;
808
2b48d323
CK
809 for (i = 0; i < p->nchunks; ++i) {
810 struct drm_amdgpu_cs_chunk_dep *deps;
811 struct amdgpu_cs_chunk *chunk;
812 unsigned num_deps;
813
814 chunk = &p->chunks[i];
815
816 if (chunk->chunk_id != AMDGPU_CHUNK_ID_DEPENDENCIES)
817 continue;
818
819 deps = (struct drm_amdgpu_cs_chunk_dep *)chunk->kdata;
820 num_deps = chunk->length_dw * 4 /
821 sizeof(struct drm_amdgpu_cs_chunk_dep);
822
823 for (j = 0; j < num_deps; ++j) {
2b48d323 824 struct amdgpu_ring *ring;
76a1ea61 825 struct amdgpu_ctx *ctx;
21c16bf6 826 struct fence *fence;
2b48d323
CK
827
828 r = amdgpu_cs_get_ring(adev, deps[j].ip_type,
829 deps[j].ip_instance,
830 deps[j].ring, &ring);
831 if (r)
832 return r;
833
76a1ea61
CK
834 ctx = amdgpu_ctx_get(fpriv, deps[j].ctx_id);
835 if (ctx == NULL)
836 return -EINVAL;
837
21c16bf6
CK
838 fence = amdgpu_ctx_get_fence(ctx, ring,
839 deps[j].handle);
840 if (IS_ERR(fence)) {
841 r = PTR_ERR(fence);
76a1ea61 842 amdgpu_ctx_put(ctx);
2b48d323 843 return r;
91e1a520 844
21c16bf6 845 } else if (fence) {
e86f9cee
CK
846 r = amdgpu_sync_fence(adev, &p->job->sync,
847 fence);
21c16bf6
CK
848 fence_put(fence);
849 amdgpu_ctx_put(ctx);
850 if (r)
851 return r;
852 }
2b48d323
CK
853 }
854 }
855
856 return 0;
857}
858
cd75dc68
CK
859static int amdgpu_cs_submit(struct amdgpu_cs_parser *p,
860 union drm_amdgpu_cs *cs)
861{
b07c60c0 862 struct amdgpu_ring *ring = p->job->ring;
92f25098 863 struct amd_sched_entity *entity = &p->ctx->rings[ring->idx].entity;
cd75dc68 864 struct amdgpu_job *job;
e686941a 865 int r;
cd75dc68 866
50838c8c
CK
867 job = p->job;
868 p->job = NULL;
cd75dc68 869
595a9cd6 870 r = amd_sched_job_init(&job->base, &ring->sched, entity, p->filp);
e686941a 871 if (r) {
d71518b5 872 amdgpu_job_free(job);
e686941a 873 return r;
cd75dc68
CK
874 }
875
e686941a 876 job->owner = p->filp;
92f25098 877 job->ctx = entity->fence_context;
595a9cd6
CK
878 p->fence = fence_get(&job->base.s_fence->finished);
879 cs->out.handle = amdgpu_ctx_add_fence(p->ctx, ring, p->fence);
758ac17f 880 job->uf_sequence = cs->out.handle;
a5fb4ec2 881 amdgpu_job_free_resources(job);
cd75dc68
CK
882
883 trace_amdgpu_cs_ioctl(job);
884 amd_sched_entity_push_job(&job->base);
885
886 return 0;
887}
888
049fc527
CZ
889int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
890{
891 struct amdgpu_device *adev = dev->dev_private;
892 union drm_amdgpu_cs *cs = data;
7e52a81c 893 struct amdgpu_cs_parser parser = {};
26a6980c
CK
894 bool reserved_buffers = false;
895 int i, r;
049fc527 896
0c418f10 897 if (!adev->accel_working)
049fc527 898 return -EBUSY;
2b48d323 899
7e52a81c
CK
900 parser.adev = adev;
901 parser.filp = filp;
902
903 r = amdgpu_cs_parser_init(&parser, data);
d38ceaf9 904 if (r) {
049fc527 905 DRM_ERROR("Failed to initialize parser !\n");
7e52a81c 906 amdgpu_cs_parser_fini(&parser, r, false);
d38ceaf9
AD
907 r = amdgpu_cs_handle_lockup(adev, r);
908 return r;
909 }
2a7d9bda 910 r = amdgpu_cs_parser_bos(&parser, data);
26a6980c
CK
911 if (r == -ENOMEM)
912 DRM_ERROR("Not enough memory for command submission!\n");
913 else if (r && r != -ERESTARTSYS)
914 DRM_ERROR("Failed to process the buffer list %d!\n", r);
915 else if (!r) {
916 reserved_buffers = true;
7e52a81c 917 r = amdgpu_cs_ib_fill(adev, &parser);
26a6980c
CK
918 }
919
920 if (!r) {
7e52a81c 921 r = amdgpu_cs_dependencies(adev, &parser);
26a6980c
CK
922 if (r)
923 DRM_ERROR("Failed in the dependencies handling %d!\n", r);
924 }
925
926 if (r)
927 goto out;
928
50838c8c 929 for (i = 0; i < parser.job->num_ibs; i++)
7e52a81c 930 trace_amdgpu_cs(&parser, i);
26a6980c 931
7e52a81c 932 r = amdgpu_cs_ib_vm_chunk(adev, &parser);
4fe63117
CZ
933 if (r)
934 goto out;
935
4acabfe3 936 r = amdgpu_cs_submit(&parser, cs);
d38ceaf9 937
d38ceaf9 938out:
7e52a81c 939 amdgpu_cs_parser_fini(&parser, r, reserved_buffers);
d38ceaf9
AD
940 r = amdgpu_cs_handle_lockup(adev, r);
941 return r;
942}
943
944/**
945 * amdgpu_cs_wait_ioctl - wait for a command submission to finish
946 *
947 * @dev: drm device
948 * @data: data from userspace
949 * @filp: file private
950 *
951 * Wait for the command submission identified by handle to finish.
952 */
953int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data,
954 struct drm_file *filp)
955{
956 union drm_amdgpu_wait_cs *wait = data;
957 struct amdgpu_device *adev = dev->dev_private;
d38ceaf9 958 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout);
03507c4f 959 struct amdgpu_ring *ring = NULL;
66b3cf2a 960 struct amdgpu_ctx *ctx;
21c16bf6 961 struct fence *fence;
d38ceaf9
AD
962 long r;
963
21c16bf6
CK
964 r = amdgpu_cs_get_ring(adev, wait->in.ip_type, wait->in.ip_instance,
965 wait->in.ring, &ring);
966 if (r)
967 return r;
968
66b3cf2a
JZ
969 ctx = amdgpu_ctx_get(filp->driver_priv, wait->in.ctx_id);
970 if (ctx == NULL)
971 return -EINVAL;
d38ceaf9 972
4b559c90
CZ
973 fence = amdgpu_ctx_get_fence(ctx, ring, wait->in.handle);
974 if (IS_ERR(fence))
975 r = PTR_ERR(fence);
976 else if (fence) {
977 r = fence_wait_timeout(fence, true, timeout);
978 fence_put(fence);
979 } else
980 r = 1;
049fc527 981
66b3cf2a 982 amdgpu_ctx_put(ctx);
d38ceaf9
AD
983 if (r < 0)
984 return r;
985
986 memset(wait, 0, sizeof(*wait));
987 wait->out.status = (r == 0);
988
989 return 0;
990}
991
992/**
993 * amdgpu_cs_find_bo_va - find bo_va for VM address
994 *
995 * @parser: command submission parser context
996 * @addr: VM address
997 * @bo: resulting BO of the mapping found
998 *
999 * Search the buffer objects in the command submission context for a certain
1000 * virtual memory address. Returns allocation structure when found, NULL
1001 * otherwise.
1002 */
1003struct amdgpu_bo_va_mapping *
1004amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
1005 uint64_t addr, struct amdgpu_bo **bo)
1006{
d38ceaf9 1007 struct amdgpu_bo_va_mapping *mapping;
15486fd2
CK
1008 unsigned i;
1009
1010 if (!parser->bo_list)
1011 return NULL;
d38ceaf9
AD
1012
1013 addr /= AMDGPU_GPU_PAGE_SIZE;
1014
15486fd2
CK
1015 for (i = 0; i < parser->bo_list->num_entries; i++) {
1016 struct amdgpu_bo_list_entry *lobj;
1017
1018 lobj = &parser->bo_list->array[i];
1019 if (!lobj->bo_va)
d38ceaf9
AD
1020 continue;
1021
15486fd2 1022 list_for_each_entry(mapping, &lobj->bo_va->valids, list) {
7fc11959
CK
1023 if (mapping->it.start > addr ||
1024 addr > mapping->it.last)
1025 continue;
1026
15486fd2 1027 *bo = lobj->bo_va->bo;
7fc11959
CK
1028 return mapping;
1029 }
1030
15486fd2 1031 list_for_each_entry(mapping, &lobj->bo_va->invalids, list) {
d38ceaf9
AD
1032 if (mapping->it.start > addr ||
1033 addr > mapping->it.last)
1034 continue;
1035
15486fd2 1036 *bo = lobj->bo_va->bo;
d38ceaf9
AD
1037 return mapping;
1038 }
1039 }
1040
1041 return NULL;
1042}
This page took 0.19963 seconds and 5 git commands to generate.