iris: Minor tidying
[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 "util/hash_table.h"
48 #include "util/set.h"
49 #include "main/macros.h"
50
51 #include <errno.h>
52 #include <xf86drm.h>
53
54 #if HAVE_VALGRIND
55 #include <valgrind.h>
56 #include <memcheck.h>
57 #define VG(x) x
58 #else
59 #define VG(x)
60 #endif
61
62 #define FILE_DEBUG_FLAG DEBUG_BUFMGR
63
64 /* Terminating the batch takes either 4 bytes for MI_BATCH_BUFFER_END
65 * or 12 bytes for MI_BATCH_BUFFER_START (when chaining). Plus, we may
66 * need an extra 4 bytes to pad out to the nearest QWord. So reserve 16.
67 */
68 #define BATCH_RESERVED 16
69
70 static void
71 iris_batch_reset(struct iris_batch *batch);
72
73 static unsigned
74 num_fences(struct iris_batch *batch)
75 {
76 return util_dynarray_num_elements(&batch->exec_fences,
77 struct drm_i915_gem_exec_fence);
78 }
79
80 /**
81 * Debugging code to dump the fence list, used by INTEL_DEBUG=submit.
82 */
83 static void
84 dump_fence_list(struct iris_batch *batch)
85 {
86 fprintf(stderr, "Fence list (length %u): ", num_fences(batch));
87
88 util_dynarray_foreach(&batch->exec_fences,
89 struct drm_i915_gem_exec_fence, f) {
90 fprintf(stderr, "%s%u%s ",
91 (f->flags & I915_EXEC_FENCE_WAIT) ? "..." : "",
92 f->handle,
93 (f->flags & I915_EXEC_FENCE_SIGNAL) ? "!" : "");
94 }
95
96 fprintf(stderr, "\n");
97 }
98
99 /**
100 * Debugging code to dump the validation list, used by INTEL_DEBUG=submit.
101 */
102 static void
103 dump_validation_list(struct iris_batch *batch)
104 {
105 fprintf(stderr, "Validation list (length %d):\n", batch->exec_count);
106
107 for (int i = 0; i < batch->exec_count; i++) {
108 uint64_t flags = batch->validation_list[i].flags;
109 assert(batch->validation_list[i].handle ==
110 batch->exec_bos[i]->gem_handle);
111 fprintf(stderr, "[%2d]: %2d %-14s @ 0x%016llx (%"PRIu64"B)\t %2d refs %s\n",
112 i,
113 batch->validation_list[i].handle,
114 batch->exec_bos[i]->name,
115 batch->validation_list[i].offset,
116 batch->exec_bos[i]->size,
117 batch->exec_bos[i]->refcount,
118 (flags & EXEC_OBJECT_WRITE) ? " (write)" : "");
119 }
120 }
121
122 /**
123 * Return BO information to the batch decoder (for debugging).
124 */
125 static struct gen_batch_decode_bo
126 decode_get_bo(void *v_batch, bool ppgtt, uint64_t address)
127 {
128 struct iris_batch *batch = v_batch;
129
130 assert(ppgtt);
131
132 for (int i = 0; i < batch->exec_count; i++) {
133 struct iris_bo *bo = batch->exec_bos[i];
134 /* The decoder zeroes out the top 16 bits, so we need to as well */
135 uint64_t bo_address = bo->gtt_offset & (~0ull >> 16);
136
137 if (address >= bo_address && address < bo_address + bo->size) {
138 return (struct gen_batch_decode_bo) {
139 .addr = address,
140 .size = bo->size,
141 .map = iris_bo_map(batch->dbg, bo, MAP_READ) +
142 (address - bo_address),
143 };
144 }
145 }
146
147 return (struct gen_batch_decode_bo) { };
148 }
149
150 static unsigned
151 decode_get_state_size(void *v_batch, uint32_t offset_from_base)
152 {
153 struct iris_batch *batch = v_batch;
154
155 /* The decoder gives us offsets from a base address, which is not great.
156 * Binding tables are relative to surface state base address, and other
157 * state is relative to dynamic state base address. These could alias,
158 * but in practice it's unlikely because surface offsets are always in
159 * the [0, 64K) range, and we assign dynamic state addresses starting at
160 * the top of the 4GB range. We should fix this but it's likely good
161 * enough for now.
162 */
163 unsigned size = (uintptr_t)
164 _mesa_hash_table_u64_search(batch->state_sizes, offset_from_base);
165
166 return size;
167 }
168
169 /**
170 * Decode the current batch.
171 */
172 static void
173 decode_batch(struct iris_batch *batch)
174 {
175 void *map = iris_bo_map(batch->dbg, batch->exec_bos[0], MAP_READ);
176 gen_print_batch(&batch->decoder, map, batch->primary_batch_size,
177 batch->exec_bos[0]->gtt_offset, false);
178 }
179
180 void
181 iris_init_batch(struct iris_batch *batch,
182 struct iris_screen *screen,
183 struct iris_vtable *vtbl,
184 struct pipe_debug_callback *dbg,
185 struct pipe_device_reset_callback *reset,
186 struct hash_table_u64 *state_sizes,
187 struct iris_batch *all_batches,
188 enum iris_batch_name name,
189 uint8_t engine,
190 int priority)
191 {
192 batch->screen = screen;
193 batch->vtbl = vtbl;
194 batch->dbg = dbg;
195 batch->reset = reset;
196 batch->state_sizes = state_sizes;
197 batch->name = name;
198
199 /* engine should be one of I915_EXEC_RENDER, I915_EXEC_BLT, etc. */
200 assert((engine & ~I915_EXEC_RING_MASK) == 0);
201 assert(util_bitcount(engine) == 1);
202 batch->engine = engine;
203
204 batch->hw_ctx_id = iris_create_hw_context(screen->bufmgr);
205 assert(batch->hw_ctx_id);
206
207 iris_hw_context_set_priority(screen->bufmgr, batch->hw_ctx_id, priority);
208
209 util_dynarray_init(&batch->exec_fences, ralloc_context(NULL));
210 util_dynarray_init(&batch->syncpts, ralloc_context(NULL));
211
212 batch->exec_count = 0;
213 batch->exec_array_size = 100;
214 batch->exec_bos =
215 malloc(batch->exec_array_size * sizeof(batch->exec_bos[0]));
216 batch->validation_list =
217 malloc(batch->exec_array_size * sizeof(batch->validation_list[0]));
218
219 batch->cache.render = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
220 _mesa_key_pointer_equal);
221 batch->cache.depth = _mesa_set_create(NULL, _mesa_hash_pointer,
222 _mesa_key_pointer_equal);
223
224 memset(batch->other_batches, 0, sizeof(batch->other_batches));
225
226 for (int i = 0, j = 0; i < IRIS_BATCH_COUNT; i++) {
227 if (&all_batches[i] != batch)
228 batch->other_batches[j++] = &all_batches[i];
229 }
230
231 if (unlikely(INTEL_DEBUG)) {
232 const unsigned decode_flags =
233 GEN_BATCH_DECODE_FULL |
234 ((INTEL_DEBUG & DEBUG_COLOR) ? GEN_BATCH_DECODE_IN_COLOR : 0) |
235 GEN_BATCH_DECODE_OFFSETS |
236 GEN_BATCH_DECODE_FLOATS;
237
238 gen_batch_decode_ctx_init(&batch->decoder, &screen->devinfo,
239 stderr, decode_flags, NULL,
240 decode_get_bo, decode_get_state_size, batch);
241 batch->decoder.max_vbo_decoded_lines = 32;
242 }
243
244 iris_batch_reset(batch);
245 }
246
247 static struct drm_i915_gem_exec_object2 *
248 find_validation_entry(struct iris_batch *batch, struct iris_bo *bo)
249 {
250 unsigned index = READ_ONCE(bo->index);
251
252 if (index < batch->exec_count && batch->exec_bos[index] == bo)
253 return &batch->validation_list[index];
254
255 /* May have been shared between multiple active batches */
256 for (index = 0; index < batch->exec_count; index++) {
257 if (batch->exec_bos[index] == bo)
258 return &batch->validation_list[index];
259 }
260
261 return NULL;
262 }
263
264 /**
265 * Add a buffer to the current batch's validation list.
266 *
267 * You must call this on any BO you wish to use in this batch, to ensure
268 * that it's resident when the GPU commands execute.
269 */
270 void
271 iris_use_pinned_bo(struct iris_batch *batch,
272 struct iris_bo *bo,
273 bool writable)
274 {
275 assert(bo->kflags & EXEC_OBJECT_PINNED);
276
277 /* Never mark the workaround BO with EXEC_OBJECT_WRITE. We don't care
278 * about the order of any writes to that buffer, and marking it writable
279 * would introduce data dependencies between multiple batches which share
280 * the buffer.
281 */
282 if (bo == batch->screen->workaround_bo)
283 writable = false;
284
285 struct drm_i915_gem_exec_object2 *existing_entry =
286 find_validation_entry(batch, bo);
287
288 if (existing_entry) {
289 /* The BO is already in the validation list; mark it writable */
290 if (writable)
291 existing_entry->flags |= EXEC_OBJECT_WRITE;
292
293 return;
294 }
295
296 if (bo != batch->bo) {
297 /* This is the first time our batch has seen this BO. Before we use it,
298 * we may need to flush and synchronize with other batches.
299 */
300 for (int b = 0; b < ARRAY_SIZE(batch->other_batches); b++) {
301 struct drm_i915_gem_exec_object2 *other_entry =
302 find_validation_entry(batch->other_batches[b], bo);
303
304 /* If the buffer is referenced by another batch, and either batch
305 * intends to write it, then flush the other batch and synchronize.
306 *
307 * Consider these cases:
308 *
309 * 1. They read, we read => No synchronization required.
310 * 2. They read, we write => Synchronize (they need the old value)
311 * 3. They write, we read => Synchronize (we need their new value)
312 * 4. They write, we write => Synchronize (order writes)
313 *
314 * The read/read case is very common, as multiple batches usually
315 * share a streaming state buffer or shader assembly buffer, and
316 * we want to avoid synchronizing in this case.
317 */
318 if (other_entry &&
319 ((other_entry->flags & EXEC_OBJECT_WRITE) || writable)) {
320 iris_batch_flush(batch->other_batches[b]);
321 iris_batch_add_syncpt(batch, batch->other_batches[b]->last_syncpt,
322 I915_EXEC_FENCE_WAIT);
323 }
324 }
325 }
326
327 /* Now, take a reference and add it to the validation list. */
328 iris_bo_reference(bo);
329
330 if (batch->exec_count == batch->exec_array_size) {
331 batch->exec_array_size *= 2;
332 batch->exec_bos =
333 realloc(batch->exec_bos,
334 batch->exec_array_size * sizeof(batch->exec_bos[0]));
335 batch->validation_list =
336 realloc(batch->validation_list,
337 batch->exec_array_size * sizeof(batch->validation_list[0]));
338 }
339
340 batch->validation_list[batch->exec_count] =
341 (struct drm_i915_gem_exec_object2) {
342 .handle = bo->gem_handle,
343 .offset = bo->gtt_offset,
344 .flags = bo->kflags | (writable ? EXEC_OBJECT_WRITE : 0),
345 };
346
347 bo->index = batch->exec_count;
348 batch->exec_bos[batch->exec_count] = bo;
349 batch->aperture_space += bo->size;
350
351 batch->exec_count++;
352 }
353
354 static void
355 create_batch(struct iris_batch *batch)
356 {
357 struct iris_screen *screen = batch->screen;
358 struct iris_bufmgr *bufmgr = screen->bufmgr;
359
360 batch->bo = iris_bo_alloc(bufmgr, "command buffer",
361 BATCH_SZ + BATCH_RESERVED, IRIS_MEMZONE_OTHER);
362 batch->bo->kflags |= EXEC_OBJECT_CAPTURE;
363 batch->map = iris_bo_map(NULL, batch->bo, MAP_READ | MAP_WRITE);
364 batch->map_next = batch->map;
365
366 iris_use_pinned_bo(batch, batch->bo, false);
367 }
368
369 static void
370 iris_batch_reset(struct iris_batch *batch)
371 {
372 struct iris_screen *screen = batch->screen;
373
374 iris_bo_unreference(batch->bo);
375 batch->primary_batch_size = 0;
376 batch->contains_draw = false;
377
378 create_batch(batch);
379 assert(batch->bo->index == 0);
380
381 struct iris_syncpt *syncpt = iris_create_syncpt(screen);
382 iris_batch_add_syncpt(batch, syncpt, I915_EXEC_FENCE_SIGNAL);
383 iris_syncpt_reference(screen, &syncpt, NULL);
384
385 iris_cache_sets_clear(batch);
386 }
387
388 void
389 iris_batch_free(struct iris_batch *batch)
390 {
391 struct iris_screen *screen = batch->screen;
392 struct iris_bufmgr *bufmgr = screen->bufmgr;
393
394 for (int i = 0; i < batch->exec_count; i++) {
395 iris_bo_unreference(batch->exec_bos[i]);
396 }
397 free(batch->exec_bos);
398 free(batch->validation_list);
399
400 ralloc_free(batch->exec_fences.mem_ctx);
401
402 util_dynarray_foreach(&batch->syncpts, struct iris_syncpt *, s)
403 iris_syncpt_reference(screen, s, NULL);
404 ralloc_free(batch->syncpts.mem_ctx);
405
406 iris_syncpt_reference(screen, &batch->last_syncpt, NULL);
407
408 iris_bo_unreference(batch->bo);
409 batch->bo = NULL;
410 batch->map = NULL;
411 batch->map_next = NULL;
412
413 iris_destroy_hw_context(bufmgr, batch->hw_ctx_id);
414
415 _mesa_hash_table_destroy(batch->cache.render, NULL);
416 _mesa_set_destroy(batch->cache.depth, NULL);
417
418 if (unlikely(INTEL_DEBUG))
419 gen_batch_decode_ctx_finish(&batch->decoder);
420 }
421
422 /**
423 * If we've chained to a secondary batch, or are getting near to the end,
424 * then flush. This should only be called between draws.
425 */
426 void
427 iris_batch_maybe_flush(struct iris_batch *batch, unsigned estimate)
428 {
429 if (batch->bo != batch->exec_bos[0] ||
430 iris_batch_bytes_used(batch) + estimate >= BATCH_SZ) {
431 iris_batch_flush(batch);
432 }
433 }
434
435 void
436 iris_chain_to_new_batch(struct iris_batch *batch)
437 {
438 /* We only support chaining a single time. */
439 assert(batch->bo == batch->exec_bos[0]);
440
441 VG(void *map = batch->map);
442 uint32_t *cmd = batch->map_next;
443 uint64_t *addr = batch->map_next + 4;
444 batch->map_next += 12;
445
446 /* No longer held by batch->bo, still held by validation list */
447 iris_bo_unreference(batch->bo);
448 batch->primary_batch_size = iris_batch_bytes_used(batch);
449 create_batch(batch);
450
451 /* Emit MI_BATCH_BUFFER_START to chain to another batch. */
452 *cmd = (0x31 << 23) | (1 << 8) | (3 - 2);
453 *addr = batch->bo->gtt_offset;
454
455 VG(VALGRIND_CHECK_MEM_IS_DEFINED(map, batch->primary_batch_size));
456 }
457
458 /**
459 * Terminate a batch with MI_BATCH_BUFFER_END.
460 */
461 static void
462 iris_finish_batch(struct iris_batch *batch)
463 {
464 /* Emit MI_BATCH_BUFFER_END to finish our batch. */
465 uint32_t *map = batch->map_next;
466
467 map[0] = (0xA << 23);
468
469 batch->map_next += 4;
470 VG(VALGRIND_CHECK_MEM_IS_DEFINED(batch->map, iris_batch_bytes_used(batch)));
471
472 if (batch->bo == batch->exec_bos[0])
473 batch->primary_batch_size = iris_batch_bytes_used(batch);
474 }
475
476 /**
477 * Replace our current GEM context with a new one (in case it got banned).
478 */
479 static bool
480 replace_hw_ctx(struct iris_batch *batch)
481 {
482 struct iris_screen *screen = batch->screen;
483 struct iris_bufmgr *bufmgr = screen->bufmgr;
484
485 uint32_t new_ctx = iris_clone_hw_context(bufmgr, batch->hw_ctx_id);
486 if (!new_ctx)
487 return false;
488
489 iris_destroy_hw_context(bufmgr, batch->hw_ctx_id);
490 batch->hw_ctx_id = new_ctx;
491
492 /* Notify the context that state must be re-initialized. */
493 iris_lost_context_state(batch);
494
495 return true;
496 }
497
498 enum pipe_reset_status
499 iris_batch_check_for_reset(struct iris_batch *batch)
500 {
501 struct iris_screen *screen = batch->screen;
502 enum pipe_reset_status status = PIPE_NO_RESET;
503 struct drm_i915_reset_stats stats = { .ctx_id = batch->hw_ctx_id };
504
505 if (drmIoctl(screen->fd, DRM_IOCTL_I915_GET_RESET_STATS, &stats))
506 DBG("DRM_IOCTL_I915_GET_RESET_STATS failed: %s\n", strerror(errno));
507
508 if (stats.batch_active != 0) {
509 /* A reset was observed while a batch from this hardware context was
510 * executing. Assume that this context was at fault.
511 */
512 status = PIPE_GUILTY_CONTEXT_RESET;
513 } else if (stats.batch_pending != 0) {
514 /* A reset was observed while a batch from this context was in progress,
515 * but the batch was not executing. In this case, assume that the
516 * context was not at fault.
517 */
518 status = PIPE_INNOCENT_CONTEXT_RESET;
519 }
520
521 if (status != PIPE_NO_RESET) {
522 /* Our context is likely banned, or at least in an unknown state.
523 * Throw it away and start with a fresh context. Ideally this may
524 * catch the problem before our next execbuf fails with -EIO.
525 */
526 replace_hw_ctx(batch);
527 }
528
529 return status;
530 }
531
532 /**
533 * Submit the batch to the GPU via execbuffer2.
534 */
535 static int
536 submit_batch(struct iris_batch *batch)
537 {
538 iris_bo_unmap(batch->bo);
539
540 /* The requirement for using I915_EXEC_NO_RELOC are:
541 *
542 * The addresses written in the objects must match the corresponding
543 * reloc.gtt_offset which in turn must match the corresponding
544 * execobject.offset.
545 *
546 * Any render targets written to in the batch must be flagged with
547 * EXEC_OBJECT_WRITE.
548 *
549 * To avoid stalling, execobject.offset should match the current
550 * address of that object within the active context.
551 */
552 struct drm_i915_gem_execbuffer2 execbuf = {
553 .buffers_ptr = (uintptr_t) batch->validation_list,
554 .buffer_count = batch->exec_count,
555 .batch_start_offset = 0,
556 /* This must be QWord aligned. */
557 .batch_len = ALIGN(batch->primary_batch_size, 8),
558 .flags = batch->engine |
559 I915_EXEC_NO_RELOC |
560 I915_EXEC_BATCH_FIRST |
561 I915_EXEC_HANDLE_LUT,
562 .rsvd1 = batch->hw_ctx_id, /* rsvd1 is actually the context ID */
563 };
564
565 if (num_fences(batch)) {
566 execbuf.flags |= I915_EXEC_FENCE_ARRAY;
567 execbuf.num_cliprects = num_fences(batch);
568 execbuf.cliprects_ptr =
569 (uintptr_t)util_dynarray_begin(&batch->exec_fences);
570 }
571
572 int ret = 0;
573 if (!batch->screen->no_hw &&
574 drm_ioctl(batch->screen->fd, DRM_IOCTL_I915_GEM_EXECBUFFER2, &execbuf))
575 ret = -errno;
576
577 for (int i = 0; i < batch->exec_count; i++) {
578 struct iris_bo *bo = batch->exec_bos[i];
579
580 bo->idle = false;
581 bo->index = -1;
582
583 iris_bo_unreference(bo);
584 }
585
586 return ret;
587 }
588
589 static const char *
590 batch_name_to_string(enum iris_batch_name name)
591 {
592 const char *names[IRIS_BATCH_COUNT] = {
593 [IRIS_BATCH_RENDER] = "render",
594 [IRIS_BATCH_COMPUTE] = "compute",
595 };
596 return names[name];
597 }
598
599 /**
600 * Flush the batch buffer, submitting it to the GPU and resetting it so
601 * we're ready to emit the next batch.
602 *
603 * \param in_fence_fd is ignored if -1. Otherwise, this function takes
604 * ownership of the fd.
605 *
606 * \param out_fence_fd is ignored if NULL. Otherwise, the caller must
607 * take ownership of the returned fd.
608 */
609 void
610 _iris_batch_flush(struct iris_batch *batch, const char *file, int line)
611 {
612 struct iris_screen *screen = batch->screen;
613
614 if (iris_batch_bytes_used(batch) == 0)
615 return;
616
617 iris_finish_batch(batch);
618
619 if (unlikely(INTEL_DEBUG &
620 (DEBUG_BATCH | DEBUG_SUBMIT | DEBUG_PIPE_CONTROL))) {
621 int bytes_for_commands = iris_batch_bytes_used(batch);
622 int second_bytes = 0;
623 if (batch->bo != batch->exec_bos[0]) {
624 second_bytes = bytes_for_commands;
625 bytes_for_commands += batch->primary_batch_size;
626 }
627 fprintf(stderr, "%19s:%-3d: %s batch [%u] flush with %5d+%5db (%0.1f%%) "
628 "(cmds), %4d BOs (%0.1fMb aperture)\n",
629 file, line, batch_name_to_string(batch->name), batch->hw_ctx_id,
630 batch->primary_batch_size, second_bytes,
631 100.0f * bytes_for_commands / BATCH_SZ,
632 batch->exec_count,
633 (float) batch->aperture_space / (1024 * 1024));
634
635 if (INTEL_DEBUG & (DEBUG_BATCH | DEBUG_SUBMIT)) {
636 dump_fence_list(batch);
637 dump_validation_list(batch);
638 }
639
640 if (INTEL_DEBUG & DEBUG_BATCH) {
641 decode_batch(batch);
642 }
643 }
644
645 int ret = submit_batch(batch);
646
647 batch->exec_count = 0;
648 batch->aperture_space = 0;
649
650 struct iris_syncpt *syncpt =
651 ((struct iris_syncpt **) util_dynarray_begin(&batch->syncpts))[0];
652 iris_syncpt_reference(screen, &batch->last_syncpt, syncpt);
653
654 util_dynarray_foreach(&batch->syncpts, struct iris_syncpt *, s)
655 iris_syncpt_reference(screen, s, NULL);
656 util_dynarray_clear(&batch->syncpts);
657
658 util_dynarray_clear(&batch->exec_fences);
659
660 if (unlikely(INTEL_DEBUG & DEBUG_SYNC)) {
661 dbg_printf("waiting for idle\n");
662 iris_bo_wait_rendering(batch->bo); /* if execbuf failed; this is a nop */
663 }
664
665 /* Start a new batch buffer. */
666 iris_batch_reset(batch);
667
668 /* EIO means our context is banned. In this case, try and replace it
669 * with a new logical context, and inform iris_context that all state
670 * has been lost and needs to be re-initialized. If this succeeds,
671 * dubiously claim success...
672 */
673 if (ret == -EIO && replace_hw_ctx(batch)) {
674 if (batch->reset->reset) {
675 /* Tell the state tracker the device is lost and it was our fault. */
676 batch->reset->reset(batch->reset->data, PIPE_GUILTY_CONTEXT_RESET);
677 }
678
679 ret = 0;
680 }
681
682 if (ret < 0) {
683 #ifdef DEBUG
684 const bool color = INTEL_DEBUG & DEBUG_COLOR;
685 fprintf(stderr, "%siris: Failed to submit batchbuffer: %-80s%s\n",
686 color ? "\e[1;41m" : "", strerror(-ret), color ? "\e[0m" : "");
687 #endif
688 abort();
689 }
690 }
691
692 /**
693 * Does the current batch refer to the given BO?
694 *
695 * (In other words, is the BO in the current batch's validation list?)
696 */
697 bool
698 iris_batch_references(struct iris_batch *batch, struct iris_bo *bo)
699 {
700 return find_validation_entry(batch, bo) != NULL;
701 }