iris: add identifier BO
[mesa.git] / src / gallium / drivers / iris / iris_batch.c
1 /*
2 * Copyright © 2017 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included
12 * in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 * DEALINGS IN THE SOFTWARE.
21 */
22
23 /**
24 * @file iris_batch.c
25 *
26 * Batchbuffer and command submission module.
27 *
28 * Every API draw call results in a number of GPU commands, which we
29 * collect into a "batch buffer". Typically, many draw calls are grouped
30 * into a single batch to amortize command submission overhead.
31 *
32 * We submit batches to the kernel using the I915_GEM_EXECBUFFER2 ioctl.
33 * One critical piece of data is the "validation list", which contains a
34 * list of the buffer objects (BOs) which the commands in the GPU need.
35 * The kernel will make sure these are resident and pinned at the correct
36 * virtual memory address before executing our batch. If a BO is not in
37 * the validation list, it effectively does not exist, so take care.
38 */
39
40 #include "iris_batch.h"
41 #include "iris_bufmgr.h"
42 #include "iris_context.h"
43 #include "iris_fence.h"
44
45 #include "drm-uapi/i915_drm.h"
46
47 #include "common/gen_aux_map.h"
48 #include "intel/common/gen_gem.h"
49 #include "util/hash_table.h"
50 #include "util/set.h"
51 #include "util/u_upload_mgr.h"
52 #include "main/macros.h"
53
54 #include <errno.h>
55 #include <xf86drm.h>
56
57 #if HAVE_VALGRIND
58 #include <valgrind.h>
59 #include <memcheck.h>
60 #define VG(x) x
61 #else
62 #define VG(x)
63 #endif
64
65 #define FILE_DEBUG_FLAG DEBUG_BUFMGR
66
67 static void
68 iris_batch_reset(struct iris_batch *batch);
69
70 static unsigned
71 num_fences(struct iris_batch *batch)
72 {
73 return util_dynarray_num_elements(&batch->exec_fences,
74 struct drm_i915_gem_exec_fence);
75 }
76
77 /**
78 * Debugging code to dump the fence list, used by INTEL_DEBUG=submit.
79 */
80 static void
81 dump_fence_list(struct iris_batch *batch)
82 {
83 fprintf(stderr, "Fence list (length %u): ", num_fences(batch));
84
85 util_dynarray_foreach(&batch->exec_fences,
86 struct drm_i915_gem_exec_fence, f) {
87 fprintf(stderr, "%s%u%s ",
88 (f->flags & I915_EXEC_FENCE_WAIT) ? "..." : "",
89 f->handle,
90 (f->flags & I915_EXEC_FENCE_SIGNAL) ? "!" : "");
91 }
92
93 fprintf(stderr, "\n");
94 }
95
96 /**
97 * Debugging code to dump the validation list, used by INTEL_DEBUG=submit.
98 */
99 static void
100 dump_validation_list(struct iris_batch *batch)
101 {
102 fprintf(stderr, "Validation list (length %d):\n", batch->exec_count);
103
104 for (int i = 0; i < batch->exec_count; i++) {
105 uint64_t flags = batch->validation_list[i].flags;
106 assert(batch->validation_list[i].handle ==
107 batch->exec_bos[i]->gem_handle);
108 fprintf(stderr, "[%2d]: %2d %-14s @ 0x%016llx (%"PRIu64"B)\t %2d refs %s\n",
109 i,
110 batch->validation_list[i].handle,
111 batch->exec_bos[i]->name,
112 batch->validation_list[i].offset,
113 batch->exec_bos[i]->size,
114 batch->exec_bos[i]->refcount,
115 (flags & EXEC_OBJECT_WRITE) ? " (write)" : "");
116 }
117 }
118
119 /**
120 * Return BO information to the batch decoder (for debugging).
121 */
122 static struct gen_batch_decode_bo
123 decode_get_bo(void *v_batch, bool ppgtt, uint64_t address)
124 {
125 struct iris_batch *batch = v_batch;
126
127 assert(ppgtt);
128
129 for (int i = 0; i < batch->exec_count; i++) {
130 struct iris_bo *bo = batch->exec_bos[i];
131 /* The decoder zeroes out the top 16 bits, so we need to as well */
132 uint64_t bo_address = bo->gtt_offset & (~0ull >> 16);
133
134 if (address >= bo_address && address < bo_address + bo->size) {
135 return (struct gen_batch_decode_bo) {
136 .addr = address,
137 .size = bo->size,
138 .map = iris_bo_map(batch->dbg, bo, MAP_READ) +
139 (address - bo_address),
140 };
141 }
142 }
143
144 return (struct gen_batch_decode_bo) { };
145 }
146
147 static unsigned
148 decode_get_state_size(void *v_batch,
149 uint64_t address,
150 UNUSED uint64_t base_address)
151 {
152 struct iris_batch *batch = v_batch;
153 unsigned size = (uintptr_t)
154 _mesa_hash_table_u64_search(batch->state_sizes, address);
155
156 return size;
157 }
158
159 /**
160 * Decode the current batch.
161 */
162 static void
163 decode_batch(struct iris_batch *batch)
164 {
165 void *map = iris_bo_map(batch->dbg, batch->exec_bos[0], MAP_READ);
166 gen_print_batch(&batch->decoder, map, batch->primary_batch_size,
167 batch->exec_bos[0]->gtt_offset, false);
168 }
169
170 void
171 iris_init_batch(struct iris_context *ice,
172 enum iris_batch_name name,
173 int priority)
174 {
175 struct iris_batch *batch = &ice->batches[name];
176 struct iris_screen *screen = (void *) ice->ctx.screen;
177
178 batch->screen = screen;
179 batch->dbg = &ice->dbg;
180 batch->reset = &ice->reset;
181 batch->state_sizes = ice->state.sizes;
182 batch->name = name;
183
184 batch->seqno.uploader =
185 u_upload_create(&ice->ctx, 4096, PIPE_BIND_CUSTOM,
186 PIPE_USAGE_STAGING, 0);
187 iris_seqno_init(batch);
188
189 batch->hw_ctx_id = iris_create_hw_context(screen->bufmgr);
190 assert(batch->hw_ctx_id);
191
192 iris_hw_context_set_priority(screen->bufmgr, batch->hw_ctx_id, priority);
193
194 util_dynarray_init(&batch->exec_fences, ralloc_context(NULL));
195 util_dynarray_init(&batch->syncobjs, ralloc_context(NULL));
196
197 batch->exec_count = 0;
198 batch->exec_array_size = 100;
199 batch->exec_bos =
200 malloc(batch->exec_array_size * sizeof(batch->exec_bos[0]));
201 batch->validation_list =
202 malloc(batch->exec_array_size * sizeof(batch->validation_list[0]));
203
204 batch->cache.render = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
205 _mesa_key_pointer_equal);
206 batch->cache.depth = _mesa_set_create(NULL, _mesa_hash_pointer,
207 _mesa_key_pointer_equal);
208
209 memset(batch->other_batches, 0, sizeof(batch->other_batches));
210
211 for (int i = 0, j = 0; i < IRIS_BATCH_COUNT; i++) {
212 if (i != name)
213 batch->other_batches[j++] = &ice->batches[i];
214 }
215
216 if (unlikely(INTEL_DEBUG)) {
217 const unsigned decode_flags =
218 GEN_BATCH_DECODE_FULL |
219 ((INTEL_DEBUG & DEBUG_COLOR) ? GEN_BATCH_DECODE_IN_COLOR : 0) |
220 GEN_BATCH_DECODE_OFFSETS |
221 GEN_BATCH_DECODE_FLOATS;
222
223 gen_batch_decode_ctx_init(&batch->decoder, &screen->devinfo,
224 stderr, decode_flags, NULL,
225 decode_get_bo, decode_get_state_size, batch);
226 batch->decoder.dynamic_base = IRIS_MEMZONE_DYNAMIC_START;
227 batch->decoder.instruction_base = IRIS_MEMZONE_SHADER_START;
228 batch->decoder.max_vbo_decoded_lines = 32;
229 }
230
231 iris_batch_reset(batch);
232 }
233
234 static struct drm_i915_gem_exec_object2 *
235 find_validation_entry(struct iris_batch *batch, struct iris_bo *bo)
236 {
237 unsigned index = READ_ONCE(bo->index);
238
239 if (index < batch->exec_count && batch->exec_bos[index] == bo)
240 return &batch->validation_list[index];
241
242 /* May have been shared between multiple active batches */
243 for (index = 0; index < batch->exec_count; index++) {
244 if (batch->exec_bos[index] == bo)
245 return &batch->validation_list[index];
246 }
247
248 return NULL;
249 }
250
251 static void
252 ensure_exec_obj_space(struct iris_batch *batch, uint32_t count)
253 {
254 while (batch->exec_count + count > batch->exec_array_size) {
255 batch->exec_array_size *= 2;
256 batch->exec_bos =
257 realloc(batch->exec_bos,
258 batch->exec_array_size * sizeof(batch->exec_bos[0]));
259 batch->validation_list =
260 realloc(batch->validation_list,
261 batch->exec_array_size * sizeof(batch->validation_list[0]));
262 }
263 }
264
265 /**
266 * Add a buffer to the current batch's validation list.
267 *
268 * You must call this on any BO you wish to use in this batch, to ensure
269 * that it's resident when the GPU commands execute.
270 */
271 void
272 iris_use_pinned_bo(struct iris_batch *batch,
273 struct iris_bo *bo,
274 bool writable)
275 {
276 assert(bo->kflags & EXEC_OBJECT_PINNED);
277
278 /* Never mark the workaround BO with EXEC_OBJECT_WRITE. We don't care
279 * about the order of any writes to that buffer, and marking it writable
280 * would introduce data dependencies between multiple batches which share
281 * the buffer.
282 */
283 if (bo == batch->screen->workaround_bo)
284 writable = false;
285
286 struct drm_i915_gem_exec_object2 *existing_entry =
287 find_validation_entry(batch, bo);
288
289 if (existing_entry) {
290 /* The BO is already in the validation list; mark it writable */
291 if (writable)
292 existing_entry->flags |= EXEC_OBJECT_WRITE;
293
294 return;
295 }
296
297 if (bo != batch->bo) {
298 /* This is the first time our batch has seen this BO. Before we use it,
299 * we may need to flush and synchronize with other batches.
300 */
301 for (int b = 0; b < ARRAY_SIZE(batch->other_batches); b++) {
302 struct drm_i915_gem_exec_object2 *other_entry =
303 find_validation_entry(batch->other_batches[b], bo);
304
305 /* If the buffer is referenced by another batch, and either batch
306 * intends to write it, then flush the other batch and synchronize.
307 *
308 * Consider these cases:
309 *
310 * 1. They read, we read => No synchronization required.
311 * 2. They read, we write => Synchronize (they need the old value)
312 * 3. They write, we read => Synchronize (we need their new value)
313 * 4. They write, we write => Synchronize (order writes)
314 *
315 * The read/read case is very common, as multiple batches usually
316 * share a streaming state buffer or shader assembly buffer, and
317 * we want to avoid synchronizing in this case.
318 */
319 if (other_entry &&
320 ((other_entry->flags & EXEC_OBJECT_WRITE) || writable)) {
321 iris_batch_flush(batch->other_batches[b]);
322 iris_batch_add_syncobj(batch,
323 batch->other_batches[b]->last_seqno->syncobj,
324 I915_EXEC_FENCE_WAIT);
325 }
326 }
327 }
328
329 /* Now, take a reference and add it to the validation list. */
330 iris_bo_reference(bo);
331
332 ensure_exec_obj_space(batch, 1);
333
334 batch->validation_list[batch->exec_count] =
335 (struct drm_i915_gem_exec_object2) {
336 .handle = bo->gem_handle,
337 .offset = bo->gtt_offset,
338 .flags = bo->kflags | (writable ? EXEC_OBJECT_WRITE : 0),
339 };
340
341 bo->index = batch->exec_count;
342 batch->exec_bos[batch->exec_count] = bo;
343 batch->aperture_space += bo->size;
344
345 batch->exec_count++;
346 }
347
348 static void
349 create_batch(struct iris_batch *batch)
350 {
351 struct iris_screen *screen = batch->screen;
352 struct iris_bufmgr *bufmgr = screen->bufmgr;
353
354 batch->bo = iris_bo_alloc(bufmgr, "command buffer",
355 BATCH_SZ + BATCH_RESERVED, IRIS_MEMZONE_OTHER);
356 batch->bo->kflags |= EXEC_OBJECT_CAPTURE;
357 batch->map = iris_bo_map(NULL, batch->bo, MAP_READ | MAP_WRITE);
358 batch->map_next = batch->map;
359
360 iris_use_pinned_bo(batch, batch->bo, false);
361 }
362
363 static void
364 iris_batch_maybe_noop(struct iris_batch *batch)
365 {
366 /* We only insert the NOOP at the beginning of the batch. */
367 assert(iris_batch_bytes_used(batch) == 0);
368
369 if (batch->noop_enabled) {
370 /* Emit MI_BATCH_BUFFER_END to prevent any further command to be
371 * executed.
372 */
373 uint32_t *map = batch->map_next;
374
375 map[0] = (0xA << 23);
376
377 batch->map_next += 4;
378 }
379 }
380
381 static void
382 iris_batch_reset(struct iris_batch *batch)
383 {
384 struct iris_screen *screen = batch->screen;
385
386 iris_bo_unreference(batch->bo);
387 batch->primary_batch_size = 0;
388 batch->total_chained_batch_size = 0;
389 batch->contains_draw = false;
390 batch->decoder.surface_base = batch->last_surface_base_address;
391
392 create_batch(batch);
393 assert(batch->bo->index == 0);
394
395 struct iris_syncobj *syncobj = iris_create_syncobj(screen);
396 iris_batch_add_syncobj(batch, syncobj, I915_EXEC_FENCE_SIGNAL);
397 iris_syncobj_reference(screen, &syncobj, NULL);
398
399 iris_cache_sets_clear(batch);
400
401 /* Always add the workaround BO, it contains a driver identifier at the
402 * beginning quite helpful to debug error states.
403 */
404 iris_use_pinned_bo(batch, screen->workaround_bo, false);
405
406 iris_batch_maybe_noop(batch);
407 }
408
409 void
410 iris_batch_free(struct iris_batch *batch)
411 {
412 struct iris_screen *screen = batch->screen;
413 struct iris_bufmgr *bufmgr = screen->bufmgr;
414
415 for (int i = 0; i < batch->exec_count; i++) {
416 iris_bo_unreference(batch->exec_bos[i]);
417 }
418 free(batch->exec_bos);
419 free(batch->validation_list);
420
421 ralloc_free(batch->exec_fences.mem_ctx);
422
423 pipe_resource_reference(&batch->seqno.ref.res, NULL);
424
425 util_dynarray_foreach(&batch->syncobjs, struct iris_syncobj *, s)
426 iris_syncobj_reference(screen, s, NULL);
427 ralloc_free(batch->syncobjs.mem_ctx);
428
429 iris_seqno_reference(batch->screen, &batch->last_seqno, NULL);
430 u_upload_destroy(batch->seqno.uploader);
431
432 iris_bo_unreference(batch->bo);
433 batch->bo = NULL;
434 batch->map = NULL;
435 batch->map_next = NULL;
436
437 iris_destroy_hw_context(bufmgr, batch->hw_ctx_id);
438
439 _mesa_hash_table_destroy(batch->cache.render, NULL);
440 _mesa_set_destroy(batch->cache.depth, NULL);
441
442 if (unlikely(INTEL_DEBUG))
443 gen_batch_decode_ctx_finish(&batch->decoder);
444 }
445
446 /**
447 * If we've chained to a secondary batch, or are getting near to the end,
448 * then flush. This should only be called between draws.
449 */
450 void
451 iris_batch_maybe_flush(struct iris_batch *batch, unsigned estimate)
452 {
453 if (batch->bo != batch->exec_bos[0] ||
454 iris_batch_bytes_used(batch) + estimate >= BATCH_SZ) {
455 iris_batch_flush(batch);
456 }
457 }
458
459 static void
460 record_batch_sizes(struct iris_batch *batch)
461 {
462 unsigned batch_size = iris_batch_bytes_used(batch);
463
464 VG(VALGRIND_CHECK_MEM_IS_DEFINED(batch->map, batch_size));
465
466 if (batch->bo == batch->exec_bos[0])
467 batch->primary_batch_size = batch_size;
468
469 batch->total_chained_batch_size += batch_size;
470 }
471
472 void
473 iris_chain_to_new_batch(struct iris_batch *batch)
474 {
475 uint32_t *cmd = batch->map_next;
476 uint64_t *addr = batch->map_next + 4;
477 batch->map_next += 12;
478
479 record_batch_sizes(batch);
480
481 /* No longer held by batch->bo, still held by validation list */
482 iris_bo_unreference(batch->bo);
483 create_batch(batch);
484
485 /* Emit MI_BATCH_BUFFER_START to chain to another batch. */
486 *cmd = (0x31 << 23) | (1 << 8) | (3 - 2);
487 *addr = batch->bo->gtt_offset;
488 }
489
490 static void
491 add_aux_map_bos_to_batch(struct iris_batch *batch)
492 {
493 void *aux_map_ctx = iris_bufmgr_get_aux_map_context(batch->screen->bufmgr);
494 if (!aux_map_ctx)
495 return;
496
497 uint32_t count = gen_aux_map_get_num_buffers(aux_map_ctx);
498 ensure_exec_obj_space(batch, count);
499 gen_aux_map_fill_bos(aux_map_ctx,
500 (void**)&batch->exec_bos[batch->exec_count], count);
501 for (uint32_t i = 0; i < count; i++) {
502 struct iris_bo *bo = batch->exec_bos[batch->exec_count];
503 iris_bo_reference(bo);
504 batch->validation_list[batch->exec_count] =
505 (struct drm_i915_gem_exec_object2) {
506 .handle = bo->gem_handle,
507 .offset = bo->gtt_offset,
508 .flags = bo->kflags,
509 };
510 batch->aperture_space += bo->size;
511 batch->exec_count++;
512 }
513 }
514
515 static void
516 finish_seqno(struct iris_batch *batch)
517 {
518 struct iris_seqno *sq = iris_seqno_new(batch, IRIS_SEQNO_END);
519 if (!sq)
520 return;
521
522 iris_seqno_reference(batch->screen, &batch->last_seqno, sq);
523 iris_seqno_reference(batch->screen, &sq, NULL);
524 }
525
526 /**
527 * Terminate a batch with MI_BATCH_BUFFER_END.
528 */
529 static void
530 iris_finish_batch(struct iris_batch *batch)
531 {
532 add_aux_map_bos_to_batch(batch);
533
534 finish_seqno(batch);
535
536 /* Emit MI_BATCH_BUFFER_END to finish our batch. */
537 uint32_t *map = batch->map_next;
538
539 map[0] = (0xA << 23);
540
541 batch->map_next += 4;
542
543 record_batch_sizes(batch);
544 }
545
546 /**
547 * Replace our current GEM context with a new one (in case it got banned).
548 */
549 static bool
550 replace_hw_ctx(struct iris_batch *batch)
551 {
552 struct iris_screen *screen = batch->screen;
553 struct iris_bufmgr *bufmgr = screen->bufmgr;
554
555 uint32_t new_ctx = iris_clone_hw_context(bufmgr, batch->hw_ctx_id);
556 if (!new_ctx)
557 return false;
558
559 iris_destroy_hw_context(bufmgr, batch->hw_ctx_id);
560 batch->hw_ctx_id = new_ctx;
561
562 /* Notify the context that state must be re-initialized. */
563 iris_lost_context_state(batch);
564
565 return true;
566 }
567
568 enum pipe_reset_status
569 iris_batch_check_for_reset(struct iris_batch *batch)
570 {
571 struct iris_screen *screen = batch->screen;
572 enum pipe_reset_status status = PIPE_NO_RESET;
573 struct drm_i915_reset_stats stats = { .ctx_id = batch->hw_ctx_id };
574
575 if (drmIoctl(screen->fd, DRM_IOCTL_I915_GET_RESET_STATS, &stats))
576 DBG("DRM_IOCTL_I915_GET_RESET_STATS failed: %s\n", strerror(errno));
577
578 if (stats.batch_active != 0) {
579 /* A reset was observed while a batch from this hardware context was
580 * executing. Assume that this context was at fault.
581 */
582 status = PIPE_GUILTY_CONTEXT_RESET;
583 } else if (stats.batch_pending != 0) {
584 /* A reset was observed while a batch from this context was in progress,
585 * but the batch was not executing. In this case, assume that the
586 * context was not at fault.
587 */
588 status = PIPE_INNOCENT_CONTEXT_RESET;
589 }
590
591 if (status != PIPE_NO_RESET) {
592 /* Our context is likely banned, or at least in an unknown state.
593 * Throw it away and start with a fresh context. Ideally this may
594 * catch the problem before our next execbuf fails with -EIO.
595 */
596 replace_hw_ctx(batch);
597 }
598
599 return status;
600 }
601
602 /**
603 * Submit the batch to the GPU via execbuffer2.
604 */
605 static int
606 submit_batch(struct iris_batch *batch)
607 {
608 iris_bo_unmap(batch->bo);
609
610 /* The requirement for using I915_EXEC_NO_RELOC are:
611 *
612 * The addresses written in the objects must match the corresponding
613 * reloc.gtt_offset which in turn must match the corresponding
614 * execobject.offset.
615 *
616 * Any render targets written to in the batch must be flagged with
617 * EXEC_OBJECT_WRITE.
618 *
619 * To avoid stalling, execobject.offset should match the current
620 * address of that object within the active context.
621 */
622 struct drm_i915_gem_execbuffer2 execbuf = {
623 .buffers_ptr = (uintptr_t) batch->validation_list,
624 .buffer_count = batch->exec_count,
625 .batch_start_offset = 0,
626 /* This must be QWord aligned. */
627 .batch_len = ALIGN(batch->primary_batch_size, 8),
628 .flags = I915_EXEC_RENDER |
629 I915_EXEC_NO_RELOC |
630 I915_EXEC_BATCH_FIRST |
631 I915_EXEC_HANDLE_LUT,
632 .rsvd1 = batch->hw_ctx_id, /* rsvd1 is actually the context ID */
633 };
634
635 if (num_fences(batch)) {
636 execbuf.flags |= I915_EXEC_FENCE_ARRAY;
637 execbuf.num_cliprects = num_fences(batch);
638 execbuf.cliprects_ptr =
639 (uintptr_t)util_dynarray_begin(&batch->exec_fences);
640 }
641
642 int ret = 0;
643 if (!batch->screen->no_hw &&
644 gen_ioctl(batch->screen->fd, DRM_IOCTL_I915_GEM_EXECBUFFER2, &execbuf))
645 ret = -errno;
646
647 for (int i = 0; i < batch->exec_count; i++) {
648 struct iris_bo *bo = batch->exec_bos[i];
649
650 bo->idle = false;
651 bo->index = -1;
652
653 iris_bo_unreference(bo);
654 }
655
656 return ret;
657 }
658
659 static const char *
660 batch_name_to_string(enum iris_batch_name name)
661 {
662 const char *names[IRIS_BATCH_COUNT] = {
663 [IRIS_BATCH_RENDER] = "render",
664 [IRIS_BATCH_COMPUTE] = "compute",
665 };
666 return names[name];
667 }
668
669 /**
670 * Flush the batch buffer, submitting it to the GPU and resetting it so
671 * we're ready to emit the next batch.
672 *
673 * \param in_fence_fd is ignored if -1. Otherwise, this function takes
674 * ownership of the fd.
675 *
676 * \param out_fence_fd is ignored if NULL. Otherwise, the caller must
677 * take ownership of the returned fd.
678 */
679 void
680 _iris_batch_flush(struct iris_batch *batch, const char *file, int line)
681 {
682 struct iris_screen *screen = batch->screen;
683
684 if (iris_batch_bytes_used(batch) == 0)
685 return;
686
687 iris_finish_batch(batch);
688
689 if (unlikely(INTEL_DEBUG &
690 (DEBUG_BATCH | DEBUG_SUBMIT | DEBUG_PIPE_CONTROL))) {
691 const char *basefile = strstr(file, "iris/");
692 if (basefile)
693 file = basefile + 5;
694
695 fprintf(stderr, "%19s:%-3d: %s batch [%u] flush with %5db (%0.1f%%) "
696 "(cmds), %4d BOs (%0.1fMb aperture)\n",
697 file, line, batch_name_to_string(batch->name), batch->hw_ctx_id,
698 batch->total_chained_batch_size,
699 100.0f * batch->total_chained_batch_size / BATCH_SZ,
700 batch->exec_count,
701 (float) batch->aperture_space / (1024 * 1024));
702
703 if (INTEL_DEBUG & (DEBUG_BATCH | DEBUG_SUBMIT)) {
704 dump_fence_list(batch);
705 dump_validation_list(batch);
706 }
707
708 if (INTEL_DEBUG & DEBUG_BATCH) {
709 decode_batch(batch);
710 }
711 }
712
713 int ret = submit_batch(batch);
714
715 batch->exec_count = 0;
716 batch->aperture_space = 0;
717
718 util_dynarray_foreach(&batch->syncobjs, struct iris_syncobj *, s)
719 iris_syncobj_reference(screen, s, NULL);
720 util_dynarray_clear(&batch->syncobjs);
721
722 util_dynarray_clear(&batch->exec_fences);
723
724 if (unlikely(INTEL_DEBUG & DEBUG_SYNC)) {
725 dbg_printf("waiting for idle\n");
726 iris_bo_wait_rendering(batch->bo); /* if execbuf failed; this is a nop */
727 }
728
729 /* Start a new batch buffer. */
730 iris_batch_reset(batch);
731
732 /* EIO means our context is banned. In this case, try and replace it
733 * with a new logical context, and inform iris_context that all state
734 * has been lost and needs to be re-initialized. If this succeeds,
735 * dubiously claim success...
736 */
737 if (ret == -EIO && replace_hw_ctx(batch)) {
738 if (batch->reset->reset) {
739 /* Tell gallium frontends the device is lost and it was our fault. */
740 batch->reset->reset(batch->reset->data, PIPE_GUILTY_CONTEXT_RESET);
741 }
742
743 ret = 0;
744 }
745
746 if (ret < 0) {
747 #ifdef DEBUG
748 const bool color = INTEL_DEBUG & DEBUG_COLOR;
749 fprintf(stderr, "%siris: Failed to submit batchbuffer: %-80s%s\n",
750 color ? "\e[1;41m" : "", strerror(-ret), color ? "\e[0m" : "");
751 #endif
752 abort();
753 }
754 }
755
756 /**
757 * Does the current batch refer to the given BO?
758 *
759 * (In other words, is the BO in the current batch's validation list?)
760 */
761 bool
762 iris_batch_references(struct iris_batch *batch, struct iris_bo *bo)
763 {
764 return find_validation_entry(batch, bo) != NULL;
765 }
766
767 /**
768 * Updates the state of the noop feature.
769 */
770 uint64_t
771 iris_batch_prepare_noop(struct iris_batch *batch, bool noop_enable, uint64_t dirty_flags)
772 {
773 if (batch->noop_enabled == noop_enable)
774 return 0;
775
776 batch->noop_enabled = noop_enable;
777
778 iris_batch_flush(batch);
779
780 /* If the batch was empty, flush had no effect, so insert our noop. */
781 if (iris_batch_bytes_used(batch) == 0)
782 iris_batch_maybe_noop(batch);
783
784 /* We only need to update the entire state if we transition from noop ->
785 * not-noop.
786 */
787 return !batch->noop_enabled ? dirty_flags : 0;
788 }