panfrost: Stop keying on rt format when using native loads
[mesa.git] / src / gallium / drivers / panfrost / pan_context.c
1 /*
2 * © Copyright 2018 Alyssa Rosenzweig
3 * Copyright © 2014-2017 Broadcom
4 * Copyright (C) 2017 Intel Corporation
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 *
25 */
26
27 #include <sys/poll.h>
28 #include <errno.h>
29
30 #include "pan_bo.h"
31 #include "pan_context.h"
32 #include "pan_minmax_cache.h"
33 #include "panfrost-quirks.h"
34
35 #include "util/macros.h"
36 #include "util/format/u_format.h"
37 #include "util/u_inlines.h"
38 #include "util/u_upload_mgr.h"
39 #include "util/u_memory.h"
40 #include "util/u_vbuf.h"
41 #include "util/half_float.h"
42 #include "util/u_helpers.h"
43 #include "util/format/u_format.h"
44 #include "util/u_prim.h"
45 #include "util/u_prim_restart.h"
46 #include "indices/u_primconvert.h"
47 #include "tgsi/tgsi_parse.h"
48 #include "tgsi/tgsi_from_mesa.h"
49 #include "util/u_math.h"
50
51 #include "pan_screen.h"
52 #include "pan_blending.h"
53 #include "pan_blend_shaders.h"
54 #include "pan_cmdstream.h"
55 #include "pan_util.h"
56 #include "pandecode/decode.h"
57 #include "util/pan_lower_framebuffer.h"
58
59 struct midgard_tiler_descriptor
60 panfrost_emit_midg_tiler(struct panfrost_batch *batch, unsigned vertex_count)
61 {
62 struct panfrost_device *device = pan_device(batch->ctx->base.screen);
63 bool hierarchy = !(device->quirks & MIDGARD_NO_HIER_TILING);
64 struct midgard_tiler_descriptor t = {0};
65 unsigned height = batch->key.height;
66 unsigned width = batch->key.width;
67
68 t.hierarchy_mask =
69 panfrost_choose_hierarchy_mask(width, height, vertex_count, hierarchy);
70
71 /* Compute the polygon header size and use that to offset the body */
72
73 unsigned header_size = panfrost_tiler_header_size(
74 width, height, t.hierarchy_mask, hierarchy);
75
76 t.polygon_list_size = panfrost_tiler_full_size(
77 width, height, t.hierarchy_mask, hierarchy);
78
79 /* Sanity check */
80
81 if (vertex_count) {
82 struct panfrost_bo *tiler_heap;
83
84 tiler_heap = panfrost_batch_get_tiler_heap(batch);
85 t.polygon_list = panfrost_batch_get_polygon_list(batch,
86 header_size +
87 t.polygon_list_size);
88
89
90 /* Allow the entire tiler heap */
91 t.heap_start = tiler_heap->gpu;
92 t.heap_end = tiler_heap->gpu + tiler_heap->size;
93 } else {
94 struct panfrost_bo *tiler_dummy;
95
96 tiler_dummy = panfrost_batch_get_tiler_dummy(batch);
97 header_size = MALI_TILER_MINIMUM_HEADER_SIZE;
98
99 /* The tiler is disabled, so don't allow the tiler heap */
100 t.heap_start = tiler_dummy->gpu;
101 t.heap_end = t.heap_start;
102
103 /* Use a dummy polygon list */
104 t.polygon_list = tiler_dummy->gpu;
105
106 /* Disable the tiler */
107 if (hierarchy)
108 t.hierarchy_mask |= MALI_TILER_DISABLED;
109 else {
110 t.hierarchy_mask = MALI_TILER_USER;
111 t.polygon_list_size = MALI_TILER_MINIMUM_HEADER_SIZE + 4;
112
113 /* We don't have a WRITE_VALUE job, so write the polygon list manually */
114 uint32_t *polygon_list_body = (uint32_t *) (tiler_dummy->cpu + header_size);
115 polygon_list_body[0] = 0xa0000000; /* TODO: Just that? */
116 }
117 }
118
119 t.polygon_list_body =
120 t.polygon_list + header_size;
121
122 return t;
123 }
124
125 static void
126 panfrost_clear(
127 struct pipe_context *pipe,
128 unsigned buffers,
129 const struct pipe_scissor_state *scissor_state,
130 const union pipe_color_union *color,
131 double depth, unsigned stencil)
132 {
133 struct panfrost_context *ctx = pan_context(pipe);
134
135 /* TODO: panfrost_get_fresh_batch_for_fbo() instantiates a new batch if
136 * the existing batch targeting this FBO has draws. We could probably
137 * avoid that by replacing plain clears by quad-draws with a specific
138 * color/depth/stencil value, thus avoiding the generation of extra
139 * fragment jobs.
140 */
141 struct panfrost_batch *batch = panfrost_get_fresh_batch_for_fbo(ctx);
142
143 panfrost_batch_add_fbo_bos(batch);
144 panfrost_batch_clear(batch, buffers, color, depth, stencil);
145 }
146
147 /* Reset per-frame context, called on context initialisation as well as after
148 * flushing a frame */
149
150 void
151 panfrost_invalidate_frame(struct panfrost_context *ctx)
152 {
153 /* TODO: When does this need to be handled? */
154 ctx->active_queries = true;
155 }
156
157 bool
158 panfrost_writes_point_size(struct panfrost_context *ctx)
159 {
160 assert(ctx->shader[PIPE_SHADER_VERTEX]);
161 struct panfrost_shader_state *vs = panfrost_get_shader_state(ctx, PIPE_SHADER_VERTEX);
162
163 return vs->writes_point_size && ctx->active_prim == PIPE_PRIM_POINTS;
164 }
165
166 void
167 panfrost_vertex_state_upd_attr_offs(struct panfrost_context *ctx,
168 struct mali_vertex_tiler_postfix *vertex_postfix)
169 {
170 if (!ctx->vertex)
171 return;
172
173 struct panfrost_vertex_state *so = ctx->vertex;
174
175 /* Fixup offsets for the second pass. Recall that the hardware
176 * calculates attribute addresses as:
177 *
178 * addr = base + (stride * vtx) + src_offset;
179 *
180 * However, on Mali, base must be aligned to 64-bytes, so we
181 * instead let:
182 *
183 * base' = base & ~63 = base - (base & 63)
184 *
185 * To compensate when using base' (see emit_vertex_data), we have
186 * to adjust src_offset by the masked off piece:
187 *
188 * addr' = base' + (stride * vtx) + (src_offset + (base & 63))
189 * = base - (base & 63) + (stride * vtx) + src_offset + (base & 63)
190 * = base + (stride * vtx) + src_offset
191 * = addr;
192 *
193 * QED.
194 */
195
196 unsigned start = vertex_postfix->offset_start;
197
198 for (unsigned i = 0; i < so->num_elements; ++i) {
199 unsigned vbi = so->pipe[i].vertex_buffer_index;
200 struct pipe_vertex_buffer *buf = &ctx->vertex_buffers[vbi];
201
202 /* Adjust by the masked off bits of the offset. Make sure we
203 * read src_offset from so->hw (which is not GPU visible)
204 * rather than target (which is) due to caching effects */
205
206 unsigned src_offset = so->pipe[i].src_offset;
207
208 /* BOs aligned to 4k so guaranteed aligned to 64 */
209 src_offset += (buf->buffer_offset & 63);
210
211 /* Also, somewhat obscurely per-instance data needs to be
212 * offset in response to a delayed start in an indexed draw */
213
214 if (so->pipe[i].instance_divisor && ctx->instance_count > 1 && start)
215 src_offset -= buf->stride * start;
216
217 so->hw[i].src_offset = src_offset;
218 }
219 }
220
221 /* Compute number of UBOs active (more specifically, compute the highest UBO
222 * number addressable -- if there are gaps, include them in the count anyway).
223 * We always include UBO #0 in the count, since we *need* uniforms enabled for
224 * sysvals. */
225
226 unsigned
227 panfrost_ubo_count(struct panfrost_context *ctx, enum pipe_shader_type stage)
228 {
229 unsigned mask = ctx->constant_buffer[stage].enabled_mask | 1;
230 return 32 - __builtin_clz(mask);
231 }
232
233 /* The entire frame is in memory -- send it off to the kernel! */
234
235 void
236 panfrost_flush(
237 struct pipe_context *pipe,
238 struct pipe_fence_handle **fence,
239 unsigned flags)
240 {
241 struct panfrost_context *ctx = pan_context(pipe);
242 struct panfrost_device *dev = pan_device(pipe->screen);
243 struct util_dynarray fences;
244
245 /* We must collect the fences before the flush is done, otherwise we'll
246 * lose track of them.
247 */
248 if (fence) {
249 util_dynarray_init(&fences, NULL);
250 hash_table_foreach(ctx->batches, hentry) {
251 struct panfrost_batch *batch = hentry->data;
252
253 panfrost_batch_fence_reference(batch->out_sync);
254 util_dynarray_append(&fences,
255 struct panfrost_batch_fence *,
256 batch->out_sync);
257 }
258 }
259
260 /* Submit all pending jobs */
261 panfrost_flush_all_batches(ctx, false);
262
263 if (fence) {
264 struct panfrost_fence *f = panfrost_fence_create(ctx, &fences);
265 pipe->screen->fence_reference(pipe->screen, fence, NULL);
266 *fence = (struct pipe_fence_handle *)f;
267
268 util_dynarray_foreach(&fences, struct panfrost_batch_fence *, fence)
269 panfrost_batch_fence_unreference(*fence);
270
271 util_dynarray_fini(&fences);
272 }
273
274 if (dev->debug & PAN_DBG_TRACE)
275 pandecode_next_frame();
276 }
277
278 static void
279 panfrost_texture_barrier(struct pipe_context *pipe, unsigned flags)
280 {
281 struct panfrost_context *ctx = pan_context(pipe);
282 panfrost_flush_all_batches(ctx, false);
283 }
284
285 #define DEFINE_CASE(c) case PIPE_PRIM_##c: return MALI_##c;
286
287 static int
288 g2m_draw_mode(enum pipe_prim_type mode)
289 {
290 switch (mode) {
291 DEFINE_CASE(POINTS);
292 DEFINE_CASE(LINES);
293 DEFINE_CASE(LINE_LOOP);
294 DEFINE_CASE(LINE_STRIP);
295 DEFINE_CASE(TRIANGLES);
296 DEFINE_CASE(TRIANGLE_STRIP);
297 DEFINE_CASE(TRIANGLE_FAN);
298 DEFINE_CASE(QUADS);
299 DEFINE_CASE(QUAD_STRIP);
300 DEFINE_CASE(POLYGON);
301
302 default:
303 unreachable("Invalid draw mode");
304 }
305 }
306
307 #undef DEFINE_CASE
308
309 static bool
310 panfrost_scissor_culls_everything(struct panfrost_context *ctx)
311 {
312 const struct pipe_scissor_state *ss = &ctx->scissor;
313
314 /* Check if we're scissoring at all */
315
316 if (!(ctx->rasterizer && ctx->rasterizer->base.scissor))
317 return false;
318
319 return (ss->minx == ss->maxx) || (ss->miny == ss->maxy);
320 }
321
322 /* Count generated primitives (when there is no geom/tess shaders) for
323 * transform feedback */
324
325 static void
326 panfrost_statistics_record(
327 struct panfrost_context *ctx,
328 const struct pipe_draw_info *info)
329 {
330 if (!ctx->active_queries)
331 return;
332
333 uint32_t prims = u_prims_for_vertices(info->mode, info->count);
334 ctx->prims_generated += prims;
335
336 if (!ctx->streamout.num_targets)
337 return;
338
339 ctx->tf_prims_generated += prims;
340 }
341
342 static void
343 panfrost_update_streamout_offsets(struct panfrost_context *ctx)
344 {
345 for (unsigned i = 0; i < ctx->streamout.num_targets; ++i) {
346 unsigned count;
347
348 count = u_stream_outputs_for_vertices(ctx->active_prim,
349 ctx->vertex_count);
350 ctx->streamout.offsets[i] += count;
351 }
352 }
353
354 static void
355 panfrost_draw_vbo(
356 struct pipe_context *pipe,
357 const struct pipe_draw_info *info)
358 {
359 struct panfrost_context *ctx = pan_context(pipe);
360
361 /* First of all, check the scissor to see if anything is drawn at all.
362 * If it's not, we drop the draw (mostly a conformance issue;
363 * well-behaved apps shouldn't hit this) */
364
365 if (panfrost_scissor_culls_everything(ctx))
366 return;
367
368 int mode = info->mode;
369
370 /* Fallback unsupported restart index */
371 unsigned primitive_index = (1 << (info->index_size * 8)) - 1;
372
373 if (info->primitive_restart && info->index_size
374 && info->restart_index != primitive_index) {
375 util_draw_vbo_without_prim_restart(pipe, info);
376 return;
377 }
378
379 /* Fallback for unsupported modes */
380
381 assert(ctx->rasterizer != NULL);
382
383 if (!(ctx->draw_modes & (1 << mode))) {
384 if (mode == PIPE_PRIM_QUADS && info->count == 4 && !ctx->rasterizer->base.flatshade) {
385 mode = PIPE_PRIM_TRIANGLE_FAN;
386 } else {
387 if (info->count < 4) {
388 /* Degenerate case? */
389 return;
390 }
391
392 util_primconvert_save_rasterizer_state(ctx->primconvert, &ctx->rasterizer->base);
393 util_primconvert_draw_vbo(ctx->primconvert, info);
394 return;
395 }
396 }
397
398 /* Now that we have a guaranteed terminating path, find the job.
399 * Assignment commented out to prevent unused warning */
400
401 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
402
403 panfrost_batch_add_fbo_bos(batch);
404 panfrost_batch_set_requirements(batch);
405
406 /* Take into account a negative bias */
407 ctx->vertex_count = info->count + abs(info->index_bias);
408 ctx->instance_count = info->instance_count;
409 ctx->active_prim = info->mode;
410
411 struct mali_vertex_tiler_prefix vertex_prefix, tiler_prefix;
412 struct mali_vertex_tiler_postfix vertex_postfix, tiler_postfix;
413 union midgard_primitive_size primitive_size;
414 unsigned vertex_count;
415
416 panfrost_vt_init(ctx, PIPE_SHADER_VERTEX, &vertex_prefix, &vertex_postfix);
417 panfrost_vt_init(ctx, PIPE_SHADER_FRAGMENT, &tiler_prefix, &tiler_postfix);
418
419 panfrost_vt_set_draw_info(ctx, info, g2m_draw_mode(mode),
420 &vertex_postfix, &tiler_prefix,
421 &tiler_postfix, &vertex_count,
422 &ctx->padded_count);
423
424 panfrost_statistics_record(ctx, info);
425
426 /* Dispatch "compute jobs" for the vertex/tiler pair as (1,
427 * vertex_count, 1) */
428
429 panfrost_pack_work_groups_fused(&vertex_prefix, &tiler_prefix,
430 1, vertex_count, info->instance_count,
431 1, 1, 1);
432
433 /* Emit all sort of descriptors. */
434 panfrost_emit_vertex_data(batch, &vertex_postfix);
435 panfrost_emit_varying_descriptor(batch,
436 ctx->padded_count *
437 ctx->instance_count,
438 &vertex_postfix, &tiler_postfix,
439 &primitive_size);
440 panfrost_emit_shader_meta(batch, PIPE_SHADER_VERTEX, &vertex_postfix);
441 panfrost_emit_shader_meta(batch, PIPE_SHADER_FRAGMENT, &tiler_postfix);
442 panfrost_emit_vertex_attr_meta(batch, &vertex_postfix);
443 panfrost_emit_sampler_descriptors(batch, PIPE_SHADER_VERTEX, &vertex_postfix);
444 panfrost_emit_sampler_descriptors(batch, PIPE_SHADER_FRAGMENT, &tiler_postfix);
445 panfrost_emit_texture_descriptors(batch, PIPE_SHADER_VERTEX, &vertex_postfix);
446 panfrost_emit_texture_descriptors(batch, PIPE_SHADER_FRAGMENT, &tiler_postfix);
447 panfrost_emit_const_buf(batch, PIPE_SHADER_VERTEX, &vertex_postfix);
448 panfrost_emit_const_buf(batch, PIPE_SHADER_FRAGMENT, &tiler_postfix);
449 panfrost_emit_viewport(batch, &tiler_postfix);
450
451 panfrost_vt_update_primitive_size(ctx, &tiler_prefix, &primitive_size);
452
453 /* Fire off the draw itself */
454 panfrost_emit_vertex_tiler_jobs(batch, &vertex_prefix, &vertex_postfix,
455 &tiler_prefix, &tiler_postfix,
456 &primitive_size);
457
458 /* Adjust the batch stack size based on the new shader stack sizes. */
459 panfrost_batch_adjust_stack_size(batch);
460
461 /* Increment transform feedback offsets */
462 panfrost_update_streamout_offsets(ctx);
463 }
464
465 /* CSO state */
466
467 static void
468 panfrost_generic_cso_delete(struct pipe_context *pctx, void *hwcso)
469 {
470 free(hwcso);
471 }
472
473 static void *
474 panfrost_create_rasterizer_state(
475 struct pipe_context *pctx,
476 const struct pipe_rasterizer_state *cso)
477 {
478 struct panfrost_rasterizer *so = CALLOC_STRUCT(panfrost_rasterizer);
479
480 so->base = *cso;
481
482 return so;
483 }
484
485 static void
486 panfrost_bind_rasterizer_state(
487 struct pipe_context *pctx,
488 void *hwcso)
489 {
490 struct panfrost_context *ctx = pan_context(pctx);
491
492 ctx->rasterizer = hwcso;
493
494 if (!hwcso)
495 return;
496
497 /* Gauranteed with the core GL call, so don't expose ARB_polygon_offset */
498 assert(ctx->rasterizer->base.offset_clamp == 0.0);
499
500 /* Point sprites are emulated */
501
502 struct panfrost_shader_state *variant = panfrost_get_shader_state(ctx, PIPE_SHADER_FRAGMENT);
503
504 if (ctx->rasterizer->base.sprite_coord_enable || (variant && variant->point_sprite_mask))
505 ctx->base.bind_fs_state(&ctx->base, ctx->shader[PIPE_SHADER_FRAGMENT]);
506 }
507
508 static void *
509 panfrost_create_vertex_elements_state(
510 struct pipe_context *pctx,
511 unsigned num_elements,
512 const struct pipe_vertex_element *elements)
513 {
514 struct panfrost_vertex_state *so = CALLOC_STRUCT(panfrost_vertex_state);
515 struct panfrost_device *dev = pan_device(pctx->screen);
516
517 so->num_elements = num_elements;
518 memcpy(so->pipe, elements, sizeof(*elements) * num_elements);
519
520 for (int i = 0; i < num_elements; ++i) {
521 so->hw[i].index = i;
522
523 enum pipe_format fmt = elements[i].src_format;
524 const struct util_format_description *desc = util_format_description(fmt);
525 so->hw[i].unknown1 = 0x2;
526
527 if (dev->quirks & HAS_SWIZZLES)
528 so->hw[i].swizzle = panfrost_translate_swizzle_4(desc->swizzle);
529 else
530 so->hw[i].swizzle = panfrost_bifrost_swizzle(desc->nr_channels);
531
532 enum mali_format hw_format = panfrost_pipe_format_table[desc->format].hw;
533 so->hw[i].format = hw_format;
534 assert(hw_format);
535 }
536
537 /* Let's also prepare vertex builtins */
538 so->hw[PAN_VERTEX_ID].format = MALI_R32UI;
539 if (dev->quirks & HAS_SWIZZLES)
540 so->hw[PAN_VERTEX_ID].swizzle = panfrost_get_default_swizzle(1);
541 else
542 so->hw[PAN_VERTEX_ID].swizzle = panfrost_bifrost_swizzle(1);
543
544 so->hw[PAN_INSTANCE_ID].format = MALI_R32UI;
545 if (dev->quirks & HAS_SWIZZLES)
546 so->hw[PAN_INSTANCE_ID].swizzle = panfrost_get_default_swizzle(1);
547 else
548 so->hw[PAN_INSTANCE_ID].swizzle = panfrost_bifrost_swizzle(1);
549
550 return so;
551 }
552
553 static void
554 panfrost_bind_vertex_elements_state(
555 struct pipe_context *pctx,
556 void *hwcso)
557 {
558 struct panfrost_context *ctx = pan_context(pctx);
559 ctx->vertex = hwcso;
560 }
561
562 static void *
563 panfrost_create_shader_state(
564 struct pipe_context *pctx,
565 const struct pipe_shader_state *cso,
566 enum pipe_shader_type stage)
567 {
568 struct panfrost_shader_variants *so = CALLOC_STRUCT(panfrost_shader_variants);
569 struct panfrost_device *dev = pan_device(pctx->screen);
570 so->base = *cso;
571
572 /* Token deep copy to prevent memory corruption */
573
574 if (cso->type == PIPE_SHADER_IR_TGSI)
575 so->base.tokens = tgsi_dup_tokens(so->base.tokens);
576
577 /* Precompile for shader-db if we need to */
578 if (unlikely((dev->debug & PAN_DBG_PRECOMPILE) && cso->type == PIPE_SHADER_IR_NIR)) {
579 struct panfrost_context *ctx = pan_context(pctx);
580
581 struct panfrost_shader_state state;
582 uint64_t outputs_written;
583
584 panfrost_shader_compile(ctx, PIPE_SHADER_IR_NIR,
585 so->base.ir.nir,
586 tgsi_processor_to_shader_stage(stage),
587 &state, &outputs_written);
588 }
589
590 return so;
591 }
592
593 static void
594 panfrost_delete_shader_state(
595 struct pipe_context *pctx,
596 void *so)
597 {
598 struct panfrost_shader_variants *cso = (struct panfrost_shader_variants *) so;
599
600 if (cso->base.type == PIPE_SHADER_IR_TGSI) {
601 /* TODO: leaks TGSI tokens! */
602 }
603
604 for (unsigned i = 0; i < cso->variant_count; ++i) {
605 struct panfrost_shader_state *shader_state = &cso->variants[i];
606 panfrost_bo_unreference(shader_state->bo);
607 shader_state->bo = NULL;
608 }
609 free(cso->variants);
610
611 free(so);
612 }
613
614 static void *
615 panfrost_create_sampler_state(
616 struct pipe_context *pctx,
617 const struct pipe_sampler_state *cso)
618 {
619 struct panfrost_sampler_state *so = CALLOC_STRUCT(panfrost_sampler_state);
620 struct panfrost_device *device = pan_device(pctx->screen);
621
622 so->base = *cso;
623
624 if (device->quirks & IS_BIFROST)
625 panfrost_sampler_desc_init_bifrost(cso, &so->bifrost_hw);
626 else
627 panfrost_sampler_desc_init(cso, &so->midgard_hw);
628
629 return so;
630 }
631
632 static void
633 panfrost_bind_sampler_states(
634 struct pipe_context *pctx,
635 enum pipe_shader_type shader,
636 unsigned start_slot, unsigned num_sampler,
637 void **sampler)
638 {
639 assert(start_slot == 0);
640
641 struct panfrost_context *ctx = pan_context(pctx);
642
643 /* XXX: Should upload, not just copy? */
644 ctx->sampler_count[shader] = num_sampler;
645 memcpy(ctx->samplers[shader], sampler, num_sampler * sizeof (void *));
646 }
647
648 static bool
649 panfrost_variant_matches(
650 struct panfrost_context *ctx,
651 struct panfrost_shader_state *variant,
652 enum pipe_shader_type type)
653 {
654 struct panfrost_device *dev = pan_device(ctx->base.screen);
655 struct pipe_rasterizer_state *rasterizer = &ctx->rasterizer->base;
656 struct pipe_alpha_state *alpha = &ctx->depth_stencil->alpha;
657
658 bool is_fragment = (type == PIPE_SHADER_FRAGMENT);
659
660 if (is_fragment && (alpha->enabled || variant->alpha_state.enabled)) {
661 /* Make sure enable state is at least the same */
662 if (alpha->enabled != variant->alpha_state.enabled) {
663 return false;
664 }
665
666 /* Check that the contents of the test are the same */
667 bool same_func = alpha->func == variant->alpha_state.func;
668 bool same_ref = alpha->ref_value == variant->alpha_state.ref_value;
669
670 if (!(same_func && same_ref)) {
671 return false;
672 }
673 }
674
675 if (variant->outputs_read) {
676 struct pipe_framebuffer_state *fb = &ctx->pipe_framebuffer;
677
678 unsigned i;
679 BITSET_FOREACH_SET(i, &variant->outputs_read, 8) {
680 enum pipe_format fmt = PIPE_FORMAT_R8G8B8A8_UNORM;
681
682 if ((fb->nr_cbufs > i) && fb->cbufs[i])
683 fmt = fb->cbufs[i]->format;
684
685 const struct util_format_description *desc =
686 util_format_description(fmt);
687
688 if (pan_format_class_load(desc, dev->quirks) == PAN_FORMAT_NATIVE)
689 fmt = PIPE_FORMAT_NONE;
690
691 if (variant->rt_formats[i] != fmt)
692 return false;
693 }
694 }
695
696 /* Point sprites TODO on bifrost, always pass */
697 if (is_fragment && rasterizer && (rasterizer->sprite_coord_enable |
698 variant->point_sprite_mask)
699 && !(dev->quirks & IS_BIFROST)) {
700 /* Ensure the same varyings are turned to point sprites */
701 if (rasterizer->sprite_coord_enable != variant->point_sprite_mask)
702 return false;
703
704 /* Ensure the orientation is correct */
705 bool upper_left =
706 rasterizer->sprite_coord_mode ==
707 PIPE_SPRITE_COORD_UPPER_LEFT;
708
709 if (variant->point_sprite_upper_left != upper_left)
710 return false;
711 }
712
713 /* Otherwise, we're good to go */
714 return true;
715 }
716
717 /**
718 * Fix an uncompiled shader's stream output info, and produce a bitmask
719 * of which VARYING_SLOT_* are captured for stream output.
720 *
721 * Core Gallium stores output->register_index as a "slot" number, where
722 * slots are assigned consecutively to all outputs in info->outputs_written.
723 * This naive packing of outputs doesn't work for us - we too have slots,
724 * but the layout is defined by the VUE map, which we won't have until we
725 * compile a specific shader variant. So, we remap these and simply store
726 * VARYING_SLOT_* in our copy's output->register_index fields.
727 *
728 * We then produce a bitmask of outputs which are used for SO.
729 *
730 * Implementation from iris.
731 */
732
733 static uint64_t
734 update_so_info(struct pipe_stream_output_info *so_info,
735 uint64_t outputs_written)
736 {
737 uint64_t so_outputs = 0;
738 uint8_t reverse_map[64] = {0};
739 unsigned slot = 0;
740
741 while (outputs_written)
742 reverse_map[slot++] = u_bit_scan64(&outputs_written);
743
744 for (unsigned i = 0; i < so_info->num_outputs; i++) {
745 struct pipe_stream_output *output = &so_info->output[i];
746
747 /* Map Gallium's condensed "slots" back to real VARYING_SLOT_* enums */
748 output->register_index = reverse_map[output->register_index];
749
750 so_outputs |= 1ull << output->register_index;
751 }
752
753 return so_outputs;
754 }
755
756 static void
757 panfrost_bind_shader_state(
758 struct pipe_context *pctx,
759 void *hwcso,
760 enum pipe_shader_type type)
761 {
762 struct panfrost_context *ctx = pan_context(pctx);
763 struct panfrost_device *dev = pan_device(ctx->base.screen);
764 ctx->shader[type] = hwcso;
765
766 if (!hwcso) return;
767
768 /* Match the appropriate variant */
769
770 signed variant = -1;
771 struct panfrost_shader_variants *variants = (struct panfrost_shader_variants *) hwcso;
772
773 for (unsigned i = 0; i < variants->variant_count; ++i) {
774 if (panfrost_variant_matches(ctx, &variants->variants[i], type)) {
775 variant = i;
776 break;
777 }
778 }
779
780 if (variant == -1) {
781 /* No variant matched, so create a new one */
782 variant = variants->variant_count++;
783
784 if (variants->variant_count > variants->variant_space) {
785 unsigned old_space = variants->variant_space;
786
787 variants->variant_space *= 2;
788 if (variants->variant_space == 0)
789 variants->variant_space = 1;
790
791 /* Arbitrary limit to stop runaway programs from
792 * creating an unbounded number of shader variants. */
793 assert(variants->variant_space < 1024);
794
795 unsigned msize = sizeof(struct panfrost_shader_state);
796 variants->variants = realloc(variants->variants,
797 variants->variant_space * msize);
798
799 memset(&variants->variants[old_space], 0,
800 (variants->variant_space - old_space) * msize);
801 }
802
803 struct panfrost_shader_state *v =
804 &variants->variants[variant];
805
806 if (type == PIPE_SHADER_FRAGMENT) {
807 v->alpha_state = ctx->depth_stencil->alpha;
808
809 struct pipe_framebuffer_state *fb = &ctx->pipe_framebuffer;
810 for (unsigned i = 0; i < fb->nr_cbufs; ++i) {
811 enum pipe_format fmt = PIPE_FORMAT_R8G8B8A8_UNORM;
812
813 if ((fb->nr_cbufs > i) && fb->cbufs[i])
814 fmt = fb->cbufs[i]->format;
815
816 const struct util_format_description *desc =
817 util_format_description(fmt);
818
819 if (pan_format_class_load(desc, dev->quirks) == PAN_FORMAT_NATIVE)
820 fmt = PIPE_FORMAT_NONE;
821
822 v->rt_formats[i] = fmt;
823 }
824
825 /* Point sprites are TODO on Bifrost */
826 if (ctx->rasterizer && !(dev->quirks & IS_BIFROST)) {
827 v->point_sprite_mask = ctx->rasterizer->base.sprite_coord_enable;
828 v->point_sprite_upper_left =
829 ctx->rasterizer->base.sprite_coord_mode ==
830 PIPE_SPRITE_COORD_UPPER_LEFT;
831 }
832 }
833 }
834
835 /* Select this variant */
836 variants->active_variant = variant;
837
838 struct panfrost_shader_state *shader_state = &variants->variants[variant];
839 assert(panfrost_variant_matches(ctx, shader_state, type));
840
841 /* We finally have a variant, so compile it */
842
843 if (!shader_state->compiled) {
844 uint64_t outputs_written = 0;
845
846 panfrost_shader_compile(ctx, variants->base.type,
847 variants->base.type == PIPE_SHADER_IR_NIR ?
848 variants->base.ir.nir :
849 variants->base.tokens,
850 tgsi_processor_to_shader_stage(type),
851 shader_state,
852 &outputs_written);
853
854 shader_state->compiled = true;
855
856 /* Fixup the stream out information, since what Gallium returns
857 * normally is mildly insane */
858
859 shader_state->stream_output = variants->base.stream_output;
860 shader_state->so_mask =
861 update_so_info(&shader_state->stream_output, outputs_written);
862 }
863 }
864
865 static void *
866 panfrost_create_vs_state(struct pipe_context *pctx, const struct pipe_shader_state *hwcso)
867 {
868 return panfrost_create_shader_state(pctx, hwcso, PIPE_SHADER_VERTEX);
869 }
870
871 static void *
872 panfrost_create_fs_state(struct pipe_context *pctx, const struct pipe_shader_state *hwcso)
873 {
874 return panfrost_create_shader_state(pctx, hwcso, PIPE_SHADER_FRAGMENT);
875 }
876
877 static void
878 panfrost_bind_vs_state(struct pipe_context *pctx, void *hwcso)
879 {
880 panfrost_bind_shader_state(pctx, hwcso, PIPE_SHADER_VERTEX);
881 }
882
883 static void
884 panfrost_bind_fs_state(struct pipe_context *pctx, void *hwcso)
885 {
886 panfrost_bind_shader_state(pctx, hwcso, PIPE_SHADER_FRAGMENT);
887 }
888
889 static void
890 panfrost_set_vertex_buffers(
891 struct pipe_context *pctx,
892 unsigned start_slot,
893 unsigned num_buffers,
894 const struct pipe_vertex_buffer *buffers)
895 {
896 struct panfrost_context *ctx = pan_context(pctx);
897
898 util_set_vertex_buffers_mask(ctx->vertex_buffers, &ctx->vb_mask, buffers, start_slot, num_buffers);
899 }
900
901 static void
902 panfrost_set_constant_buffer(
903 struct pipe_context *pctx,
904 enum pipe_shader_type shader, uint index,
905 const struct pipe_constant_buffer *buf)
906 {
907 struct panfrost_context *ctx = pan_context(pctx);
908 struct panfrost_constant_buffer *pbuf = &ctx->constant_buffer[shader];
909
910 util_copy_constant_buffer(&pbuf->cb[index], buf);
911
912 unsigned mask = (1 << index);
913
914 if (unlikely(!buf)) {
915 pbuf->enabled_mask &= ~mask;
916 pbuf->dirty_mask &= ~mask;
917 return;
918 }
919
920 pbuf->enabled_mask |= mask;
921 pbuf->dirty_mask |= mask;
922 }
923
924 static void
925 panfrost_set_stencil_ref(
926 struct pipe_context *pctx,
927 const struct pipe_stencil_ref *ref)
928 {
929 struct panfrost_context *ctx = pan_context(pctx);
930 ctx->stencil_ref = *ref;
931 }
932
933 void
934 panfrost_create_sampler_view_bo(struct panfrost_sampler_view *so,
935 struct pipe_context *pctx,
936 struct pipe_resource *texture)
937 {
938 struct panfrost_device *device = pan_device(pctx->screen);
939 struct panfrost_resource *prsrc = (struct panfrost_resource *)texture;
940 assert(prsrc->bo);
941
942 so->texture_bo = prsrc->bo->gpu;
943 so->layout = prsrc->layout;
944
945 unsigned char user_swizzle[4] = {
946 so->base.swizzle_r,
947 so->base.swizzle_g,
948 so->base.swizzle_b,
949 so->base.swizzle_a
950 };
951
952 /* In the hardware, array_size refers specifically to array textures,
953 * whereas in Gallium, it also covers cubemaps */
954
955 unsigned array_size = texture->array_size;
956 unsigned depth = texture->depth0;
957
958 if (so->base.target == PIPE_TEXTURE_CUBE) {
959 /* TODO: Cubemap arrays */
960 assert(array_size == 6);
961 array_size /= 6;
962 }
963
964 /* MSAA only supported for 2D textures (and 2D texture arrays via an
965 * extension currently unimplemented */
966
967 if (so->base.target == PIPE_TEXTURE_2D) {
968 assert(depth == 1);
969 depth = texture->nr_samples;
970 } else {
971 /* MSAA only supported for 2D textures */
972 assert(texture->nr_samples <= 1);
973 }
974
975 enum mali_texture_type type =
976 panfrost_translate_texture_type(so->base.target);
977
978 if (device->quirks & IS_BIFROST) {
979 const struct util_format_description *desc =
980 util_format_description(so->base.format);
981 unsigned char composed_swizzle[4];
982 util_format_compose_swizzles(desc->swizzle, user_swizzle, composed_swizzle);
983
984 unsigned size = panfrost_estimate_texture_payload_size(
985 so->base.u.tex.first_level,
986 so->base.u.tex.last_level,
987 so->base.u.tex.first_layer,
988 so->base.u.tex.last_layer,
989 type, prsrc->layout);
990
991 so->bo = panfrost_bo_create(device, size, 0);
992
993 so->bifrost_descriptor = rzalloc(pctx, struct bifrost_texture_descriptor);
994 panfrost_new_texture_bifrost(
995 so->bifrost_descriptor,
996 texture->width0, texture->height0,
997 depth, array_size,
998 so->base.format,
999 type, prsrc->layout,
1000 so->base.u.tex.first_level,
1001 so->base.u.tex.last_level,
1002 so->base.u.tex.first_layer,
1003 so->base.u.tex.last_layer,
1004 texture->nr_samples,
1005 prsrc->cubemap_stride,
1006 panfrost_translate_swizzle_4(composed_swizzle),
1007 prsrc->bo->gpu,
1008 prsrc->slices,
1009 so->bo);
1010 } else {
1011 unsigned size = panfrost_estimate_texture_payload_size(
1012 so->base.u.tex.first_level,
1013 so->base.u.tex.last_level,
1014 so->base.u.tex.first_layer,
1015 so->base.u.tex.last_layer,
1016 type, prsrc->layout);
1017 size += sizeof(struct mali_texture_descriptor);
1018
1019 so->bo = panfrost_bo_create(device, size, 0);
1020
1021 panfrost_new_texture(
1022 so->bo->cpu,
1023 texture->width0, texture->height0,
1024 depth, array_size,
1025 so->base.format,
1026 type, prsrc->layout,
1027 so->base.u.tex.first_level,
1028 so->base.u.tex.last_level,
1029 so->base.u.tex.first_layer,
1030 so->base.u.tex.last_layer,
1031 texture->nr_samples,
1032 prsrc->cubemap_stride,
1033 panfrost_translate_swizzle_4(user_swizzle),
1034 prsrc->bo->gpu,
1035 prsrc->slices);
1036 }
1037 }
1038
1039 static struct pipe_sampler_view *
1040 panfrost_create_sampler_view(
1041 struct pipe_context *pctx,
1042 struct pipe_resource *texture,
1043 const struct pipe_sampler_view *template)
1044 {
1045 struct panfrost_sampler_view *so = rzalloc(pctx, struct panfrost_sampler_view);
1046
1047 pipe_reference(NULL, &texture->reference);
1048
1049 so->base = *template;
1050 so->base.texture = texture;
1051 so->base.reference.count = 1;
1052 so->base.context = pctx;
1053
1054 panfrost_create_sampler_view_bo(so, pctx, texture);
1055
1056 return (struct pipe_sampler_view *) so;
1057 }
1058
1059 static void
1060 panfrost_set_sampler_views(
1061 struct pipe_context *pctx,
1062 enum pipe_shader_type shader,
1063 unsigned start_slot, unsigned num_views,
1064 struct pipe_sampler_view **views)
1065 {
1066 struct panfrost_context *ctx = pan_context(pctx);
1067 unsigned new_nr = 0;
1068 unsigned i;
1069
1070 assert(start_slot == 0);
1071
1072 for (i = 0; i < num_views; ++i) {
1073 if (views[i])
1074 new_nr = i + 1;
1075 pipe_sampler_view_reference((struct pipe_sampler_view **)&ctx->sampler_views[shader][i],
1076 views[i]);
1077 }
1078
1079 for (; i < ctx->sampler_view_count[shader]; i++) {
1080 pipe_sampler_view_reference((struct pipe_sampler_view **)&ctx->sampler_views[shader][i],
1081 NULL);
1082 }
1083 ctx->sampler_view_count[shader] = new_nr;
1084 }
1085
1086 static void
1087 panfrost_sampler_view_destroy(
1088 struct pipe_context *pctx,
1089 struct pipe_sampler_view *pview)
1090 {
1091 struct panfrost_sampler_view *view = (struct panfrost_sampler_view *) pview;
1092
1093 pipe_resource_reference(&pview->texture, NULL);
1094 panfrost_bo_unreference(view->bo);
1095 if (view->bifrost_descriptor)
1096 ralloc_free(view->bifrost_descriptor);
1097 ralloc_free(view);
1098 }
1099
1100 static void
1101 panfrost_set_shader_buffers(
1102 struct pipe_context *pctx,
1103 enum pipe_shader_type shader,
1104 unsigned start, unsigned count,
1105 const struct pipe_shader_buffer *buffers,
1106 unsigned writable_bitmask)
1107 {
1108 struct panfrost_context *ctx = pan_context(pctx);
1109
1110 util_set_shader_buffers_mask(ctx->ssbo[shader], &ctx->ssbo_mask[shader],
1111 buffers, start, count);
1112 }
1113
1114 /* Hints that a framebuffer should use AFBC where possible */
1115
1116 static void
1117 panfrost_hint_afbc(
1118 struct panfrost_device *device,
1119 const struct pipe_framebuffer_state *fb)
1120 {
1121 /* AFBC implemenation incomplete; hide it */
1122 if (!(device->debug & PAN_DBG_AFBC)) return;
1123
1124 /* Hint AFBC to the resources bound to each color buffer */
1125
1126 for (unsigned i = 0; i < fb->nr_cbufs; ++i) {
1127 struct pipe_surface *surf = fb->cbufs[i];
1128 struct panfrost_resource *rsrc = pan_resource(surf->texture);
1129 panfrost_resource_hint_layout(device, rsrc, MALI_TEXTURE_AFBC, 1);
1130 }
1131
1132 /* Also hint it to the depth buffer */
1133
1134 if (fb->zsbuf) {
1135 struct panfrost_resource *rsrc = pan_resource(fb->zsbuf->texture);
1136 panfrost_resource_hint_layout(device, rsrc, MALI_TEXTURE_AFBC, 1);
1137 }
1138 }
1139
1140 static void
1141 panfrost_set_framebuffer_state(struct pipe_context *pctx,
1142 const struct pipe_framebuffer_state *fb)
1143 {
1144 struct panfrost_context *ctx = pan_context(pctx);
1145
1146 panfrost_hint_afbc(pan_device(pctx->screen), fb);
1147 util_copy_framebuffer_state(&ctx->pipe_framebuffer, fb);
1148 ctx->batch = NULL;
1149 panfrost_invalidate_frame(ctx);
1150 }
1151
1152 static void *
1153 panfrost_create_depth_stencil_state(struct pipe_context *pipe,
1154 const struct pipe_depth_stencil_alpha_state *depth_stencil)
1155 {
1156 return mem_dup(depth_stencil, sizeof(*depth_stencil));
1157 }
1158
1159 static void
1160 panfrost_bind_depth_stencil_state(struct pipe_context *pipe,
1161 void *cso)
1162 {
1163 struct panfrost_context *ctx = pan_context(pipe);
1164 struct pipe_depth_stencil_alpha_state *depth_stencil = cso;
1165 ctx->depth_stencil = depth_stencil;
1166
1167 if (!depth_stencil)
1168 return;
1169
1170 /* Alpha does not exist in the hardware (it's not in ES3), so it's
1171 * emulated in the fragment shader */
1172
1173 if (depth_stencil->alpha.enabled) {
1174 /* We need to trigger a new shader (maybe) */
1175 ctx->base.bind_fs_state(&ctx->base, ctx->shader[PIPE_SHADER_FRAGMENT]);
1176 }
1177
1178 /* Bounds test not implemented */
1179 assert(!depth_stencil->depth.bounds_test);
1180 }
1181
1182 static void
1183 panfrost_delete_depth_stencil_state(struct pipe_context *pipe, void *depth)
1184 {
1185 free( depth );
1186 }
1187
1188 static void
1189 panfrost_set_sample_mask(struct pipe_context *pipe,
1190 unsigned sample_mask)
1191 {
1192 struct panfrost_context *ctx = pan_context(pipe);
1193 ctx->sample_mask = sample_mask;
1194 }
1195
1196 static void
1197 panfrost_set_clip_state(struct pipe_context *pipe,
1198 const struct pipe_clip_state *clip)
1199 {
1200 //struct panfrost_context *panfrost = pan_context(pipe);
1201 }
1202
1203 static void
1204 panfrost_set_viewport_states(struct pipe_context *pipe,
1205 unsigned start_slot,
1206 unsigned num_viewports,
1207 const struct pipe_viewport_state *viewports)
1208 {
1209 struct panfrost_context *ctx = pan_context(pipe);
1210
1211 assert(start_slot == 0);
1212 assert(num_viewports == 1);
1213
1214 ctx->pipe_viewport = *viewports;
1215 }
1216
1217 static void
1218 panfrost_set_scissor_states(struct pipe_context *pipe,
1219 unsigned start_slot,
1220 unsigned num_scissors,
1221 const struct pipe_scissor_state *scissors)
1222 {
1223 struct panfrost_context *ctx = pan_context(pipe);
1224
1225 assert(start_slot == 0);
1226 assert(num_scissors == 1);
1227
1228 ctx->scissor = *scissors;
1229 }
1230
1231 static void
1232 panfrost_set_polygon_stipple(struct pipe_context *pipe,
1233 const struct pipe_poly_stipple *stipple)
1234 {
1235 //struct panfrost_context *panfrost = pan_context(pipe);
1236 }
1237
1238 static void
1239 panfrost_set_active_query_state(struct pipe_context *pipe,
1240 bool enable)
1241 {
1242 struct panfrost_context *ctx = pan_context(pipe);
1243 ctx->active_queries = enable;
1244 }
1245
1246 static void
1247 panfrost_destroy(struct pipe_context *pipe)
1248 {
1249 struct panfrost_context *panfrost = pan_context(pipe);
1250
1251 if (panfrost->blitter)
1252 util_blitter_destroy(panfrost->blitter);
1253
1254 if (panfrost->blitter_wallpaper)
1255 util_blitter_destroy(panfrost->blitter_wallpaper);
1256
1257 util_unreference_framebuffer_state(&panfrost->pipe_framebuffer);
1258 u_upload_destroy(pipe->stream_uploader);
1259
1260 ralloc_free(pipe);
1261 }
1262
1263 static struct pipe_query *
1264 panfrost_create_query(struct pipe_context *pipe,
1265 unsigned type,
1266 unsigned index)
1267 {
1268 struct panfrost_query *q = rzalloc(pipe, struct panfrost_query);
1269
1270 q->type = type;
1271 q->index = index;
1272
1273 return (struct pipe_query *) q;
1274 }
1275
1276 static void
1277 panfrost_destroy_query(struct pipe_context *pipe, struct pipe_query *q)
1278 {
1279 struct panfrost_query *query = (struct panfrost_query *) q;
1280
1281 if (query->bo) {
1282 panfrost_bo_unreference(query->bo);
1283 query->bo = NULL;
1284 }
1285
1286 ralloc_free(q);
1287 }
1288
1289 static bool
1290 panfrost_begin_query(struct pipe_context *pipe, struct pipe_query *q)
1291 {
1292 struct panfrost_context *ctx = pan_context(pipe);
1293 struct panfrost_query *query = (struct panfrost_query *) q;
1294
1295 switch (query->type) {
1296 case PIPE_QUERY_OCCLUSION_COUNTER:
1297 case PIPE_QUERY_OCCLUSION_PREDICATE:
1298 case PIPE_QUERY_OCCLUSION_PREDICATE_CONSERVATIVE:
1299 /* Allocate a bo for the query results to be stored */
1300 if (!query->bo) {
1301 query->bo = panfrost_bo_create(
1302 pan_device(ctx->base.screen),
1303 sizeof(unsigned), 0);
1304 }
1305
1306 unsigned *result = (unsigned *)query->bo->cpu;
1307 *result = 0; /* Default to 0 if nothing at all drawn. */
1308 ctx->occlusion_query = query;
1309 break;
1310
1311 /* Geometry statistics are computed in the driver. XXX: geom/tess
1312 * shaders.. */
1313
1314 case PIPE_QUERY_PRIMITIVES_GENERATED:
1315 query->start = ctx->prims_generated;
1316 break;
1317 case PIPE_QUERY_PRIMITIVES_EMITTED:
1318 query->start = ctx->tf_prims_generated;
1319 break;
1320
1321 default:
1322 /* TODO: timestamp queries, etc? */
1323 break;
1324 }
1325
1326 return true;
1327 }
1328
1329 static bool
1330 panfrost_end_query(struct pipe_context *pipe, struct pipe_query *q)
1331 {
1332 struct panfrost_context *ctx = pan_context(pipe);
1333 struct panfrost_query *query = (struct panfrost_query *) q;
1334
1335 switch (query->type) {
1336 case PIPE_QUERY_OCCLUSION_COUNTER:
1337 case PIPE_QUERY_OCCLUSION_PREDICATE:
1338 case PIPE_QUERY_OCCLUSION_PREDICATE_CONSERVATIVE:
1339 ctx->occlusion_query = NULL;
1340 break;
1341 case PIPE_QUERY_PRIMITIVES_GENERATED:
1342 query->end = ctx->prims_generated;
1343 break;
1344 case PIPE_QUERY_PRIMITIVES_EMITTED:
1345 query->end = ctx->tf_prims_generated;
1346 break;
1347 }
1348
1349 return true;
1350 }
1351
1352 static bool
1353 panfrost_get_query_result(struct pipe_context *pipe,
1354 struct pipe_query *q,
1355 bool wait,
1356 union pipe_query_result *vresult)
1357 {
1358 struct panfrost_query *query = (struct panfrost_query *) q;
1359 struct panfrost_context *ctx = pan_context(pipe);
1360
1361
1362 switch (query->type) {
1363 case PIPE_QUERY_OCCLUSION_COUNTER:
1364 case PIPE_QUERY_OCCLUSION_PREDICATE:
1365 case PIPE_QUERY_OCCLUSION_PREDICATE_CONSERVATIVE:
1366 panfrost_flush_batches_accessing_bo(ctx, query->bo, PAN_BO_ACCESS_WRITE);
1367 panfrost_bo_wait(query->bo, INT64_MAX, PAN_BO_ACCESS_WRITE);
1368
1369 /* Read back the query results */
1370 unsigned *result = (unsigned *) query->bo->cpu;
1371 unsigned passed = *result;
1372
1373 if (query->type == PIPE_QUERY_OCCLUSION_COUNTER) {
1374 vresult->u64 = passed;
1375 } else {
1376 vresult->b = !!passed;
1377 }
1378
1379 break;
1380
1381 case PIPE_QUERY_PRIMITIVES_GENERATED:
1382 case PIPE_QUERY_PRIMITIVES_EMITTED:
1383 panfrost_flush_all_batches(ctx, true);
1384 vresult->u64 = query->end - query->start;
1385 break;
1386
1387 default:
1388 /* TODO: more queries */
1389 break;
1390 }
1391
1392 return true;
1393 }
1394
1395 static struct pipe_stream_output_target *
1396 panfrost_create_stream_output_target(struct pipe_context *pctx,
1397 struct pipe_resource *prsc,
1398 unsigned buffer_offset,
1399 unsigned buffer_size)
1400 {
1401 struct pipe_stream_output_target *target;
1402
1403 target = rzalloc(pctx, struct pipe_stream_output_target);
1404
1405 if (!target)
1406 return NULL;
1407
1408 pipe_reference_init(&target->reference, 1);
1409 pipe_resource_reference(&target->buffer, prsc);
1410
1411 target->context = pctx;
1412 target->buffer_offset = buffer_offset;
1413 target->buffer_size = buffer_size;
1414
1415 return target;
1416 }
1417
1418 static void
1419 panfrost_stream_output_target_destroy(struct pipe_context *pctx,
1420 struct pipe_stream_output_target *target)
1421 {
1422 pipe_resource_reference(&target->buffer, NULL);
1423 ralloc_free(target);
1424 }
1425
1426 static void
1427 panfrost_set_stream_output_targets(struct pipe_context *pctx,
1428 unsigned num_targets,
1429 struct pipe_stream_output_target **targets,
1430 const unsigned *offsets)
1431 {
1432 struct panfrost_context *ctx = pan_context(pctx);
1433 struct panfrost_streamout *so = &ctx->streamout;
1434
1435 assert(num_targets <= ARRAY_SIZE(so->targets));
1436
1437 for (unsigned i = 0; i < num_targets; i++) {
1438 if (offsets[i] != -1)
1439 so->offsets[i] = offsets[i];
1440
1441 pipe_so_target_reference(&so->targets[i], targets[i]);
1442 }
1443
1444 for (unsigned i = 0; i < so->num_targets; i++)
1445 pipe_so_target_reference(&so->targets[i], NULL);
1446
1447 so->num_targets = num_targets;
1448 }
1449
1450 struct pipe_context *
1451 panfrost_create_context(struct pipe_screen *screen, void *priv, unsigned flags)
1452 {
1453 struct panfrost_context *ctx = rzalloc(screen, struct panfrost_context);
1454 struct pipe_context *gallium = (struct pipe_context *) ctx;
1455 struct panfrost_device *dev = pan_device(screen);
1456
1457 gallium->screen = screen;
1458
1459 gallium->destroy = panfrost_destroy;
1460
1461 gallium->set_framebuffer_state = panfrost_set_framebuffer_state;
1462
1463 gallium->flush = panfrost_flush;
1464 gallium->clear = panfrost_clear;
1465 gallium->draw_vbo = panfrost_draw_vbo;
1466 gallium->texture_barrier = panfrost_texture_barrier;
1467
1468 gallium->set_vertex_buffers = panfrost_set_vertex_buffers;
1469 gallium->set_constant_buffer = panfrost_set_constant_buffer;
1470 gallium->set_shader_buffers = panfrost_set_shader_buffers;
1471
1472 gallium->set_stencil_ref = panfrost_set_stencil_ref;
1473
1474 gallium->create_sampler_view = panfrost_create_sampler_view;
1475 gallium->set_sampler_views = panfrost_set_sampler_views;
1476 gallium->sampler_view_destroy = panfrost_sampler_view_destroy;
1477
1478 gallium->create_rasterizer_state = panfrost_create_rasterizer_state;
1479 gallium->bind_rasterizer_state = panfrost_bind_rasterizer_state;
1480 gallium->delete_rasterizer_state = panfrost_generic_cso_delete;
1481
1482 gallium->create_vertex_elements_state = panfrost_create_vertex_elements_state;
1483 gallium->bind_vertex_elements_state = panfrost_bind_vertex_elements_state;
1484 gallium->delete_vertex_elements_state = panfrost_generic_cso_delete;
1485
1486 gallium->create_fs_state = panfrost_create_fs_state;
1487 gallium->delete_fs_state = panfrost_delete_shader_state;
1488 gallium->bind_fs_state = panfrost_bind_fs_state;
1489
1490 gallium->create_vs_state = panfrost_create_vs_state;
1491 gallium->delete_vs_state = panfrost_delete_shader_state;
1492 gallium->bind_vs_state = panfrost_bind_vs_state;
1493
1494 gallium->create_sampler_state = panfrost_create_sampler_state;
1495 gallium->delete_sampler_state = panfrost_generic_cso_delete;
1496 gallium->bind_sampler_states = panfrost_bind_sampler_states;
1497
1498 gallium->create_depth_stencil_alpha_state = panfrost_create_depth_stencil_state;
1499 gallium->bind_depth_stencil_alpha_state = panfrost_bind_depth_stencil_state;
1500 gallium->delete_depth_stencil_alpha_state = panfrost_delete_depth_stencil_state;
1501
1502 gallium->set_sample_mask = panfrost_set_sample_mask;
1503
1504 gallium->set_clip_state = panfrost_set_clip_state;
1505 gallium->set_viewport_states = panfrost_set_viewport_states;
1506 gallium->set_scissor_states = panfrost_set_scissor_states;
1507 gallium->set_polygon_stipple = panfrost_set_polygon_stipple;
1508 gallium->set_active_query_state = panfrost_set_active_query_state;
1509
1510 gallium->create_query = panfrost_create_query;
1511 gallium->destroy_query = panfrost_destroy_query;
1512 gallium->begin_query = panfrost_begin_query;
1513 gallium->end_query = panfrost_end_query;
1514 gallium->get_query_result = panfrost_get_query_result;
1515
1516 gallium->create_stream_output_target = panfrost_create_stream_output_target;
1517 gallium->stream_output_target_destroy = panfrost_stream_output_target_destroy;
1518 gallium->set_stream_output_targets = panfrost_set_stream_output_targets;
1519
1520 panfrost_resource_context_init(gallium);
1521 panfrost_blend_context_init(gallium);
1522 panfrost_compute_context_init(gallium);
1523
1524 gallium->stream_uploader = u_upload_create_default(gallium);
1525 gallium->const_uploader = gallium->stream_uploader;
1526 assert(gallium->stream_uploader);
1527
1528 /* All of our GPUs support ES mode. Midgard supports additionally
1529 * QUADS/QUAD_STRIPS/POLYGON. Bifrost supports just QUADS. */
1530
1531 ctx->draw_modes = (1 << (PIPE_PRIM_QUADS + 1)) - 1;
1532
1533 if (!(dev->quirks & IS_BIFROST)) {
1534 ctx->draw_modes |= (1 << PIPE_PRIM_QUAD_STRIP);
1535 ctx->draw_modes |= (1 << PIPE_PRIM_POLYGON);
1536 }
1537
1538 ctx->primconvert = util_primconvert_create(gallium, ctx->draw_modes);
1539
1540 ctx->blitter = util_blitter_create(gallium);
1541 ctx->blitter_wallpaper = util_blitter_create(gallium);
1542
1543 assert(ctx->blitter);
1544 assert(ctx->blitter_wallpaper);
1545
1546 /* Prepare for render! */
1547
1548 panfrost_batch_init(ctx);
1549 panfrost_invalidate_frame(ctx);
1550
1551 /* By default mask everything on */
1552 ctx->sample_mask = ~0;
1553
1554 return gallium;
1555 }