panfrost: Use DBG macro to avoid noise in the console
[mesa.git] / src / gallium / drivers / panfrost / pan_job.c
1 /*
2 * Copyright (C) 2019 Alyssa Rosenzweig
3 * Copyright (C) 2014-2017 Broadcom
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 *
24 */
25
26 #include <assert.h>
27
28 #include "drm-uapi/panfrost_drm.h"
29
30 #include "pan_bo.h"
31 #include "pan_context.h"
32 #include "util/hash_table.h"
33 #include "util/ralloc.h"
34 #include "util/format/u_format.h"
35 #include "util/u_pack_color.h"
36 #include "pan_util.h"
37 #include "pandecode/decode.h"
38 #include "panfrost-quirks.h"
39
40 /* panfrost_bo_access is here to help us keep track of batch accesses to BOs
41 * and build a proper dependency graph such that batches can be pipelined for
42 * better GPU utilization.
43 *
44 * Each accessed BO has a corresponding entry in the ->accessed_bos hash table.
45 * A BO is either being written or read at any time, that's what the type field
46 * encodes.
47 * When the last access is a write, the batch writing the BO might have read
48 * dependencies (readers that have not been executed yet and want to read the
49 * previous BO content), and when the last access is a read, all readers might
50 * depend on another batch to push its results to memory. That's what the
51 * readers/writers keep track off.
52 * There can only be one writer at any given time, if a new batch wants to
53 * write to the same BO, a dependency will be added between the new writer and
54 * the old writer (at the batch level), and panfrost_bo_access->writer will be
55 * updated to point to the new writer.
56 */
57 struct panfrost_bo_access {
58 uint32_t type;
59 struct util_dynarray readers;
60 struct panfrost_batch_fence *writer;
61 };
62
63 static struct panfrost_batch_fence *
64 panfrost_create_batch_fence(struct panfrost_batch *batch)
65 {
66 struct panfrost_batch_fence *fence;
67 ASSERTED int ret;
68
69 fence = rzalloc(NULL, struct panfrost_batch_fence);
70 assert(fence);
71 pipe_reference_init(&fence->reference, 1);
72 fence->ctx = batch->ctx;
73 fence->batch = batch;
74 ret = drmSyncobjCreate(pan_screen(batch->ctx->base.screen)->fd, 0,
75 &fence->syncobj);
76 assert(!ret);
77
78 return fence;
79 }
80
81 static void
82 panfrost_free_batch_fence(struct panfrost_batch_fence *fence)
83 {
84 drmSyncobjDestroy(pan_screen(fence->ctx->base.screen)->fd,
85 fence->syncobj);
86 ralloc_free(fence);
87 }
88
89 void
90 panfrost_batch_fence_unreference(struct panfrost_batch_fence *fence)
91 {
92 if (pipe_reference(&fence->reference, NULL))
93 panfrost_free_batch_fence(fence);
94 }
95
96 void
97 panfrost_batch_fence_reference(struct panfrost_batch_fence *fence)
98 {
99 pipe_reference(NULL, &fence->reference);
100 }
101
102 static struct panfrost_batch *
103 panfrost_create_batch(struct panfrost_context *ctx,
104 const struct pipe_framebuffer_state *key)
105 {
106 struct panfrost_batch *batch = rzalloc(ctx, struct panfrost_batch);
107
108 batch->ctx = ctx;
109
110 batch->bos = _mesa_hash_table_create(batch, _mesa_hash_pointer,
111 _mesa_key_pointer_equal);
112
113 batch->minx = batch->miny = ~0;
114 batch->maxx = batch->maxy = 0;
115 batch->transient_offset = 0;
116
117 util_dynarray_init(&batch->headers, batch);
118 util_dynarray_init(&batch->gpu_headers, batch);
119 util_dynarray_init(&batch->dependencies, batch);
120 batch->out_sync = panfrost_create_batch_fence(batch);
121 util_copy_framebuffer_state(&batch->key, key);
122
123 return batch;
124 }
125
126 static void
127 panfrost_freeze_batch(struct panfrost_batch *batch)
128 {
129 struct panfrost_context *ctx = batch->ctx;
130 struct hash_entry *entry;
131
132 /* Remove the entry in the FBO -> batch hash table if the batch
133 * matches. This way, next draws/clears targeting this FBO will trigger
134 * the creation of a new batch.
135 */
136 entry = _mesa_hash_table_search(ctx->batches, &batch->key);
137 if (entry && entry->data == batch)
138 _mesa_hash_table_remove(ctx->batches, entry);
139
140 /* If this is the bound batch, the panfrost_context parameters are
141 * relevant so submitting it invalidates those parameters, but if it's
142 * not bound, the context parameters are for some other batch so we
143 * can't invalidate them.
144 */
145 if (ctx->batch == batch) {
146 panfrost_invalidate_frame(ctx);
147 ctx->batch = NULL;
148 }
149 }
150
151 #ifndef NDEBUG
152 static bool panfrost_batch_is_frozen(struct panfrost_batch *batch)
153 {
154 struct panfrost_context *ctx = batch->ctx;
155 struct hash_entry *entry;
156
157 entry = _mesa_hash_table_search(ctx->batches, &batch->key);
158 if (entry && entry->data == batch)
159 return false;
160
161 if (ctx->batch == batch)
162 return false;
163
164 return true;
165 }
166 #endif
167
168 static void
169 panfrost_free_batch(struct panfrost_batch *batch)
170 {
171 if (!batch)
172 return;
173
174 assert(panfrost_batch_is_frozen(batch));
175
176 hash_table_foreach(batch->bos, entry)
177 panfrost_bo_unreference((struct panfrost_bo *)entry->key);
178
179 util_dynarray_foreach(&batch->dependencies,
180 struct panfrost_batch_fence *, dep) {
181 panfrost_batch_fence_unreference(*dep);
182 }
183
184 util_dynarray_fini(&batch->headers);
185 util_dynarray_fini(&batch->gpu_headers);
186
187 /* The out_sync fence lifetime is different from the the batch one
188 * since other batches might want to wait on a fence of already
189 * submitted/signaled batch. All we need to do here is make sure the
190 * fence does not point to an invalid batch, which the core will
191 * interpret as 'batch is already submitted'.
192 */
193 batch->out_sync->batch = NULL;
194 panfrost_batch_fence_unreference(batch->out_sync);
195
196 util_unreference_framebuffer_state(&batch->key);
197 ralloc_free(batch);
198 }
199
200 #ifndef NDEBUG
201 static bool
202 panfrost_dep_graph_contains_batch(struct panfrost_batch *root,
203 struct panfrost_batch *batch)
204 {
205 if (!root)
206 return false;
207
208 util_dynarray_foreach(&root->dependencies,
209 struct panfrost_batch_fence *, dep) {
210 if ((*dep)->batch == batch ||
211 panfrost_dep_graph_contains_batch((*dep)->batch, batch))
212 return true;
213 }
214
215 return false;
216 }
217 #endif
218
219 static void
220 panfrost_batch_add_dep(struct panfrost_batch *batch,
221 struct panfrost_batch_fence *newdep)
222 {
223 if (batch == newdep->batch)
224 return;
225
226 /* We might want to turn ->dependencies into a set if the number of
227 * deps turns out to be big enough to make this 'is dep already there'
228 * search inefficient.
229 */
230 util_dynarray_foreach(&batch->dependencies,
231 struct panfrost_batch_fence *, dep) {
232 if (*dep == newdep)
233 return;
234 }
235
236 /* Make sure the dependency graph is acyclic. */
237 assert(!panfrost_dep_graph_contains_batch(newdep->batch, batch));
238
239 panfrost_batch_fence_reference(newdep);
240 util_dynarray_append(&batch->dependencies,
241 struct panfrost_batch_fence *, newdep);
242
243 /* We now have a batch depending on us, let's make sure new draw/clear
244 * calls targeting the same FBO use a new batch object.
245 */
246 if (newdep->batch)
247 panfrost_freeze_batch(newdep->batch);
248 }
249
250 static struct panfrost_batch *
251 panfrost_get_batch(struct panfrost_context *ctx,
252 const struct pipe_framebuffer_state *key)
253 {
254 /* Lookup the job first */
255 struct hash_entry *entry = _mesa_hash_table_search(ctx->batches, key);
256
257 if (entry)
258 return entry->data;
259
260 /* Otherwise, let's create a job */
261
262 struct panfrost_batch *batch = panfrost_create_batch(ctx, key);
263
264 /* Save the created job */
265 _mesa_hash_table_insert(ctx->batches, &batch->key, batch);
266
267 return batch;
268 }
269
270 /* Get the job corresponding to the FBO we're currently rendering into */
271
272 struct panfrost_batch *
273 panfrost_get_batch_for_fbo(struct panfrost_context *ctx)
274 {
275 /* If we're wallpapering, we special case to workaround
276 * u_blitter abuse */
277
278 if (ctx->wallpaper_batch)
279 return ctx->wallpaper_batch;
280
281 /* If we already began rendering, use that */
282
283 if (ctx->batch) {
284 assert(util_framebuffer_state_equal(&ctx->batch->key,
285 &ctx->pipe_framebuffer));
286 return ctx->batch;
287 }
288
289 /* If not, look up the job */
290 struct panfrost_batch *batch = panfrost_get_batch(ctx,
291 &ctx->pipe_framebuffer);
292
293 /* Set this job as the current FBO job. Will be reset when updating the
294 * FB state and when submitting or releasing a job.
295 */
296 ctx->batch = batch;
297 return batch;
298 }
299
300 struct panfrost_batch *
301 panfrost_get_fresh_batch_for_fbo(struct panfrost_context *ctx)
302 {
303 struct panfrost_batch *batch;
304
305 batch = panfrost_get_batch(ctx, &ctx->pipe_framebuffer);
306
307 /* The batch has no draw/clear queued, let's return it directly.
308 * Note that it's perfectly fine to re-use a batch with an
309 * existing clear, we'll just update it with the new clear request.
310 */
311 if (!batch->last_job.gpu)
312 return batch;
313
314 /* Otherwise, we need to freeze the existing one and instantiate a new
315 * one.
316 */
317 panfrost_freeze_batch(batch);
318 return panfrost_get_batch(ctx, &ctx->pipe_framebuffer);
319 }
320
321 static bool
322 panfrost_batch_fence_is_signaled(struct panfrost_batch_fence *fence)
323 {
324 if (fence->signaled)
325 return true;
326
327 /* Batch has not been submitted yet. */
328 if (fence->batch)
329 return false;
330
331 int ret = drmSyncobjWait(pan_screen(fence->ctx->base.screen)->fd,
332 &fence->syncobj, 1, 0, 0, NULL);
333
334 /* Cache whether the fence was signaled */
335 fence->signaled = ret >= 0;
336 return fence->signaled;
337 }
338
339 static void
340 panfrost_bo_access_gc_fences(struct panfrost_context *ctx,
341 struct panfrost_bo_access *access,
342 const struct panfrost_bo *bo)
343 {
344 if (access->writer && panfrost_batch_fence_is_signaled(access->writer)) {
345 panfrost_batch_fence_unreference(access->writer);
346 access->writer = NULL;
347 }
348
349 struct panfrost_batch_fence **readers_array = util_dynarray_begin(&access->readers);
350 struct panfrost_batch_fence **new_readers = readers_array;
351
352 util_dynarray_foreach(&access->readers, struct panfrost_batch_fence *,
353 reader) {
354 if (!(*reader))
355 continue;
356
357 if (panfrost_batch_fence_is_signaled(*reader)) {
358 panfrost_batch_fence_unreference(*reader);
359 *reader = NULL;
360 } else {
361 /* Build a new array of only unsignaled fences in-place */
362 *(new_readers++) = *reader;
363 }
364 }
365
366 if (!util_dynarray_resize(&access->readers, struct panfrost_batch_fence *,
367 new_readers - readers_array) &&
368 new_readers != readers_array)
369 unreachable("Invalid dynarray access->readers");
370 }
371
372 /* Collect signaled fences to keep the kernel-side syncobj-map small. The
373 * idea is to collect those signaled fences at the end of each flush_all
374 * call. This function is likely to collect only fences from previous
375 * batch flushes not the one that have just have just been submitted and
376 * are probably still in flight when we trigger the garbage collection.
377 * Anyway, we need to do this garbage collection at some point if we don't
378 * want the BO access map to keep invalid entries around and retain
379 * syncobjs forever.
380 */
381 static void
382 panfrost_gc_fences(struct panfrost_context *ctx)
383 {
384 hash_table_foreach(ctx->accessed_bos, entry) {
385 struct panfrost_bo_access *access = entry->data;
386
387 assert(access);
388 panfrost_bo_access_gc_fences(ctx, access, entry->key);
389 if (!util_dynarray_num_elements(&access->readers,
390 struct panfrost_batch_fence *) &&
391 !access->writer) {
392 ralloc_free(access);
393 _mesa_hash_table_remove(ctx->accessed_bos, entry);
394 }
395 }
396 }
397
398 #ifndef NDEBUG
399 static bool
400 panfrost_batch_in_readers(struct panfrost_batch *batch,
401 struct panfrost_bo_access *access)
402 {
403 util_dynarray_foreach(&access->readers, struct panfrost_batch_fence *,
404 reader) {
405 if (*reader && (*reader)->batch == batch)
406 return true;
407 }
408
409 return false;
410 }
411 #endif
412
413 static void
414 panfrost_batch_update_bo_access(struct panfrost_batch *batch,
415 struct panfrost_bo *bo, uint32_t access_type,
416 bool already_accessed)
417 {
418 struct panfrost_context *ctx = batch->ctx;
419 struct panfrost_bo_access *access;
420 uint32_t old_access_type;
421 struct hash_entry *entry;
422
423 assert(access_type == PAN_BO_ACCESS_WRITE ||
424 access_type == PAN_BO_ACCESS_READ);
425
426 entry = _mesa_hash_table_search(ctx->accessed_bos, bo);
427 access = entry ? entry->data : NULL;
428 if (access) {
429 old_access_type = access->type;
430 } else {
431 access = rzalloc(ctx, struct panfrost_bo_access);
432 util_dynarray_init(&access->readers, access);
433 _mesa_hash_table_insert(ctx->accessed_bos, bo, access);
434 /* We are the first to access this BO, let's initialize
435 * old_access_type to our own access type in that case.
436 */
437 old_access_type = access_type;
438 access->type = access_type;
439 }
440
441 assert(access);
442
443 if (access_type == PAN_BO_ACCESS_WRITE &&
444 old_access_type == PAN_BO_ACCESS_READ) {
445 /* Previous access was a read and we want to write this BO.
446 * We first need to add explicit deps between our batch and
447 * the previous readers.
448 */
449 util_dynarray_foreach(&access->readers,
450 struct panfrost_batch_fence *, reader) {
451 /* We were already reading the BO, no need to add a dep
452 * on ourself (the acyclic check would complain about
453 * that).
454 */
455 if (!(*reader) || (*reader)->batch == batch)
456 continue;
457
458 panfrost_batch_add_dep(batch, *reader);
459 }
460 panfrost_batch_fence_reference(batch->out_sync);
461
462 /* We now are the new writer. */
463 access->writer = batch->out_sync;
464 access->type = access_type;
465
466 /* Release the previous readers and reset the readers array. */
467 util_dynarray_foreach(&access->readers,
468 struct panfrost_batch_fence *,
469 reader) {
470 if (!*reader)
471 continue;
472 panfrost_batch_fence_unreference(*reader);
473 }
474
475 util_dynarray_clear(&access->readers);
476 } else if (access_type == PAN_BO_ACCESS_WRITE &&
477 old_access_type == PAN_BO_ACCESS_WRITE) {
478 /* Previous access was a write and we want to write this BO.
479 * First check if we were the previous writer, in that case
480 * there's nothing to do. Otherwise we need to add a
481 * dependency between the new writer and the old one.
482 */
483 if (access->writer != batch->out_sync) {
484 if (access->writer) {
485 panfrost_batch_add_dep(batch, access->writer);
486 panfrost_batch_fence_unreference(access->writer);
487 }
488 panfrost_batch_fence_reference(batch->out_sync);
489 access->writer = batch->out_sync;
490 }
491 } else if (access_type == PAN_BO_ACCESS_READ &&
492 old_access_type == PAN_BO_ACCESS_WRITE) {
493 /* Previous access was a write and we want to read this BO.
494 * First check if we were the previous writer, in that case
495 * we want to keep the access type unchanged, as a write is
496 * more constraining than a read.
497 */
498 if (access->writer != batch->out_sync) {
499 /* Add a dependency on the previous writer. */
500 panfrost_batch_add_dep(batch, access->writer);
501
502 /* The previous access was a write, there's no reason
503 * to have entries in the readers array.
504 */
505 assert(!util_dynarray_num_elements(&access->readers,
506 struct panfrost_batch_fence *));
507
508 /* Add ourselves to the readers array. */
509 panfrost_batch_fence_reference(batch->out_sync);
510 util_dynarray_append(&access->readers,
511 struct panfrost_batch_fence *,
512 batch->out_sync);
513 access->type = PAN_BO_ACCESS_READ;
514 }
515 } else {
516 /* We already accessed this BO before, so we should already be
517 * in the reader array.
518 */
519 if (already_accessed) {
520 assert(panfrost_batch_in_readers(batch, access));
521 return;
522 }
523
524 /* Previous access was a read and we want to read this BO.
525 * Add ourselves to the readers array and add a dependency on
526 * the previous writer if any.
527 */
528 panfrost_batch_fence_reference(batch->out_sync);
529 util_dynarray_append(&access->readers,
530 struct panfrost_batch_fence *,
531 batch->out_sync);
532
533 if (access->writer)
534 panfrost_batch_add_dep(batch, access->writer);
535 }
536 }
537
538 void
539 panfrost_batch_add_bo(struct panfrost_batch *batch, struct panfrost_bo *bo,
540 uint32_t flags)
541 {
542 if (!bo)
543 return;
544
545 struct hash_entry *entry;
546 uint32_t old_flags = 0;
547
548 entry = _mesa_hash_table_search(batch->bos, bo);
549 if (!entry) {
550 entry = _mesa_hash_table_insert(batch->bos, bo,
551 (void *)(uintptr_t)flags);
552 panfrost_bo_reference(bo);
553 } else {
554 old_flags = (uintptr_t)entry->data;
555
556 /* All batches have to agree on the shared flag. */
557 assert((old_flags & PAN_BO_ACCESS_SHARED) ==
558 (flags & PAN_BO_ACCESS_SHARED));
559 }
560
561 assert(entry);
562
563 if (old_flags == flags)
564 return;
565
566 flags |= old_flags;
567 entry->data = (void *)(uintptr_t)flags;
568
569 /* If this is not a shared BO, we don't really care about dependency
570 * tracking.
571 */
572 if (!(flags & PAN_BO_ACCESS_SHARED))
573 return;
574
575 /* All dependencies should have been flushed before we execute the
576 * wallpaper draw, so it should be harmless to skip the
577 * update_bo_access() call.
578 */
579 if (batch == batch->ctx->wallpaper_batch)
580 return;
581
582 /* Only pass R/W flags to the dep tracking logic. */
583 assert(flags & PAN_BO_ACCESS_RW);
584 flags = (flags & PAN_BO_ACCESS_WRITE) ?
585 PAN_BO_ACCESS_WRITE : PAN_BO_ACCESS_READ;
586 panfrost_batch_update_bo_access(batch, bo, flags, old_flags != 0);
587 }
588
589 void panfrost_batch_add_fbo_bos(struct panfrost_batch *batch)
590 {
591 uint32_t flags = PAN_BO_ACCESS_SHARED | PAN_BO_ACCESS_WRITE |
592 PAN_BO_ACCESS_VERTEX_TILER |
593 PAN_BO_ACCESS_FRAGMENT;
594
595 for (unsigned i = 0; i < batch->key.nr_cbufs; ++i) {
596 struct panfrost_resource *rsrc = pan_resource(batch->key.cbufs[i]->texture);
597 panfrost_batch_add_bo(batch, rsrc->bo, flags);
598 }
599
600 if (batch->key.zsbuf) {
601 struct panfrost_resource *rsrc = pan_resource(batch->key.zsbuf->texture);
602 panfrost_batch_add_bo(batch, rsrc->bo, flags);
603 }
604 }
605
606 struct panfrost_bo *
607 panfrost_batch_create_bo(struct panfrost_batch *batch, size_t size,
608 uint32_t create_flags, uint32_t access_flags)
609 {
610 struct panfrost_bo *bo;
611
612 bo = panfrost_bo_create(pan_screen(batch->ctx->base.screen), size,
613 create_flags);
614 panfrost_batch_add_bo(batch, bo, access_flags);
615
616 /* panfrost_batch_add_bo() has retained a reference and
617 * panfrost_bo_create() initialize the refcnt to 1, so let's
618 * unreference the BO here so it gets released when the batch is
619 * destroyed (unless it's retained by someone else in the meantime).
620 */
621 panfrost_bo_unreference(bo);
622 return bo;
623 }
624
625 /* Returns the polygon list's GPU address if available, or otherwise allocates
626 * the polygon list. It's perfectly fast to use allocate/free BO directly,
627 * since we'll hit the BO cache and this is one-per-batch anyway. */
628
629 mali_ptr
630 panfrost_batch_get_polygon_list(struct panfrost_batch *batch, unsigned size)
631 {
632 if (batch->polygon_list) {
633 assert(batch->polygon_list->size >= size);
634 } else {
635 /* Create the BO as invisible, as there's no reason to map */
636 size = util_next_power_of_two(size);
637
638 batch->polygon_list = panfrost_batch_create_bo(batch, size,
639 PAN_BO_INVISIBLE,
640 PAN_BO_ACCESS_PRIVATE |
641 PAN_BO_ACCESS_RW |
642 PAN_BO_ACCESS_VERTEX_TILER |
643 PAN_BO_ACCESS_FRAGMENT);
644 }
645
646 return batch->polygon_list->gpu;
647 }
648
649 struct panfrost_bo *
650 panfrost_batch_get_scratchpad(struct panfrost_batch *batch,
651 unsigned shift,
652 unsigned thread_tls_alloc,
653 unsigned core_count)
654 {
655 unsigned size = panfrost_get_total_stack_size(shift,
656 thread_tls_alloc,
657 core_count);
658
659 if (batch->scratchpad) {
660 assert(batch->scratchpad->size >= size);
661 } else {
662 batch->scratchpad = panfrost_batch_create_bo(batch, size,
663 PAN_BO_INVISIBLE,
664 PAN_BO_ACCESS_PRIVATE |
665 PAN_BO_ACCESS_RW |
666 PAN_BO_ACCESS_VERTEX_TILER |
667 PAN_BO_ACCESS_FRAGMENT);
668 }
669
670 return batch->scratchpad;
671 }
672
673 struct panfrost_bo *
674 panfrost_batch_get_tiler_heap(struct panfrost_batch *batch)
675 {
676 if (batch->tiler_heap)
677 return batch->tiler_heap;
678
679 batch->tiler_heap = panfrost_batch_create_bo(batch, 4096 * 4096,
680 PAN_BO_INVISIBLE |
681 PAN_BO_GROWABLE,
682 PAN_BO_ACCESS_PRIVATE |
683 PAN_BO_ACCESS_RW |
684 PAN_BO_ACCESS_VERTEX_TILER |
685 PAN_BO_ACCESS_FRAGMENT);
686 assert(batch->tiler_heap);
687 return batch->tiler_heap;
688 }
689
690 struct panfrost_bo *
691 panfrost_batch_get_tiler_dummy(struct panfrost_batch *batch)
692 {
693 struct panfrost_screen *screen = pan_screen(batch->ctx->base.screen);
694
695 uint32_t create_flags = 0;
696
697 if (batch->tiler_dummy)
698 return batch->tiler_dummy;
699
700 if (!(screen->quirks & MIDGARD_NO_HIER_TILING))
701 create_flags = PAN_BO_INVISIBLE;
702
703 batch->tiler_dummy = panfrost_batch_create_bo(batch, 4096,
704 create_flags,
705 PAN_BO_ACCESS_PRIVATE |
706 PAN_BO_ACCESS_RW |
707 PAN_BO_ACCESS_VERTEX_TILER |
708 PAN_BO_ACCESS_FRAGMENT);
709 assert(batch->tiler_dummy);
710 return batch->tiler_dummy;
711 }
712
713 static void
714 panfrost_batch_draw_wallpaper(struct panfrost_batch *batch)
715 {
716 /* Color 0 is cleared, no need to draw the wallpaper.
717 * TODO: MRT wallpapers.
718 */
719 if (batch->clear & PIPE_CLEAR_COLOR0)
720 return;
721
722 /* Nothing to reload? TODO: MRT wallpapers */
723 if (batch->key.cbufs[0] == NULL)
724 return;
725
726 /* No draw calls, and no clear on the depth/stencil bufs.
727 * Drawing the wallpaper would be useless.
728 */
729 if (!batch->last_tiler.gpu &&
730 !(batch->clear & PIPE_CLEAR_DEPTHSTENCIL))
731 return;
732
733 /* Check if the buffer has any content on it worth preserving */
734
735 struct pipe_surface *surf = batch->key.cbufs[0];
736 struct panfrost_resource *rsrc = pan_resource(surf->texture);
737 unsigned level = surf->u.tex.level;
738
739 if (!rsrc->slices[level].initialized)
740 return;
741
742 batch->ctx->wallpaper_batch = batch;
743
744 /* Clamp the rendering area to the damage extent. The
745 * KHR_partial_update() spec states that trying to render outside of
746 * the damage region is "undefined behavior", so we should be safe.
747 */
748 unsigned damage_width = (rsrc->damage.extent.maxx - rsrc->damage.extent.minx);
749 unsigned damage_height = (rsrc->damage.extent.maxy - rsrc->damage.extent.miny);
750
751 if (damage_width && damage_height) {
752 panfrost_batch_intersection_scissor(batch,
753 rsrc->damage.extent.minx,
754 rsrc->damage.extent.miny,
755 rsrc->damage.extent.maxx,
756 rsrc->damage.extent.maxy);
757 }
758
759 /* FIXME: Looks like aligning on a tile is not enough, but
760 * aligning on twice the tile size seems to works. We don't
761 * know exactly what happens here but this deserves extra
762 * investigation to figure it out.
763 */
764 batch->minx = batch->minx & ~((MALI_TILE_LENGTH * 2) - 1);
765 batch->miny = batch->miny & ~((MALI_TILE_LENGTH * 2) - 1);
766 batch->maxx = MIN2(ALIGN_POT(batch->maxx, MALI_TILE_LENGTH * 2),
767 rsrc->base.width0);
768 batch->maxy = MIN2(ALIGN_POT(batch->maxy, MALI_TILE_LENGTH * 2),
769 rsrc->base.height0);
770
771 struct pipe_scissor_state damage;
772 struct pipe_box rects[4];
773
774 /* Clamp the damage box to the rendering area. */
775 damage.minx = MAX2(batch->minx, rsrc->damage.biggest_rect.x);
776 damage.miny = MAX2(batch->miny, rsrc->damage.biggest_rect.y);
777 damage.maxx = MIN2(batch->maxx,
778 rsrc->damage.biggest_rect.x +
779 rsrc->damage.biggest_rect.width);
780 damage.maxy = MIN2(batch->maxy,
781 rsrc->damage.biggest_rect.y +
782 rsrc->damage.biggest_rect.height);
783
784 /* One damage rectangle means we can end up with at most 4 reload
785 * regions:
786 * 1: left region, only exists if damage.x > 0
787 * 2: right region, only exists if damage.x + damage.width < fb->width
788 * 3: top region, only exists if damage.y > 0. The intersection with
789 * the left and right regions are dropped
790 * 4: bottom region, only exists if damage.y + damage.height < fb->height.
791 * The intersection with the left and right regions are dropped
792 *
793 * ____________________________
794 * | | 3 | |
795 * | |___________| |
796 * | | damage | |
797 * | 1 | rect | 2 |
798 * | |___________| |
799 * | | 4 | |
800 * |_______|___________|______|
801 */
802 u_box_2d(batch->minx, batch->miny, damage.minx - batch->minx,
803 batch->maxy - batch->miny, &rects[0]);
804 u_box_2d(damage.maxx, batch->miny, batch->maxx - damage.maxx,
805 batch->maxy - batch->miny, &rects[1]);
806 u_box_2d(damage.minx, batch->miny, damage.maxx - damage.minx,
807 damage.miny - batch->miny, &rects[2]);
808 u_box_2d(damage.minx, damage.maxy, damage.maxx - damage.minx,
809 batch->maxy - damage.maxy, &rects[3]);
810
811 for (unsigned i = 0; i < 4; i++) {
812 /* Width and height are always >= 0 even if width is declared as a
813 * signed integer: u_box_2d() helper takes unsigned args and
814 * panfrost_set_damage_region() is taking care of clamping
815 * negative values.
816 */
817 if (!rects[i].width || !rects[i].height)
818 continue;
819
820 /* Blit the wallpaper in */
821 panfrost_blit_wallpaper(batch->ctx, &rects[i]);
822 }
823 batch->ctx->wallpaper_batch = NULL;
824 }
825
826 static int
827 panfrost_batch_submit_ioctl(struct panfrost_batch *batch,
828 mali_ptr first_job_desc,
829 uint32_t reqs,
830 struct mali_job_descriptor_header *header)
831 {
832 struct panfrost_context *ctx = batch->ctx;
833 struct pipe_context *gallium = (struct pipe_context *) ctx;
834 struct panfrost_screen *screen = pan_screen(gallium->screen);
835 struct drm_panfrost_submit submit = {0,};
836 uint32_t *bo_handles, *in_syncs = NULL;
837 bool is_fragment_shader;
838 int ret;
839
840 is_fragment_shader = (reqs & PANFROST_JD_REQ_FS) && batch->first_job.gpu;
841 if (is_fragment_shader)
842 submit.in_sync_count = 1;
843 else
844 submit.in_sync_count = util_dynarray_num_elements(&batch->dependencies,
845 struct panfrost_batch_fence *);
846
847 if (submit.in_sync_count) {
848 in_syncs = calloc(submit.in_sync_count, sizeof(*in_syncs));
849 assert(in_syncs);
850 }
851
852 /* The fragment job always depends on the vertex/tiler job if there's
853 * one
854 */
855 if (is_fragment_shader) {
856 in_syncs[0] = batch->out_sync->syncobj;
857 } else {
858 unsigned int i = 0;
859
860 util_dynarray_foreach(&batch->dependencies,
861 struct panfrost_batch_fence *, dep)
862 in_syncs[i++] = (*dep)->syncobj;
863 }
864
865 submit.in_syncs = (uintptr_t)in_syncs;
866 submit.out_sync = batch->out_sync->syncobj;
867 submit.jc = first_job_desc;
868 submit.requirements = reqs;
869
870 bo_handles = calloc(batch->bos->entries, sizeof(*bo_handles));
871 assert(bo_handles);
872
873 hash_table_foreach(batch->bos, entry) {
874 struct panfrost_bo *bo = (struct panfrost_bo *)entry->key;
875 uint32_t flags = (uintptr_t)entry->data;
876
877 assert(bo->gem_handle > 0);
878 bo_handles[submit.bo_handle_count++] = bo->gem_handle;
879
880 /* Update the BO access flags so that panfrost_bo_wait() knows
881 * about all pending accesses.
882 * We only keep the READ/WRITE info since this is all the BO
883 * wait logic cares about.
884 * We also preserve existing flags as this batch might not
885 * be the first one to access the BO.
886 */
887 bo->gpu_access |= flags & (PAN_BO_ACCESS_RW);
888 }
889
890 submit.bo_handles = (u64) (uintptr_t) bo_handles;
891 ret = drmIoctl(screen->fd, DRM_IOCTL_PANFROST_SUBMIT, &submit);
892 free(bo_handles);
893 free(in_syncs);
894
895 if (ret) {
896 DBG("Error submitting: %m\n");
897 return errno;
898 }
899
900 if (pan_debug & PAN_DBG_SYNC) {
901 u32 status;
902
903 /* Wait so we can get errors reported back */
904 drmSyncobjWait(screen->fd, &batch->out_sync->syncobj, 1,
905 INT64_MAX, 0, NULL);
906
907 status = header->exception_status;
908
909 if (status && status != 0x1) {
910 DBG("Job %" PRIx64 " failed: source ID: 0x%x access: %s exception: 0x%x (exception_status 0x%x) fault_pointer 0x%" PRIx64 " \n",
911 first_job_desc,
912 (status >> 16) & 0xFFFF,
913 pandecode_exception_access((status >> 8) & 0x3),
914 status & 0xFF,
915 status,
916 header->fault_pointer);
917 }
918 }
919
920 /* Trace the job if we're doing that */
921 if (pan_debug & PAN_DBG_TRACE) {
922 /* Wait so we can get errors reported back */
923 drmSyncobjWait(screen->fd, &batch->out_sync->syncobj, 1,
924 INT64_MAX, 0, NULL);
925 pandecode_jc(submit.jc, FALSE, screen->gpu_id);
926 }
927
928 return 0;
929 }
930
931 static int
932 panfrost_batch_submit_jobs(struct panfrost_batch *batch)
933 {
934 bool has_draws = batch->first_job.gpu;
935 struct mali_job_descriptor_header *header;
936 int ret = 0;
937
938 if (has_draws) {
939 header = (struct mali_job_descriptor_header *)batch->first_job.cpu;
940 ret = panfrost_batch_submit_ioctl(batch, batch->first_job.gpu, 0, header);
941 assert(!ret);
942 }
943
944 if (batch->first_tiler.gpu || batch->clear) {
945 mali_ptr fragjob = panfrost_fragment_job(batch, has_draws, &header);
946
947 ret = panfrost_batch_submit_ioctl(batch, fragjob, PANFROST_JD_REQ_FS, header);
948 assert(!ret);
949 }
950
951 return ret;
952 }
953
954 static void
955 panfrost_batch_submit(struct panfrost_batch *batch)
956 {
957 assert(batch);
958
959 /* Submit the dependencies first. */
960 util_dynarray_foreach(&batch->dependencies,
961 struct panfrost_batch_fence *, dep) {
962 if ((*dep)->batch)
963 panfrost_batch_submit((*dep)->batch);
964 }
965
966 int ret;
967
968 /* Nothing to do! */
969 if (!batch->last_job.gpu && !batch->clear) {
970 /* Mark the fence as signaled so the fence logic does not try
971 * to wait on it.
972 */
973 batch->out_sync->signaled = true;
974 goto out;
975 }
976
977 panfrost_batch_draw_wallpaper(batch);
978
979 /* Now that all draws are in, we can finally prepare the
980 * FBD for the batch */
981
982 if (batch->framebuffer.gpu && batch->first_job.gpu) {
983 struct panfrost_context *ctx = batch->ctx;
984 struct pipe_context *gallium = (struct pipe_context *) ctx;
985 struct panfrost_screen *screen = pan_screen(gallium->screen);
986
987 if (screen->quirks & MIDGARD_SFBD)
988 panfrost_attach_sfbd(batch, ~0);
989 else
990 panfrost_attach_mfbd(batch, ~0);
991 }
992
993 panfrost_scoreboard_link_batch(batch);
994
995 ret = panfrost_batch_submit_jobs(batch);
996
997 if (ret)
998 DBG("panfrost_batch_submit failed: %d\n", ret);
999
1000 /* We must reset the damage info of our render targets here even
1001 * though a damage reset normally happens when the DRI layer swaps
1002 * buffers. That's because there can be implicit flushes the GL
1003 * app is not aware of, and those might impact the damage region: if
1004 * part of the damaged portion is drawn during those implicit flushes,
1005 * you have to reload those areas before next draws are pushed, and
1006 * since the driver can't easily know what's been modified by the draws
1007 * it flushed, the easiest solution is to reload everything.
1008 */
1009 for (unsigned i = 0; i < batch->key.nr_cbufs; i++) {
1010 struct panfrost_resource *res;
1011
1012 if (!batch->key.cbufs[i])
1013 continue;
1014
1015 res = pan_resource(batch->key.cbufs[i]->texture);
1016 panfrost_resource_reset_damage(res);
1017 }
1018
1019 out:
1020 panfrost_freeze_batch(batch);
1021 panfrost_free_batch(batch);
1022 }
1023
1024 void
1025 panfrost_flush_all_batches(struct panfrost_context *ctx, bool wait)
1026 {
1027 struct util_dynarray fences, syncobjs;
1028
1029 if (wait) {
1030 util_dynarray_init(&fences, NULL);
1031 util_dynarray_init(&syncobjs, NULL);
1032 }
1033
1034 hash_table_foreach(ctx->batches, hentry) {
1035 struct panfrost_batch *batch = hentry->data;
1036
1037 assert(batch);
1038
1039 if (wait) {
1040 panfrost_batch_fence_reference(batch->out_sync);
1041 util_dynarray_append(&fences, struct panfrost_batch_fence *,
1042 batch->out_sync);
1043 util_dynarray_append(&syncobjs, uint32_t,
1044 batch->out_sync->syncobj);
1045 }
1046
1047 panfrost_batch_submit(batch);
1048 }
1049
1050 assert(!ctx->batches->entries);
1051
1052 /* Collect batch fences before returning */
1053 panfrost_gc_fences(ctx);
1054
1055 if (!wait)
1056 return;
1057
1058 drmSyncobjWait(pan_screen(ctx->base.screen)->fd,
1059 util_dynarray_begin(&syncobjs),
1060 util_dynarray_num_elements(&syncobjs, uint32_t),
1061 INT64_MAX, DRM_SYNCOBJ_WAIT_FLAGS_WAIT_ALL, NULL);
1062
1063 util_dynarray_foreach(&fences, struct panfrost_batch_fence *, fence)
1064 panfrost_batch_fence_unreference(*fence);
1065
1066 util_dynarray_fini(&fences);
1067 util_dynarray_fini(&syncobjs);
1068 }
1069
1070 bool
1071 panfrost_pending_batches_access_bo(struct panfrost_context *ctx,
1072 const struct panfrost_bo *bo)
1073 {
1074 struct panfrost_bo_access *access;
1075 struct hash_entry *hentry;
1076
1077 hentry = _mesa_hash_table_search(ctx->accessed_bos, bo);
1078 access = hentry ? hentry->data : NULL;
1079 if (!access)
1080 return false;
1081
1082 if (access->writer && access->writer->batch)
1083 return true;
1084
1085 util_dynarray_foreach(&access->readers, struct panfrost_batch_fence *,
1086 reader) {
1087 if (*reader && (*reader)->batch)
1088 return true;
1089 }
1090
1091 return false;
1092 }
1093
1094 void
1095 panfrost_flush_batches_accessing_bo(struct panfrost_context *ctx,
1096 struct panfrost_bo *bo,
1097 uint32_t access_type)
1098 {
1099 struct panfrost_bo_access *access;
1100 struct hash_entry *hentry;
1101
1102 /* It doesn't make any to flush only the readers. */
1103 assert(access_type == PAN_BO_ACCESS_WRITE ||
1104 access_type == PAN_BO_ACCESS_RW);
1105
1106 hentry = _mesa_hash_table_search(ctx->accessed_bos, bo);
1107 access = hentry ? hentry->data : NULL;
1108 if (!access)
1109 return;
1110
1111 if (access_type & PAN_BO_ACCESS_WRITE && access->writer &&
1112 access->writer->batch)
1113 panfrost_batch_submit(access->writer->batch);
1114
1115 if (!(access_type & PAN_BO_ACCESS_READ))
1116 return;
1117
1118 util_dynarray_foreach(&access->readers, struct panfrost_batch_fence *,
1119 reader) {
1120 if (*reader && (*reader)->batch)
1121 panfrost_batch_submit((*reader)->batch);
1122 }
1123 }
1124
1125 void
1126 panfrost_batch_set_requirements(struct panfrost_batch *batch)
1127 {
1128 struct panfrost_context *ctx = batch->ctx;
1129
1130 if (ctx->rasterizer && ctx->rasterizer->base.multisample)
1131 batch->requirements |= PAN_REQ_MSAA;
1132
1133 if (ctx->depth_stencil && ctx->depth_stencil->depth.writemask)
1134 batch->requirements |= PAN_REQ_DEPTH_WRITE;
1135 }
1136
1137 /* Helper to smear a 32-bit color across 128-bit components */
1138
1139 static void
1140 pan_pack_color_32(uint32_t *packed, uint32_t v)
1141 {
1142 for (unsigned i = 0; i < 4; ++i)
1143 packed[i] = v;
1144 }
1145
1146 static void
1147 pan_pack_color_64(uint32_t *packed, uint32_t lo, uint32_t hi)
1148 {
1149 for (unsigned i = 0; i < 4; i += 2) {
1150 packed[i + 0] = lo;
1151 packed[i + 1] = hi;
1152 }
1153 }
1154
1155 static void
1156 pan_pack_color(uint32_t *packed, const union pipe_color_union *color, enum pipe_format format)
1157 {
1158 /* Alpha magicked to 1.0 if there is no alpha */
1159
1160 bool has_alpha = util_format_has_alpha(format);
1161 float clear_alpha = has_alpha ? color->f[3] : 1.0f;
1162
1163 /* Packed color depends on the framebuffer format */
1164
1165 const struct util_format_description *desc =
1166 util_format_description(format);
1167
1168 if (util_format_is_rgba8_variant(desc)) {
1169 pan_pack_color_32(packed,
1170 ((uint32_t) float_to_ubyte(clear_alpha) << 24) |
1171 ((uint32_t) float_to_ubyte(color->f[2]) << 16) |
1172 ((uint32_t) float_to_ubyte(color->f[1]) << 8) |
1173 ((uint32_t) float_to_ubyte(color->f[0]) << 0));
1174 } else if (format == PIPE_FORMAT_B5G6R5_UNORM) {
1175 /* First, we convert the components to R5, G6, B5 separately */
1176 unsigned r5 = CLAMP(color->f[0], 0.0, 1.0) * 31.0;
1177 unsigned g6 = CLAMP(color->f[1], 0.0, 1.0) * 63.0;
1178 unsigned b5 = CLAMP(color->f[2], 0.0, 1.0) * 31.0;
1179
1180 /* Then we pack into a sparse u32. TODO: Why these shifts? */
1181 pan_pack_color_32(packed, (b5 << 25) | (g6 << 14) | (r5 << 5));
1182 } else if (format == PIPE_FORMAT_B4G4R4A4_UNORM) {
1183 /* We scale the components against 0xF0 (=240.0), rather than 0xFF */
1184 unsigned r4 = CLAMP(color->f[0], 0.0, 1.0) * 240.0;
1185 unsigned g4 = CLAMP(color->f[1], 0.0, 1.0) * 240.0;
1186 unsigned b4 = CLAMP(color->f[2], 0.0, 1.0) * 240.0;
1187 unsigned a4 = CLAMP(clear_alpha, 0.0, 1.0) * 240.0;
1188
1189 /* Pack on *byte* intervals */
1190 pan_pack_color_32(packed, (a4 << 24) | (b4 << 16) | (g4 << 8) | r4);
1191 } else if (format == PIPE_FORMAT_B5G5R5A1_UNORM) {
1192 /* Scale as expected but shift oddly */
1193 unsigned r5 = round(CLAMP(color->f[0], 0.0, 1.0)) * 31.0;
1194 unsigned g5 = round(CLAMP(color->f[1], 0.0, 1.0)) * 31.0;
1195 unsigned b5 = round(CLAMP(color->f[2], 0.0, 1.0)) * 31.0;
1196 unsigned a1 = round(CLAMP(clear_alpha, 0.0, 1.0)) * 1.0;
1197
1198 pan_pack_color_32(packed, (a1 << 31) | (b5 << 25) | (g5 << 15) | (r5 << 5));
1199 } else {
1200 /* Try Gallium's generic default path. Doesn't work for all
1201 * formats but it's a good guess. */
1202
1203 union util_color out;
1204
1205 if (util_format_is_pure_integer(format)) {
1206 memcpy(out.ui, color->ui, 16);
1207 } else {
1208 util_pack_color(color->f, format, &out);
1209 }
1210
1211 unsigned size = util_format_get_blocksize(format);
1212
1213 if (size == 1) {
1214 unsigned b = out.ui[0];
1215 unsigned s = b | (b << 8);
1216 pan_pack_color_32(packed, s | (s << 16));
1217 } else if (size == 2)
1218 pan_pack_color_32(packed, out.ui[0] | (out.ui[0] << 16));
1219 else if (size == 3 || size == 4)
1220 pan_pack_color_32(packed, out.ui[0]);
1221 else if (size == 6)
1222 pan_pack_color_64(packed, out.ui[0], out.ui[1] | (out.ui[1] << 16)); /* RGB16F -- RGBB */
1223 else if (size == 8)
1224 pan_pack_color_64(packed, out.ui[0], out.ui[1]);
1225 else if (size == 16)
1226 memcpy(packed, out.ui, 16);
1227 else
1228 unreachable("Unknown generic format size packing clear colour");
1229 }
1230 }
1231
1232 void
1233 panfrost_batch_clear(struct panfrost_batch *batch,
1234 unsigned buffers,
1235 const union pipe_color_union *color,
1236 double depth, unsigned stencil)
1237 {
1238 struct panfrost_context *ctx = batch->ctx;
1239
1240 if (buffers & PIPE_CLEAR_COLOR) {
1241 for (unsigned i = 0; i < PIPE_MAX_COLOR_BUFS; ++i) {
1242 if (!(buffers & (PIPE_CLEAR_COLOR0 << i)))
1243 continue;
1244
1245 enum pipe_format format = ctx->pipe_framebuffer.cbufs[i]->format;
1246 pan_pack_color(batch->clear_color[i], color, format);
1247 }
1248 }
1249
1250 if (buffers & PIPE_CLEAR_DEPTH) {
1251 batch->clear_depth = depth;
1252 }
1253
1254 if (buffers & PIPE_CLEAR_STENCIL) {
1255 batch->clear_stencil = stencil;
1256 }
1257
1258 batch->clear |= buffers;
1259
1260 /* Clearing affects the entire framebuffer (by definition -- this is
1261 * the Gallium clear callback, which clears the whole framebuffer. If
1262 * the scissor test were enabled from the GL side, the state tracker
1263 * would emit a quad instead and we wouldn't go down this code path) */
1264
1265 panfrost_batch_union_scissor(batch, 0, 0,
1266 ctx->pipe_framebuffer.width,
1267 ctx->pipe_framebuffer.height);
1268 }
1269
1270 static bool
1271 panfrost_batch_compare(const void *a, const void *b)
1272 {
1273 return util_framebuffer_state_equal(a, b);
1274 }
1275
1276 static uint32_t
1277 panfrost_batch_hash(const void *key)
1278 {
1279 return _mesa_hash_data(key, sizeof(struct pipe_framebuffer_state));
1280 }
1281
1282 /* Given a new bounding rectangle (scissor), let the job cover the union of the
1283 * new and old bounding rectangles */
1284
1285 void
1286 panfrost_batch_union_scissor(struct panfrost_batch *batch,
1287 unsigned minx, unsigned miny,
1288 unsigned maxx, unsigned maxy)
1289 {
1290 batch->minx = MIN2(batch->minx, minx);
1291 batch->miny = MIN2(batch->miny, miny);
1292 batch->maxx = MAX2(batch->maxx, maxx);
1293 batch->maxy = MAX2(batch->maxy, maxy);
1294 }
1295
1296 void
1297 panfrost_batch_intersection_scissor(struct panfrost_batch *batch,
1298 unsigned minx, unsigned miny,
1299 unsigned maxx, unsigned maxy)
1300 {
1301 batch->minx = MAX2(batch->minx, minx);
1302 batch->miny = MAX2(batch->miny, miny);
1303 batch->maxx = MIN2(batch->maxx, maxx);
1304 batch->maxy = MIN2(batch->maxy, maxy);
1305 }
1306
1307 /* Are we currently rendering to the screen (rather than an FBO)? */
1308
1309 bool
1310 panfrost_batch_is_scanout(struct panfrost_batch *batch)
1311 {
1312 /* If there is no color buffer, it's an FBO */
1313 if (batch->key.nr_cbufs != 1)
1314 return false;
1315
1316 /* If we're too early that no framebuffer was sent, it's scanout */
1317 if (!batch->key.cbufs[0])
1318 return true;
1319
1320 return batch->key.cbufs[0]->texture->bind & PIPE_BIND_DISPLAY_TARGET ||
1321 batch->key.cbufs[0]->texture->bind & PIPE_BIND_SCANOUT ||
1322 batch->key.cbufs[0]->texture->bind & PIPE_BIND_SHARED;
1323 }
1324
1325 void
1326 panfrost_batch_init(struct panfrost_context *ctx)
1327 {
1328 ctx->batches = _mesa_hash_table_create(ctx,
1329 panfrost_batch_hash,
1330 panfrost_batch_compare);
1331 ctx->accessed_bos = _mesa_hash_table_create(ctx, _mesa_hash_pointer,
1332 _mesa_key_pointer_equal);
1333 }