winsys/amdgpu: implement sync_file import/export
[mesa.git] / src / gallium / winsys / amdgpu / drm / amdgpu_cs.c
1 /*
2 * Copyright © 2008 Jérôme Glisse
3 * Copyright © 2010 Marek Olšák <maraeo@gmail.com>
4 * Copyright © 2015 Advanced Micro Devices, Inc.
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining
8 * a copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
19 * AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * The above copyright notice and this permission notice (including the
25 * next paragraph) shall be included in all copies or substantial portions
26 * of the Software.
27 */
28 /*
29 * Authors:
30 * Marek Olšák <maraeo@gmail.com>
31 */
32
33 #include "amdgpu_cs.h"
34 #include "os/os_time.h"
35 #include <stdio.h>
36
37 #include "amd/common/sid.h"
38
39 DEBUG_GET_ONCE_BOOL_OPTION(noop, "RADEON_NOOP", false)
40
41 /* FENCES */
42
43 static struct pipe_fence_handle *
44 amdgpu_fence_create(struct amdgpu_ctx *ctx, unsigned ip_type,
45 unsigned ip_instance, unsigned ring)
46 {
47 struct amdgpu_fence *fence = CALLOC_STRUCT(amdgpu_fence);
48
49 fence->reference.count = 1;
50 fence->ws = ctx->ws;
51 fence->ctx = ctx;
52 fence->fence.context = ctx->ctx;
53 fence->fence.ip_type = ip_type;
54 fence->fence.ip_instance = ip_instance;
55 fence->fence.ring = ring;
56 fence->submission_in_progress = true;
57 p_atomic_inc(&ctx->refcount);
58 return (struct pipe_fence_handle *)fence;
59 }
60
61 static struct pipe_fence_handle *
62 amdgpu_fence_import_sync_file(struct radeon_winsys *rws, int fd)
63 {
64 struct amdgpu_winsys *ws = amdgpu_winsys(rws);
65 struct amdgpu_fence *fence = CALLOC_STRUCT(amdgpu_fence);
66
67 if (!fence)
68 return NULL;
69
70 pipe_reference_init(&fence->reference, 1);
71 fence->ws = ws;
72 /* fence->ctx == NULL means that the fence is syncobj-based. */
73
74 /* Convert sync_file into syncobj. */
75 int r = amdgpu_cs_create_syncobj(ws->dev, &fence->syncobj);
76 if (r) {
77 FREE(fence);
78 return NULL;
79 }
80
81 r = amdgpu_cs_syncobj_import_sync_file(ws->dev, fence->syncobj, fd);
82 if (r) {
83 amdgpu_cs_destroy_syncobj(ws->dev, fence->syncobj);
84 FREE(fence);
85 return NULL;
86 }
87 return (struct pipe_fence_handle*)fence;
88 }
89
90 static int amdgpu_fence_export_sync_file(struct radeon_winsys *rws,
91 struct pipe_fence_handle *pfence)
92 {
93 struct amdgpu_winsys *ws = amdgpu_winsys(rws);
94 struct amdgpu_fence *fence = (struct amdgpu_fence*)pfence;
95
96 if (amdgpu_fence_is_syncobj(fence)) {
97 int fd, r;
98
99 /* Convert syncobj into sync_file. */
100 r = amdgpu_cs_syncobj_export_sync_file(ws->dev, fence->syncobj, &fd);
101 return r ? -1 : fd;
102 }
103
104 os_wait_until_zero(&fence->submission_in_progress, PIPE_TIMEOUT_INFINITE);
105
106 /* Convert the amdgpu fence into a fence FD. */
107 int fd;
108 if (amdgpu_cs_fence_to_handle(ws->dev, &fence->fence,
109 AMDGPU_FENCE_TO_HANDLE_GET_SYNC_FILE_FD,
110 (uint32_t*)&fd))
111 return -1;
112
113 return fd;
114 }
115
116 static void amdgpu_fence_submitted(struct pipe_fence_handle *fence,
117 uint64_t seq_no,
118 uint64_t *user_fence_cpu_address)
119 {
120 struct amdgpu_fence *rfence = (struct amdgpu_fence*)fence;
121
122 rfence->fence.fence = seq_no;
123 rfence->user_fence_cpu_address = user_fence_cpu_address;
124 rfence->submission_in_progress = false;
125 }
126
127 static void amdgpu_fence_signalled(struct pipe_fence_handle *fence)
128 {
129 struct amdgpu_fence *rfence = (struct amdgpu_fence*)fence;
130
131 rfence->signalled = true;
132 rfence->submission_in_progress = false;
133 }
134
135 bool amdgpu_fence_wait(struct pipe_fence_handle *fence, uint64_t timeout,
136 bool absolute)
137 {
138 struct amdgpu_fence *rfence = (struct amdgpu_fence*)fence;
139 uint32_t expired;
140 int64_t abs_timeout;
141 uint64_t *user_fence_cpu;
142 int r;
143
144 if (rfence->signalled)
145 return true;
146
147 /* Handle syncobjs. */
148 if (amdgpu_fence_is_syncobj(rfence)) {
149 /* Absolute timeouts are only be used by BO fences, which aren't
150 * backed by syncobjs.
151 */
152 assert(!absolute);
153
154 if (amdgpu_cs_syncobj_wait(rfence->ws->dev, &rfence->syncobj, 1,
155 timeout, 0, NULL))
156 return false;
157
158 rfence->signalled = true;
159 return true;
160 }
161
162 if (absolute)
163 abs_timeout = timeout;
164 else
165 abs_timeout = os_time_get_absolute_timeout(timeout);
166
167 /* The fence might not have a number assigned if its IB is being
168 * submitted in the other thread right now. Wait until the submission
169 * is done. */
170 if (!os_wait_until_zero_abs_timeout(&rfence->submission_in_progress,
171 abs_timeout))
172 return false;
173
174 user_fence_cpu = rfence->user_fence_cpu_address;
175 if (user_fence_cpu) {
176 if (*user_fence_cpu >= rfence->fence.fence) {
177 rfence->signalled = true;
178 return true;
179 }
180
181 /* No timeout, just query: no need for the ioctl. */
182 if (!absolute && !timeout)
183 return false;
184 }
185
186 /* Now use the libdrm query. */
187 r = amdgpu_cs_query_fence_status(&rfence->fence,
188 abs_timeout,
189 AMDGPU_QUERY_FENCE_TIMEOUT_IS_ABSOLUTE,
190 &expired);
191 if (r) {
192 fprintf(stderr, "amdgpu: amdgpu_cs_query_fence_status failed.\n");
193 return false;
194 }
195
196 if (expired) {
197 /* This variable can only transition from false to true, so it doesn't
198 * matter if threads race for it. */
199 rfence->signalled = true;
200 return true;
201 }
202 return false;
203 }
204
205 static bool amdgpu_fence_wait_rel_timeout(struct radeon_winsys *rws,
206 struct pipe_fence_handle *fence,
207 uint64_t timeout)
208 {
209 return amdgpu_fence_wait(fence, timeout, false);
210 }
211
212 static struct pipe_fence_handle *
213 amdgpu_cs_get_next_fence(struct radeon_winsys_cs *rcs)
214 {
215 struct amdgpu_cs *cs = amdgpu_cs(rcs);
216 struct pipe_fence_handle *fence = NULL;
217
218 if (debug_get_option_noop())
219 return NULL;
220
221 if (cs->next_fence) {
222 amdgpu_fence_reference(&fence, cs->next_fence);
223 return fence;
224 }
225
226 fence = amdgpu_fence_create(cs->ctx,
227 cs->csc->ib[IB_MAIN].ip_type,
228 cs->csc->ib[IB_MAIN].ip_instance,
229 cs->csc->ib[IB_MAIN].ring);
230 if (!fence)
231 return NULL;
232
233 amdgpu_fence_reference(&cs->next_fence, fence);
234 return fence;
235 }
236
237 /* CONTEXTS */
238
239 static struct radeon_winsys_ctx *amdgpu_ctx_create(struct radeon_winsys *ws)
240 {
241 struct amdgpu_ctx *ctx = CALLOC_STRUCT(amdgpu_ctx);
242 int r;
243 struct amdgpu_bo_alloc_request alloc_buffer = {};
244 amdgpu_bo_handle buf_handle;
245
246 if (!ctx)
247 return NULL;
248
249 ctx->ws = amdgpu_winsys(ws);
250 ctx->refcount = 1;
251 ctx->initial_num_total_rejected_cs = ctx->ws->num_total_rejected_cs;
252
253 r = amdgpu_cs_ctx_create(ctx->ws->dev, &ctx->ctx);
254 if (r) {
255 fprintf(stderr, "amdgpu: amdgpu_cs_ctx_create failed. (%i)\n", r);
256 goto error_create;
257 }
258
259 alloc_buffer.alloc_size = ctx->ws->info.gart_page_size;
260 alloc_buffer.phys_alignment = ctx->ws->info.gart_page_size;
261 alloc_buffer.preferred_heap = AMDGPU_GEM_DOMAIN_GTT;
262
263 r = amdgpu_bo_alloc(ctx->ws->dev, &alloc_buffer, &buf_handle);
264 if (r) {
265 fprintf(stderr, "amdgpu: amdgpu_bo_alloc failed. (%i)\n", r);
266 goto error_user_fence_alloc;
267 }
268
269 r = amdgpu_bo_cpu_map(buf_handle, (void**)&ctx->user_fence_cpu_address_base);
270 if (r) {
271 fprintf(stderr, "amdgpu: amdgpu_bo_cpu_map failed. (%i)\n", r);
272 goto error_user_fence_map;
273 }
274
275 memset(ctx->user_fence_cpu_address_base, 0, alloc_buffer.alloc_size);
276 ctx->user_fence_bo = buf_handle;
277
278 return (struct radeon_winsys_ctx*)ctx;
279
280 error_user_fence_map:
281 amdgpu_bo_free(buf_handle);
282 error_user_fence_alloc:
283 amdgpu_cs_ctx_free(ctx->ctx);
284 error_create:
285 FREE(ctx);
286 return NULL;
287 }
288
289 static void amdgpu_ctx_destroy(struct radeon_winsys_ctx *rwctx)
290 {
291 amdgpu_ctx_unref((struct amdgpu_ctx*)rwctx);
292 }
293
294 static enum pipe_reset_status
295 amdgpu_ctx_query_reset_status(struct radeon_winsys_ctx *rwctx)
296 {
297 struct amdgpu_ctx *ctx = (struct amdgpu_ctx*)rwctx;
298 uint32_t result, hangs;
299 int r;
300
301 /* Return a failure due to a rejected command submission. */
302 if (ctx->ws->num_total_rejected_cs > ctx->initial_num_total_rejected_cs) {
303 return ctx->num_rejected_cs ? PIPE_GUILTY_CONTEXT_RESET :
304 PIPE_INNOCENT_CONTEXT_RESET;
305 }
306
307 /* Return a failure due to a GPU hang. */
308 r = amdgpu_cs_query_reset_state(ctx->ctx, &result, &hangs);
309 if (r) {
310 fprintf(stderr, "amdgpu: amdgpu_cs_query_reset_state failed. (%i)\n", r);
311 return PIPE_NO_RESET;
312 }
313
314 switch (result) {
315 case AMDGPU_CTX_GUILTY_RESET:
316 return PIPE_GUILTY_CONTEXT_RESET;
317 case AMDGPU_CTX_INNOCENT_RESET:
318 return PIPE_INNOCENT_CONTEXT_RESET;
319 case AMDGPU_CTX_UNKNOWN_RESET:
320 return PIPE_UNKNOWN_CONTEXT_RESET;
321 case AMDGPU_CTX_NO_RESET:
322 default:
323 return PIPE_NO_RESET;
324 }
325 }
326
327 /* COMMAND SUBMISSION */
328
329 static bool amdgpu_cs_has_user_fence(struct amdgpu_cs_context *cs)
330 {
331 return cs->ib[IB_MAIN].ip_type != AMDGPU_HW_IP_UVD &&
332 cs->ib[IB_MAIN].ip_type != AMDGPU_HW_IP_VCE &&
333 cs->ib[IB_MAIN].ip_type != AMDGPU_HW_IP_VCN_DEC;
334 }
335
336 static bool amdgpu_cs_has_chaining(struct amdgpu_cs *cs)
337 {
338 return cs->ctx->ws->info.chip_class >= CIK &&
339 cs->ring_type == RING_GFX;
340 }
341
342 static unsigned amdgpu_cs_epilog_dws(enum ring_type ring_type)
343 {
344 if (ring_type == RING_GFX)
345 return 4; /* for chaining */
346
347 return 0;
348 }
349
350 int amdgpu_lookup_buffer(struct amdgpu_cs_context *cs, struct amdgpu_winsys_bo *bo)
351 {
352 unsigned hash = bo->unique_id & (ARRAY_SIZE(cs->buffer_indices_hashlist)-1);
353 int i = cs->buffer_indices_hashlist[hash];
354 struct amdgpu_cs_buffer *buffers;
355 int num_buffers;
356
357 if (bo->bo) {
358 buffers = cs->real_buffers;
359 num_buffers = cs->num_real_buffers;
360 } else if (!bo->sparse) {
361 buffers = cs->slab_buffers;
362 num_buffers = cs->num_slab_buffers;
363 } else {
364 buffers = cs->sparse_buffers;
365 num_buffers = cs->num_sparse_buffers;
366 }
367
368 /* not found or found */
369 if (i < 0 || (i < num_buffers && buffers[i].bo == bo))
370 return i;
371
372 /* Hash collision, look for the BO in the list of buffers linearly. */
373 for (i = num_buffers - 1; i >= 0; i--) {
374 if (buffers[i].bo == bo) {
375 /* Put this buffer in the hash list.
376 * This will prevent additional hash collisions if there are
377 * several consecutive lookup_buffer calls for the same buffer.
378 *
379 * Example: Assuming buffers A,B,C collide in the hash list,
380 * the following sequence of buffers:
381 * AAAAAAAAAAABBBBBBBBBBBBBBCCCCCCCC
382 * will collide here: ^ and here: ^,
383 * meaning that we should get very few collisions in the end. */
384 cs->buffer_indices_hashlist[hash] = i;
385 return i;
386 }
387 }
388 return -1;
389 }
390
391 static int
392 amdgpu_do_add_real_buffer(struct amdgpu_cs_context *cs, struct amdgpu_winsys_bo *bo)
393 {
394 struct amdgpu_cs_buffer *buffer;
395 int idx;
396
397 /* New buffer, check if the backing array is large enough. */
398 if (cs->num_real_buffers >= cs->max_real_buffers) {
399 unsigned new_max =
400 MAX2(cs->max_real_buffers + 16, (unsigned)(cs->max_real_buffers * 1.3));
401 struct amdgpu_cs_buffer *new_buffers;
402
403 new_buffers = MALLOC(new_max * sizeof(*new_buffers));
404
405 if (!new_buffers) {
406 fprintf(stderr, "amdgpu_do_add_buffer: allocation failed\n");
407 FREE(new_buffers);
408 return -1;
409 }
410
411 memcpy(new_buffers, cs->real_buffers, cs->num_real_buffers * sizeof(*new_buffers));
412
413 FREE(cs->real_buffers);
414
415 cs->max_real_buffers = new_max;
416 cs->real_buffers = new_buffers;
417 }
418
419 idx = cs->num_real_buffers;
420 buffer = &cs->real_buffers[idx];
421
422 memset(buffer, 0, sizeof(*buffer));
423 amdgpu_winsys_bo_reference(&buffer->bo, bo);
424 p_atomic_inc(&bo->num_cs_references);
425 cs->num_real_buffers++;
426
427 return idx;
428 }
429
430 static int
431 amdgpu_lookup_or_add_real_buffer(struct amdgpu_cs *acs, struct amdgpu_winsys_bo *bo)
432 {
433 struct amdgpu_cs_context *cs = acs->csc;
434 unsigned hash;
435 int idx = amdgpu_lookup_buffer(cs, bo);
436
437 if (idx >= 0)
438 return idx;
439
440 idx = amdgpu_do_add_real_buffer(cs, bo);
441
442 hash = bo->unique_id & (ARRAY_SIZE(cs->buffer_indices_hashlist)-1);
443 cs->buffer_indices_hashlist[hash] = idx;
444
445 if (bo->initial_domain & RADEON_DOMAIN_VRAM)
446 acs->main.base.used_vram += bo->base.size;
447 else if (bo->initial_domain & RADEON_DOMAIN_GTT)
448 acs->main.base.used_gart += bo->base.size;
449
450 return idx;
451 }
452
453 static int amdgpu_lookup_or_add_slab_buffer(struct amdgpu_cs *acs,
454 struct amdgpu_winsys_bo *bo)
455 {
456 struct amdgpu_cs_context *cs = acs->csc;
457 struct amdgpu_cs_buffer *buffer;
458 unsigned hash;
459 int idx = amdgpu_lookup_buffer(cs, bo);
460 int real_idx;
461
462 if (idx >= 0)
463 return idx;
464
465 real_idx = amdgpu_lookup_or_add_real_buffer(acs, bo->u.slab.real);
466 if (real_idx < 0)
467 return -1;
468
469 /* New buffer, check if the backing array is large enough. */
470 if (cs->num_slab_buffers >= cs->max_slab_buffers) {
471 unsigned new_max =
472 MAX2(cs->max_slab_buffers + 16, (unsigned)(cs->max_slab_buffers * 1.3));
473 struct amdgpu_cs_buffer *new_buffers;
474
475 new_buffers = REALLOC(cs->slab_buffers,
476 cs->max_slab_buffers * sizeof(*new_buffers),
477 new_max * sizeof(*new_buffers));
478 if (!new_buffers) {
479 fprintf(stderr, "amdgpu_lookup_or_add_slab_buffer: allocation failed\n");
480 return -1;
481 }
482
483 cs->max_slab_buffers = new_max;
484 cs->slab_buffers = new_buffers;
485 }
486
487 idx = cs->num_slab_buffers;
488 buffer = &cs->slab_buffers[idx];
489
490 memset(buffer, 0, sizeof(*buffer));
491 amdgpu_winsys_bo_reference(&buffer->bo, bo);
492 buffer->u.slab.real_idx = real_idx;
493 p_atomic_inc(&bo->num_cs_references);
494 cs->num_slab_buffers++;
495
496 hash = bo->unique_id & (ARRAY_SIZE(cs->buffer_indices_hashlist)-1);
497 cs->buffer_indices_hashlist[hash] = idx;
498
499 return idx;
500 }
501
502 static int amdgpu_lookup_or_add_sparse_buffer(struct amdgpu_cs *acs,
503 struct amdgpu_winsys_bo *bo)
504 {
505 struct amdgpu_cs_context *cs = acs->csc;
506 struct amdgpu_cs_buffer *buffer;
507 unsigned hash;
508 int idx = amdgpu_lookup_buffer(cs, bo);
509
510 if (idx >= 0)
511 return idx;
512
513 /* New buffer, check if the backing array is large enough. */
514 if (cs->num_sparse_buffers >= cs->max_sparse_buffers) {
515 unsigned new_max =
516 MAX2(cs->max_sparse_buffers + 16, (unsigned)(cs->max_sparse_buffers * 1.3));
517 struct amdgpu_cs_buffer *new_buffers;
518
519 new_buffers = REALLOC(cs->sparse_buffers,
520 cs->max_sparse_buffers * sizeof(*new_buffers),
521 new_max * sizeof(*new_buffers));
522 if (!new_buffers) {
523 fprintf(stderr, "amdgpu_lookup_or_add_sparse_buffer: allocation failed\n");
524 return -1;
525 }
526
527 cs->max_sparse_buffers = new_max;
528 cs->sparse_buffers = new_buffers;
529 }
530
531 idx = cs->num_sparse_buffers;
532 buffer = &cs->sparse_buffers[idx];
533
534 memset(buffer, 0, sizeof(*buffer));
535 amdgpu_winsys_bo_reference(&buffer->bo, bo);
536 p_atomic_inc(&bo->num_cs_references);
537 cs->num_sparse_buffers++;
538
539 hash = bo->unique_id & (ARRAY_SIZE(cs->buffer_indices_hashlist)-1);
540 cs->buffer_indices_hashlist[hash] = idx;
541
542 /* We delay adding the backing buffers until we really have to. However,
543 * we cannot delay accounting for memory use.
544 */
545 mtx_lock(&bo->u.sparse.commit_lock);
546
547 list_for_each_entry(struct amdgpu_sparse_backing, backing, &bo->u.sparse.backing, list) {
548 if (bo->initial_domain & RADEON_DOMAIN_VRAM)
549 acs->main.base.used_vram += backing->bo->base.size;
550 else if (bo->initial_domain & RADEON_DOMAIN_GTT)
551 acs->main.base.used_gart += backing->bo->base.size;
552 }
553
554 mtx_unlock(&bo->u.sparse.commit_lock);
555
556 return idx;
557 }
558
559 static unsigned amdgpu_cs_add_buffer(struct radeon_winsys_cs *rcs,
560 struct pb_buffer *buf,
561 enum radeon_bo_usage usage,
562 enum radeon_bo_domain domains,
563 enum radeon_bo_priority priority)
564 {
565 /* Don't use the "domains" parameter. Amdgpu doesn't support changing
566 * the buffer placement during command submission.
567 */
568 struct amdgpu_cs *acs = amdgpu_cs(rcs);
569 struct amdgpu_cs_context *cs = acs->csc;
570 struct amdgpu_winsys_bo *bo = (struct amdgpu_winsys_bo*)buf;
571 struct amdgpu_cs_buffer *buffer;
572 int index;
573
574 /* Fast exit for no-op calls.
575 * This is very effective with suballocators and linear uploaders that
576 * are outside of the winsys.
577 */
578 if (bo == cs->last_added_bo &&
579 (usage & cs->last_added_bo_usage) == usage &&
580 (1ull << priority) & cs->last_added_bo_priority_usage)
581 return cs->last_added_bo_index;
582
583 if (!bo->sparse) {
584 if (!bo->bo) {
585 index = amdgpu_lookup_or_add_slab_buffer(acs, bo);
586 if (index < 0)
587 return 0;
588
589 buffer = &cs->slab_buffers[index];
590 buffer->usage |= usage;
591
592 usage &= ~RADEON_USAGE_SYNCHRONIZED;
593 index = buffer->u.slab.real_idx;
594 } else {
595 index = amdgpu_lookup_or_add_real_buffer(acs, bo);
596 if (index < 0)
597 return 0;
598 }
599
600 buffer = &cs->real_buffers[index];
601 } else {
602 index = amdgpu_lookup_or_add_sparse_buffer(acs, bo);
603 if (index < 0)
604 return 0;
605
606 buffer = &cs->sparse_buffers[index];
607 }
608
609 buffer->u.real.priority_usage |= 1ull << priority;
610 buffer->usage |= usage;
611
612 cs->last_added_bo = bo;
613 cs->last_added_bo_index = index;
614 cs->last_added_bo_usage = buffer->usage;
615 cs->last_added_bo_priority_usage = buffer->u.real.priority_usage;
616 return index;
617 }
618
619 static bool amdgpu_ib_new_buffer(struct amdgpu_winsys *ws, struct amdgpu_ib *ib)
620 {
621 struct pb_buffer *pb;
622 uint8_t *mapped;
623 unsigned buffer_size;
624
625 /* Always create a buffer that is at least as large as the maximum seen IB
626 * size, aligned to a power of two (and multiplied by 4 to reduce internal
627 * fragmentation if chaining is not available). Limit to 512k dwords, which
628 * is the largest power of two that fits into the size field of the
629 * INDIRECT_BUFFER packet.
630 */
631 if (amdgpu_cs_has_chaining(amdgpu_cs_from_ib(ib)))
632 buffer_size = 4 *util_next_power_of_two(ib->max_ib_size);
633 else
634 buffer_size = 4 *util_next_power_of_two(4 * ib->max_ib_size);
635
636 buffer_size = MIN2(buffer_size, 4 * 512 * 1024);
637
638 switch (ib->ib_type) {
639 case IB_MAIN:
640 buffer_size = MAX2(buffer_size, 8 * 1024 * 4);
641 break;
642 default:
643 unreachable("unhandled IB type");
644 }
645
646 pb = ws->base.buffer_create(&ws->base, buffer_size,
647 ws->info.gart_page_size,
648 RADEON_DOMAIN_GTT,
649 RADEON_FLAG_NO_INTERPROCESS_SHARING);
650 if (!pb)
651 return false;
652
653 mapped = ws->base.buffer_map(pb, NULL, PIPE_TRANSFER_WRITE);
654 if (!mapped) {
655 pb_reference(&pb, NULL);
656 return false;
657 }
658
659 pb_reference(&ib->big_ib_buffer, pb);
660 pb_reference(&pb, NULL);
661
662 ib->ib_mapped = mapped;
663 ib->used_ib_space = 0;
664
665 return true;
666 }
667
668 static unsigned amdgpu_ib_max_submit_dwords(enum ib_type ib_type)
669 {
670 switch (ib_type) {
671 case IB_MAIN:
672 /* Smaller submits means the GPU gets busy sooner and there is less
673 * waiting for buffers and fences. Proof:
674 * http://www.phoronix.com/scan.php?page=article&item=mesa-111-si&num=1
675 */
676 return 20 * 1024;
677 default:
678 unreachable("bad ib_type");
679 }
680 }
681
682 static bool amdgpu_get_new_ib(struct radeon_winsys *ws, struct amdgpu_cs *cs,
683 enum ib_type ib_type)
684 {
685 struct amdgpu_winsys *aws = (struct amdgpu_winsys*)ws;
686 /* Small IBs are better than big IBs, because the GPU goes idle quicker
687 * and there is less waiting for buffers and fences. Proof:
688 * http://www.phoronix.com/scan.php?page=article&item=mesa-111-si&num=1
689 */
690 struct amdgpu_ib *ib = NULL;
691 struct drm_amdgpu_cs_chunk_ib *info = &cs->csc->ib[ib_type];
692 unsigned ib_size = 0;
693
694 switch (ib_type) {
695 case IB_MAIN:
696 ib = &cs->main;
697 ib_size = 4 * 1024 * 4;
698 break;
699 default:
700 unreachable("unhandled IB type");
701 }
702
703 if (!amdgpu_cs_has_chaining(cs)) {
704 ib_size = MAX2(ib_size,
705 4 * MIN2(util_next_power_of_two(ib->max_ib_size),
706 amdgpu_ib_max_submit_dwords(ib_type)));
707 }
708
709 ib->max_ib_size = ib->max_ib_size - ib->max_ib_size / 32;
710
711 ib->base.prev_dw = 0;
712 ib->base.num_prev = 0;
713 ib->base.current.cdw = 0;
714 ib->base.current.buf = NULL;
715
716 /* Allocate a new buffer for IBs if the current buffer is all used. */
717 if (!ib->big_ib_buffer ||
718 ib->used_ib_space + ib_size > ib->big_ib_buffer->size) {
719 if (!amdgpu_ib_new_buffer(aws, ib))
720 return false;
721 }
722
723 info->va_start = amdgpu_winsys_bo(ib->big_ib_buffer)->va + ib->used_ib_space;
724 info->ib_bytes = 0;
725 /* ib_bytes is in dwords and the conversion to bytes will be done before
726 * the CS ioctl. */
727 ib->ptr_ib_size = &info->ib_bytes;
728
729 amdgpu_cs_add_buffer(&cs->main.base, ib->big_ib_buffer,
730 RADEON_USAGE_READ, 0, RADEON_PRIO_IB1);
731
732 ib->base.current.buf = (uint32_t*)(ib->ib_mapped + ib->used_ib_space);
733
734 ib_size = ib->big_ib_buffer->size - ib->used_ib_space;
735 ib->base.current.max_dw = ib_size / 4 - amdgpu_cs_epilog_dws(cs->ring_type);
736 return true;
737 }
738
739 static void amdgpu_ib_finalize(struct amdgpu_ib *ib)
740 {
741 *ib->ptr_ib_size |= ib->base.current.cdw;
742 ib->used_ib_space += ib->base.current.cdw * 4;
743 ib->max_ib_size = MAX2(ib->max_ib_size, ib->base.prev_dw + ib->base.current.cdw);
744 }
745
746 static bool amdgpu_init_cs_context(struct amdgpu_cs_context *cs,
747 enum ring_type ring_type)
748 {
749 switch (ring_type) {
750 case RING_DMA:
751 cs->ib[IB_MAIN].ip_type = AMDGPU_HW_IP_DMA;
752 break;
753
754 case RING_UVD:
755 cs->ib[IB_MAIN].ip_type = AMDGPU_HW_IP_UVD;
756 break;
757
758 case RING_VCE:
759 cs->ib[IB_MAIN].ip_type = AMDGPU_HW_IP_VCE;
760 break;
761
762 case RING_COMPUTE:
763 cs->ib[IB_MAIN].ip_type = AMDGPU_HW_IP_COMPUTE;
764 break;
765
766 case RING_VCN_DEC:
767 cs->ib[IB_MAIN].ip_type = AMDGPU_HW_IP_VCN_DEC;
768 break;
769
770 default:
771 case RING_GFX:
772 cs->ib[IB_MAIN].ip_type = AMDGPU_HW_IP_GFX;
773 break;
774 }
775
776 memset(cs->buffer_indices_hashlist, -1, sizeof(cs->buffer_indices_hashlist));
777 cs->last_added_bo = NULL;
778 return true;
779 }
780
781 static void amdgpu_cs_context_cleanup(struct amdgpu_cs_context *cs)
782 {
783 unsigned i;
784
785 for (i = 0; i < cs->num_real_buffers; i++) {
786 p_atomic_dec(&cs->real_buffers[i].bo->num_cs_references);
787 amdgpu_winsys_bo_reference(&cs->real_buffers[i].bo, NULL);
788 }
789 for (i = 0; i < cs->num_slab_buffers; i++) {
790 p_atomic_dec(&cs->slab_buffers[i].bo->num_cs_references);
791 amdgpu_winsys_bo_reference(&cs->slab_buffers[i].bo, NULL);
792 }
793 for (i = 0; i < cs->num_sparse_buffers; i++) {
794 p_atomic_dec(&cs->sparse_buffers[i].bo->num_cs_references);
795 amdgpu_winsys_bo_reference(&cs->sparse_buffers[i].bo, NULL);
796 }
797 for (i = 0; i < cs->num_fence_dependencies; i++)
798 amdgpu_fence_reference(&cs->fence_dependencies[i], NULL);
799
800 cs->num_real_buffers = 0;
801 cs->num_slab_buffers = 0;
802 cs->num_sparse_buffers = 0;
803 cs->num_fence_dependencies = 0;
804 amdgpu_fence_reference(&cs->fence, NULL);
805
806 memset(cs->buffer_indices_hashlist, -1, sizeof(cs->buffer_indices_hashlist));
807 cs->last_added_bo = NULL;
808 }
809
810 static void amdgpu_destroy_cs_context(struct amdgpu_cs_context *cs)
811 {
812 amdgpu_cs_context_cleanup(cs);
813 FREE(cs->flags);
814 FREE(cs->real_buffers);
815 FREE(cs->handles);
816 FREE(cs->slab_buffers);
817 FREE(cs->sparse_buffers);
818 FREE(cs->fence_dependencies);
819 }
820
821
822 static struct radeon_winsys_cs *
823 amdgpu_cs_create(struct radeon_winsys_ctx *rwctx,
824 enum ring_type ring_type,
825 void (*flush)(void *ctx, unsigned flags,
826 struct pipe_fence_handle **fence),
827 void *flush_ctx)
828 {
829 struct amdgpu_ctx *ctx = (struct amdgpu_ctx*)rwctx;
830 struct amdgpu_cs *cs;
831
832 cs = CALLOC_STRUCT(amdgpu_cs);
833 if (!cs) {
834 return NULL;
835 }
836
837 util_queue_fence_init(&cs->flush_completed);
838
839 cs->ctx = ctx;
840 cs->flush_cs = flush;
841 cs->flush_data = flush_ctx;
842 cs->ring_type = ring_type;
843
844 struct amdgpu_cs_fence_info fence_info;
845 fence_info.handle = cs->ctx->user_fence_bo;
846 fence_info.offset = cs->ring_type;
847 amdgpu_cs_chunk_fence_info_to_data(&fence_info, (void*)&cs->fence_chunk);
848
849 cs->main.ib_type = IB_MAIN;
850
851 if (!amdgpu_init_cs_context(&cs->csc1, ring_type)) {
852 FREE(cs);
853 return NULL;
854 }
855
856 if (!amdgpu_init_cs_context(&cs->csc2, ring_type)) {
857 amdgpu_destroy_cs_context(&cs->csc1);
858 FREE(cs);
859 return NULL;
860 }
861
862 /* Set the first submission context as current. */
863 cs->csc = &cs->csc1;
864 cs->cst = &cs->csc2;
865
866 if (!amdgpu_get_new_ib(&ctx->ws->base, cs, IB_MAIN)) {
867 amdgpu_destroy_cs_context(&cs->csc2);
868 amdgpu_destroy_cs_context(&cs->csc1);
869 FREE(cs);
870 return NULL;
871 }
872
873 p_atomic_inc(&ctx->ws->num_cs);
874 return &cs->main.base;
875 }
876
877 static bool amdgpu_cs_validate(struct radeon_winsys_cs *rcs)
878 {
879 return true;
880 }
881
882 static bool amdgpu_cs_check_space(struct radeon_winsys_cs *rcs, unsigned dw)
883 {
884 struct amdgpu_ib *ib = amdgpu_ib(rcs);
885 struct amdgpu_cs *cs = amdgpu_cs_from_ib(ib);
886 unsigned requested_size = rcs->prev_dw + rcs->current.cdw + dw;
887 uint64_t va;
888 uint32_t *new_ptr_ib_size;
889
890 assert(rcs->current.cdw <= rcs->current.max_dw);
891
892 if (requested_size > amdgpu_ib_max_submit_dwords(ib->ib_type))
893 return false;
894
895 ib->max_ib_size = MAX2(ib->max_ib_size, requested_size);
896
897 if (rcs->current.max_dw - rcs->current.cdw >= dw)
898 return true;
899
900 if (!amdgpu_cs_has_chaining(cs))
901 return false;
902
903 /* Allocate a new chunk */
904 if (rcs->num_prev >= rcs->max_prev) {
905 unsigned new_max_prev = MAX2(1, 2 * rcs->max_prev);
906 struct radeon_winsys_cs_chunk *new_prev;
907
908 new_prev = REALLOC(rcs->prev,
909 sizeof(*new_prev) * rcs->max_prev,
910 sizeof(*new_prev) * new_max_prev);
911 if (!new_prev)
912 return false;
913
914 rcs->prev = new_prev;
915 rcs->max_prev = new_max_prev;
916 }
917
918 if (!amdgpu_ib_new_buffer(cs->ctx->ws, ib))
919 return false;
920
921 assert(ib->used_ib_space == 0);
922 va = amdgpu_winsys_bo(ib->big_ib_buffer)->va;
923
924 /* This space was originally reserved. */
925 rcs->current.max_dw += 4;
926 assert(ib->used_ib_space + 4 * rcs->current.max_dw <= ib->big_ib_buffer->size);
927
928 /* Pad with NOPs and add INDIRECT_BUFFER packet */
929 while ((rcs->current.cdw & 7) != 4)
930 radeon_emit(rcs, 0xffff1000); /* type3 nop packet */
931
932 radeon_emit(rcs, PKT3(ib->ib_type == IB_MAIN ? PKT3_INDIRECT_BUFFER_CIK
933 : PKT3_INDIRECT_BUFFER_CONST, 2, 0));
934 radeon_emit(rcs, va);
935 radeon_emit(rcs, va >> 32);
936 new_ptr_ib_size = &rcs->current.buf[rcs->current.cdw];
937 radeon_emit(rcs, S_3F2_CHAIN(1) | S_3F2_VALID(1));
938
939 assert((rcs->current.cdw & 7) == 0);
940 assert(rcs->current.cdw <= rcs->current.max_dw);
941
942 *ib->ptr_ib_size |= rcs->current.cdw;
943 ib->ptr_ib_size = new_ptr_ib_size;
944
945 /* Hook up the new chunk */
946 rcs->prev[rcs->num_prev].buf = rcs->current.buf;
947 rcs->prev[rcs->num_prev].cdw = rcs->current.cdw;
948 rcs->prev[rcs->num_prev].max_dw = rcs->current.cdw; /* no modifications */
949 rcs->num_prev++;
950
951 ib->base.prev_dw += ib->base.current.cdw;
952 ib->base.current.cdw = 0;
953
954 ib->base.current.buf = (uint32_t*)(ib->ib_mapped + ib->used_ib_space);
955 ib->base.current.max_dw = ib->big_ib_buffer->size / 4 - amdgpu_cs_epilog_dws(cs->ring_type);
956
957 amdgpu_cs_add_buffer(&cs->main.base, ib->big_ib_buffer,
958 RADEON_USAGE_READ, 0, RADEON_PRIO_IB1);
959
960 return true;
961 }
962
963 static unsigned amdgpu_cs_get_buffer_list(struct radeon_winsys_cs *rcs,
964 struct radeon_bo_list_item *list)
965 {
966 struct amdgpu_cs_context *cs = amdgpu_cs(rcs)->csc;
967 int i;
968
969 if (list) {
970 for (i = 0; i < cs->num_real_buffers; i++) {
971 list[i].bo_size = cs->real_buffers[i].bo->base.size;
972 list[i].vm_address = cs->real_buffers[i].bo->va;
973 list[i].priority_usage = cs->real_buffers[i].u.real.priority_usage;
974 }
975 }
976 return cs->num_real_buffers;
977 }
978
979 static unsigned add_fence_dependency_entry(struct amdgpu_cs_context *cs)
980 {
981 unsigned idx = cs->num_fence_dependencies++;
982
983 if (idx >= cs->max_fence_dependencies) {
984 unsigned size;
985 const unsigned increment = 8;
986
987 cs->max_fence_dependencies = idx + increment;
988 size = cs->max_fence_dependencies * sizeof(cs->fence_dependencies[0]);
989 cs->fence_dependencies = realloc(cs->fence_dependencies, size);
990 /* Clear the newly-allocated elements. */
991 memset(cs->fence_dependencies + idx, 0,
992 increment * sizeof(cs->fence_dependencies[0]));
993 }
994 return idx;
995 }
996
997 static bool is_noop_fence_dependency(struct amdgpu_cs *acs,
998 struct amdgpu_fence *fence)
999 {
1000 struct amdgpu_cs_context *cs = acs->csc;
1001
1002 if (!amdgpu_fence_is_syncobj(fence) &&
1003 fence->ctx == acs->ctx &&
1004 fence->fence.ip_type == cs->ib[IB_MAIN].ip_type &&
1005 fence->fence.ip_instance == cs->ib[IB_MAIN].ip_instance &&
1006 fence->fence.ring == cs->ib[IB_MAIN].ring)
1007 return true;
1008
1009 return amdgpu_fence_wait((void *)fence, 0, false);
1010 }
1011
1012 static void amdgpu_cs_add_fence_dependency(struct radeon_winsys_cs *rws,
1013 struct pipe_fence_handle *pfence)
1014 {
1015 struct amdgpu_cs *acs = amdgpu_cs(rws);
1016 struct amdgpu_cs_context *cs = acs->csc;
1017 struct amdgpu_fence *fence = (struct amdgpu_fence*)pfence;
1018
1019 if (is_noop_fence_dependency(acs, fence))
1020 return;
1021
1022 unsigned idx = add_fence_dependency_entry(cs);
1023 amdgpu_fence_reference(&cs->fence_dependencies[idx],
1024 (struct pipe_fence_handle*)fence);
1025 }
1026
1027 static void amdgpu_add_bo_fence_dependencies(struct amdgpu_cs *acs,
1028 struct amdgpu_cs_buffer *buffer)
1029 {
1030 struct amdgpu_cs_context *cs = acs->csc;
1031 struct amdgpu_winsys_bo *bo = buffer->bo;
1032 unsigned new_num_fences = 0;
1033
1034 for (unsigned j = 0; j < bo->num_fences; ++j) {
1035 struct amdgpu_fence *bo_fence = (void *)bo->fences[j];
1036
1037 if (is_noop_fence_dependency(acs, bo_fence))
1038 continue;
1039
1040 amdgpu_fence_reference(&bo->fences[new_num_fences], bo->fences[j]);
1041 new_num_fences++;
1042
1043 if (!(buffer->usage & RADEON_USAGE_SYNCHRONIZED))
1044 continue;
1045
1046 unsigned idx = add_fence_dependency_entry(cs);
1047 amdgpu_fence_reference(&cs->fence_dependencies[idx],
1048 (struct pipe_fence_handle*)bo_fence);
1049 }
1050
1051 for (unsigned j = new_num_fences; j < bo->num_fences; ++j)
1052 amdgpu_fence_reference(&bo->fences[j], NULL);
1053
1054 bo->num_fences = new_num_fences;
1055 }
1056
1057 /* Add the given list of fences to the buffer's fence list.
1058 *
1059 * Must be called with the winsys bo_fence_lock held.
1060 */
1061 void amdgpu_add_fences(struct amdgpu_winsys_bo *bo,
1062 unsigned num_fences,
1063 struct pipe_fence_handle **fences)
1064 {
1065 if (bo->num_fences + num_fences > bo->max_fences) {
1066 unsigned new_max_fences = MAX2(bo->num_fences + num_fences, bo->max_fences * 2);
1067 struct pipe_fence_handle **new_fences =
1068 REALLOC(bo->fences,
1069 bo->num_fences * sizeof(*new_fences),
1070 new_max_fences * sizeof(*new_fences));
1071 if (likely(new_fences)) {
1072 bo->fences = new_fences;
1073 bo->max_fences = new_max_fences;
1074 } else {
1075 unsigned drop;
1076
1077 fprintf(stderr, "amdgpu_add_fences: allocation failure, dropping fence(s)\n");
1078 if (!bo->num_fences)
1079 return;
1080
1081 bo->num_fences--; /* prefer to keep the most recent fence if possible */
1082 amdgpu_fence_reference(&bo->fences[bo->num_fences], NULL);
1083
1084 drop = bo->num_fences + num_fences - bo->max_fences;
1085 num_fences -= drop;
1086 fences += drop;
1087 }
1088 }
1089
1090 for (unsigned i = 0; i < num_fences; ++i) {
1091 bo->fences[bo->num_fences] = NULL;
1092 amdgpu_fence_reference(&bo->fences[bo->num_fences], fences[i]);
1093 bo->num_fences++;
1094 }
1095 }
1096
1097 static void amdgpu_add_fence_dependencies_bo_list(struct amdgpu_cs *acs,
1098 struct pipe_fence_handle *fence,
1099 unsigned num_buffers,
1100 struct amdgpu_cs_buffer *buffers)
1101 {
1102 for (unsigned i = 0; i < num_buffers; i++) {
1103 struct amdgpu_cs_buffer *buffer = &buffers[i];
1104 struct amdgpu_winsys_bo *bo = buffer->bo;
1105
1106 amdgpu_add_bo_fence_dependencies(acs, buffer);
1107 p_atomic_inc(&bo->num_active_ioctls);
1108 amdgpu_add_fences(bo, 1, &fence);
1109 }
1110 }
1111
1112 /* Since the kernel driver doesn't synchronize execution between different
1113 * rings automatically, we have to add fence dependencies manually.
1114 */
1115 static void amdgpu_add_fence_dependencies_bo_lists(struct amdgpu_cs *acs)
1116 {
1117 struct amdgpu_cs_context *cs = acs->csc;
1118
1119 cs->num_fence_dependencies = 0;
1120
1121 amdgpu_add_fence_dependencies_bo_list(acs, cs->fence, cs->num_real_buffers, cs->real_buffers);
1122 amdgpu_add_fence_dependencies_bo_list(acs, cs->fence, cs->num_slab_buffers, cs->slab_buffers);
1123 amdgpu_add_fence_dependencies_bo_list(acs, cs->fence, cs->num_sparse_buffers, cs->sparse_buffers);
1124 }
1125
1126 /* Add backing of sparse buffers to the buffer list.
1127 *
1128 * This is done late, during submission, to keep the buffer list short before
1129 * submit, and to avoid managing fences for the backing buffers.
1130 */
1131 static bool amdgpu_add_sparse_backing_buffers(struct amdgpu_cs_context *cs)
1132 {
1133 for (unsigned i = 0; i < cs->num_sparse_buffers; ++i) {
1134 struct amdgpu_cs_buffer *buffer = &cs->sparse_buffers[i];
1135 struct amdgpu_winsys_bo *bo = buffer->bo;
1136
1137 mtx_lock(&bo->u.sparse.commit_lock);
1138
1139 list_for_each_entry(struct amdgpu_sparse_backing, backing, &bo->u.sparse.backing, list) {
1140 /* We can directly add the buffer here, because we know that each
1141 * backing buffer occurs only once.
1142 */
1143 int idx = amdgpu_do_add_real_buffer(cs, backing->bo);
1144 if (idx < 0) {
1145 fprintf(stderr, "%s: failed to add buffer\n", __FUNCTION__);
1146 mtx_unlock(&bo->u.sparse.commit_lock);
1147 return false;
1148 }
1149
1150 cs->real_buffers[idx].usage = buffer->usage & ~RADEON_USAGE_SYNCHRONIZED;
1151 cs->real_buffers[idx].u.real.priority_usage = buffer->u.real.priority_usage;
1152 p_atomic_inc(&backing->bo->num_active_ioctls);
1153 }
1154
1155 mtx_unlock(&bo->u.sparse.commit_lock);
1156 }
1157
1158 return true;
1159 }
1160
1161 void amdgpu_cs_submit_ib(void *job, int thread_index)
1162 {
1163 struct amdgpu_cs *acs = (struct amdgpu_cs*)job;
1164 struct amdgpu_winsys *ws = acs->ctx->ws;
1165 struct amdgpu_cs_context *cs = acs->cst;
1166 int i, r;
1167 amdgpu_bo_list_handle bo_list = NULL;
1168 uint64_t seq_no = 0;
1169 bool has_user_fence = amdgpu_cs_has_user_fence(cs);
1170
1171 /* Create the buffer list.
1172 * Use a buffer list containing all allocated buffers if requested.
1173 */
1174 if (ws->debug_all_bos) {
1175 struct amdgpu_winsys_bo *bo;
1176 amdgpu_bo_handle *handles;
1177 unsigned num = 0;
1178
1179 mtx_lock(&ws->global_bo_list_lock);
1180
1181 handles = malloc(sizeof(handles[0]) * ws->num_buffers);
1182 if (!handles) {
1183 mtx_unlock(&ws->global_bo_list_lock);
1184 amdgpu_cs_context_cleanup(cs);
1185 cs->error_code = -ENOMEM;
1186 return;
1187 }
1188
1189 LIST_FOR_EACH_ENTRY(bo, &ws->global_bo_list, u.real.global_list_item) {
1190 assert(num < ws->num_buffers);
1191 handles[num++] = bo->bo;
1192 }
1193
1194 r = amdgpu_bo_list_create(ws->dev, ws->num_buffers,
1195 handles, NULL, &bo_list);
1196 free(handles);
1197 mtx_unlock(&ws->global_bo_list_lock);
1198 } else {
1199 unsigned num_handles;
1200
1201 if (!amdgpu_add_sparse_backing_buffers(cs)) {
1202 r = -ENOMEM;
1203 goto bo_list_error;
1204 }
1205
1206 if (cs->max_real_submit < cs->num_real_buffers) {
1207 FREE(cs->handles);
1208 FREE(cs->flags);
1209
1210 cs->handles = MALLOC(sizeof(*cs->handles) * cs->num_real_buffers);
1211 cs->flags = MALLOC(sizeof(*cs->flags) * cs->num_real_buffers);
1212
1213 if (!cs->handles || !cs->flags) {
1214 cs->max_real_submit = 0;
1215 r = -ENOMEM;
1216 goto bo_list_error;
1217 }
1218 }
1219
1220 num_handles = 0;
1221 for (i = 0; i < cs->num_real_buffers; ++i) {
1222 struct amdgpu_cs_buffer *buffer = &cs->real_buffers[i];
1223
1224 if (buffer->bo->is_local)
1225 continue;
1226
1227 assert(buffer->u.real.priority_usage != 0);
1228
1229 cs->handles[num_handles] = buffer->bo->bo;
1230 cs->flags[num_handles] = (util_last_bit64(buffer->u.real.priority_usage) - 1) / 4;
1231 ++num_handles;
1232 }
1233
1234 if (acs->ring_type == RING_GFX)
1235 ws->gfx_bo_list_counter += cs->num_real_buffers;
1236
1237 if (num_handles) {
1238 r = amdgpu_bo_list_create(ws->dev, num_handles,
1239 cs->handles, cs->flags, &bo_list);
1240 } else {
1241 r = 0;
1242 }
1243 }
1244 bo_list_error:
1245
1246 if (r) {
1247 fprintf(stderr, "amdgpu: buffer list creation failed (%d)\n", r);
1248 amdgpu_fence_signalled(cs->fence);
1249 cs->error_code = r;
1250 goto cleanup;
1251 }
1252
1253 if (acs->ctx->num_rejected_cs) {
1254 r = -ECANCELED;
1255 } else {
1256 struct drm_amdgpu_cs_chunk chunks[4];
1257 unsigned num_chunks = 0;
1258
1259 /* Convert from dwords to bytes. */
1260 cs->ib[IB_MAIN].ib_bytes *= 4;
1261
1262 /* IB */
1263 chunks[num_chunks].chunk_id = AMDGPU_CHUNK_ID_IB;
1264 chunks[num_chunks].length_dw = sizeof(struct drm_amdgpu_cs_chunk_ib) / 4;
1265 chunks[num_chunks].chunk_data = (uintptr_t)&cs->ib[IB_MAIN];
1266 num_chunks++;
1267
1268 /* Fence */
1269 if (has_user_fence) {
1270 chunks[num_chunks].chunk_id = AMDGPU_CHUNK_ID_FENCE;
1271 chunks[num_chunks].length_dw = sizeof(struct drm_amdgpu_cs_chunk_fence) / 4;
1272 chunks[num_chunks].chunk_data = (uintptr_t)&acs->fence_chunk;
1273 num_chunks++;
1274 }
1275
1276 /* Dependencies */
1277 unsigned num_dependencies = cs->num_fence_dependencies;
1278 unsigned num_syncobj_dependencies = 0;
1279
1280 if (num_dependencies) {
1281 struct drm_amdgpu_cs_chunk_dep *dep_chunk =
1282 alloca(num_dependencies * sizeof(*dep_chunk));
1283 unsigned num = 0;
1284
1285 for (unsigned i = 0; i < num_dependencies; i++) {
1286 struct amdgpu_fence *fence =
1287 (struct amdgpu_fence*)cs->fence_dependencies[i];
1288
1289 if (amdgpu_fence_is_syncobj(fence)) {
1290 num_syncobj_dependencies++;
1291 continue;
1292 }
1293
1294 assert(!fence->submission_in_progress);
1295 amdgpu_cs_chunk_fence_to_dep(&fence->fence, &dep_chunk[num++]);
1296 }
1297
1298 chunks[num_chunks].chunk_id = AMDGPU_CHUNK_ID_DEPENDENCIES;
1299 chunks[num_chunks].length_dw = sizeof(dep_chunk[0]) / 4 * num;
1300 chunks[num_chunks].chunk_data = (uintptr_t)dep_chunk;
1301 num_chunks++;
1302 }
1303
1304 /* Syncobj dependencies. */
1305 if (num_syncobj_dependencies) {
1306 struct drm_amdgpu_cs_chunk_sem *sem_chunk =
1307 alloca(num_syncobj_dependencies * sizeof(sem_chunk[0]));
1308 unsigned num = 0;
1309
1310 for (unsigned i = 0; i < num_dependencies; i++) {
1311 struct amdgpu_fence *fence =
1312 (struct amdgpu_fence*)cs->fence_dependencies[i];
1313
1314 if (!amdgpu_fence_is_syncobj(fence))
1315 continue;
1316
1317 assert(!fence->submission_in_progress);
1318 sem_chunk[num++].handle = fence->syncobj;
1319 }
1320
1321 chunks[num_chunks].chunk_id = AMDGPU_CHUNK_ID_SYNCOBJ_IN;
1322 chunks[num_chunks].length_dw = sizeof(sem_chunk[0]) / 4 * num;
1323 chunks[num_chunks].chunk_data = (uintptr_t)sem_chunk;
1324 num_chunks++;
1325 }
1326
1327 assert(num_chunks <= ARRAY_SIZE(chunks));
1328
1329 r = amdgpu_cs_submit_raw(ws->dev, acs->ctx->ctx, bo_list,
1330 num_chunks, chunks, &seq_no);
1331 }
1332
1333 cs->error_code = r;
1334 if (r) {
1335 if (r == -ENOMEM)
1336 fprintf(stderr, "amdgpu: Not enough memory for command submission.\n");
1337 else if (r == -ECANCELED)
1338 fprintf(stderr, "amdgpu: The CS has been cancelled because the context is lost.\n");
1339 else
1340 fprintf(stderr, "amdgpu: The CS has been rejected, "
1341 "see dmesg for more information (%i).\n", r);
1342
1343 amdgpu_fence_signalled(cs->fence);
1344
1345 acs->ctx->num_rejected_cs++;
1346 ws->num_total_rejected_cs++;
1347 } else {
1348 /* Success. */
1349 uint64_t *user_fence = NULL;
1350
1351 if (has_user_fence)
1352 user_fence = acs->ctx->user_fence_cpu_address_base + acs->ring_type;
1353 amdgpu_fence_submitted(cs->fence, seq_no, user_fence);
1354 }
1355
1356 /* Cleanup. */
1357 if (bo_list)
1358 amdgpu_bo_list_destroy(bo_list);
1359
1360 cleanup:
1361 for (i = 0; i < cs->num_real_buffers; i++)
1362 p_atomic_dec(&cs->real_buffers[i].bo->num_active_ioctls);
1363 for (i = 0; i < cs->num_slab_buffers; i++)
1364 p_atomic_dec(&cs->slab_buffers[i].bo->num_active_ioctls);
1365 for (i = 0; i < cs->num_sparse_buffers; i++)
1366 p_atomic_dec(&cs->sparse_buffers[i].bo->num_active_ioctls);
1367
1368 amdgpu_cs_context_cleanup(cs);
1369 }
1370
1371 /* Make sure the previous submission is completed. */
1372 void amdgpu_cs_sync_flush(struct radeon_winsys_cs *rcs)
1373 {
1374 struct amdgpu_cs *cs = amdgpu_cs(rcs);
1375
1376 /* Wait for any pending ioctl of this CS to complete. */
1377 util_queue_fence_wait(&cs->flush_completed);
1378 }
1379
1380 static int amdgpu_cs_flush(struct radeon_winsys_cs *rcs,
1381 unsigned flags,
1382 struct pipe_fence_handle **fence)
1383 {
1384 struct amdgpu_cs *cs = amdgpu_cs(rcs);
1385 struct amdgpu_winsys *ws = cs->ctx->ws;
1386 int error_code = 0;
1387
1388 rcs->current.max_dw += amdgpu_cs_epilog_dws(cs->ring_type);
1389
1390 switch (cs->ring_type) {
1391 case RING_DMA:
1392 /* pad DMA ring to 8 DWs */
1393 if (ws->info.chip_class <= SI) {
1394 while (rcs->current.cdw & 7)
1395 radeon_emit(rcs, 0xf0000000); /* NOP packet */
1396 } else {
1397 while (rcs->current.cdw & 7)
1398 radeon_emit(rcs, 0x00000000); /* NOP packet */
1399 }
1400 break;
1401 case RING_GFX:
1402 /* pad GFX ring to 8 DWs to meet CP fetch alignment requirements */
1403 if (ws->info.gfx_ib_pad_with_type2) {
1404 while (rcs->current.cdw & 7)
1405 radeon_emit(rcs, 0x80000000); /* type2 nop packet */
1406 } else {
1407 while (rcs->current.cdw & 7)
1408 radeon_emit(rcs, 0xffff1000); /* type3 nop packet */
1409 }
1410 break;
1411 case RING_UVD:
1412 while (rcs->current.cdw & 15)
1413 radeon_emit(rcs, 0x80000000); /* type2 nop packet */
1414 break;
1415 case RING_VCN_DEC:
1416 while (rcs->current.cdw & 15)
1417 radeon_emit(rcs, 0x81ff); /* nop packet */
1418 break;
1419 default:
1420 break;
1421 }
1422
1423 if (rcs->current.cdw > rcs->current.max_dw) {
1424 fprintf(stderr, "amdgpu: command stream overflowed\n");
1425 }
1426
1427 /* If the CS is not empty or overflowed.... */
1428 if (likely(radeon_emitted(&cs->main.base, 0) &&
1429 cs->main.base.current.cdw <= cs->main.base.current.max_dw &&
1430 !debug_get_option_noop())) {
1431 struct amdgpu_cs_context *cur = cs->csc;
1432
1433 /* Set IB sizes. */
1434 amdgpu_ib_finalize(&cs->main);
1435
1436 /* Create a fence. */
1437 amdgpu_fence_reference(&cur->fence, NULL);
1438 if (cs->next_fence) {
1439 /* just move the reference */
1440 cur->fence = cs->next_fence;
1441 cs->next_fence = NULL;
1442 } else {
1443 cur->fence = amdgpu_fence_create(cs->ctx,
1444 cur->ib[IB_MAIN].ip_type,
1445 cur->ib[IB_MAIN].ip_instance,
1446 cur->ib[IB_MAIN].ring);
1447 }
1448 if (fence)
1449 amdgpu_fence_reference(fence, cur->fence);
1450
1451 amdgpu_cs_sync_flush(rcs);
1452
1453 /* Prepare buffers.
1454 *
1455 * This fence must be held until the submission is queued to ensure
1456 * that the order of fence dependency updates matches the order of
1457 * submissions.
1458 */
1459 mtx_lock(&ws->bo_fence_lock);
1460 amdgpu_add_fence_dependencies_bo_lists(cs);
1461
1462 /* Swap command streams. "cst" is going to be submitted. */
1463 cs->csc = cs->cst;
1464 cs->cst = cur;
1465
1466 /* Submit. */
1467 util_queue_add_job(&ws->cs_queue, cs, &cs->flush_completed,
1468 amdgpu_cs_submit_ib, NULL);
1469 /* The submission has been queued, unlock the fence now. */
1470 mtx_unlock(&ws->bo_fence_lock);
1471
1472 if (!(flags & RADEON_FLUSH_ASYNC)) {
1473 amdgpu_cs_sync_flush(rcs);
1474 error_code = cur->error_code;
1475 }
1476 } else {
1477 amdgpu_cs_context_cleanup(cs->csc);
1478 }
1479
1480 amdgpu_get_new_ib(&ws->base, cs, IB_MAIN);
1481
1482 cs->main.base.used_gart = 0;
1483 cs->main.base.used_vram = 0;
1484
1485 if (cs->ring_type == RING_GFX)
1486 ws->num_gfx_IBs++;
1487 else if (cs->ring_type == RING_DMA)
1488 ws->num_sdma_IBs++;
1489
1490 return error_code;
1491 }
1492
1493 static void amdgpu_cs_destroy(struct radeon_winsys_cs *rcs)
1494 {
1495 struct amdgpu_cs *cs = amdgpu_cs(rcs);
1496
1497 amdgpu_cs_sync_flush(rcs);
1498 util_queue_fence_destroy(&cs->flush_completed);
1499 p_atomic_dec(&cs->ctx->ws->num_cs);
1500 pb_reference(&cs->main.big_ib_buffer, NULL);
1501 FREE(cs->main.base.prev);
1502 amdgpu_destroy_cs_context(&cs->csc1);
1503 amdgpu_destroy_cs_context(&cs->csc2);
1504 amdgpu_fence_reference(&cs->next_fence, NULL);
1505 FREE(cs);
1506 }
1507
1508 static bool amdgpu_bo_is_referenced(struct radeon_winsys_cs *rcs,
1509 struct pb_buffer *_buf,
1510 enum radeon_bo_usage usage)
1511 {
1512 struct amdgpu_cs *cs = amdgpu_cs(rcs);
1513 struct amdgpu_winsys_bo *bo = (struct amdgpu_winsys_bo*)_buf;
1514
1515 return amdgpu_bo_is_referenced_by_cs_with_usage(cs, bo, usage);
1516 }
1517
1518 void amdgpu_cs_init_functions(struct amdgpu_winsys *ws)
1519 {
1520 ws->base.ctx_create = amdgpu_ctx_create;
1521 ws->base.ctx_destroy = amdgpu_ctx_destroy;
1522 ws->base.ctx_query_reset_status = amdgpu_ctx_query_reset_status;
1523 ws->base.cs_create = amdgpu_cs_create;
1524 ws->base.cs_destroy = amdgpu_cs_destroy;
1525 ws->base.cs_add_buffer = amdgpu_cs_add_buffer;
1526 ws->base.cs_validate = amdgpu_cs_validate;
1527 ws->base.cs_check_space = amdgpu_cs_check_space;
1528 ws->base.cs_get_buffer_list = amdgpu_cs_get_buffer_list;
1529 ws->base.cs_flush = amdgpu_cs_flush;
1530 ws->base.cs_get_next_fence = amdgpu_cs_get_next_fence;
1531 ws->base.cs_is_buffer_referenced = amdgpu_bo_is_referenced;
1532 ws->base.cs_sync_flush = amdgpu_cs_sync_flush;
1533 ws->base.cs_add_fence_dependency = amdgpu_cs_add_fence_dependency;
1534 ws->base.fence_wait = amdgpu_fence_wait_rel_timeout;
1535 ws->base.fence_reference = amdgpu_fence_reference;
1536 ws->base.fence_import_sync_file = amdgpu_fence_import_sync_file;
1537 ws->base.fence_export_sync_file = amdgpu_fence_export_sync_file;
1538 }