drm/amdgpu: add proper job alloc/free functions
[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 */
27#include <linux/list_sort.h>
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
CK
89static int amdgpu_cs_user_fence_chunk(struct amdgpu_cs_parser *p,
90 struct drm_amdgpu_cs_chunk_fence *fence_data)
91{
92 struct drm_gem_object *gobj;
93 uint32_t handle;
94
95 handle = fence_data->handle;
96 gobj = drm_gem_object_lookup(p->adev->ddev, p->filp,
97 fence_data->handle);
98 if (gobj == NULL)
99 return -EINVAL;
100
101 p->uf.bo = amdgpu_bo_ref(gem_to_amdgpu_bo(gobj));
102 p->uf.offset = fence_data->offset;
103
cc325d19 104 if (amdgpu_ttm_tt_get_usermm(p->uf.bo->tbo.ttm)) {
91acbeb6
CK
105 drm_gem_object_unreference_unlocked(gobj);
106 return -EINVAL;
107 }
108
109 p->uf_entry.robj = amdgpu_bo_ref(p->uf.bo);
91acbeb6
CK
110 p->uf_entry.priority = 0;
111 p->uf_entry.tv.bo = &p->uf_entry.robj->tbo;
112 p->uf_entry.tv.shared = true;
113
114 drm_gem_object_unreference_unlocked(gobj);
115 return 0;
116}
117
d38ceaf9
AD
118int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, void *data)
119{
120 union drm_amdgpu_cs *cs = data;
121 uint64_t *chunk_array_user;
1d263474 122 uint64_t *chunk_array;
d38ceaf9 123 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
50838c8c 124 unsigned size, num_ibs = 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
CK
198
199 ret = amdgpu_cs_user_fence_chunk(p, (void *)p->chunks[i].kdata);
200 if (ret)
201 goto free_partial_kdata;
202
9a5e8fb1
CK
203 break;
204
2b48d323
CK
205 case AMDGPU_CHUNK_ID_DEPENDENCIES:
206 break;
207
9a5e8fb1 208 default:
1d263474
DC
209 ret = -EINVAL;
210 goto free_partial_kdata;
d38ceaf9
AD
211 }
212 }
213
50838c8c
CK
214 ret = amdgpu_job_alloc(p->adev, num_ibs, &p->job);
215 if (ret)
4acabfe3 216 goto free_all_kdata;
d38ceaf9 217
d38ceaf9 218 kfree(chunk_array);
1d263474
DC
219 return 0;
220
221free_all_kdata:
222 i = p->nchunks - 1;
223free_partial_kdata:
224 for (; i >= 0; i--)
225 drm_free_large(p->chunks[i].kdata);
226 kfree(p->chunks);
2a7d9bda 227put_ctx:
1d263474
DC
228 amdgpu_ctx_put(p->ctx);
229free_chunk:
230 kfree(chunk_array);
231
232 return ret;
d38ceaf9
AD
233}
234
235/* Returns how many bytes TTM can move per IB.
236 */
237static u64 amdgpu_cs_get_threshold_for_moves(struct amdgpu_device *adev)
238{
239 u64 real_vram_size = adev->mc.real_vram_size;
240 u64 vram_usage = atomic64_read(&adev->vram_usage);
241
242 /* This function is based on the current VRAM usage.
243 *
244 * - If all of VRAM is free, allow relocating the number of bytes that
245 * is equal to 1/4 of the size of VRAM for this IB.
246
247 * - If more than one half of VRAM is occupied, only allow relocating
248 * 1 MB of data for this IB.
249 *
250 * - From 0 to one half of used VRAM, the threshold decreases
251 * linearly.
252 * __________________
253 * 1/4 of -|\ |
254 * VRAM | \ |
255 * | \ |
256 * | \ |
257 * | \ |
258 * | \ |
259 * | \ |
260 * | \________|1 MB
261 * |----------------|
262 * VRAM 0 % 100 %
263 * used used
264 *
265 * Note: It's a threshold, not a limit. The threshold must be crossed
266 * for buffer relocations to stop, so any buffer of an arbitrary size
267 * can be moved as long as the threshold isn't crossed before
268 * the relocation takes place. We don't want to disable buffer
269 * relocations completely.
270 *
271 * The idea is that buffers should be placed in VRAM at creation time
272 * and TTM should only do a minimum number of relocations during
273 * command submission. In practice, you need to submit at least
274 * a dozen IBs to move all buffers to VRAM if they are in GTT.
275 *
276 * Also, things can get pretty crazy under memory pressure and actual
277 * VRAM usage can change a lot, so playing safe even at 50% does
278 * consistently increase performance.
279 */
280
281 u64 half_vram = real_vram_size >> 1;
282 u64 half_free_vram = vram_usage >= half_vram ? 0 : half_vram - vram_usage;
283 u64 bytes_moved_threshold = half_free_vram >> 1;
284 return max(bytes_moved_threshold, 1024*1024ull);
285}
286
f69f90a1 287int amdgpu_cs_list_validate(struct amdgpu_cs_parser *p,
a5b75058 288 struct list_head *validated)
d38ceaf9 289{
d38ceaf9 290 struct amdgpu_bo_list_entry *lobj;
f69f90a1 291 u64 initial_bytes_moved;
d38ceaf9
AD
292 int r;
293
a5b75058 294 list_for_each_entry(lobj, validated, tv.head) {
36409d12 295 struct amdgpu_bo *bo = lobj->robj;
cc325d19 296 struct mm_struct *usermm;
36409d12 297 uint32_t domain;
d38ceaf9 298
cc325d19
CK
299 usermm = amdgpu_ttm_tt_get_usermm(bo->tbo.ttm);
300 if (usermm && usermm != current->mm)
301 return -EPERM;
302
36409d12
CK
303 if (bo->pin_count)
304 continue;
305
306 /* Avoid moving this one if we have moved too many buffers
307 * for this IB already.
308 *
309 * Note that this allows moving at least one buffer of
310 * any size, because it doesn't take the current "bo"
311 * into account. We don't want to disallow buffer moves
312 * completely.
313 */
314 if (p->bytes_moved <= p->bytes_moved_threshold)
1ea863fd 315 domain = bo->prefered_domains;
36409d12 316 else
1ea863fd 317 domain = bo->allowed_domains;
36409d12
CK
318
319 retry:
320 amdgpu_ttm_placement_from_domain(bo, domain);
321 initial_bytes_moved = atomic64_read(&bo->adev->num_bytes_moved);
322 r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false);
323 p->bytes_moved += atomic64_read(&bo->adev->num_bytes_moved) -
324 initial_bytes_moved;
325
326 if (unlikely(r)) {
1ea863fd
CK
327 if (r != -ERESTARTSYS && domain != bo->allowed_domains) {
328 domain = bo->allowed_domains;
36409d12 329 goto retry;
d38ceaf9 330 }
36409d12 331 return r;
d38ceaf9 332 }
d38ceaf9
AD
333 }
334 return 0;
335}
336
2a7d9bda
CK
337static int amdgpu_cs_parser_bos(struct amdgpu_cs_parser *p,
338 union drm_amdgpu_cs *cs)
d38ceaf9
AD
339{
340 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
a5b75058 341 struct list_head duplicates;
840d5144 342 bool need_mmap_lock = false;
636ce25c 343 int r;
d38ceaf9 344
2a7d9bda
CK
345 INIT_LIST_HEAD(&p->validated);
346
347 p->bo_list = amdgpu_bo_list_get(fpriv, cs->in.bo_list_handle);
840d5144 348 if (p->bo_list) {
349 need_mmap_lock = p->bo_list->has_userptr;
636ce25c 350 amdgpu_bo_list_get_list(p->bo_list, &p->validated);
840d5144 351 }
d38ceaf9 352
3c0eea6c 353 INIT_LIST_HEAD(&duplicates);
56467ebf 354 amdgpu_vm_get_pd_bo(&fpriv->vm, &p->validated, &p->vm_pd);
d38ceaf9 355
91acbeb6
CK
356 if (p->uf.bo)
357 list_add(&p->uf_entry.tv.head, &p->validated);
358
d38ceaf9
AD
359 if (need_mmap_lock)
360 down_read(&current->mm->mmap_sem);
361
a5b75058
CK
362 r = ttm_eu_reserve_buffers(&p->ticket, &p->validated, true, &duplicates);
363 if (unlikely(r != 0))
364 goto error_reserve;
365
ee1782c3 366 amdgpu_vm_get_pt_bos(&fpriv->vm, &duplicates);
56467ebf 367
f69f90a1
CK
368 p->bytes_moved_threshold = amdgpu_cs_get_threshold_for_moves(p->adev);
369 p->bytes_moved = 0;
370
371 r = amdgpu_cs_list_validate(p, &duplicates);
a5b75058
CK
372 if (r)
373 goto error_validate;
374
f69f90a1 375 r = amdgpu_cs_list_validate(p, &p->validated);
a8480309
CK
376 if (r)
377 goto error_validate;
378
379 if (p->bo_list) {
380 struct amdgpu_vm *vm = &fpriv->vm;
381 unsigned i;
382
383 for (i = 0; i < p->bo_list->num_entries; i++) {
384 struct amdgpu_bo *bo = p->bo_list->array[i].robj;
385
386 p->bo_list->array[i].bo_va = amdgpu_vm_bo_find(vm, bo);
387 }
388 }
a5b75058
CK
389
390error_validate:
eceb8a15
CK
391 if (r) {
392 amdgpu_vm_move_pt_bos_in_lru(p->adev, &fpriv->vm);
a5b75058 393 ttm_eu_backoff_reservation(&p->ticket, &p->validated);
eceb8a15 394 }
d38ceaf9 395
a5b75058 396error_reserve:
d38ceaf9
AD
397 if (need_mmap_lock)
398 up_read(&current->mm->mmap_sem);
399
400 return r;
401}
402
403static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p)
404{
405 struct amdgpu_bo_list_entry *e;
406 int r;
407
408 list_for_each_entry(e, &p->validated, tv.head) {
409 struct reservation_object *resv = e->robj->tbo.resv;
50838c8c 410 r = amdgpu_sync_resv(p->adev, &p->job->ibs[0].sync, resv, p->filp);
d38ceaf9
AD
411
412 if (r)
413 return r;
414 }
415 return 0;
416}
417
418static int cmp_size_smaller_first(void *priv, struct list_head *a,
419 struct list_head *b)
420{
421 struct amdgpu_bo_list_entry *la = list_entry(a, struct amdgpu_bo_list_entry, tv.head);
422 struct amdgpu_bo_list_entry *lb = list_entry(b, struct amdgpu_bo_list_entry, tv.head);
423
424 /* Sort A before B if A is smaller. */
425 return (int)la->robj->tbo.num_pages - (int)lb->robj->tbo.num_pages;
426}
427
984810fc
CK
428/**
429 * cs_parser_fini() - clean parser states
430 * @parser: parser structure holding parsing context.
431 * @error: error number
432 *
433 * If error is set than unvalidate buffer, otherwise just free memory
434 * used by parsing context.
435 **/
436static void amdgpu_cs_parser_fini(struct amdgpu_cs_parser *parser, int error, bool backoff)
049fc527 437{
eceb8a15 438 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
984810fc
CK
439 unsigned i;
440
d38ceaf9 441 if (!error) {
28b8d66e
NH
442 amdgpu_vm_move_pt_bos_in_lru(parser->adev, &fpriv->vm);
443
d38ceaf9
AD
444 /* Sort the buffer list from the smallest to largest buffer,
445 * which affects the order of buffers in the LRU list.
446 * This assures that the smallest buffers are added first
447 * to the LRU list, so they are likely to be later evicted
448 * first, instead of large buffers whose eviction is more
449 * expensive.
450 *
451 * This slightly lowers the number of bytes moved by TTM
452 * per frame under memory pressure.
453 */
454 list_sort(NULL, &parser->validated, cmp_size_smaller_first);
455
456 ttm_eu_fence_buffer_objects(&parser->ticket,
984810fc
CK
457 &parser->validated,
458 parser->fence);
d38ceaf9
AD
459 } else if (backoff) {
460 ttm_eu_backoff_reservation(&parser->ticket,
461 &parser->validated);
462 }
984810fc 463 fence_put(parser->fence);
7e52a81c 464
3cb485f3
CK
465 if (parser->ctx)
466 amdgpu_ctx_put(parser->ctx);
a3348bb8
CZ
467 if (parser->bo_list)
468 amdgpu_bo_list_put(parser->bo_list);
469
d38ceaf9
AD
470 for (i = 0; i < parser->nchunks; i++)
471 drm_free_large(parser->chunks[i].kdata);
472 kfree(parser->chunks);
50838c8c
CK
473 if (parser->job)
474 amdgpu_job_free(parser->job);
91acbeb6
CK
475 amdgpu_bo_unref(&parser->uf.bo);
476 amdgpu_bo_unref(&parser->uf_entry.robj);
d38ceaf9
AD
477}
478
479static int amdgpu_bo_vm_update_pte(struct amdgpu_cs_parser *p,
480 struct amdgpu_vm *vm)
481{
482 struct amdgpu_device *adev = p->adev;
483 struct amdgpu_bo_va *bo_va;
484 struct amdgpu_bo *bo;
485 int i, r;
486
487 r = amdgpu_vm_update_page_directory(adev, vm);
488 if (r)
489 return r;
490
50838c8c 491 r = amdgpu_sync_fence(adev, &p->job->ibs[0].sync, vm->page_directory_fence);
05906dec
BN
492 if (r)
493 return r;
494
d38ceaf9
AD
495 r = amdgpu_vm_clear_freed(adev, vm);
496 if (r)
497 return r;
498
499 if (p->bo_list) {
500 for (i = 0; i < p->bo_list->num_entries; i++) {
91e1a520
CK
501 struct fence *f;
502
d38ceaf9
AD
503 /* ignore duplicates */
504 bo = p->bo_list->array[i].robj;
505 if (!bo)
506 continue;
507
508 bo_va = p->bo_list->array[i].bo_va;
509 if (bo_va == NULL)
510 continue;
511
512 r = amdgpu_vm_bo_update(adev, bo_va, &bo->tbo.mem);
513 if (r)
514 return r;
515
bb1e38a4 516 f = bo_va->last_pt_update;
50838c8c 517 r = amdgpu_sync_fence(adev, &p->job->ibs[0].sync, f);
91e1a520
CK
518 if (r)
519 return r;
d38ceaf9 520 }
b495bd3a
CK
521
522 }
523
50838c8c 524 r = amdgpu_vm_clear_invalids(adev, vm, &p->job->ibs[0].sync);
b495bd3a
CK
525
526 if (amdgpu_vm_debug && p->bo_list) {
527 /* Invalidate all BOs to test for userspace bugs */
528 for (i = 0; i < p->bo_list->num_entries; i++) {
529 /* ignore duplicates */
530 bo = p->bo_list->array[i].robj;
531 if (!bo)
532 continue;
533
534 amdgpu_vm_bo_invalidate(adev, bo);
535 }
d38ceaf9
AD
536 }
537
b495bd3a 538 return r;
d38ceaf9
AD
539}
540
541static int amdgpu_cs_ib_vm_chunk(struct amdgpu_device *adev,
542 struct amdgpu_cs_parser *parser)
543{
544 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
545 struct amdgpu_vm *vm = &fpriv->vm;
546 struct amdgpu_ring *ring;
547 int i, r;
548
d38ceaf9 549 /* Only for UVD/VCE VM emulation */
50838c8c
CK
550 for (i = 0; i < parser->job->num_ibs; i++) {
551 ring = parser->job->ibs[i].ring;
d38ceaf9
AD
552 if (ring->funcs->parse_cs) {
553 r = amdgpu_ring_parse_cs(ring, parser, i);
554 if (r)
555 return r;
556 }
557 }
558
d38ceaf9 559 r = amdgpu_bo_vm_update_pte(parser, vm);
984810fc
CK
560 if (!r)
561 amdgpu_cs_sync_rings(parser);
d38ceaf9 562
d38ceaf9
AD
563 return r;
564}
565
566static int amdgpu_cs_handle_lockup(struct amdgpu_device *adev, int r)
567{
568 if (r == -EDEADLK) {
569 r = amdgpu_gpu_reset(adev);
570 if (!r)
571 r = -EAGAIN;
572 }
573 return r;
574}
575
576static int amdgpu_cs_ib_fill(struct amdgpu_device *adev,
577 struct amdgpu_cs_parser *parser)
578{
579 struct amdgpu_fpriv *fpriv = parser->filp->driver_priv;
580 struct amdgpu_vm *vm = &fpriv->vm;
581 int i, j;
582 int r;
583
50838c8c 584 for (i = 0, j = 0; i < parser->nchunks && j < parser->job->num_ibs; i++) {
d38ceaf9
AD
585 struct amdgpu_cs_chunk *chunk;
586 struct amdgpu_ib *ib;
587 struct drm_amdgpu_cs_chunk_ib *chunk_ib;
d38ceaf9 588 struct amdgpu_ring *ring;
d38ceaf9
AD
589
590 chunk = &parser->chunks[i];
50838c8c 591 ib = &parser->job->ibs[j];
d38ceaf9
AD
592 chunk_ib = (struct drm_amdgpu_cs_chunk_ib *)chunk->kdata;
593
594 if (chunk->chunk_id != AMDGPU_CHUNK_ID_IB)
595 continue;
596
d38ceaf9
AD
597 r = amdgpu_cs_get_ring(adev, chunk_ib->ip_type,
598 chunk_ib->ip_instance, chunk_ib->ring,
599 &ring);
3ccec53c 600 if (r)
d38ceaf9 601 return r;
d38ceaf9
AD
602
603 if (ring->funcs->parse_cs) {
4802ce11 604 struct amdgpu_bo_va_mapping *m;
3ccec53c 605 struct amdgpu_bo *aobj = NULL;
4802ce11
CK
606 uint64_t offset;
607 uint8_t *kptr;
3ccec53c 608
4802ce11
CK
609 m = amdgpu_cs_find_mapping(parser, chunk_ib->va_start,
610 &aobj);
3ccec53c
MO
611 if (!aobj) {
612 DRM_ERROR("IB va_start is invalid\n");
613 return -EINVAL;
d38ceaf9
AD
614 }
615
4802ce11
CK
616 if ((chunk_ib->va_start + chunk_ib->ib_bytes) >
617 (m->it.last + 1) * AMDGPU_GPU_PAGE_SIZE) {
618 DRM_ERROR("IB va_start+ib_bytes is invalid\n");
619 return -EINVAL;
620 }
621
3ccec53c 622 /* the IB should be reserved at this point */
4802ce11 623 r = amdgpu_bo_kmap(aobj, (void **)&kptr);
d38ceaf9 624 if (r) {
d38ceaf9
AD
625 return r;
626 }
627
4802ce11
CK
628 offset = ((uint64_t)m->it.start) * AMDGPU_GPU_PAGE_SIZE;
629 kptr += chunk_ib->va_start - offset;
630
d38ceaf9
AD
631 r = amdgpu_ib_get(ring, NULL, chunk_ib->ib_bytes, ib);
632 if (r) {
633 DRM_ERROR("Failed to get ib !\n");
d38ceaf9
AD
634 return r;
635 }
636
637 memcpy(ib->ptr, kptr, chunk_ib->ib_bytes);
638 amdgpu_bo_kunmap(aobj);
d38ceaf9
AD
639 } else {
640 r = amdgpu_ib_get(ring, vm, 0, ib);
641 if (r) {
642 DRM_ERROR("Failed to get ib !\n");
d38ceaf9
AD
643 return r;
644 }
645
646 ib->gpu_addr = chunk_ib->va_start;
647 }
d38ceaf9 648
3ccec53c 649 ib->length_dw = chunk_ib->ib_bytes / 4;
de807f81 650 ib->flags = chunk_ib->flags;
3cb485f3 651 ib->ctx = parser->ctx;
d38ceaf9
AD
652 j++;
653 }
654
d38ceaf9
AD
655 /* add GDS resources to first IB */
656 if (parser->bo_list) {
657 struct amdgpu_bo *gds = parser->bo_list->gds_obj;
658 struct amdgpu_bo *gws = parser->bo_list->gws_obj;
659 struct amdgpu_bo *oa = parser->bo_list->oa_obj;
50838c8c 660 struct amdgpu_ib *ib = &parser->job->ibs[0];
d38ceaf9
AD
661
662 if (gds) {
663 ib->gds_base = amdgpu_bo_gpu_offset(gds);
664 ib->gds_size = amdgpu_bo_size(gds);
665 }
666 if (gws) {
667 ib->gws_base = amdgpu_bo_gpu_offset(gws);
668 ib->gws_size = amdgpu_bo_size(gws);
669 }
670 if (oa) {
671 ib->oa_base = amdgpu_bo_gpu_offset(oa);
672 ib->oa_size = amdgpu_bo_size(oa);
673 }
674 }
d38ceaf9
AD
675 /* wrap the last IB with user fence */
676 if (parser->uf.bo) {
50838c8c 677 struct amdgpu_ib *ib = &parser->job->ibs[parser->job->num_ibs - 1];
d38ceaf9
AD
678
679 /* UVD & VCE fw doesn't support user fences */
680 if (ib->ring->type == AMDGPU_RING_TYPE_UVD ||
681 ib->ring->type == AMDGPU_RING_TYPE_VCE)
682 return -EINVAL;
683
684 ib->user = &parser->uf;
685 }
686
687 return 0;
688}
689
2b48d323
CK
690static int amdgpu_cs_dependencies(struct amdgpu_device *adev,
691 struct amdgpu_cs_parser *p)
692{
76a1ea61 693 struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
2b48d323
CK
694 struct amdgpu_ib *ib;
695 int i, j, r;
696
2b48d323 697 /* Add dependencies to first IB */
50838c8c 698 ib = &p->job->ibs[0];
2b48d323
CK
699 for (i = 0; i < p->nchunks; ++i) {
700 struct drm_amdgpu_cs_chunk_dep *deps;
701 struct amdgpu_cs_chunk *chunk;
702 unsigned num_deps;
703
704 chunk = &p->chunks[i];
705
706 if (chunk->chunk_id != AMDGPU_CHUNK_ID_DEPENDENCIES)
707 continue;
708
709 deps = (struct drm_amdgpu_cs_chunk_dep *)chunk->kdata;
710 num_deps = chunk->length_dw * 4 /
711 sizeof(struct drm_amdgpu_cs_chunk_dep);
712
713 for (j = 0; j < num_deps; ++j) {
2b48d323 714 struct amdgpu_ring *ring;
76a1ea61 715 struct amdgpu_ctx *ctx;
21c16bf6 716 struct fence *fence;
2b48d323
CK
717
718 r = amdgpu_cs_get_ring(adev, deps[j].ip_type,
719 deps[j].ip_instance,
720 deps[j].ring, &ring);
721 if (r)
722 return r;
723
76a1ea61
CK
724 ctx = amdgpu_ctx_get(fpriv, deps[j].ctx_id);
725 if (ctx == NULL)
726 return -EINVAL;
727
21c16bf6
CK
728 fence = amdgpu_ctx_get_fence(ctx, ring,
729 deps[j].handle);
730 if (IS_ERR(fence)) {
731 r = PTR_ERR(fence);
76a1ea61 732 amdgpu_ctx_put(ctx);
2b48d323 733 return r;
91e1a520 734
21c16bf6
CK
735 } else if (fence) {
736 r = amdgpu_sync_fence(adev, &ib->sync, fence);
737 fence_put(fence);
738 amdgpu_ctx_put(ctx);
739 if (r)
740 return r;
741 }
2b48d323
CK
742 }
743 }
744
745 return 0;
746}
747
4c7eb91c 748static int amdgpu_cs_free_job(struct amdgpu_job *job)
bb977d37 749{
50838c8c 750 amdgpu_job_free(job);
bb977d37
CZ
751 return 0;
752}
753
cd75dc68
CK
754static int amdgpu_cs_submit(struct amdgpu_cs_parser *p,
755 union drm_amdgpu_cs *cs)
756{
50838c8c 757 struct amdgpu_ring * ring = p->job->ibs->ring;
cd75dc68
CK
758 struct amd_sched_fence *fence;
759 struct amdgpu_job *job;
760
50838c8c
CK
761 job = p->job;
762 p->job = NULL;
cd75dc68
CK
763
764 job->base.sched = &ring->sched;
765 job->base.s_entity = &p->ctx->rings[ring->idx].entity;
766 job->adev = p->adev;
767 job->owner = p->filp;
768 job->free_job = amdgpu_cs_free_job;
769
cd75dc68
CK
770 if (job->ibs[job->num_ibs - 1].user) {
771 job->uf = p->uf;
772 job->ibs[job->num_ibs - 1].user = &job->uf;
773 p->uf.bo = NULL;
774 }
775
776 fence = amd_sched_fence_create(job->base.s_entity, p->filp);
777 if (!fence) {
778 amdgpu_cs_free_job(job);
779 kfree(job);
780 return -ENOMEM;
781 }
782
783 job->base.s_fence = fence;
784 p->fence = fence_get(&fence->base);
785
786 cs->out.handle = amdgpu_ctx_add_fence(p->ctx, ring,
787 &fence->base);
788 job->ibs[job->num_ibs - 1].sequence = cs->out.handle;
789
790 trace_amdgpu_cs_ioctl(job);
791 amd_sched_entity_push_job(&job->base);
792
793 return 0;
794}
795
049fc527
CZ
796int amdgpu_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
797{
798 struct amdgpu_device *adev = dev->dev_private;
799 union drm_amdgpu_cs *cs = data;
7e52a81c 800 struct amdgpu_cs_parser parser = {};
26a6980c
CK
801 bool reserved_buffers = false;
802 int i, r;
049fc527 803
0c418f10 804 if (!adev->accel_working)
049fc527 805 return -EBUSY;
2b48d323 806
7e52a81c
CK
807 parser.adev = adev;
808 parser.filp = filp;
809
810 r = amdgpu_cs_parser_init(&parser, data);
d38ceaf9 811 if (r) {
049fc527 812 DRM_ERROR("Failed to initialize parser !\n");
7e52a81c 813 amdgpu_cs_parser_fini(&parser, r, false);
d38ceaf9
AD
814 r = amdgpu_cs_handle_lockup(adev, r);
815 return r;
816 }
2a7d9bda 817 r = amdgpu_cs_parser_bos(&parser, data);
26a6980c
CK
818 if (r == -ENOMEM)
819 DRM_ERROR("Not enough memory for command submission!\n");
820 else if (r && r != -ERESTARTSYS)
821 DRM_ERROR("Failed to process the buffer list %d!\n", r);
822 else if (!r) {
823 reserved_buffers = true;
7e52a81c 824 r = amdgpu_cs_ib_fill(adev, &parser);
26a6980c
CK
825 }
826
827 if (!r) {
7e52a81c 828 r = amdgpu_cs_dependencies(adev, &parser);
26a6980c
CK
829 if (r)
830 DRM_ERROR("Failed in the dependencies handling %d!\n", r);
831 }
832
833 if (r)
834 goto out;
835
50838c8c 836 for (i = 0; i < parser.job->num_ibs; i++)
7e52a81c 837 trace_amdgpu_cs(&parser, i);
26a6980c 838
7e52a81c 839 r = amdgpu_cs_ib_vm_chunk(adev, &parser);
4fe63117
CZ
840 if (r)
841 goto out;
842
4acabfe3 843 r = amdgpu_cs_submit(&parser, cs);
d38ceaf9 844
d38ceaf9 845out:
7e52a81c 846 amdgpu_cs_parser_fini(&parser, r, reserved_buffers);
d38ceaf9
AD
847 r = amdgpu_cs_handle_lockup(adev, r);
848 return r;
849}
850
851/**
852 * amdgpu_cs_wait_ioctl - wait for a command submission to finish
853 *
854 * @dev: drm device
855 * @data: data from userspace
856 * @filp: file private
857 *
858 * Wait for the command submission identified by handle to finish.
859 */
860int amdgpu_cs_wait_ioctl(struct drm_device *dev, void *data,
861 struct drm_file *filp)
862{
863 union drm_amdgpu_wait_cs *wait = data;
864 struct amdgpu_device *adev = dev->dev_private;
d38ceaf9 865 unsigned long timeout = amdgpu_gem_timeout(wait->in.timeout);
03507c4f 866 struct amdgpu_ring *ring = NULL;
66b3cf2a 867 struct amdgpu_ctx *ctx;
21c16bf6 868 struct fence *fence;
d38ceaf9
AD
869 long r;
870
21c16bf6
CK
871 r = amdgpu_cs_get_ring(adev, wait->in.ip_type, wait->in.ip_instance,
872 wait->in.ring, &ring);
873 if (r)
874 return r;
875
66b3cf2a
JZ
876 ctx = amdgpu_ctx_get(filp->driver_priv, wait->in.ctx_id);
877 if (ctx == NULL)
878 return -EINVAL;
d38ceaf9 879
4b559c90
CZ
880 fence = amdgpu_ctx_get_fence(ctx, ring, wait->in.handle);
881 if (IS_ERR(fence))
882 r = PTR_ERR(fence);
883 else if (fence) {
884 r = fence_wait_timeout(fence, true, timeout);
885 fence_put(fence);
886 } else
887 r = 1;
049fc527 888
66b3cf2a 889 amdgpu_ctx_put(ctx);
d38ceaf9
AD
890 if (r < 0)
891 return r;
892
893 memset(wait, 0, sizeof(*wait));
894 wait->out.status = (r == 0);
895
896 return 0;
897}
898
899/**
900 * amdgpu_cs_find_bo_va - find bo_va for VM address
901 *
902 * @parser: command submission parser context
903 * @addr: VM address
904 * @bo: resulting BO of the mapping found
905 *
906 * Search the buffer objects in the command submission context for a certain
907 * virtual memory address. Returns allocation structure when found, NULL
908 * otherwise.
909 */
910struct amdgpu_bo_va_mapping *
911amdgpu_cs_find_mapping(struct amdgpu_cs_parser *parser,
912 uint64_t addr, struct amdgpu_bo **bo)
913{
d38ceaf9 914 struct amdgpu_bo_va_mapping *mapping;
15486fd2
CK
915 unsigned i;
916
917 if (!parser->bo_list)
918 return NULL;
d38ceaf9
AD
919
920 addr /= AMDGPU_GPU_PAGE_SIZE;
921
15486fd2
CK
922 for (i = 0; i < parser->bo_list->num_entries; i++) {
923 struct amdgpu_bo_list_entry *lobj;
924
925 lobj = &parser->bo_list->array[i];
926 if (!lobj->bo_va)
d38ceaf9
AD
927 continue;
928
15486fd2 929 list_for_each_entry(mapping, &lobj->bo_va->valids, list) {
7fc11959
CK
930 if (mapping->it.start > addr ||
931 addr > mapping->it.last)
932 continue;
933
15486fd2 934 *bo = lobj->bo_va->bo;
7fc11959
CK
935 return mapping;
936 }
937
15486fd2 938 list_for_each_entry(mapping, &lobj->bo_va->invalids, list) {
d38ceaf9
AD
939 if (mapping->it.start > addr ||
940 addr > mapping->it.last)
941 continue;
942
15486fd2 943 *bo = lobj->bo_va->bo;
d38ceaf9
AD
944 return mapping;
945 }
946 }
947
948 return NULL;
949}
This page took 0.124309 seconds and 5 git commands to generate.