panfrost: Implement sRGB blend shaders
[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_format.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_util.h"
55
56 struct midgard_tiler_descriptor
57 panfrost_emit_midg_tiler(struct panfrost_batch *batch, unsigned vertex_count)
58 {
59 struct panfrost_screen *screen = pan_screen(batch->ctx->base.screen);
60 bool hierarchy = !(screen->quirks & MIDGARD_NO_HIER_TILING);
61 struct midgard_tiler_descriptor t = {0};
62 unsigned height = batch->key.height;
63 unsigned width = batch->key.width;
64
65 t.hierarchy_mask =
66 panfrost_choose_hierarchy_mask(width, height, vertex_count, hierarchy);
67
68 /* Compute the polygon header size and use that to offset the body */
69
70 unsigned header_size = panfrost_tiler_header_size(
71 width, height, t.hierarchy_mask, hierarchy);
72
73 t.polygon_list_size = panfrost_tiler_full_size(
74 width, height, t.hierarchy_mask, hierarchy);
75
76 /* Sanity check */
77
78 if (vertex_count) {
79 struct panfrost_bo *tiler_heap;
80
81 tiler_heap = panfrost_batch_get_tiler_heap(batch);
82 t.polygon_list = panfrost_batch_get_polygon_list(batch,
83 header_size +
84 t.polygon_list_size);
85
86
87 /* Allow the entire tiler heap */
88 t.heap_start = tiler_heap->gpu;
89 t.heap_end = tiler_heap->gpu + tiler_heap->size;
90 } else {
91 struct panfrost_bo *tiler_dummy;
92
93 tiler_dummy = panfrost_batch_get_tiler_dummy(batch);
94 header_size = MALI_TILER_MINIMUM_HEADER_SIZE;
95
96 /* The tiler is disabled, so don't allow the tiler heap */
97 t.heap_start = tiler_dummy->gpu;
98 t.heap_end = t.heap_start;
99
100 /* Use a dummy polygon list */
101 t.polygon_list = tiler_dummy->gpu;
102
103 /* Disable the tiler */
104 if (hierarchy)
105 t.hierarchy_mask |= MALI_TILER_DISABLED;
106 else {
107 t.hierarchy_mask = MALI_TILER_USER;
108 t.polygon_list_size = MALI_TILER_MINIMUM_HEADER_SIZE + 4;
109
110 /* We don't have a WRITE_VALUE job, so write the polygon list manually */
111 uint32_t *polygon_list_body = (uint32_t *) (tiler_dummy->cpu + header_size);
112 polygon_list_body[0] = 0xa0000000; /* TODO: Just that? */
113 }
114 }
115
116 t.polygon_list_body =
117 t.polygon_list + header_size;
118
119 return t;
120 }
121
122 static void
123 panfrost_clear(
124 struct pipe_context *pipe,
125 unsigned buffers,
126 const union pipe_color_union *color,
127 double depth, unsigned stencil)
128 {
129 struct panfrost_context *ctx = pan_context(pipe);
130
131 /* TODO: panfrost_get_fresh_batch_for_fbo() instantiates a new batch if
132 * the existing batch targeting this FBO has draws. We could probably
133 * avoid that by replacing plain clears by quad-draws with a specific
134 * color/depth/stencil value, thus avoiding the generation of extra
135 * fragment jobs.
136 */
137 struct panfrost_batch *batch = panfrost_get_fresh_batch_for_fbo(ctx);
138
139 panfrost_batch_add_fbo_bos(batch);
140 panfrost_batch_clear(batch, buffers, color, depth, stencil);
141 }
142
143 static void
144 panfrost_attach_vt_framebuffer(struct panfrost_context *ctx)
145 {
146 struct panfrost_screen *screen = pan_screen(ctx->base.screen);
147 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
148
149 /* If we haven't, reserve space for the framebuffer */
150
151 if (!batch->framebuffer.gpu) {
152 unsigned size = (screen->quirks & MIDGARD_SFBD) ?
153 sizeof(struct mali_single_framebuffer) :
154 sizeof(struct bifrost_framebuffer);
155
156 batch->framebuffer = panfrost_allocate_transient(batch, size);
157
158 /* Tag the pointer */
159 if (!(screen->quirks & MIDGARD_SFBD))
160 batch->framebuffer.gpu |= MALI_MFBD;
161 }
162
163 for (unsigned i = 0; i < PIPE_SHADER_TYPES; ++i)
164 ctx->payloads[i].postfix.framebuffer = batch->framebuffer.gpu;
165 }
166
167 /* Reset per-frame context, called on context initialisation as well as after
168 * flushing a frame */
169
170 void
171 panfrost_invalidate_frame(struct panfrost_context *ctx)
172 {
173 for (unsigned i = 0; i < PIPE_SHADER_TYPES; ++i)
174 ctx->payloads[i].postfix.framebuffer = 0;
175
176 if (ctx->rasterizer)
177 ctx->dirty |= PAN_DIRTY_RASTERIZER;
178
179 /* XXX */
180 ctx->dirty |= PAN_DIRTY_SAMPLERS | PAN_DIRTY_TEXTURES;
181
182 /* TODO: When does this need to be handled? */
183 ctx->active_queries = true;
184 }
185
186 /* In practice, every field of these payloads should be configurable
187 * arbitrarily, which means these functions are basically catch-all's for
188 * as-of-yet unwavering unknowns */
189
190 static void
191 panfrost_emit_vertex_payload(struct panfrost_context *ctx)
192 {
193 /* 0x2 bit clear on 32-bit T6XX */
194
195 struct midgard_payload_vertex_tiler payload = {
196 .gl_enables = 0x4 | 0x2,
197 };
198
199 /* Vertex and compute are closely coupled, so share a payload */
200
201 memcpy(&ctx->payloads[PIPE_SHADER_VERTEX], &payload, sizeof(payload));
202 memcpy(&ctx->payloads[PIPE_SHADER_COMPUTE], &payload, sizeof(payload));
203 }
204
205 static void
206 panfrost_emit_tiler_payload(struct panfrost_context *ctx)
207 {
208 struct midgard_payload_vertex_tiler payload = {
209 .prefix = {
210 .zero1 = 0xffff, /* Why is this only seen on test-quad-textured? */
211 },
212 };
213
214 memcpy(&ctx->payloads[PIPE_SHADER_FRAGMENT], &payload, sizeof(payload));
215 }
216
217 static unsigned
218 translate_tex_wrap(enum pipe_tex_wrap w)
219 {
220 switch (w) {
221 case PIPE_TEX_WRAP_REPEAT:
222 return MALI_WRAP_REPEAT;
223
224 case PIPE_TEX_WRAP_CLAMP:
225 return MALI_WRAP_CLAMP;
226
227 case PIPE_TEX_WRAP_CLAMP_TO_EDGE:
228 return MALI_WRAP_CLAMP_TO_EDGE;
229
230 case PIPE_TEX_WRAP_CLAMP_TO_BORDER:
231 return MALI_WRAP_CLAMP_TO_BORDER;
232
233 case PIPE_TEX_WRAP_MIRROR_REPEAT:
234 return MALI_WRAP_MIRRORED_REPEAT;
235
236 case PIPE_TEX_WRAP_MIRROR_CLAMP:
237 return MALI_WRAP_MIRRORED_CLAMP;
238
239 case PIPE_TEX_WRAP_MIRROR_CLAMP_TO_EDGE:
240 return MALI_WRAP_MIRRORED_CLAMP_TO_EDGE;
241
242 case PIPE_TEX_WRAP_MIRROR_CLAMP_TO_BORDER:
243 return MALI_WRAP_MIRRORED_CLAMP_TO_BORDER;
244
245 default:
246 unreachable("Invalid wrap");
247 }
248 }
249
250 static unsigned
251 panfrost_translate_compare_func(enum pipe_compare_func in)
252 {
253 switch (in) {
254 case PIPE_FUNC_NEVER:
255 return MALI_FUNC_NEVER;
256
257 case PIPE_FUNC_LESS:
258 return MALI_FUNC_LESS;
259
260 case PIPE_FUNC_EQUAL:
261 return MALI_FUNC_EQUAL;
262
263 case PIPE_FUNC_LEQUAL:
264 return MALI_FUNC_LEQUAL;
265
266 case PIPE_FUNC_GREATER:
267 return MALI_FUNC_GREATER;
268
269 case PIPE_FUNC_NOTEQUAL:
270 return MALI_FUNC_NOTEQUAL;
271
272 case PIPE_FUNC_GEQUAL:
273 return MALI_FUNC_GEQUAL;
274
275 case PIPE_FUNC_ALWAYS:
276 return MALI_FUNC_ALWAYS;
277
278 default:
279 unreachable("Invalid func");
280 }
281 }
282
283 static unsigned
284 panfrost_translate_stencil_op(enum pipe_stencil_op in)
285 {
286 switch (in) {
287 case PIPE_STENCIL_OP_KEEP:
288 return MALI_STENCIL_KEEP;
289
290 case PIPE_STENCIL_OP_ZERO:
291 return MALI_STENCIL_ZERO;
292
293 case PIPE_STENCIL_OP_REPLACE:
294 return MALI_STENCIL_REPLACE;
295
296 case PIPE_STENCIL_OP_INCR:
297 return MALI_STENCIL_INCR;
298
299 case PIPE_STENCIL_OP_DECR:
300 return MALI_STENCIL_DECR;
301
302 case PIPE_STENCIL_OP_INCR_WRAP:
303 return MALI_STENCIL_INCR_WRAP;
304
305 case PIPE_STENCIL_OP_DECR_WRAP:
306 return MALI_STENCIL_DECR_WRAP;
307
308 case PIPE_STENCIL_OP_INVERT:
309 return MALI_STENCIL_INVERT;
310
311 default:
312 unreachable("Invalid stencil op");
313 }
314 }
315
316 static void
317 panfrost_make_stencil_state(const struct pipe_stencil_state *in, struct mali_stencil_test *out)
318 {
319 out->ref = 0; /* Gallium gets it from elsewhere */
320
321 out->mask = in->valuemask;
322 out->func = panfrost_translate_compare_func(in->func);
323 out->sfail = panfrost_translate_stencil_op(in->fail_op);
324 out->dpfail = panfrost_translate_stencil_op(in->zfail_op);
325 out->dppass = panfrost_translate_stencil_op(in->zpass_op);
326 }
327
328 static void
329 panfrost_default_shader_backend(struct panfrost_context *ctx)
330 {
331 struct panfrost_screen *screen = pan_screen(ctx->base.screen);
332 struct mali_shader_meta shader = {
333 .alpha_coverage = ~MALI_ALPHA_COVERAGE(0.000000),
334
335 .unknown2_3 = MALI_DEPTH_FUNC(MALI_FUNC_ALWAYS) | 0x3010,
336 .unknown2_4 = MALI_NO_MSAA | 0x4e0,
337 };
338
339 /* unknown2_4 has 0x10 bit set on T6XX and T720. We don't know why this is
340 * required (independent of 32-bit/64-bit descriptors), or why it's not
341 * used on later GPU revisions. Otherwise, all shader jobs fault on
342 * these earlier chips (perhaps this is a chicken bit of some kind).
343 * More investigation is needed. */
344
345 if (screen->quirks & MIDGARD_SFBD)
346 shader.unknown2_4 |= 0x10;
347
348 struct pipe_stencil_state default_stencil = {
349 .enabled = 0,
350 .func = PIPE_FUNC_ALWAYS,
351 .fail_op = MALI_STENCIL_KEEP,
352 .zfail_op = MALI_STENCIL_KEEP,
353 .zpass_op = MALI_STENCIL_KEEP,
354 .writemask = 0xFF,
355 .valuemask = 0xFF
356 };
357
358 panfrost_make_stencil_state(&default_stencil, &shader.stencil_front);
359 shader.stencil_mask_front = default_stencil.writemask;
360
361 panfrost_make_stencil_state(&default_stencil, &shader.stencil_back);
362 shader.stencil_mask_back = default_stencil.writemask;
363
364 if (default_stencil.enabled)
365 shader.unknown2_4 |= MALI_STENCIL_TEST;
366
367 memcpy(&ctx->fragment_shader_core, &shader, sizeof(shader));
368 }
369
370 /* Generates a vertex/tiler job. This is, in some sense, the heart of the
371 * graphics command stream. It should be called once per draw, accordding to
372 * presentations. Set is_tiler for "tiler" jobs (fragment shader jobs, but in
373 * Mali parlance, "fragment" refers to framebuffer writeout). Clear it for
374 * vertex jobs. */
375
376 struct panfrost_transfer
377 panfrost_vertex_tiler_job(struct panfrost_context *ctx, bool is_tiler)
378 {
379 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
380 struct mali_job_descriptor_header job = {
381 .job_type = is_tiler ? JOB_TYPE_TILER : JOB_TYPE_VERTEX,
382 .job_descriptor_size = 1,
383 };
384
385 struct midgard_payload_vertex_tiler *payload = is_tiler ? &ctx->payloads[PIPE_SHADER_FRAGMENT] : &ctx->payloads[PIPE_SHADER_VERTEX];
386
387 struct panfrost_transfer transfer = panfrost_allocate_transient(batch, sizeof(job) + sizeof(*payload));
388 memcpy(transfer.cpu, &job, sizeof(job));
389 memcpy(transfer.cpu + sizeof(job), payload, sizeof(*payload));
390 return transfer;
391 }
392
393 mali_ptr
394 panfrost_vertex_buffer_address(struct panfrost_context *ctx, unsigned i)
395 {
396 struct pipe_vertex_buffer *buf = &ctx->vertex_buffers[i];
397 struct panfrost_resource *rsrc = (struct panfrost_resource *) (buf->buffer.resource);
398
399 return rsrc->bo->gpu + buf->buffer_offset;
400 }
401
402 static bool
403 panfrost_writes_point_size(struct panfrost_context *ctx)
404 {
405 assert(ctx->shader[PIPE_SHADER_VERTEX]);
406 struct panfrost_shader_state *vs = &ctx->shader[PIPE_SHADER_VERTEX]->variants[ctx->shader[PIPE_SHADER_VERTEX]->active_variant];
407
408 return vs->writes_point_size && ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.draw_mode == MALI_POINTS;
409 }
410
411 /* Stage the attribute descriptors so we can adjust src_offset
412 * to let BOs align nicely */
413
414 static void
415 panfrost_stage_attributes(struct panfrost_context *ctx)
416 {
417 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
418 struct panfrost_vertex_state *so = ctx->vertex;
419
420 size_t sz = sizeof(struct mali_attr_meta) * PAN_MAX_ATTRIBUTE;
421 struct panfrost_transfer transfer = panfrost_allocate_transient(batch, sz);
422 struct mali_attr_meta *target = (struct mali_attr_meta *) transfer.cpu;
423
424 /* Copy as-is for the first pass */
425 memcpy(target, so->hw, sz);
426
427 /* Fixup offsets for the second pass. Recall that the hardware
428 * calculates attribute addresses as:
429 *
430 * addr = base + (stride * vtx) + src_offset;
431 *
432 * However, on Mali, base must be aligned to 64-bytes, so we
433 * instead let:
434 *
435 * base' = base & ~63 = base - (base & 63)
436 *
437 * To compensate when using base' (see emit_vertex_data), we have
438 * to adjust src_offset by the masked off piece:
439 *
440 * addr' = base' + (stride * vtx) + (src_offset + (base & 63))
441 * = base - (base & 63) + (stride * vtx) + src_offset + (base & 63)
442 * = base + (stride * vtx) + src_offset
443 * = addr;
444 *
445 * QED.
446 */
447
448 unsigned start = ctx->payloads[PIPE_SHADER_VERTEX].offset_start;
449
450 for (unsigned i = 0; i < so->num_elements; ++i) {
451 unsigned vbi = so->pipe[i].vertex_buffer_index;
452 struct pipe_vertex_buffer *buf = &ctx->vertex_buffers[vbi];
453 mali_ptr addr = panfrost_vertex_buffer_address(ctx, vbi);
454
455 /* Adjust by the masked off bits of the offset */
456 target[i].src_offset += (addr & 63);
457
458 /* Also, somewhat obscurely per-instance data needs to be
459 * offset in response to a delayed start in an indexed draw */
460
461 if (so->pipe[i].instance_divisor && ctx->instance_count > 1 && start)
462 target[i].src_offset -= buf->stride * start;
463 }
464
465 /* Let's also include vertex builtins */
466
467 target[PAN_VERTEX_ID].format = MALI_R32UI;
468 target[PAN_VERTEX_ID].swizzle = panfrost_get_default_swizzle(1);
469
470 target[PAN_INSTANCE_ID].format = MALI_R32UI;
471 target[PAN_INSTANCE_ID].swizzle = panfrost_get_default_swizzle(1);
472
473 ctx->payloads[PIPE_SHADER_VERTEX].postfix.attribute_meta = transfer.gpu;
474 }
475
476 static void
477 panfrost_upload_sampler_descriptors(struct panfrost_context *ctx)
478 {
479 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
480 size_t desc_size = sizeof(struct mali_sampler_descriptor);
481
482 for (int t = 0; t <= PIPE_SHADER_FRAGMENT; ++t) {
483 mali_ptr upload = 0;
484
485 if (ctx->sampler_count[t]) {
486 size_t transfer_size = desc_size * ctx->sampler_count[t];
487
488 struct panfrost_transfer transfer =
489 panfrost_allocate_transient(batch, transfer_size);
490
491 struct mali_sampler_descriptor *desc =
492 (struct mali_sampler_descriptor *) transfer.cpu;
493
494 for (int i = 0; i < ctx->sampler_count[t]; ++i)
495 desc[i] = ctx->samplers[t][i]->hw;
496
497 upload = transfer.gpu;
498 }
499
500 ctx->payloads[t].postfix.sampler_descriptor = upload;
501 }
502 }
503
504 static enum mali_texture_layout
505 panfrost_layout_for_texture(struct panfrost_resource *rsrc)
506 {
507 /* TODO: other linear depth textures */
508 bool is_depth = rsrc->base.format == PIPE_FORMAT_Z32_UNORM;
509
510 switch (rsrc->layout) {
511 case PAN_AFBC:
512 return MALI_TEXTURE_AFBC;
513 case PAN_TILED:
514 assert(!is_depth);
515 return MALI_TEXTURE_TILED;
516 case PAN_LINEAR:
517 return is_depth ? MALI_TEXTURE_TILED : MALI_TEXTURE_LINEAR;
518 default:
519 unreachable("Invalid texture layout");
520 }
521 }
522
523 static mali_ptr
524 panfrost_upload_tex(
525 struct panfrost_context *ctx,
526 enum pipe_shader_type st,
527 struct panfrost_sampler_view *view)
528 {
529 if (!view)
530 return (mali_ptr) 0;
531
532 struct pipe_sampler_view *pview = &view->base;
533 struct panfrost_resource *rsrc = pan_resource(pview->texture);
534 mali_ptr descriptor_gpu;
535 void *descriptor;
536
537 /* Do we interleave an explicit stride with every element? */
538
539 bool has_manual_stride = view->manual_stride;
540
541 /* For easy access */
542
543 bool is_buffer = pview->target == PIPE_BUFFER;
544 unsigned first_level = is_buffer ? 0 : pview->u.tex.first_level;
545 unsigned last_level = is_buffer ? 0 : pview->u.tex.last_level;
546 unsigned first_layer = is_buffer ? 0 : pview->u.tex.first_layer;
547 unsigned last_layer = is_buffer ? 0 : pview->u.tex.last_layer;
548
549 /* Lower-bit is set when sampling from colour AFBC */
550 bool is_afbc = rsrc->layout == PAN_AFBC;
551 bool is_zs = rsrc->base.bind & PIPE_BIND_DEPTH_STENCIL;
552 unsigned afbc_bit = (is_afbc && !is_zs) ? 1 : 0;
553
554 /* Add the BO to the job so it's retained until the job is done. */
555 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
556 panfrost_batch_add_bo(batch, rsrc->bo,
557 PAN_BO_ACCESS_SHARED | PAN_BO_ACCESS_READ |
558 panfrost_bo_access_for_stage(st));
559
560 /* Add the usage flags in, since they can change across the CSO
561 * lifetime due to layout switches */
562
563 view->hw.format.layout = panfrost_layout_for_texture(rsrc);
564 view->hw.format.manual_stride = has_manual_stride;
565
566 /* Inject the addresses in, interleaving mip levels, cube faces, and
567 * strides in that order */
568
569 unsigned idx = 0;
570 unsigned levels = 1 + last_level - first_level;
571 unsigned layers = 1 + last_layer - first_layer;
572 unsigned num_elements = levels * layers;
573 if (has_manual_stride)
574 num_elements *= 2;
575
576 descriptor = malloc(sizeof(struct mali_texture_descriptor) +
577 sizeof(mali_ptr) * num_elements);
578 memcpy(descriptor, &view->hw, sizeof(struct mali_texture_descriptor));
579
580 mali_ptr *pointers_and_strides = descriptor +
581 sizeof(struct mali_texture_descriptor);
582
583 for (unsigned l = first_level; l <= last_level; ++l) {
584 for (unsigned f = first_layer; f <= last_layer; ++f) {
585
586 pointers_and_strides[idx++] =
587 panfrost_get_texture_address(rsrc, l, f) + afbc_bit;
588
589 if (has_manual_stride) {
590 pointers_and_strides[idx++] =
591 rsrc->slices[l].stride;
592 }
593 }
594 }
595
596 descriptor_gpu = panfrost_upload_transient(batch, descriptor,
597 sizeof(struct mali_texture_descriptor) +
598 num_elements * sizeof(*pointers_and_strides));
599 free(descriptor);
600
601 return descriptor_gpu;
602 }
603
604 static void
605 panfrost_upload_texture_descriptors(struct panfrost_context *ctx)
606 {
607 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
608
609 for (int t = 0; t <= PIPE_SHADER_FRAGMENT; ++t) {
610 mali_ptr trampoline = 0;
611
612 if (ctx->sampler_view_count[t]) {
613 uint64_t trampolines[PIPE_MAX_SHADER_SAMPLER_VIEWS];
614
615 for (int i = 0; i < ctx->sampler_view_count[t]; ++i)
616 trampolines[i] =
617 panfrost_upload_tex(ctx, t, ctx->sampler_views[t][i]);
618
619 trampoline = panfrost_upload_transient(batch, trampolines, sizeof(uint64_t) * ctx->sampler_view_count[t]);
620 }
621
622 ctx->payloads[t].postfix.texture_trampoline = trampoline;
623 }
624 }
625
626 struct sysval_uniform {
627 union {
628 float f[4];
629 int32_t i[4];
630 uint32_t u[4];
631 uint64_t du[2];
632 };
633 };
634
635 static void panfrost_upload_viewport_scale_sysval(struct panfrost_context *ctx,
636 struct sysval_uniform *uniform)
637 {
638 const struct pipe_viewport_state *vp = &ctx->pipe_viewport;
639
640 uniform->f[0] = vp->scale[0];
641 uniform->f[1] = vp->scale[1];
642 uniform->f[2] = vp->scale[2];
643 }
644
645 static void panfrost_upload_viewport_offset_sysval(struct panfrost_context *ctx,
646 struct sysval_uniform *uniform)
647 {
648 const struct pipe_viewport_state *vp = &ctx->pipe_viewport;
649
650 uniform->f[0] = vp->translate[0];
651 uniform->f[1] = vp->translate[1];
652 uniform->f[2] = vp->translate[2];
653 }
654
655 static void panfrost_upload_txs_sysval(struct panfrost_context *ctx,
656 enum pipe_shader_type st,
657 unsigned int sysvalid,
658 struct sysval_uniform *uniform)
659 {
660 unsigned texidx = PAN_SYSVAL_ID_TO_TXS_TEX_IDX(sysvalid);
661 unsigned dim = PAN_SYSVAL_ID_TO_TXS_DIM(sysvalid);
662 bool is_array = PAN_SYSVAL_ID_TO_TXS_IS_ARRAY(sysvalid);
663 struct pipe_sampler_view *tex = &ctx->sampler_views[st][texidx]->base;
664
665 assert(dim);
666 uniform->i[0] = u_minify(tex->texture->width0, tex->u.tex.first_level);
667
668 if (dim > 1)
669 uniform->i[1] = u_minify(tex->texture->height0,
670 tex->u.tex.first_level);
671
672 if (dim > 2)
673 uniform->i[2] = u_minify(tex->texture->depth0,
674 tex->u.tex.first_level);
675
676 if (is_array)
677 uniform->i[dim] = tex->texture->array_size;
678 }
679
680 static void panfrost_upload_ssbo_sysval(
681 struct panfrost_context *ctx,
682 enum pipe_shader_type st,
683 unsigned ssbo_id,
684 struct sysval_uniform *uniform)
685 {
686 assert(ctx->ssbo_mask[st] & (1 << ssbo_id));
687 struct pipe_shader_buffer sb = ctx->ssbo[st][ssbo_id];
688
689 /* Compute address */
690 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
691 struct panfrost_bo *bo = pan_resource(sb.buffer)->bo;
692
693 panfrost_batch_add_bo(batch, bo,
694 PAN_BO_ACCESS_SHARED | PAN_BO_ACCESS_RW |
695 panfrost_bo_access_for_stage(st));
696
697 /* Upload address and size as sysval */
698 uniform->du[0] = bo->gpu + sb.buffer_offset;
699 uniform->u[2] = sb.buffer_size;
700 }
701
702 static void
703 panfrost_upload_sampler_sysval(
704 struct panfrost_context *ctx,
705 enum pipe_shader_type st,
706 unsigned sampler_index,
707 struct sysval_uniform *uniform)
708 {
709 struct pipe_sampler_state *sampl =
710 &ctx->samplers[st][sampler_index]->base;
711
712 uniform->f[0] = sampl->min_lod;
713 uniform->f[1] = sampl->max_lod;
714 uniform->f[2] = sampl->lod_bias;
715
716 /* Even without any errata, Midgard represents "no mipmapping" as
717 * fixing the LOD with the clamps; keep behaviour consistent. c.f.
718 * panfrost_create_sampler_state which also explains our choice of
719 * epsilon value (again to keep behaviour consistent) */
720
721 if (sampl->min_mip_filter == PIPE_TEX_MIPFILTER_NONE)
722 uniform->f[1] = uniform->f[0] + (1.0/256.0);
723 }
724
725 static void panfrost_upload_num_work_groups_sysval(struct panfrost_context *ctx,
726 struct sysval_uniform *uniform)
727 {
728 uniform->u[0] = ctx->compute_grid->grid[0];
729 uniform->u[1] = ctx->compute_grid->grid[1];
730 uniform->u[2] = ctx->compute_grid->grid[2];
731 }
732
733 static void panfrost_upload_sysvals(struct panfrost_context *ctx, void *buf,
734 struct panfrost_shader_state *ss,
735 enum pipe_shader_type st)
736 {
737 struct sysval_uniform *uniforms = (void *)buf;
738
739 for (unsigned i = 0; i < ss->sysval_count; ++i) {
740 int sysval = ss->sysval[i];
741
742 switch (PAN_SYSVAL_TYPE(sysval)) {
743 case PAN_SYSVAL_VIEWPORT_SCALE:
744 panfrost_upload_viewport_scale_sysval(ctx, &uniforms[i]);
745 break;
746 case PAN_SYSVAL_VIEWPORT_OFFSET:
747 panfrost_upload_viewport_offset_sysval(ctx, &uniforms[i]);
748 break;
749 case PAN_SYSVAL_TEXTURE_SIZE:
750 panfrost_upload_txs_sysval(ctx, st, PAN_SYSVAL_ID(sysval),
751 &uniforms[i]);
752 break;
753 case PAN_SYSVAL_SSBO:
754 panfrost_upload_ssbo_sysval(ctx, st, PAN_SYSVAL_ID(sysval),
755 &uniforms[i]);
756 break;
757 case PAN_SYSVAL_NUM_WORK_GROUPS:
758 panfrost_upload_num_work_groups_sysval(ctx, &uniforms[i]);
759 break;
760 case PAN_SYSVAL_SAMPLER:
761 panfrost_upload_sampler_sysval(ctx, st, PAN_SYSVAL_ID(sysval),
762 &uniforms[i]);
763 break;
764 default:
765 assert(0);
766 }
767 }
768 }
769
770 static const void *
771 panfrost_map_constant_buffer_cpu(struct panfrost_constant_buffer *buf, unsigned index)
772 {
773 struct pipe_constant_buffer *cb = &buf->cb[index];
774 struct panfrost_resource *rsrc = pan_resource(cb->buffer);
775
776 if (rsrc)
777 return rsrc->bo->cpu;
778 else if (cb->user_buffer)
779 return cb->user_buffer;
780 else
781 unreachable("No constant buffer");
782 }
783
784 static mali_ptr
785 panfrost_map_constant_buffer_gpu(
786 struct panfrost_context *ctx,
787 enum pipe_shader_type st,
788 struct panfrost_constant_buffer *buf,
789 unsigned index)
790 {
791 struct pipe_constant_buffer *cb = &buf->cb[index];
792 struct panfrost_resource *rsrc = pan_resource(cb->buffer);
793 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
794
795 if (rsrc) {
796 panfrost_batch_add_bo(batch, rsrc->bo,
797 PAN_BO_ACCESS_SHARED |
798 PAN_BO_ACCESS_READ |
799 panfrost_bo_access_for_stage(st));
800 return rsrc->bo->gpu;
801 } else if (cb->user_buffer) {
802 return panfrost_upload_transient(batch, cb->user_buffer, cb->buffer_size);
803 } else {
804 unreachable("No constant buffer");
805 }
806 }
807
808 /* Compute number of UBOs active (more specifically, compute the highest UBO
809 * number addressable -- if there are gaps, include them in the count anyway).
810 * We always include UBO #0 in the count, since we *need* uniforms enabled for
811 * sysvals. */
812
813 static unsigned
814 panfrost_ubo_count(struct panfrost_context *ctx, enum pipe_shader_type stage)
815 {
816 unsigned mask = ctx->constant_buffer[stage].enabled_mask | 1;
817 return 32 - __builtin_clz(mask);
818 }
819
820 /* Fixes up a shader state with current state */
821
822 static void
823 panfrost_patch_shader_state(struct panfrost_context *ctx,
824 enum pipe_shader_type stage)
825 {
826 struct panfrost_shader_variants *all = ctx->shader[stage];
827
828 if (!all) {
829 ctx->payloads[stage].postfix.shader = 0;
830 return;
831 }
832
833 struct panfrost_shader_state *ss = &all->variants[all->active_variant];
834
835 ss->tripipe->texture_count = ctx->sampler_view_count[stage];
836 ss->tripipe->sampler_count = ctx->sampler_count[stage];
837
838 ss->tripipe->midgard1.flags = 0x220;
839
840 unsigned ubo_count = panfrost_ubo_count(ctx, stage);
841 ss->tripipe->midgard1.uniform_buffer_count = ubo_count;
842
843 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
844
845 /* Add the shader BO to the batch. */
846 panfrost_batch_add_bo(batch, ss->bo,
847 PAN_BO_ACCESS_PRIVATE |
848 PAN_BO_ACCESS_READ |
849 panfrost_bo_access_for_stage(stage));
850
851 ctx->payloads[stage].postfix.shader = panfrost_upload_transient(batch,
852 ss->tripipe,
853 sizeof(struct mali_shader_meta));
854 }
855
856 /* Go through dirty flags and actualise them in the cmdstream. */
857
858 void
859 panfrost_emit_for_draw(struct panfrost_context *ctx, bool with_vertex_data)
860 {
861 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
862 struct panfrost_screen *screen = pan_screen(ctx->base.screen);
863
864 panfrost_batch_add_fbo_bos(batch);
865 panfrost_attach_vt_framebuffer(ctx);
866
867 if (with_vertex_data) {
868 panfrost_emit_vertex_data(batch);
869
870 /* Varyings emitted for -all- geometry */
871 unsigned total_count = ctx->padded_count * ctx->instance_count;
872 panfrost_emit_varying_descriptor(ctx, total_count);
873 }
874
875 bool msaa = ctx->rasterizer->base.multisample;
876
877 if (ctx->dirty & PAN_DIRTY_RASTERIZER) {
878 ctx->payloads[PIPE_SHADER_FRAGMENT].gl_enables = ctx->rasterizer->tiler_gl_enables;
879
880 /* TODO: Sample size */
881 SET_BIT(ctx->fragment_shader_core.unknown2_3, MALI_HAS_MSAA, msaa);
882 SET_BIT(ctx->fragment_shader_core.unknown2_4, MALI_NO_MSAA, !msaa);
883 }
884
885 panfrost_batch_set_requirements(batch);
886
887 if (ctx->occlusion_query) {
888 ctx->payloads[PIPE_SHADER_FRAGMENT].gl_enables |= MALI_OCCLUSION_QUERY;
889 ctx->payloads[PIPE_SHADER_FRAGMENT].postfix.occlusion_counter = ctx->occlusion_query->bo->gpu;
890 }
891
892 panfrost_patch_shader_state(ctx, PIPE_SHADER_VERTEX);
893 panfrost_patch_shader_state(ctx, PIPE_SHADER_COMPUTE);
894
895 if (ctx->dirty & (PAN_DIRTY_RASTERIZER | PAN_DIRTY_VS)) {
896 /* Check if we need to link the gl_PointSize varying */
897 if (!panfrost_writes_point_size(ctx)) {
898 /* If the size is constant, write it out. Otherwise,
899 * don't touch primitive_size (since we would clobber
900 * the pointer there) */
901
902 bool points = ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.draw_mode == MALI_POINTS;
903
904 ctx->payloads[PIPE_SHADER_FRAGMENT].primitive_size.constant = points ?
905 ctx->rasterizer->base.point_size :
906 ctx->rasterizer->base.line_width;
907 }
908 }
909
910 /* TODO: Maybe dirty track FS, maybe not. For now, it's transient. */
911 if (ctx->shader[PIPE_SHADER_FRAGMENT])
912 ctx->dirty |= PAN_DIRTY_FS;
913
914 if (ctx->dirty & PAN_DIRTY_FS) {
915 assert(ctx->shader[PIPE_SHADER_FRAGMENT]);
916 struct panfrost_shader_state *variant = &ctx->shader[PIPE_SHADER_FRAGMENT]->variants[ctx->shader[PIPE_SHADER_FRAGMENT]->active_variant];
917
918 panfrost_patch_shader_state(ctx, PIPE_SHADER_FRAGMENT);
919
920 #define COPY(name) ctx->fragment_shader_core.name = variant->tripipe->name
921
922 COPY(shader);
923 COPY(attribute_count);
924 COPY(varying_count);
925 COPY(texture_count);
926 COPY(sampler_count);
927 COPY(midgard1.uniform_count);
928 COPY(midgard1.uniform_buffer_count);
929 COPY(midgard1.work_count);
930 COPY(midgard1.flags);
931 COPY(midgard1.unknown2);
932
933 #undef COPY
934
935 /* Get blending setup */
936 unsigned rt_count = MAX2(ctx->pipe_framebuffer.nr_cbufs, 1);
937
938 struct panfrost_blend_final blend[PIPE_MAX_COLOR_BUFS];
939 unsigned shader_offset = 0;
940 struct panfrost_bo *shader_bo = NULL;
941
942 for (unsigned c = 0; c < rt_count; ++c) {
943 blend[c] = panfrost_get_blend_for_context(ctx, c, &shader_bo, &shader_offset);
944 }
945
946 /* If there is a blend shader, work registers are shared. XXX: opt */
947
948 for (unsigned c = 0; c < rt_count; ++c) {
949 if (blend[c].is_shader)
950 ctx->fragment_shader_core.midgard1.work_count = 16;
951 }
952
953 /* Depending on whether it's legal to in the given shader, we
954 * try to enable early-z testing (or forward-pixel kill?) */
955
956 SET_BIT(ctx->fragment_shader_core.midgard1.flags, MALI_EARLY_Z, !variant->can_discard);
957
958 /* Any time texturing is used, derivatives are implicitly
959 * calculated, so we need to enable helper invocations */
960
961 SET_BIT(ctx->fragment_shader_core.midgard1.flags, MALI_HELPER_INVOCATIONS, variant->helper_invocations);
962
963 /* Assign the stencil refs late */
964
965 unsigned front_ref = ctx->stencil_ref.ref_value[0];
966 unsigned back_ref = ctx->stencil_ref.ref_value[1];
967 bool back_enab = ctx->depth_stencil->stencil[1].enabled;
968
969 ctx->fragment_shader_core.stencil_front.ref = front_ref;
970 ctx->fragment_shader_core.stencil_back.ref = back_enab ? back_ref : front_ref;
971
972 /* CAN_DISCARD should be set if the fragment shader possibly
973 * contains a 'discard' instruction. It is likely this is
974 * related to optimizations related to forward-pixel kill, as
975 * per "Mali Performance 3: Is EGL_BUFFER_PRESERVED a good
976 * thing?" by Peter Harris
977 */
978
979 SET_BIT(ctx->fragment_shader_core.unknown2_3, MALI_CAN_DISCARD, variant->can_discard);
980 SET_BIT(ctx->fragment_shader_core.midgard1.flags, 0x400, variant->can_discard);
981
982 /* Even on MFBD, the shader descriptor gets blend shaders. It's
983 * *also* copied to the blend_meta appended (by convention),
984 * but this is the field actually read by the hardware. (Or
985 * maybe both are read...?). Specify the last RTi with a blend
986 * shader. */
987
988 ctx->fragment_shader_core.blend.shader = 0;
989
990 for (signed rt = (rt_count - 1); rt >= 0; --rt) {
991 if (blend[rt].is_shader) {
992 ctx->fragment_shader_core.blend.shader =
993 blend[rt].shader.gpu | blend[rt].shader.first_tag;
994 break;
995 }
996 }
997
998 if (screen->quirks & MIDGARD_SFBD) {
999 /* When only a single render target platform is used, the blend
1000 * information is inside the shader meta itself. We
1001 * additionally need to signal CAN_DISCARD for nontrivial blend
1002 * modes (so we're able to read back the destination buffer) */
1003
1004 SET_BIT(ctx->fragment_shader_core.unknown2_3, MALI_HAS_BLEND_SHADER, blend[0].is_shader);
1005
1006 if (!blend[0].is_shader) {
1007 ctx->fragment_shader_core.blend.equation =
1008 *blend[0].equation.equation;
1009 ctx->fragment_shader_core.blend.constant =
1010 blend[0].equation.constant;
1011 }
1012
1013 SET_BIT(ctx->fragment_shader_core.unknown2_3, MALI_CAN_DISCARD, !blend[0].no_blending);
1014 }
1015
1016 size_t size = sizeof(struct mali_shader_meta) + (sizeof(struct midgard_blend_rt) * rt_count);
1017 struct panfrost_transfer transfer = panfrost_allocate_transient(batch, size);
1018 memcpy(transfer.cpu, &ctx->fragment_shader_core, sizeof(struct mali_shader_meta));
1019
1020 ctx->payloads[PIPE_SHADER_FRAGMENT].postfix.shader = transfer.gpu;
1021
1022 if (!(screen->quirks & MIDGARD_SFBD)) {
1023 /* Additional blend descriptor tacked on for jobs using MFBD */
1024
1025 struct midgard_blend_rt rts[4];
1026
1027 for (unsigned i = 0; i < rt_count; ++i) {
1028 rts[i].flags = 0x200;
1029
1030 bool is_srgb =
1031 (ctx->pipe_framebuffer.nr_cbufs > i) &&
1032 (ctx->pipe_framebuffer.cbufs[i]) &&
1033 util_format_is_srgb(ctx->pipe_framebuffer.cbufs[i]->format);
1034
1035 SET_BIT(rts[i].flags, MALI_BLEND_MRT_SHADER, blend[i].is_shader);
1036 SET_BIT(rts[i].flags, MALI_BLEND_LOAD_TIB, !blend[i].no_blending);
1037 SET_BIT(rts[i].flags, MALI_BLEND_SRGB, is_srgb);
1038 SET_BIT(rts[i].flags, MALI_BLEND_NO_DITHER, !ctx->blend->base.dither);
1039
1040 if (blend[i].is_shader) {
1041 rts[i].blend.shader = blend[i].shader.gpu | blend[i].shader.first_tag;
1042 } else {
1043 rts[i].blend.equation = *blend[i].equation.equation;
1044 rts[i].blend.constant = blend[i].equation.constant;
1045 }
1046 }
1047
1048 memcpy(transfer.cpu + sizeof(struct mali_shader_meta), rts, sizeof(rts[0]) * rt_count);
1049 }
1050 }
1051
1052 /* We stage to transient, so always dirty.. */
1053 if (ctx->vertex)
1054 panfrost_stage_attributes(ctx);
1055
1056 if (ctx->dirty & PAN_DIRTY_SAMPLERS)
1057 panfrost_upload_sampler_descriptors(ctx);
1058
1059 if (ctx->dirty & PAN_DIRTY_TEXTURES)
1060 panfrost_upload_texture_descriptors(ctx);
1061
1062 const struct pipe_viewport_state *vp = &ctx->pipe_viewport;
1063
1064 for (int i = 0; i < PIPE_SHADER_TYPES; ++i) {
1065 struct panfrost_shader_variants *all = ctx->shader[i];
1066
1067 if (!all)
1068 continue;
1069
1070 struct panfrost_constant_buffer *buf = &ctx->constant_buffer[i];
1071
1072 struct panfrost_shader_state *ss = &all->variants[all->active_variant];
1073
1074 /* Uniforms are implicitly UBO #0 */
1075 bool has_uniforms = buf->enabled_mask & (1 << 0);
1076
1077 /* Allocate room for the sysval and the uniforms */
1078 size_t sys_size = sizeof(float) * 4 * ss->sysval_count;
1079 size_t uniform_size = has_uniforms ? (buf->cb[0].buffer_size) : 0;
1080 size_t size = sys_size + uniform_size;
1081 struct panfrost_transfer transfer = panfrost_allocate_transient(batch, size);
1082
1083 /* Upload sysvals requested by the shader */
1084 panfrost_upload_sysvals(ctx, transfer.cpu, ss, i);
1085
1086 /* Upload uniforms */
1087 if (has_uniforms) {
1088 const void *cpu = panfrost_map_constant_buffer_cpu(buf, 0);
1089 memcpy(transfer.cpu + sys_size, cpu, uniform_size);
1090 }
1091
1092 int uniform_count =
1093 ctx->shader[i]->variants[ctx->shader[i]->active_variant].uniform_count;
1094
1095 struct mali_vertex_tiler_postfix *postfix =
1096 &ctx->payloads[i].postfix;
1097
1098 /* Next up, attach UBOs. UBO #0 is the uniforms we just
1099 * uploaded */
1100
1101 unsigned ubo_count = panfrost_ubo_count(ctx, i);
1102 assert(ubo_count >= 1);
1103
1104 size_t sz = sizeof(struct mali_uniform_buffer_meta) * ubo_count;
1105 struct mali_uniform_buffer_meta ubos[PAN_MAX_CONST_BUFFERS];
1106
1107 /* Upload uniforms as a UBO */
1108 ubos[0].size = MALI_POSITIVE((2 + uniform_count));
1109 ubos[0].ptr = transfer.gpu >> 2;
1110
1111 /* The rest are honest-to-goodness UBOs */
1112
1113 for (unsigned ubo = 1; ubo < ubo_count; ++ubo) {
1114 size_t usz = buf->cb[ubo].buffer_size;
1115
1116 bool enabled = buf->enabled_mask & (1 << ubo);
1117 bool empty = usz == 0;
1118
1119 if (!enabled || empty) {
1120 /* Stub out disabled UBOs to catch accesses */
1121
1122 ubos[ubo].size = 0;
1123 ubos[ubo].ptr = 0xDEAD0000;
1124 continue;
1125 }
1126
1127 mali_ptr gpu = panfrost_map_constant_buffer_gpu(ctx, i, buf, ubo);
1128
1129 unsigned bytes_per_field = 16;
1130 unsigned aligned = ALIGN_POT(usz, bytes_per_field);
1131 unsigned fields = aligned / bytes_per_field;
1132
1133 ubos[ubo].size = MALI_POSITIVE(fields);
1134 ubos[ubo].ptr = gpu >> 2;
1135 }
1136
1137 mali_ptr ubufs = panfrost_upload_transient(batch, ubos, sz);
1138 postfix->uniforms = transfer.gpu;
1139 postfix->uniform_buffers = ubufs;
1140
1141 buf->dirty_mask = 0;
1142 }
1143
1144 /* TODO: Upload the viewport somewhere more appropriate */
1145
1146 /* Clip bounds are encoded as floats. The viewport itself is encoded as
1147 * (somewhat) asymmetric ints. */
1148 const struct pipe_scissor_state *ss = &ctx->scissor;
1149
1150 struct mali_viewport view = {
1151 /* By default, do no viewport clipping, i.e. clip to (-inf,
1152 * inf) in each direction. Clipping to the viewport in theory
1153 * should work, but in practice causes issues when we're not
1154 * explicitly trying to scissor */
1155
1156 .clip_minx = -INFINITY,
1157 .clip_miny = -INFINITY,
1158 .clip_maxx = INFINITY,
1159 .clip_maxy = INFINITY,
1160 };
1161
1162 /* Always scissor to the viewport by default. */
1163 float vp_minx = (int) (vp->translate[0] - fabsf(vp->scale[0]));
1164 float vp_maxx = (int) (vp->translate[0] + fabsf(vp->scale[0]));
1165
1166 float vp_miny = (int) (vp->translate[1] - fabsf(vp->scale[1]));
1167 float vp_maxy = (int) (vp->translate[1] + fabsf(vp->scale[1]));
1168
1169 float minz = (vp->translate[2] - fabsf(vp->scale[2]));
1170 float maxz = (vp->translate[2] + fabsf(vp->scale[2]));
1171
1172 /* Apply the scissor test */
1173
1174 unsigned minx, miny, maxx, maxy;
1175
1176 if (ss && ctx->rasterizer && ctx->rasterizer->base.scissor) {
1177 minx = MAX2(ss->minx, vp_minx);
1178 miny = MAX2(ss->miny, vp_miny);
1179 maxx = MIN2(ss->maxx, vp_maxx);
1180 maxy = MIN2(ss->maxy, vp_maxy);
1181 } else {
1182 minx = vp_minx;
1183 miny = vp_miny;
1184 maxx = vp_maxx;
1185 maxy = vp_maxy;
1186 }
1187
1188 /* Hardware needs the min/max to be strictly ordered, so flip if we
1189 * need to. The viewport transformation in the vertex shader will
1190 * handle the negatives if we don't */
1191
1192 if (miny > maxy) {
1193 unsigned temp = miny;
1194 miny = maxy;
1195 maxy = temp;
1196 }
1197
1198 if (minx > maxx) {
1199 unsigned temp = minx;
1200 minx = maxx;
1201 maxx = temp;
1202 }
1203
1204 if (minz > maxz) {
1205 float temp = minz;
1206 minz = maxz;
1207 maxz = temp;
1208 }
1209
1210 /* Clamp to the framebuffer size as a last check */
1211
1212 minx = MIN2(ctx->pipe_framebuffer.width, minx);
1213 maxx = MIN2(ctx->pipe_framebuffer.width, maxx);
1214
1215 miny = MIN2(ctx->pipe_framebuffer.height, miny);
1216 maxy = MIN2(ctx->pipe_framebuffer.height, maxy);
1217
1218 /* Update the job, unless we're doing wallpapering (whose lack of
1219 * scissor we can ignore, since if we "miss" a tile of wallpaper, it'll
1220 * just... be faster :) */
1221
1222 if (!ctx->wallpaper_batch)
1223 panfrost_batch_union_scissor(batch, minx, miny, maxx, maxy);
1224
1225 /* Upload */
1226
1227 view.viewport0[0] = minx;
1228 view.viewport1[0] = MALI_POSITIVE(maxx);
1229
1230 view.viewport0[1] = miny;
1231 view.viewport1[1] = MALI_POSITIVE(maxy);
1232
1233 view.clip_minz = minz;
1234 view.clip_maxz = maxz;
1235
1236 ctx->payloads[PIPE_SHADER_FRAGMENT].postfix.viewport =
1237 panfrost_upload_transient(batch,
1238 &view,
1239 sizeof(struct mali_viewport));
1240
1241 ctx->dirty = 0;
1242 }
1243
1244 /* Corresponds to exactly one draw, but does not submit anything */
1245
1246 static void
1247 panfrost_queue_draw(struct panfrost_context *ctx)
1248 {
1249 /* Handle dirty flags now */
1250 panfrost_emit_for_draw(ctx, true);
1251
1252 /* If rasterizer discard is enable, only submit the vertex */
1253
1254 bool rasterizer_discard = ctx->rasterizer
1255 && ctx->rasterizer->base.rasterizer_discard;
1256
1257 struct panfrost_transfer vertex = panfrost_vertex_tiler_job(ctx, false);
1258 struct panfrost_transfer tiler;
1259
1260 if (!rasterizer_discard)
1261 tiler = panfrost_vertex_tiler_job(ctx, true);
1262
1263 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
1264
1265 if (rasterizer_discard)
1266 panfrost_scoreboard_queue_vertex_job(batch, vertex, FALSE);
1267 else if (ctx->wallpaper_batch && batch->first_tiler.gpu)
1268 panfrost_scoreboard_queue_fused_job_prepend(batch, vertex, tiler);
1269 else
1270 panfrost_scoreboard_queue_fused_job(batch, vertex, tiler);
1271
1272 for (unsigned i = 0; i < PIPE_SHADER_TYPES; ++i) {
1273 struct panfrost_shader_variants *all = ctx->shader[i];
1274
1275 if (!all)
1276 continue;
1277
1278 struct panfrost_shader_state *ss = &all->variants[all->active_variant];
1279 batch->stack_size = MAX2(batch->stack_size, ss->stack_size);
1280 }
1281 }
1282
1283 /* The entire frame is in memory -- send it off to the kernel! */
1284
1285 void
1286 panfrost_flush(
1287 struct pipe_context *pipe,
1288 struct pipe_fence_handle **fence,
1289 unsigned flags)
1290 {
1291 struct panfrost_context *ctx = pan_context(pipe);
1292 struct util_dynarray fences;
1293
1294 /* We must collect the fences before the flush is done, otherwise we'll
1295 * lose track of them.
1296 */
1297 if (fence) {
1298 util_dynarray_init(&fences, NULL);
1299 hash_table_foreach(ctx->batches, hentry) {
1300 struct panfrost_batch *batch = hentry->data;
1301
1302 panfrost_batch_fence_reference(batch->out_sync);
1303 util_dynarray_append(&fences,
1304 struct panfrost_batch_fence *,
1305 batch->out_sync);
1306 }
1307 }
1308
1309 /* Submit all pending jobs */
1310 panfrost_flush_all_batches(ctx, false);
1311
1312 if (fence) {
1313 struct panfrost_fence *f = panfrost_fence_create(ctx, &fences);
1314 pipe->screen->fence_reference(pipe->screen, fence, NULL);
1315 *fence = (struct pipe_fence_handle *)f;
1316
1317 util_dynarray_foreach(&fences, struct panfrost_batch_fence *, fence)
1318 panfrost_batch_fence_unreference(*fence);
1319
1320 util_dynarray_fini(&fences);
1321 }
1322 }
1323
1324 #define DEFINE_CASE(c) case PIPE_PRIM_##c: return MALI_##c;
1325
1326 static int
1327 g2m_draw_mode(enum pipe_prim_type mode)
1328 {
1329 switch (mode) {
1330 DEFINE_CASE(POINTS);
1331 DEFINE_CASE(LINES);
1332 DEFINE_CASE(LINE_LOOP);
1333 DEFINE_CASE(LINE_STRIP);
1334 DEFINE_CASE(TRIANGLES);
1335 DEFINE_CASE(TRIANGLE_STRIP);
1336 DEFINE_CASE(TRIANGLE_FAN);
1337 DEFINE_CASE(QUADS);
1338 DEFINE_CASE(QUAD_STRIP);
1339 DEFINE_CASE(POLYGON);
1340
1341 default:
1342 unreachable("Invalid draw mode");
1343 }
1344 }
1345
1346 #undef DEFINE_CASE
1347
1348 static unsigned
1349 panfrost_translate_index_size(unsigned size)
1350 {
1351 switch (size) {
1352 case 1:
1353 return MALI_DRAW_INDEXED_UINT8;
1354
1355 case 2:
1356 return MALI_DRAW_INDEXED_UINT16;
1357
1358 case 4:
1359 return MALI_DRAW_INDEXED_UINT32;
1360
1361 default:
1362 unreachable("Invalid index size");
1363 }
1364 }
1365
1366 /* Gets a GPU address for the associated index buffer. Only gauranteed to be
1367 * good for the duration of the draw (transient), could last longer */
1368
1369 static mali_ptr
1370 panfrost_get_index_buffer_mapped(struct panfrost_context *ctx, const struct pipe_draw_info *info)
1371 {
1372 struct panfrost_resource *rsrc = (struct panfrost_resource *) (info->index.resource);
1373
1374 off_t offset = info->start * info->index_size;
1375 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
1376
1377 if (!info->has_user_indices) {
1378 /* Only resources can be directly mapped */
1379 panfrost_batch_add_bo(batch, rsrc->bo,
1380 PAN_BO_ACCESS_SHARED |
1381 PAN_BO_ACCESS_READ |
1382 PAN_BO_ACCESS_VERTEX_TILER);
1383 return rsrc->bo->gpu + offset;
1384 } else {
1385 /* Otherwise, we need to upload to transient memory */
1386 const uint8_t *ibuf8 = (const uint8_t *) info->index.user;
1387 return panfrost_upload_transient(batch, ibuf8 + offset, info->count * info->index_size);
1388 }
1389 }
1390
1391 static bool
1392 panfrost_scissor_culls_everything(struct panfrost_context *ctx)
1393 {
1394 const struct pipe_scissor_state *ss = &ctx->scissor;
1395
1396 /* Check if we're scissoring at all */
1397
1398 if (!(ctx->rasterizer && ctx->rasterizer->base.scissor))
1399 return false;
1400
1401 return (ss->minx == ss->maxx) || (ss->miny == ss->maxy);
1402 }
1403
1404 /* Count generated primitives (when there is no geom/tess shaders) for
1405 * transform feedback */
1406
1407 static void
1408 panfrost_statistics_record(
1409 struct panfrost_context *ctx,
1410 const struct pipe_draw_info *info)
1411 {
1412 if (!ctx->active_queries)
1413 return;
1414
1415 uint32_t prims = u_prims_for_vertices(info->mode, info->count);
1416 ctx->prims_generated += prims;
1417
1418 if (!ctx->streamout.num_targets)
1419 return;
1420
1421 ctx->tf_prims_generated += prims;
1422 }
1423
1424 static void
1425 panfrost_draw_vbo(
1426 struct pipe_context *pipe,
1427 const struct pipe_draw_info *info)
1428 {
1429 struct panfrost_context *ctx = pan_context(pipe);
1430
1431 /* First of all, check the scissor to see if anything is drawn at all.
1432 * If it's not, we drop the draw (mostly a conformance issue;
1433 * well-behaved apps shouldn't hit this) */
1434
1435 if (panfrost_scissor_culls_everything(ctx))
1436 return;
1437
1438 int mode = info->mode;
1439
1440 /* Fallback unsupported restart index */
1441 unsigned primitive_index = (1 << (info->index_size * 8)) - 1;
1442
1443 if (info->primitive_restart && info->index_size
1444 && info->restart_index != primitive_index) {
1445 util_draw_vbo_without_prim_restart(pipe, info);
1446 return;
1447 }
1448
1449 /* Fallback for unsupported modes */
1450
1451 assert(ctx->rasterizer != NULL);
1452
1453 if (!(ctx->draw_modes & (1 << mode))) {
1454 if (mode == PIPE_PRIM_QUADS && info->count == 4 && !ctx->rasterizer->base.flatshade) {
1455 mode = PIPE_PRIM_TRIANGLE_FAN;
1456 } else {
1457 if (info->count < 4) {
1458 /* Degenerate case? */
1459 return;
1460 }
1461
1462 util_primconvert_save_rasterizer_state(ctx->primconvert, &ctx->rasterizer->base);
1463 util_primconvert_draw_vbo(ctx->primconvert, info);
1464 return;
1465 }
1466 }
1467
1468 ctx->payloads[PIPE_SHADER_VERTEX].offset_start = info->start;
1469 ctx->payloads[PIPE_SHADER_FRAGMENT].offset_start = info->start;
1470
1471 /* Now that we have a guaranteed terminating path, find the job.
1472 * Assignment commented out to prevent unused warning */
1473
1474 /* struct panfrost_batch *batch = */ panfrost_get_batch_for_fbo(ctx);
1475
1476 ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.draw_mode = g2m_draw_mode(mode);
1477
1478 /* Take into account a negative bias */
1479 ctx->vertex_count = info->count + abs(info->index_bias);
1480 ctx->instance_count = info->instance_count;
1481 ctx->active_prim = info->mode;
1482
1483 /* For non-indexed draws, they're the same */
1484 unsigned vertex_count = ctx->vertex_count;
1485
1486 unsigned draw_flags = 0;
1487
1488 /* The draw flags interpret how primitive size is interpreted */
1489
1490 if (panfrost_writes_point_size(ctx))
1491 draw_flags |= MALI_DRAW_VARYING_SIZE;
1492
1493 if (info->primitive_restart)
1494 draw_flags |= MALI_DRAW_PRIMITIVE_RESTART_FIXED_INDEX;
1495
1496 /* These doesn't make much sense */
1497
1498 draw_flags |= 0x3000;
1499
1500 if (ctx->rasterizer && ctx->rasterizer->base.flatshade_first)
1501 draw_flags |= MALI_DRAW_FLATSHADE_FIRST;
1502
1503 panfrost_statistics_record(ctx, info);
1504
1505 if (info->index_size) {
1506 /* Calculate the min/max index used so we can figure out how
1507 * many times to invoke the vertex shader */
1508
1509 /* Fetch / calculate index bounds */
1510 unsigned min_index = 0, max_index = 0;
1511
1512 if (info->max_index == ~0u) {
1513 u_vbuf_get_minmax_index(pipe, info, &min_index, &max_index);
1514 } else {
1515 min_index = info->min_index;
1516 max_index = info->max_index;
1517 }
1518
1519 /* Use the corresponding values */
1520 vertex_count = max_index - min_index + 1;
1521 ctx->payloads[PIPE_SHADER_VERTEX].offset_start = min_index + info->index_bias;
1522 ctx->payloads[PIPE_SHADER_FRAGMENT].offset_start = min_index + info->index_bias;
1523
1524 ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.offset_bias_correction = -min_index;
1525 ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.index_count = MALI_POSITIVE(info->count);
1526
1527 //assert(!info->restart_index); /* TODO: Research */
1528
1529 draw_flags |= panfrost_translate_index_size(info->index_size);
1530 ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.indices = panfrost_get_index_buffer_mapped(ctx, info);
1531 } else {
1532 /* Index count == vertex count, if no indexing is applied, as
1533 * if it is internally indexed in the expected order */
1534
1535 ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.offset_bias_correction = 0;
1536 ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.index_count = MALI_POSITIVE(ctx->vertex_count);
1537
1538 /* Reverse index state */
1539 ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.indices = (u64) NULL;
1540 }
1541
1542 /* Dispatch "compute jobs" for the vertex/tiler pair as (1,
1543 * vertex_count, 1) */
1544
1545 panfrost_pack_work_groups_fused(
1546 &ctx->payloads[PIPE_SHADER_VERTEX].prefix,
1547 &ctx->payloads[PIPE_SHADER_FRAGMENT].prefix,
1548 1, vertex_count, info->instance_count,
1549 1, 1, 1);
1550
1551 ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.unknown_draw = draw_flags;
1552
1553 /* Encode the padded vertex count */
1554
1555 if (info->instance_count > 1) {
1556 ctx->padded_count = panfrost_padded_vertex_count(vertex_count);
1557
1558 unsigned shift = __builtin_ctz(ctx->padded_count);
1559 unsigned k = ctx->padded_count >> (shift + 1);
1560
1561 ctx->payloads[PIPE_SHADER_VERTEX].instance_shift = shift;
1562 ctx->payloads[PIPE_SHADER_FRAGMENT].instance_shift = shift;
1563
1564 ctx->payloads[PIPE_SHADER_VERTEX].instance_odd = k;
1565 ctx->payloads[PIPE_SHADER_FRAGMENT].instance_odd = k;
1566 } else {
1567 ctx->padded_count = vertex_count;
1568
1569 /* Reset instancing state */
1570 ctx->payloads[PIPE_SHADER_VERTEX].instance_shift = 0;
1571 ctx->payloads[PIPE_SHADER_VERTEX].instance_odd = 0;
1572 ctx->payloads[PIPE_SHADER_FRAGMENT].instance_shift = 0;
1573 ctx->payloads[PIPE_SHADER_FRAGMENT].instance_odd = 0;
1574 }
1575
1576 /* Fire off the draw itself */
1577 panfrost_queue_draw(ctx);
1578
1579 /* Increment transform feedback offsets */
1580
1581 for (unsigned i = 0; i < ctx->streamout.num_targets; ++i) {
1582 unsigned output_count = u_stream_outputs_for_vertices(
1583 ctx->active_prim, ctx->vertex_count);
1584
1585 ctx->streamout.offsets[i] += output_count;
1586 }
1587 }
1588
1589 /* CSO state */
1590
1591 static void
1592 panfrost_generic_cso_delete(struct pipe_context *pctx, void *hwcso)
1593 {
1594 free(hwcso);
1595 }
1596
1597 static void *
1598 panfrost_create_rasterizer_state(
1599 struct pipe_context *pctx,
1600 const struct pipe_rasterizer_state *cso)
1601 {
1602 struct panfrost_rasterizer *so = CALLOC_STRUCT(panfrost_rasterizer);
1603
1604 so->base = *cso;
1605
1606 /* Bitmask, unknown meaning of the start value. 0x105 on 32-bit T6XX */
1607 so->tiler_gl_enables = 0x7;
1608
1609 if (cso->front_ccw)
1610 so->tiler_gl_enables |= MALI_FRONT_CCW_TOP;
1611
1612 if (cso->cull_face & PIPE_FACE_FRONT)
1613 so->tiler_gl_enables |= MALI_CULL_FACE_FRONT;
1614
1615 if (cso->cull_face & PIPE_FACE_BACK)
1616 so->tiler_gl_enables |= MALI_CULL_FACE_BACK;
1617
1618 return so;
1619 }
1620
1621 static void
1622 panfrost_bind_rasterizer_state(
1623 struct pipe_context *pctx,
1624 void *hwcso)
1625 {
1626 struct panfrost_context *ctx = pan_context(pctx);
1627
1628 /* TODO: Why can't rasterizer be NULL ever? Other drivers are fine.. */
1629 if (!hwcso)
1630 return;
1631
1632 ctx->rasterizer = hwcso;
1633 ctx->dirty |= PAN_DIRTY_RASTERIZER;
1634
1635 ctx->fragment_shader_core.depth_units = ctx->rasterizer->base.offset_units * 2.0f;
1636 ctx->fragment_shader_core.depth_factor = ctx->rasterizer->base.offset_scale;
1637
1638 /* Gauranteed with the core GL call, so don't expose ARB_polygon_offset */
1639 assert(ctx->rasterizer->base.offset_clamp == 0.0);
1640
1641 /* XXX: Which bit is which? Does this maybe allow offseting not-tri? */
1642
1643 SET_BIT(ctx->fragment_shader_core.unknown2_4, MALI_DEPTH_RANGE_A, ctx->rasterizer->base.offset_tri);
1644 SET_BIT(ctx->fragment_shader_core.unknown2_4, MALI_DEPTH_RANGE_B, ctx->rasterizer->base.offset_tri);
1645
1646 /* Point sprites are emulated */
1647
1648 struct panfrost_shader_state *variant =
1649 ctx->shader[PIPE_SHADER_FRAGMENT] ? &ctx->shader[PIPE_SHADER_FRAGMENT]->variants[ctx->shader[PIPE_SHADER_FRAGMENT]->active_variant] : NULL;
1650
1651 if (ctx->rasterizer->base.sprite_coord_enable || (variant && variant->point_sprite_mask))
1652 ctx->base.bind_fs_state(&ctx->base, ctx->shader[PIPE_SHADER_FRAGMENT]);
1653 }
1654
1655 static void *
1656 panfrost_create_vertex_elements_state(
1657 struct pipe_context *pctx,
1658 unsigned num_elements,
1659 const struct pipe_vertex_element *elements)
1660 {
1661 struct panfrost_vertex_state *so = CALLOC_STRUCT(panfrost_vertex_state);
1662
1663 so->num_elements = num_elements;
1664 memcpy(so->pipe, elements, sizeof(*elements) * num_elements);
1665
1666 for (int i = 0; i < num_elements; ++i) {
1667 so->hw[i].index = i;
1668
1669 enum pipe_format fmt = elements[i].src_format;
1670 const struct util_format_description *desc = util_format_description(fmt);
1671 so->hw[i].unknown1 = 0x2;
1672 so->hw[i].swizzle = panfrost_get_default_swizzle(desc->nr_channels);
1673
1674 so->hw[i].format = panfrost_find_format(desc);
1675
1676 /* The field itself should probably be shifted over */
1677 so->hw[i].src_offset = elements[i].src_offset;
1678 }
1679
1680 return so;
1681 }
1682
1683 static void
1684 panfrost_bind_vertex_elements_state(
1685 struct pipe_context *pctx,
1686 void *hwcso)
1687 {
1688 struct panfrost_context *ctx = pan_context(pctx);
1689
1690 ctx->vertex = hwcso;
1691 ctx->dirty |= PAN_DIRTY_VERTEX;
1692 }
1693
1694 static void *
1695 panfrost_create_shader_state(
1696 struct pipe_context *pctx,
1697 const struct pipe_shader_state *cso,
1698 enum pipe_shader_type stage)
1699 {
1700 struct panfrost_shader_variants *so = CALLOC_STRUCT(panfrost_shader_variants);
1701 so->base = *cso;
1702
1703 /* Token deep copy to prevent memory corruption */
1704
1705 if (cso->type == PIPE_SHADER_IR_TGSI)
1706 so->base.tokens = tgsi_dup_tokens(so->base.tokens);
1707
1708 /* Precompile for shader-db if we need to */
1709 if (unlikely((pan_debug & PAN_DBG_PRECOMPILE) && cso->type == PIPE_SHADER_IR_NIR)) {
1710 struct panfrost_context *ctx = pan_context(pctx);
1711
1712 struct mali_shader_meta meta;
1713 struct panfrost_shader_state state;
1714 uint64_t outputs_written;
1715
1716 panfrost_shader_compile(ctx, &meta,
1717 PIPE_SHADER_IR_NIR,
1718 so->base.ir.nir,
1719 tgsi_processor_to_shader_stage(stage), &state,
1720 &outputs_written);
1721 }
1722
1723 return so;
1724 }
1725
1726 static void
1727 panfrost_delete_shader_state(
1728 struct pipe_context *pctx,
1729 void *so)
1730 {
1731 struct panfrost_shader_variants *cso = (struct panfrost_shader_variants *) so;
1732
1733 if (cso->base.type == PIPE_SHADER_IR_TGSI) {
1734 DBG("Deleting TGSI shader leaks duplicated tokens\n");
1735 }
1736
1737 for (unsigned i = 0; i < cso->variant_count; ++i) {
1738 struct panfrost_shader_state *shader_state = &cso->variants[i];
1739 panfrost_bo_unreference(shader_state->bo);
1740 shader_state->bo = NULL;
1741 }
1742
1743 free(so);
1744 }
1745
1746 static void *
1747 panfrost_create_sampler_state(
1748 struct pipe_context *pctx,
1749 const struct pipe_sampler_state *cso)
1750 {
1751 struct panfrost_sampler_state *so = CALLOC_STRUCT(panfrost_sampler_state);
1752 so->base = *cso;
1753
1754 /* sampler_state corresponds to mali_sampler_descriptor, which we can generate entirely here */
1755
1756 bool min_nearest = cso->min_img_filter == PIPE_TEX_FILTER_NEAREST;
1757 bool mag_nearest = cso->mag_img_filter == PIPE_TEX_FILTER_NEAREST;
1758 bool mip_linear = cso->min_mip_filter == PIPE_TEX_MIPFILTER_LINEAR;
1759
1760 unsigned min_filter = min_nearest ? MALI_SAMP_MIN_NEAREST : 0;
1761 unsigned mag_filter = mag_nearest ? MALI_SAMP_MAG_NEAREST : 0;
1762 unsigned mip_filter = mip_linear ?
1763 (MALI_SAMP_MIP_LINEAR_1 | MALI_SAMP_MIP_LINEAR_2) : 0;
1764 unsigned normalized = cso->normalized_coords ? MALI_SAMP_NORM_COORDS : 0;
1765
1766 struct mali_sampler_descriptor sampler_descriptor = {
1767 .filter_mode = min_filter | mag_filter | mip_filter | normalized,
1768 .wrap_s = translate_tex_wrap(cso->wrap_s),
1769 .wrap_t = translate_tex_wrap(cso->wrap_t),
1770 .wrap_r = translate_tex_wrap(cso->wrap_r),
1771 .compare_func = panfrost_flip_compare_func(
1772 panfrost_translate_compare_func(
1773 cso->compare_func)),
1774 .border_color = {
1775 cso->border_color.f[0],
1776 cso->border_color.f[1],
1777 cso->border_color.f[2],
1778 cso->border_color.f[3]
1779 },
1780 .min_lod = FIXED_16(cso->min_lod),
1781 .max_lod = FIXED_16(cso->max_lod),
1782 .lod_bias = FIXED_16(cso->lod_bias),
1783 .seamless_cube_map = cso->seamless_cube_map,
1784 };
1785
1786 /* If necessary, we disable mipmapping in the sampler descriptor by
1787 * clamping the LOD as tight as possible (from 0 to epsilon,
1788 * essentially -- remember these are fixed point numbers, so
1789 * epsilon=1/256) */
1790
1791 if (cso->min_mip_filter == PIPE_TEX_MIPFILTER_NONE)
1792 sampler_descriptor.max_lod = sampler_descriptor.min_lod;
1793
1794 /* Enforce that there is something in the middle by adding epsilon*/
1795
1796 if (sampler_descriptor.min_lod == sampler_descriptor.max_lod)
1797 sampler_descriptor.max_lod++;
1798
1799 /* Sanity check */
1800 assert(sampler_descriptor.max_lod > sampler_descriptor.min_lod);
1801
1802 so->hw = sampler_descriptor;
1803
1804 return so;
1805 }
1806
1807 static void
1808 panfrost_bind_sampler_states(
1809 struct pipe_context *pctx,
1810 enum pipe_shader_type shader,
1811 unsigned start_slot, unsigned num_sampler,
1812 void **sampler)
1813 {
1814 assert(start_slot == 0);
1815
1816 struct panfrost_context *ctx = pan_context(pctx);
1817
1818 /* XXX: Should upload, not just copy? */
1819 ctx->sampler_count[shader] = num_sampler;
1820 memcpy(ctx->samplers[shader], sampler, num_sampler * sizeof (void *));
1821
1822 ctx->dirty |= PAN_DIRTY_SAMPLERS;
1823 }
1824
1825 static bool
1826 panfrost_variant_matches(
1827 struct panfrost_context *ctx,
1828 struct panfrost_shader_state *variant,
1829 enum pipe_shader_type type)
1830 {
1831 struct pipe_rasterizer_state *rasterizer = &ctx->rasterizer->base;
1832 struct pipe_alpha_state *alpha = &ctx->depth_stencil->alpha;
1833
1834 bool is_fragment = (type == PIPE_SHADER_FRAGMENT);
1835
1836 if (is_fragment && (alpha->enabled || variant->alpha_state.enabled)) {
1837 /* Make sure enable state is at least the same */
1838 if (alpha->enabled != variant->alpha_state.enabled) {
1839 return false;
1840 }
1841
1842 /* Check that the contents of the test are the same */
1843 bool same_func = alpha->func == variant->alpha_state.func;
1844 bool same_ref = alpha->ref_value == variant->alpha_state.ref_value;
1845
1846 if (!(same_func && same_ref)) {
1847 return false;
1848 }
1849 }
1850
1851 if (is_fragment && rasterizer && (rasterizer->sprite_coord_enable |
1852 variant->point_sprite_mask)) {
1853 /* Ensure the same varyings are turned to point sprites */
1854 if (rasterizer->sprite_coord_enable != variant->point_sprite_mask)
1855 return false;
1856
1857 /* Ensure the orientation is correct */
1858 bool upper_left =
1859 rasterizer->sprite_coord_mode ==
1860 PIPE_SPRITE_COORD_UPPER_LEFT;
1861
1862 if (variant->point_sprite_upper_left != upper_left)
1863 return false;
1864 }
1865
1866 /* Otherwise, we're good to go */
1867 return true;
1868 }
1869
1870 /**
1871 * Fix an uncompiled shader's stream output info, and produce a bitmask
1872 * of which VARYING_SLOT_* are captured for stream output.
1873 *
1874 * Core Gallium stores output->register_index as a "slot" number, where
1875 * slots are assigned consecutively to all outputs in info->outputs_written.
1876 * This naive packing of outputs doesn't work for us - we too have slots,
1877 * but the layout is defined by the VUE map, which we won't have until we
1878 * compile a specific shader variant. So, we remap these and simply store
1879 * VARYING_SLOT_* in our copy's output->register_index fields.
1880 *
1881 * We then produce a bitmask of outputs which are used for SO.
1882 *
1883 * Implementation from iris.
1884 */
1885
1886 static uint64_t
1887 update_so_info(struct pipe_stream_output_info *so_info,
1888 uint64_t outputs_written)
1889 {
1890 uint64_t so_outputs = 0;
1891 uint8_t reverse_map[64] = {0};
1892 unsigned slot = 0;
1893
1894 while (outputs_written)
1895 reverse_map[slot++] = u_bit_scan64(&outputs_written);
1896
1897 for (unsigned i = 0; i < so_info->num_outputs; i++) {
1898 struct pipe_stream_output *output = &so_info->output[i];
1899
1900 /* Map Gallium's condensed "slots" back to real VARYING_SLOT_* enums */
1901 output->register_index = reverse_map[output->register_index];
1902
1903 so_outputs |= 1ull << output->register_index;
1904 }
1905
1906 return so_outputs;
1907 }
1908
1909 static void
1910 panfrost_bind_shader_state(
1911 struct pipe_context *pctx,
1912 void *hwcso,
1913 enum pipe_shader_type type)
1914 {
1915 struct panfrost_context *ctx = pan_context(pctx);
1916
1917 ctx->shader[type] = hwcso;
1918
1919 if (type == PIPE_SHADER_FRAGMENT)
1920 ctx->dirty |= PAN_DIRTY_FS;
1921 else
1922 ctx->dirty |= PAN_DIRTY_VS;
1923
1924 if (!hwcso) return;
1925
1926 /* Match the appropriate variant */
1927
1928 signed variant = -1;
1929 struct panfrost_shader_variants *variants = (struct panfrost_shader_variants *) hwcso;
1930
1931 for (unsigned i = 0; i < variants->variant_count; ++i) {
1932 if (panfrost_variant_matches(ctx, &variants->variants[i], type)) {
1933 variant = i;
1934 break;
1935 }
1936 }
1937
1938 if (variant == -1) {
1939 /* No variant matched, so create a new one */
1940 variant = variants->variant_count++;
1941 assert(variants->variant_count < MAX_SHADER_VARIANTS);
1942
1943 struct panfrost_shader_state *v =
1944 &variants->variants[variant];
1945
1946 if (type == PIPE_SHADER_FRAGMENT) {
1947 v->alpha_state = ctx->depth_stencil->alpha;
1948
1949 if (ctx->rasterizer) {
1950 v->point_sprite_mask = ctx->rasterizer->base.sprite_coord_enable;
1951 v->point_sprite_upper_left =
1952 ctx->rasterizer->base.sprite_coord_mode ==
1953 PIPE_SPRITE_COORD_UPPER_LEFT;
1954 }
1955 }
1956
1957 variants->variants[variant].tripipe = calloc(1, sizeof(struct mali_shader_meta));
1958
1959 }
1960
1961 /* Select this variant */
1962 variants->active_variant = variant;
1963
1964 struct panfrost_shader_state *shader_state = &variants->variants[variant];
1965 assert(panfrost_variant_matches(ctx, shader_state, type));
1966
1967 /* We finally have a variant, so compile it */
1968
1969 if (!shader_state->compiled) {
1970 uint64_t outputs_written = 0;
1971
1972 panfrost_shader_compile(ctx, shader_state->tripipe,
1973 variants->base.type,
1974 variants->base.type == PIPE_SHADER_IR_NIR ?
1975 variants->base.ir.nir :
1976 variants->base.tokens,
1977 tgsi_processor_to_shader_stage(type), shader_state,
1978 &outputs_written);
1979
1980 shader_state->compiled = true;
1981
1982 /* Fixup the stream out information, since what Gallium returns
1983 * normally is mildly insane */
1984
1985 shader_state->stream_output = variants->base.stream_output;
1986 shader_state->so_mask =
1987 update_so_info(&shader_state->stream_output, outputs_written);
1988 }
1989 }
1990
1991 static void *
1992 panfrost_create_vs_state(struct pipe_context *pctx, const struct pipe_shader_state *hwcso)
1993 {
1994 return panfrost_create_shader_state(pctx, hwcso, PIPE_SHADER_VERTEX);
1995 }
1996
1997 static void *
1998 panfrost_create_fs_state(struct pipe_context *pctx, const struct pipe_shader_state *hwcso)
1999 {
2000 return panfrost_create_shader_state(pctx, hwcso, PIPE_SHADER_FRAGMENT);
2001 }
2002
2003 static void
2004 panfrost_bind_vs_state(struct pipe_context *pctx, void *hwcso)
2005 {
2006 panfrost_bind_shader_state(pctx, hwcso, PIPE_SHADER_VERTEX);
2007 }
2008
2009 static void
2010 panfrost_bind_fs_state(struct pipe_context *pctx, void *hwcso)
2011 {
2012 panfrost_bind_shader_state(pctx, hwcso, PIPE_SHADER_FRAGMENT);
2013 }
2014
2015 static void
2016 panfrost_set_vertex_buffers(
2017 struct pipe_context *pctx,
2018 unsigned start_slot,
2019 unsigned num_buffers,
2020 const struct pipe_vertex_buffer *buffers)
2021 {
2022 struct panfrost_context *ctx = pan_context(pctx);
2023
2024 util_set_vertex_buffers_mask(ctx->vertex_buffers, &ctx->vb_mask, buffers, start_slot, num_buffers);
2025 }
2026
2027 static void
2028 panfrost_set_constant_buffer(
2029 struct pipe_context *pctx,
2030 enum pipe_shader_type shader, uint index,
2031 const struct pipe_constant_buffer *buf)
2032 {
2033 struct panfrost_context *ctx = pan_context(pctx);
2034 struct panfrost_constant_buffer *pbuf = &ctx->constant_buffer[shader];
2035
2036 util_copy_constant_buffer(&pbuf->cb[index], buf);
2037
2038 unsigned mask = (1 << index);
2039
2040 if (unlikely(!buf)) {
2041 pbuf->enabled_mask &= ~mask;
2042 pbuf->dirty_mask &= ~mask;
2043 return;
2044 }
2045
2046 pbuf->enabled_mask |= mask;
2047 pbuf->dirty_mask |= mask;
2048 }
2049
2050 static void
2051 panfrost_set_stencil_ref(
2052 struct pipe_context *pctx,
2053 const struct pipe_stencil_ref *ref)
2054 {
2055 struct panfrost_context *ctx = pan_context(pctx);
2056 ctx->stencil_ref = *ref;
2057
2058 /* Shader core dirty */
2059 ctx->dirty |= PAN_DIRTY_FS;
2060 }
2061
2062 static enum mali_texture_type
2063 panfrost_translate_texture_type(enum pipe_texture_target t) {
2064 switch (t)
2065 {
2066 case PIPE_BUFFER:
2067 case PIPE_TEXTURE_1D:
2068 case PIPE_TEXTURE_1D_ARRAY:
2069 return MALI_TEX_1D;
2070
2071 case PIPE_TEXTURE_2D:
2072 case PIPE_TEXTURE_2D_ARRAY:
2073 case PIPE_TEXTURE_RECT:
2074 return MALI_TEX_2D;
2075
2076 case PIPE_TEXTURE_3D:
2077 return MALI_TEX_3D;
2078
2079 case PIPE_TEXTURE_CUBE:
2080 case PIPE_TEXTURE_CUBE_ARRAY:
2081 return MALI_TEX_CUBE;
2082
2083 default:
2084 unreachable("Unknown target");
2085 }
2086 }
2087
2088 static struct pipe_sampler_view *
2089 panfrost_create_sampler_view(
2090 struct pipe_context *pctx,
2091 struct pipe_resource *texture,
2092 const struct pipe_sampler_view *template)
2093 {
2094 struct panfrost_sampler_view *so = rzalloc(pctx, struct panfrost_sampler_view);
2095 int bytes_per_pixel = util_format_get_blocksize(texture->format);
2096
2097 pipe_reference(NULL, &texture->reference);
2098
2099 struct panfrost_resource *prsrc = (struct panfrost_resource *) texture;
2100 assert(prsrc->bo);
2101
2102 so->base = *template;
2103 so->base.texture = texture;
2104 so->base.reference.count = 1;
2105 so->base.context = pctx;
2106
2107 /* sampler_views correspond to texture descriptors, minus the texture
2108 * (data) itself. So, we serialise the descriptor here and cache it for
2109 * later. */
2110
2111 const struct util_format_description *desc = util_format_description(prsrc->base.format);
2112
2113 unsigned char user_swizzle[4] = {
2114 template->swizzle_r,
2115 template->swizzle_g,
2116 template->swizzle_b,
2117 template->swizzle_a
2118 };
2119
2120 enum mali_format format = panfrost_find_format(desc);
2121
2122 /* Check if we need to set a custom stride by computing the "expected"
2123 * stride and comparing it to what the BO actually wants. Only applies
2124 * to linear textures, since tiled/compressed textures have strict
2125 * alignment requirements for their strides as it is */
2126
2127 unsigned first_level = template->u.tex.first_level;
2128 unsigned last_level = template->u.tex.last_level;
2129
2130 if (prsrc->layout == PAN_LINEAR) {
2131 for (unsigned l = first_level; l <= last_level; ++l) {
2132 unsigned actual_stride = prsrc->slices[l].stride;
2133 unsigned width = u_minify(texture->width0, l);
2134 unsigned comp_stride = width * bytes_per_pixel;
2135
2136 if (comp_stride != actual_stride) {
2137 so->manual_stride = true;
2138 break;
2139 }
2140 }
2141 }
2142
2143 /* In the hardware, array_size refers specifically to array textures,
2144 * whereas in Gallium, it also covers cubemaps */
2145
2146 unsigned array_size = texture->array_size;
2147
2148 if (template->target == PIPE_TEXTURE_CUBE) {
2149 /* TODO: Cubemap arrays */
2150 assert(array_size == 6);
2151 array_size /= 6;
2152 }
2153
2154 struct mali_texture_descriptor texture_descriptor = {
2155 .width = MALI_POSITIVE(u_minify(texture->width0, first_level)),
2156 .height = MALI_POSITIVE(u_minify(texture->height0, first_level)),
2157 .depth = MALI_POSITIVE(u_minify(texture->depth0, first_level)),
2158 .array_size = MALI_POSITIVE(array_size),
2159
2160 .format = {
2161 .swizzle = panfrost_translate_swizzle_4(desc->swizzle),
2162 .format = format,
2163 .srgb = desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB,
2164 .type = panfrost_translate_texture_type(template->target),
2165 .unknown2 = 0x1,
2166 },
2167
2168 .swizzle = panfrost_translate_swizzle_4(user_swizzle)
2169 };
2170
2171 texture_descriptor.levels = last_level - first_level;
2172
2173 so->hw = texture_descriptor;
2174
2175 return (struct pipe_sampler_view *) so;
2176 }
2177
2178 static void
2179 panfrost_set_sampler_views(
2180 struct pipe_context *pctx,
2181 enum pipe_shader_type shader,
2182 unsigned start_slot, unsigned num_views,
2183 struct pipe_sampler_view **views)
2184 {
2185 struct panfrost_context *ctx = pan_context(pctx);
2186 unsigned new_nr = 0;
2187 unsigned i;
2188
2189 assert(start_slot == 0);
2190
2191 for (i = 0; i < num_views; ++i) {
2192 if (views[i])
2193 new_nr = i + 1;
2194 pipe_sampler_view_reference((struct pipe_sampler_view **)&ctx->sampler_views[shader][i],
2195 views[i]);
2196 }
2197
2198 for (; i < ctx->sampler_view_count[shader]; i++) {
2199 pipe_sampler_view_reference((struct pipe_sampler_view **)&ctx->sampler_views[shader][i],
2200 NULL);
2201 }
2202 ctx->sampler_view_count[shader] = new_nr;
2203
2204 ctx->dirty |= PAN_DIRTY_TEXTURES;
2205 }
2206
2207 static void
2208 panfrost_sampler_view_destroy(
2209 struct pipe_context *pctx,
2210 struct pipe_sampler_view *view)
2211 {
2212 pipe_resource_reference(&view->texture, NULL);
2213 ralloc_free(view);
2214 }
2215
2216 static void
2217 panfrost_set_shader_buffers(
2218 struct pipe_context *pctx,
2219 enum pipe_shader_type shader,
2220 unsigned start, unsigned count,
2221 const struct pipe_shader_buffer *buffers,
2222 unsigned writable_bitmask)
2223 {
2224 struct panfrost_context *ctx = pan_context(pctx);
2225
2226 util_set_shader_buffers_mask(ctx->ssbo[shader], &ctx->ssbo_mask[shader],
2227 buffers, start, count);
2228 }
2229
2230 /* Hints that a framebuffer should use AFBC where possible */
2231
2232 static void
2233 panfrost_hint_afbc(
2234 struct panfrost_screen *screen,
2235 const struct pipe_framebuffer_state *fb)
2236 {
2237 /* AFBC implemenation incomplete; hide it */
2238 if (!(pan_debug & PAN_DBG_AFBC)) return;
2239
2240 /* Hint AFBC to the resources bound to each color buffer */
2241
2242 for (unsigned i = 0; i < fb->nr_cbufs; ++i) {
2243 struct pipe_surface *surf = fb->cbufs[i];
2244 struct panfrost_resource *rsrc = pan_resource(surf->texture);
2245 panfrost_resource_hint_layout(screen, rsrc, PAN_AFBC, 1);
2246 }
2247
2248 /* Also hint it to the depth buffer */
2249
2250 if (fb->zsbuf) {
2251 struct panfrost_resource *rsrc = pan_resource(fb->zsbuf->texture);
2252 panfrost_resource_hint_layout(screen, rsrc, PAN_AFBC, 1);
2253 }
2254 }
2255
2256 static void
2257 panfrost_set_framebuffer_state(struct pipe_context *pctx,
2258 const struct pipe_framebuffer_state *fb)
2259 {
2260 struct panfrost_context *ctx = pan_context(pctx);
2261
2262 panfrost_hint_afbc(pan_screen(pctx->screen), fb);
2263 util_copy_framebuffer_state(&ctx->pipe_framebuffer, fb);
2264 ctx->batch = NULL;
2265 panfrost_invalidate_frame(ctx);
2266 }
2267
2268 static void *
2269 panfrost_create_depth_stencil_state(struct pipe_context *pipe,
2270 const struct pipe_depth_stencil_alpha_state *depth_stencil)
2271 {
2272 return mem_dup(depth_stencil, sizeof(*depth_stencil));
2273 }
2274
2275 static void
2276 panfrost_bind_depth_stencil_state(struct pipe_context *pipe,
2277 void *cso)
2278 {
2279 struct panfrost_context *ctx = pan_context(pipe);
2280 struct pipe_depth_stencil_alpha_state *depth_stencil = cso;
2281 ctx->depth_stencil = depth_stencil;
2282
2283 if (!depth_stencil)
2284 return;
2285
2286 /* Alpha does not exist in the hardware (it's not in ES3), so it's
2287 * emulated in the fragment shader */
2288
2289 if (depth_stencil->alpha.enabled) {
2290 /* We need to trigger a new shader (maybe) */
2291 ctx->base.bind_fs_state(&ctx->base, ctx->shader[PIPE_SHADER_FRAGMENT]);
2292 }
2293
2294 /* Stencil state */
2295 SET_BIT(ctx->fragment_shader_core.unknown2_4, MALI_STENCIL_TEST, depth_stencil->stencil[0].enabled);
2296
2297 panfrost_make_stencil_state(&depth_stencil->stencil[0], &ctx->fragment_shader_core.stencil_front);
2298 ctx->fragment_shader_core.stencil_mask_front = depth_stencil->stencil[0].writemask;
2299
2300 /* If back-stencil is not enabled, use the front values */
2301 bool back_enab = ctx->depth_stencil->stencil[1].enabled;
2302 unsigned back_index = back_enab ? 1 : 0;
2303
2304 panfrost_make_stencil_state(&depth_stencil->stencil[back_index], &ctx->fragment_shader_core.stencil_back);
2305 ctx->fragment_shader_core.stencil_mask_back = depth_stencil->stencil[back_index].writemask;
2306
2307 /* Depth state (TODO: Refactor) */
2308 SET_BIT(ctx->fragment_shader_core.unknown2_3, MALI_DEPTH_WRITEMASK,
2309 depth_stencil->depth.writemask);
2310
2311 int func = depth_stencil->depth.enabled ? depth_stencil->depth.func : PIPE_FUNC_ALWAYS;
2312
2313 ctx->fragment_shader_core.unknown2_3 &= ~MALI_DEPTH_FUNC_MASK;
2314 ctx->fragment_shader_core.unknown2_3 |= MALI_DEPTH_FUNC(panfrost_translate_compare_func(func));
2315
2316 /* Bounds test not implemented */
2317 assert(!depth_stencil->depth.bounds_test);
2318
2319 ctx->dirty |= PAN_DIRTY_FS;
2320 }
2321
2322 static void
2323 panfrost_delete_depth_stencil_state(struct pipe_context *pipe, void *depth)
2324 {
2325 free( depth );
2326 }
2327
2328 static void
2329 panfrost_set_sample_mask(struct pipe_context *pipe,
2330 unsigned sample_mask)
2331 {
2332 }
2333
2334 static void
2335 panfrost_set_clip_state(struct pipe_context *pipe,
2336 const struct pipe_clip_state *clip)
2337 {
2338 //struct panfrost_context *panfrost = pan_context(pipe);
2339 }
2340
2341 static void
2342 panfrost_set_viewport_states(struct pipe_context *pipe,
2343 unsigned start_slot,
2344 unsigned num_viewports,
2345 const struct pipe_viewport_state *viewports)
2346 {
2347 struct panfrost_context *ctx = pan_context(pipe);
2348
2349 assert(start_slot == 0);
2350 assert(num_viewports == 1);
2351
2352 ctx->pipe_viewport = *viewports;
2353 }
2354
2355 static void
2356 panfrost_set_scissor_states(struct pipe_context *pipe,
2357 unsigned start_slot,
2358 unsigned num_scissors,
2359 const struct pipe_scissor_state *scissors)
2360 {
2361 struct panfrost_context *ctx = pan_context(pipe);
2362
2363 assert(start_slot == 0);
2364 assert(num_scissors == 1);
2365
2366 ctx->scissor = *scissors;
2367 }
2368
2369 static void
2370 panfrost_set_polygon_stipple(struct pipe_context *pipe,
2371 const struct pipe_poly_stipple *stipple)
2372 {
2373 //struct panfrost_context *panfrost = pan_context(pipe);
2374 }
2375
2376 static void
2377 panfrost_set_active_query_state(struct pipe_context *pipe,
2378 bool enable)
2379 {
2380 struct panfrost_context *ctx = pan_context(pipe);
2381 ctx->active_queries = enable;
2382 }
2383
2384 static void
2385 panfrost_destroy(struct pipe_context *pipe)
2386 {
2387 struct panfrost_context *panfrost = pan_context(pipe);
2388
2389 if (panfrost->blitter)
2390 util_blitter_destroy(panfrost->blitter);
2391
2392 if (panfrost->blitter_wallpaper)
2393 util_blitter_destroy(panfrost->blitter_wallpaper);
2394
2395 util_unreference_framebuffer_state(&panfrost->pipe_framebuffer);
2396 u_upload_destroy(pipe->stream_uploader);
2397
2398 ralloc_free(pipe);
2399 }
2400
2401 static struct pipe_query *
2402 panfrost_create_query(struct pipe_context *pipe,
2403 unsigned type,
2404 unsigned index)
2405 {
2406 struct panfrost_query *q = rzalloc(pipe, struct panfrost_query);
2407
2408 q->type = type;
2409 q->index = index;
2410
2411 return (struct pipe_query *) q;
2412 }
2413
2414 static void
2415 panfrost_destroy_query(struct pipe_context *pipe, struct pipe_query *q)
2416 {
2417 struct panfrost_query *query = (struct panfrost_query *) q;
2418
2419 if (query->bo) {
2420 panfrost_bo_unreference(query->bo);
2421 query->bo = NULL;
2422 }
2423
2424 ralloc_free(q);
2425 }
2426
2427 static bool
2428 panfrost_begin_query(struct pipe_context *pipe, struct pipe_query *q)
2429 {
2430 struct panfrost_context *ctx = pan_context(pipe);
2431 struct panfrost_query *query = (struct panfrost_query *) q;
2432
2433 switch (query->type) {
2434 case PIPE_QUERY_OCCLUSION_COUNTER:
2435 case PIPE_QUERY_OCCLUSION_PREDICATE:
2436 case PIPE_QUERY_OCCLUSION_PREDICATE_CONSERVATIVE:
2437 /* Allocate a bo for the query results to be stored */
2438 if (!query->bo) {
2439 query->bo = panfrost_bo_create(
2440 pan_screen(ctx->base.screen),
2441 sizeof(unsigned), 0);
2442 }
2443
2444 unsigned *result = (unsigned *)query->bo->cpu;
2445 *result = 0; /* Default to 0 if nothing at all drawn. */
2446 ctx->occlusion_query = query;
2447 break;
2448
2449 /* Geometry statistics are computed in the driver. XXX: geom/tess
2450 * shaders.. */
2451
2452 case PIPE_QUERY_PRIMITIVES_GENERATED:
2453 query->start = ctx->prims_generated;
2454 break;
2455 case PIPE_QUERY_PRIMITIVES_EMITTED:
2456 query->start = ctx->tf_prims_generated;
2457 break;
2458
2459 default:
2460 fprintf(stderr, "Skipping query %u\n", query->type);
2461 break;
2462 }
2463
2464 return true;
2465 }
2466
2467 static bool
2468 panfrost_end_query(struct pipe_context *pipe, struct pipe_query *q)
2469 {
2470 struct panfrost_context *ctx = pan_context(pipe);
2471 struct panfrost_query *query = (struct panfrost_query *) q;
2472
2473 switch (query->type) {
2474 case PIPE_QUERY_OCCLUSION_COUNTER:
2475 case PIPE_QUERY_OCCLUSION_PREDICATE:
2476 case PIPE_QUERY_OCCLUSION_PREDICATE_CONSERVATIVE:
2477 ctx->occlusion_query = NULL;
2478 break;
2479 case PIPE_QUERY_PRIMITIVES_GENERATED:
2480 query->end = ctx->prims_generated;
2481 break;
2482 case PIPE_QUERY_PRIMITIVES_EMITTED:
2483 query->end = ctx->tf_prims_generated;
2484 break;
2485 }
2486
2487 return true;
2488 }
2489
2490 static bool
2491 panfrost_get_query_result(struct pipe_context *pipe,
2492 struct pipe_query *q,
2493 bool wait,
2494 union pipe_query_result *vresult)
2495 {
2496 struct panfrost_query *query = (struct panfrost_query *) q;
2497 struct panfrost_context *ctx = pan_context(pipe);
2498
2499
2500 switch (query->type) {
2501 case PIPE_QUERY_OCCLUSION_COUNTER:
2502 case PIPE_QUERY_OCCLUSION_PREDICATE:
2503 case PIPE_QUERY_OCCLUSION_PREDICATE_CONSERVATIVE:
2504 /* Flush first */
2505 panfrost_flush_all_batches(ctx, true);
2506
2507 /* Read back the query results */
2508 unsigned *result = (unsigned *) query->bo->cpu;
2509 unsigned passed = *result;
2510
2511 if (query->type == PIPE_QUERY_OCCLUSION_COUNTER) {
2512 vresult->u64 = passed;
2513 } else {
2514 vresult->b = !!passed;
2515 }
2516
2517 break;
2518
2519 case PIPE_QUERY_PRIMITIVES_GENERATED:
2520 case PIPE_QUERY_PRIMITIVES_EMITTED:
2521 panfrost_flush_all_batches(ctx, true);
2522 vresult->u64 = query->end - query->start;
2523 break;
2524
2525 default:
2526 DBG("Skipped query get %u\n", query->type);
2527 break;
2528 }
2529
2530 return true;
2531 }
2532
2533 static struct pipe_stream_output_target *
2534 panfrost_create_stream_output_target(struct pipe_context *pctx,
2535 struct pipe_resource *prsc,
2536 unsigned buffer_offset,
2537 unsigned buffer_size)
2538 {
2539 struct pipe_stream_output_target *target;
2540
2541 target = rzalloc(pctx, struct pipe_stream_output_target);
2542
2543 if (!target)
2544 return NULL;
2545
2546 pipe_reference_init(&target->reference, 1);
2547 pipe_resource_reference(&target->buffer, prsc);
2548
2549 target->context = pctx;
2550 target->buffer_offset = buffer_offset;
2551 target->buffer_size = buffer_size;
2552
2553 return target;
2554 }
2555
2556 static void
2557 panfrost_stream_output_target_destroy(struct pipe_context *pctx,
2558 struct pipe_stream_output_target *target)
2559 {
2560 pipe_resource_reference(&target->buffer, NULL);
2561 ralloc_free(target);
2562 }
2563
2564 static void
2565 panfrost_set_stream_output_targets(struct pipe_context *pctx,
2566 unsigned num_targets,
2567 struct pipe_stream_output_target **targets,
2568 const unsigned *offsets)
2569 {
2570 struct panfrost_context *ctx = pan_context(pctx);
2571 struct panfrost_streamout *so = &ctx->streamout;
2572
2573 assert(num_targets <= ARRAY_SIZE(so->targets));
2574
2575 for (unsigned i = 0; i < num_targets; i++) {
2576 if (offsets[i] != -1)
2577 so->offsets[i] = offsets[i];
2578
2579 pipe_so_target_reference(&so->targets[i], targets[i]);
2580 }
2581
2582 for (unsigned i = 0; i < so->num_targets; i++)
2583 pipe_so_target_reference(&so->targets[i], NULL);
2584
2585 so->num_targets = num_targets;
2586 }
2587
2588 struct pipe_context *
2589 panfrost_create_context(struct pipe_screen *screen, void *priv, unsigned flags)
2590 {
2591 struct panfrost_context *ctx = rzalloc(screen, struct panfrost_context);
2592 struct pipe_context *gallium = (struct pipe_context *) ctx;
2593
2594 gallium->screen = screen;
2595
2596 gallium->destroy = panfrost_destroy;
2597
2598 gallium->set_framebuffer_state = panfrost_set_framebuffer_state;
2599
2600 gallium->flush = panfrost_flush;
2601 gallium->clear = panfrost_clear;
2602 gallium->draw_vbo = panfrost_draw_vbo;
2603
2604 gallium->set_vertex_buffers = panfrost_set_vertex_buffers;
2605 gallium->set_constant_buffer = panfrost_set_constant_buffer;
2606 gallium->set_shader_buffers = panfrost_set_shader_buffers;
2607
2608 gallium->set_stencil_ref = panfrost_set_stencil_ref;
2609
2610 gallium->create_sampler_view = panfrost_create_sampler_view;
2611 gallium->set_sampler_views = panfrost_set_sampler_views;
2612 gallium->sampler_view_destroy = panfrost_sampler_view_destroy;
2613
2614 gallium->create_rasterizer_state = panfrost_create_rasterizer_state;
2615 gallium->bind_rasterizer_state = panfrost_bind_rasterizer_state;
2616 gallium->delete_rasterizer_state = panfrost_generic_cso_delete;
2617
2618 gallium->create_vertex_elements_state = panfrost_create_vertex_elements_state;
2619 gallium->bind_vertex_elements_state = panfrost_bind_vertex_elements_state;
2620 gallium->delete_vertex_elements_state = panfrost_generic_cso_delete;
2621
2622 gallium->create_fs_state = panfrost_create_fs_state;
2623 gallium->delete_fs_state = panfrost_delete_shader_state;
2624 gallium->bind_fs_state = panfrost_bind_fs_state;
2625
2626 gallium->create_vs_state = panfrost_create_vs_state;
2627 gallium->delete_vs_state = panfrost_delete_shader_state;
2628 gallium->bind_vs_state = panfrost_bind_vs_state;
2629
2630 gallium->create_sampler_state = panfrost_create_sampler_state;
2631 gallium->delete_sampler_state = panfrost_generic_cso_delete;
2632 gallium->bind_sampler_states = panfrost_bind_sampler_states;
2633
2634 gallium->create_depth_stencil_alpha_state = panfrost_create_depth_stencil_state;
2635 gallium->bind_depth_stencil_alpha_state = panfrost_bind_depth_stencil_state;
2636 gallium->delete_depth_stencil_alpha_state = panfrost_delete_depth_stencil_state;
2637
2638 gallium->set_sample_mask = panfrost_set_sample_mask;
2639
2640 gallium->set_clip_state = panfrost_set_clip_state;
2641 gallium->set_viewport_states = panfrost_set_viewport_states;
2642 gallium->set_scissor_states = panfrost_set_scissor_states;
2643 gallium->set_polygon_stipple = panfrost_set_polygon_stipple;
2644 gallium->set_active_query_state = panfrost_set_active_query_state;
2645
2646 gallium->create_query = panfrost_create_query;
2647 gallium->destroy_query = panfrost_destroy_query;
2648 gallium->begin_query = panfrost_begin_query;
2649 gallium->end_query = panfrost_end_query;
2650 gallium->get_query_result = panfrost_get_query_result;
2651
2652 gallium->create_stream_output_target = panfrost_create_stream_output_target;
2653 gallium->stream_output_target_destroy = panfrost_stream_output_target_destroy;
2654 gallium->set_stream_output_targets = panfrost_set_stream_output_targets;
2655
2656 panfrost_resource_context_init(gallium);
2657 panfrost_blend_context_init(gallium);
2658 panfrost_compute_context_init(gallium);
2659
2660 /* XXX: leaks */
2661 gallium->stream_uploader = u_upload_create_default(gallium);
2662 gallium->const_uploader = gallium->stream_uploader;
2663 assert(gallium->stream_uploader);
2664
2665 /* Midgard supports ES modes, plus QUADS/QUAD_STRIPS/POLYGON */
2666 ctx->draw_modes = (1 << (PIPE_PRIM_POLYGON + 1)) - 1;
2667
2668 ctx->primconvert = util_primconvert_create(gallium, ctx->draw_modes);
2669
2670 ctx->blitter = util_blitter_create(gallium);
2671 ctx->blitter_wallpaper = util_blitter_create(gallium);
2672
2673 assert(ctx->blitter);
2674 assert(ctx->blitter_wallpaper);
2675
2676 /* Prepare for render! */
2677
2678 panfrost_batch_init(ctx);
2679 panfrost_emit_vertex_payload(ctx);
2680 panfrost_emit_tiler_payload(ctx);
2681 panfrost_invalidate_frame(ctx);
2682 panfrost_default_shader_backend(ctx);
2683
2684 return gallium;
2685 }