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