panfrost: Figure out job requirements in pan_job.c
[mesa.git] / src / gallium / drivers / panfrost / pan_context.c
1 /*
2 * © Copyright 2018 Alyssa Rosenzweig
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 */
24
25 #include <sys/poll.h>
26 #include <errno.h>
27
28 #include "pan_context.h"
29 #include "pan_swizzle.h"
30 #include "pan_format.h"
31
32 #include "util/macros.h"
33 #include "util/u_format.h"
34 #include "util/u_inlines.h"
35 #include "util/u_upload_mgr.h"
36 #include "util/u_memory.h"
37 #include "util/u_vbuf.h"
38 #include "util/half_float.h"
39 #include "util/u_helpers.h"
40 #include "util/u_format.h"
41 #include "indices/u_primconvert.h"
42 #include "tgsi/tgsi_parse.h"
43 #include "util/u_math.h"
44
45 #include "pan_screen.h"
46 #include "pan_blending.h"
47 #include "pan_blend_shaders.h"
48 #include "pan_util.h"
49 #include "pan_tiler.h"
50
51 static int performance_counter_number = 0;
52 extern const char *pan_counters_base;
53
54 /* Do not actually send anything to the GPU; merely generate the cmdstream as fast as possible. Disables framebuffer writes */
55 //#define DRY_RUN
56
57 static enum mali_job_type
58 panfrost_job_type_for_pipe(enum pipe_shader_type type)
59 {
60 switch (type) {
61 case PIPE_SHADER_VERTEX:
62 return JOB_TYPE_VERTEX;
63
64 case PIPE_SHADER_FRAGMENT:
65 /* Note: JOB_TYPE_FRAGMENT is different.
66 * JOB_TYPE_FRAGMENT actually executes the
67 * fragment shader, but JOB_TYPE_TILER is how you
68 * specify it*/
69 return JOB_TYPE_TILER;
70
71 case PIPE_SHADER_GEOMETRY:
72 return JOB_TYPE_GEOMETRY;
73
74 case PIPE_SHADER_COMPUTE:
75 return JOB_TYPE_COMPUTE;
76
77 default:
78 unreachable("Unsupported shader stage");
79 }
80 }
81
82 static void
83 panfrost_enable_checksum(struct panfrost_context *ctx, struct panfrost_resource *rsrc)
84 {
85 struct pipe_context *gallium = (struct pipe_context *) ctx;
86 struct panfrost_screen *screen = pan_screen(gallium->screen);
87 int tile_w = (rsrc->base.width0 + (MALI_TILE_LENGTH - 1)) >> MALI_TILE_SHIFT;
88 int tile_h = (rsrc->base.height0 + (MALI_TILE_LENGTH - 1)) >> MALI_TILE_SHIFT;
89
90 /* 8 byte checksum per tile */
91 rsrc->bo->checksum_stride = tile_w * 8;
92 int pages = (((rsrc->bo->checksum_stride * tile_h) + 4095) / 4096);
93 screen->driver->allocate_slab(screen, &rsrc->bo->checksum_slab, pages, false, 0, 0, 0);
94
95 rsrc->bo->has_checksum = true;
96 }
97
98 /* Framebuffer descriptor */
99
100 static void
101 panfrost_set_framebuffer_resolution(struct mali_single_framebuffer *fb, int w, int h)
102 {
103 fb->width = MALI_POSITIVE(w);
104 fb->height = MALI_POSITIVE(h);
105
106 /* No idea why this is needed, but it's how resolution_check is
107 * calculated. It's not clear to us yet why the hardware wants this.
108 * The formula itself was discovered mostly by manual bruteforce and
109 * aggressive algebraic simplification. */
110
111 fb->tiler_resolution_check = ((w + h) / 3) << 4;
112 }
113
114 struct mali_single_framebuffer
115 panfrost_emit_sfbd(struct panfrost_context *ctx, unsigned vertex_count)
116 {
117 struct mali_single_framebuffer framebuffer = {
118 .unknown2 = 0x1f,
119 .format = 0x30000000,
120 .clear_flags = 0x1000,
121 .unknown_address_0 = ctx->scratchpad.gpu,
122 .tiler_polygon_list = ctx->tiler_polygon_list.gpu,
123 .tiler_polygon_list_body = ctx->tiler_polygon_list.gpu + 40960,
124 .tiler_hierarchy_mask = 0xF0,
125 .tiler_flags = 0x0,
126 .tiler_heap_free = ctx->tiler_heap.gpu,
127 .tiler_heap_end = ctx->tiler_heap.gpu + ctx->tiler_heap.size,
128 };
129
130 panfrost_set_framebuffer_resolution(&framebuffer, ctx->pipe_framebuffer.width, ctx->pipe_framebuffer.height);
131
132 return framebuffer;
133 }
134
135 struct bifrost_framebuffer
136 panfrost_emit_mfbd(struct panfrost_context *ctx, unsigned vertex_count)
137 {
138 unsigned width = ctx->pipe_framebuffer.width;
139 unsigned height = ctx->pipe_framebuffer.height;
140
141 struct bifrost_framebuffer framebuffer = {
142 .width1 = MALI_POSITIVE(width),
143 .height1 = MALI_POSITIVE(height),
144 .width2 = MALI_POSITIVE(width),
145 .height2 = MALI_POSITIVE(height),
146
147 .unk1 = 0x1080,
148
149 /* TODO: MRT */
150 .rt_count_1 = MALI_POSITIVE(1),
151 .rt_count_2 = 4,
152
153 .unknown2 = 0x1f,
154
155 .scratchpad = ctx->scratchpad.gpu,
156 };
157
158 framebuffer.tiler_hierarchy_mask =
159 panfrost_choose_hierarchy_mask(width, height, vertex_count);
160
161 /* Compute the polygon header size and use that to offset the body */
162
163 unsigned header_size = panfrost_tiler_header_size(
164 width, height, framebuffer.tiler_hierarchy_mask);
165
166 unsigned body_size = panfrost_tiler_body_size(
167 width, height, framebuffer.tiler_hierarchy_mask);
168
169 /* Sanity check */
170
171 unsigned total_size = header_size + body_size;
172
173 if (framebuffer.tiler_hierarchy_mask) {
174 assert(ctx->tiler_polygon_list.size >= total_size);
175
176 /* Specify allocated tiler structures */
177 framebuffer.tiler_polygon_list = ctx->tiler_polygon_list.gpu;
178
179 /* Allow the entire tiler heap */
180 framebuffer.tiler_heap_start = ctx->tiler_heap.gpu;
181 framebuffer.tiler_heap_end =
182 ctx->tiler_heap.gpu + ctx->tiler_heap.size;
183 } else {
184 /* The tiler is disabled, so don't allow the tiler heap */
185 framebuffer.tiler_heap_start = ctx->tiler_heap.gpu;
186 framebuffer.tiler_heap_end = framebuffer.tiler_heap_start;
187
188 /* Use a dummy polygon list */
189 framebuffer.tiler_polygon_list = ctx->tiler_dummy.gpu;
190
191 /* Also, set a "tiler disabled?" flag? */
192 framebuffer.tiler_hierarchy_mask |= 0x1000;
193 }
194
195 framebuffer.tiler_polygon_list_body =
196 framebuffer.tiler_polygon_list + header_size;
197
198 framebuffer.tiler_polygon_list_size =
199 header_size + body_size;
200
201
202
203 return framebuffer;
204 }
205
206 /* Are we currently rendering to the screen (rather than an FBO)? */
207
208 bool
209 panfrost_is_scanout(struct panfrost_context *ctx)
210 {
211 /* If there is no color buffer, it's an FBO */
212 if (!ctx->pipe_framebuffer.nr_cbufs)
213 return false;
214
215 /* If we're too early that no framebuffer was sent, it's scanout */
216 if (!ctx->pipe_framebuffer.cbufs[0])
217 return true;
218
219 return ctx->pipe_framebuffer.cbufs[0]->texture->bind & PIPE_BIND_DISPLAY_TARGET ||
220 ctx->pipe_framebuffer.cbufs[0]->texture->bind & PIPE_BIND_SCANOUT ||
221 ctx->pipe_framebuffer.cbufs[0]->texture->bind & PIPE_BIND_SHARED;
222 }
223
224 static uint32_t
225 pan_pack_color(const union pipe_color_union *color, enum pipe_format format)
226 {
227 /* Alpha magicked to 1.0 if there is no alpha */
228
229 bool has_alpha = util_format_has_alpha(format);
230 float clear_alpha = has_alpha ? color->f[3] : 1.0f;
231
232 /* Packed color depends on the framebuffer format */
233
234 const struct util_format_description *desc =
235 util_format_description(format);
236
237 if (util_format_is_rgba8_variant(desc)) {
238 return (float_to_ubyte(clear_alpha) << 24) |
239 (float_to_ubyte(color->f[2]) << 16) |
240 (float_to_ubyte(color->f[1]) << 8) |
241 (float_to_ubyte(color->f[0]) << 0);
242 } else if (format == PIPE_FORMAT_B5G6R5_UNORM) {
243 /* First, we convert the components to R5, G6, B5 separately */
244 unsigned r5 = CLAMP(color->f[0], 0.0, 1.0) * 31.0;
245 unsigned g6 = CLAMP(color->f[1], 0.0, 1.0) * 63.0;
246 unsigned b5 = CLAMP(color->f[2], 0.0, 1.0) * 31.0;
247
248 /* Then we pack into a sparse u32. TODO: Why these shifts? */
249 return (b5 << 25) | (g6 << 14) | (r5 << 5);
250 } else {
251 /* Unknown format */
252 assert(0);
253 }
254
255 return 0;
256 }
257
258 static void
259 panfrost_clear(
260 struct pipe_context *pipe,
261 unsigned buffers,
262 const union pipe_color_union *color,
263 double depth, unsigned stencil)
264 {
265 struct panfrost_context *ctx = pan_context(pipe);
266 struct panfrost_job *job = panfrost_get_job_for_fbo(ctx);
267
268 if (buffers & PIPE_CLEAR_COLOR) {
269 enum pipe_format format = ctx->pipe_framebuffer.cbufs[0]->format;
270 job->clear_color = pan_pack_color(color, format);
271 }
272
273 if (buffers & PIPE_CLEAR_DEPTH) {
274 job->clear_depth = depth;
275 }
276
277 if (buffers & PIPE_CLEAR_STENCIL) {
278 job->clear_stencil = stencil;
279 }
280
281 job->clear |= buffers;
282 }
283
284 static mali_ptr
285 panfrost_attach_vt_mfbd(struct panfrost_context *ctx)
286 {
287 return panfrost_upload_transient(ctx, &ctx->vt_framebuffer_mfbd, sizeof(ctx->vt_framebuffer_mfbd)) | MALI_MFBD;
288 }
289
290 static mali_ptr
291 panfrost_attach_vt_sfbd(struct panfrost_context *ctx)
292 {
293 return panfrost_upload_transient(ctx, &ctx->vt_framebuffer_sfbd, sizeof(ctx->vt_framebuffer_sfbd)) | MALI_SFBD;
294 }
295
296 static void
297 panfrost_attach_vt_framebuffer(struct panfrost_context *ctx)
298 {
299 mali_ptr framebuffer = ctx->require_sfbd ?
300 panfrost_attach_vt_sfbd(ctx) :
301 panfrost_attach_vt_mfbd(ctx);
302
303 ctx->payload_vertex.postfix.framebuffer = framebuffer;
304 ctx->payload_tiler.postfix.framebuffer = framebuffer;
305 }
306
307 /* Reset per-frame context, called on context initialisation as well as after
308 * flushing a frame */
309
310 static void
311 panfrost_invalidate_frame(struct panfrost_context *ctx)
312 {
313 unsigned transient_count = ctx->transient_pools[ctx->cmdstream_i].entry_index*ctx->transient_pools[0].entry_size + ctx->transient_pools[ctx->cmdstream_i].entry_offset;
314 DBG("Uploaded transient %d bytes\n", transient_count);
315
316 /* Rotate cmdstream */
317 if ((++ctx->cmdstream_i) == (sizeof(ctx->transient_pools) / sizeof(ctx->transient_pools[0])))
318 ctx->cmdstream_i = 0;
319
320 if (ctx->require_sfbd)
321 ctx->vt_framebuffer_sfbd = panfrost_emit_sfbd(ctx, ~0);
322 else
323 ctx->vt_framebuffer_mfbd = panfrost_emit_mfbd(ctx, ~0);
324
325 /* Reset varyings allocated */
326 ctx->varying_height = 0;
327
328 /* The transient cmdstream is dirty every frame; the only bits worth preserving
329 * (textures, shaders, etc) are in other buffers anyways */
330
331 ctx->transient_pools[ctx->cmdstream_i].entry_index = 0;
332 ctx->transient_pools[ctx->cmdstream_i].entry_offset = 0;
333
334 /* Regenerate payloads */
335 panfrost_attach_vt_framebuffer(ctx);
336
337 if (ctx->rasterizer)
338 ctx->dirty |= PAN_DIRTY_RASTERIZER;
339
340 /* XXX */
341 ctx->dirty |= PAN_DIRTY_SAMPLERS | PAN_DIRTY_TEXTURES;
342 }
343
344 /* In practice, every field of these payloads should be configurable
345 * arbitrarily, which means these functions are basically catch-all's for
346 * as-of-yet unwavering unknowns */
347
348 static void
349 panfrost_emit_vertex_payload(struct panfrost_context *ctx)
350 {
351 struct midgard_payload_vertex_tiler payload = {
352 .prefix = {
353 .workgroups_z_shift = 32,
354 .workgroups_x_shift_2 = 0x2,
355 .workgroups_x_shift_3 = 0x5,
356 },
357 .gl_enables = 0x4 | (ctx->is_t6xx ? 0 : 0x2),
358 };
359
360 memcpy(&ctx->payload_vertex, &payload, sizeof(payload));
361 }
362
363 static void
364 panfrost_emit_tiler_payload(struct panfrost_context *ctx)
365 {
366 struct midgard_payload_vertex_tiler payload = {
367 .prefix = {
368 .workgroups_z_shift = 32,
369 .workgroups_x_shift_2 = 0x2,
370 .workgroups_x_shift_3 = 0x6,
371
372 .zero1 = 0xffff, /* Why is this only seen on test-quad-textured? */
373 },
374 };
375
376 memcpy(&ctx->payload_tiler, &payload, sizeof(payload));
377 }
378
379 static unsigned
380 translate_tex_wrap(enum pipe_tex_wrap w)
381 {
382 switch (w) {
383 case PIPE_TEX_WRAP_REPEAT:
384 return MALI_WRAP_REPEAT;
385
386 case PIPE_TEX_WRAP_CLAMP_TO_EDGE:
387 return MALI_WRAP_CLAMP_TO_EDGE;
388
389 case PIPE_TEX_WRAP_CLAMP_TO_BORDER:
390 return MALI_WRAP_CLAMP_TO_BORDER;
391
392 case PIPE_TEX_WRAP_MIRROR_REPEAT:
393 return MALI_WRAP_MIRRORED_REPEAT;
394
395 default:
396 unreachable("Invalid wrap");
397 }
398 }
399
400 static unsigned
401 translate_tex_filter(enum pipe_tex_filter f)
402 {
403 switch (f) {
404 case PIPE_TEX_FILTER_NEAREST:
405 return MALI_NEAREST;
406
407 case PIPE_TEX_FILTER_LINEAR:
408 return MALI_LINEAR;
409
410 default:
411 unreachable("Invalid filter");
412 }
413 }
414
415 static unsigned
416 translate_mip_filter(enum pipe_tex_mipfilter f)
417 {
418 return (f == PIPE_TEX_MIPFILTER_LINEAR) ? MALI_MIP_LINEAR : 0;
419 }
420
421 static unsigned
422 panfrost_translate_compare_func(enum pipe_compare_func in)
423 {
424 switch (in) {
425 case PIPE_FUNC_NEVER:
426 return MALI_FUNC_NEVER;
427
428 case PIPE_FUNC_LESS:
429 return MALI_FUNC_LESS;
430
431 case PIPE_FUNC_EQUAL:
432 return MALI_FUNC_EQUAL;
433
434 case PIPE_FUNC_LEQUAL:
435 return MALI_FUNC_LEQUAL;
436
437 case PIPE_FUNC_GREATER:
438 return MALI_FUNC_GREATER;
439
440 case PIPE_FUNC_NOTEQUAL:
441 return MALI_FUNC_NOTEQUAL;
442
443 case PIPE_FUNC_GEQUAL:
444 return MALI_FUNC_GEQUAL;
445
446 case PIPE_FUNC_ALWAYS:
447 return MALI_FUNC_ALWAYS;
448
449 default:
450 unreachable("Invalid func");
451 }
452 }
453
454 static unsigned
455 panfrost_translate_alt_compare_func(enum pipe_compare_func in)
456 {
457 switch (in) {
458 case PIPE_FUNC_NEVER:
459 return MALI_ALT_FUNC_NEVER;
460
461 case PIPE_FUNC_LESS:
462 return MALI_ALT_FUNC_LESS;
463
464 case PIPE_FUNC_EQUAL:
465 return MALI_ALT_FUNC_EQUAL;
466
467 case PIPE_FUNC_LEQUAL:
468 return MALI_ALT_FUNC_LEQUAL;
469
470 case PIPE_FUNC_GREATER:
471 return MALI_ALT_FUNC_GREATER;
472
473 case PIPE_FUNC_NOTEQUAL:
474 return MALI_ALT_FUNC_NOTEQUAL;
475
476 case PIPE_FUNC_GEQUAL:
477 return MALI_ALT_FUNC_GEQUAL;
478
479 case PIPE_FUNC_ALWAYS:
480 return MALI_ALT_FUNC_ALWAYS;
481
482 default:
483 unreachable("Invalid alt func");
484 }
485 }
486
487 static unsigned
488 panfrost_translate_stencil_op(enum pipe_stencil_op in)
489 {
490 switch (in) {
491 case PIPE_STENCIL_OP_KEEP:
492 return MALI_STENCIL_KEEP;
493
494 case PIPE_STENCIL_OP_ZERO:
495 return MALI_STENCIL_ZERO;
496
497 case PIPE_STENCIL_OP_REPLACE:
498 return MALI_STENCIL_REPLACE;
499
500 case PIPE_STENCIL_OP_INCR:
501 return MALI_STENCIL_INCR;
502
503 case PIPE_STENCIL_OP_DECR:
504 return MALI_STENCIL_DECR;
505
506 case PIPE_STENCIL_OP_INCR_WRAP:
507 return MALI_STENCIL_INCR_WRAP;
508
509 case PIPE_STENCIL_OP_DECR_WRAP:
510 return MALI_STENCIL_DECR_WRAP;
511
512 case PIPE_STENCIL_OP_INVERT:
513 return MALI_STENCIL_INVERT;
514
515 default:
516 unreachable("Invalid stencil op");
517 }
518 }
519
520 static void
521 panfrost_make_stencil_state(const struct pipe_stencil_state *in, struct mali_stencil_test *out)
522 {
523 out->ref = 0; /* Gallium gets it from elsewhere */
524
525 out->mask = in->valuemask;
526 out->func = panfrost_translate_compare_func(in->func);
527 out->sfail = panfrost_translate_stencil_op(in->fail_op);
528 out->dpfail = panfrost_translate_stencil_op(in->zfail_op);
529 out->dppass = panfrost_translate_stencil_op(in->zpass_op);
530 }
531
532 static void
533 panfrost_default_shader_backend(struct panfrost_context *ctx)
534 {
535 struct mali_shader_meta shader = {
536 .alpha_coverage = ~MALI_ALPHA_COVERAGE(0.000000),
537
538 .unknown2_3 = MALI_DEPTH_FUNC(MALI_FUNC_ALWAYS) | 0x3010,
539 .unknown2_4 = MALI_NO_MSAA | 0x4e0,
540 };
541
542 if (ctx->is_t6xx) {
543 shader.unknown2_4 |= 0x10;
544 }
545
546 struct pipe_stencil_state default_stencil = {
547 .enabled = 0,
548 .func = PIPE_FUNC_ALWAYS,
549 .fail_op = MALI_STENCIL_KEEP,
550 .zfail_op = MALI_STENCIL_KEEP,
551 .zpass_op = MALI_STENCIL_KEEP,
552 .writemask = 0xFF,
553 .valuemask = 0xFF
554 };
555
556 panfrost_make_stencil_state(&default_stencil, &shader.stencil_front);
557 shader.stencil_mask_front = default_stencil.writemask;
558
559 panfrost_make_stencil_state(&default_stencil, &shader.stencil_back);
560 shader.stencil_mask_back = default_stencil.writemask;
561
562 if (default_stencil.enabled)
563 shader.unknown2_4 |= MALI_STENCIL_TEST;
564
565 memcpy(&ctx->fragment_shader_core, &shader, sizeof(shader));
566 }
567
568 static void
569 panfrost_link_job_pair(struct mali_job_descriptor_header *first, mali_ptr next)
570 {
571 if (first->job_descriptor_size)
572 first->next_job_64 = (u64) (uintptr_t) next;
573 else
574 first->next_job_32 = (u32) (uintptr_t) next;
575 }
576
577 /* Generates a vertex/tiler job. This is, in some sense, the heart of the
578 * graphics command stream. It should be called once per draw, accordding to
579 * presentations. Set is_tiler for "tiler" jobs (fragment shader jobs, but in
580 * Mali parlance, "fragment" refers to framebuffer writeout). Clear it for
581 * vertex jobs. */
582
583 struct panfrost_transfer
584 panfrost_vertex_tiler_job(struct panfrost_context *ctx, bool is_tiler)
585 {
586 /* Each draw call corresponds to two jobs, and the set-value job is first */
587 int draw_job_index = 1 + (2 * ctx->draw_count) + 1;
588
589 struct mali_job_descriptor_header job = {
590 .job_type = is_tiler ? JOB_TYPE_TILER : JOB_TYPE_VERTEX,
591 .job_index = draw_job_index + (is_tiler ? 1 : 0),
592 #ifdef __LP64__
593 .job_descriptor_size = 1,
594 #endif
595 };
596
597 struct midgard_payload_vertex_tiler *payload = is_tiler ? &ctx->payload_tiler : &ctx->payload_vertex;
598
599 /* There's some padding hacks on 32-bit */
600
601 #ifdef __LP64__
602 int offset = 0;
603 #else
604 int offset = 4;
605 #endif
606 struct panfrost_transfer transfer = panfrost_allocate_transient(ctx, sizeof(job) + sizeof(*payload));
607
608 if (is_tiler) {
609 /* Tiler jobs depend on vertex jobs */
610
611 job.job_dependency_index_1 = draw_job_index;
612
613 /* Tiler jobs also depend on the previous tiler job */
614
615 if (ctx->draw_count) {
616 job.job_dependency_index_2 = draw_job_index - 1;
617 /* Previous tiler job points to this tiler job */
618 panfrost_link_job_pair(ctx->u_tiler_jobs[ctx->draw_count - 1], transfer.gpu);
619 } else {
620 /* The only vertex job so far points to first tiler job */
621 panfrost_link_job_pair(ctx->u_vertex_jobs[0], transfer.gpu);
622 }
623 } else {
624 if (ctx->draw_count) {
625 /* Previous vertex job points to this vertex job */
626 panfrost_link_job_pair(ctx->u_vertex_jobs[ctx->draw_count - 1], transfer.gpu);
627
628 /* Last vertex job points to first tiler job */
629 panfrost_link_job_pair(&job, ctx->tiler_jobs[0]);
630 } else {
631 /* Have the first vertex job depend on the set value job */
632 job.job_dependency_index_1 = ctx->u_set_value_job->job_index;
633 panfrost_link_job_pair(ctx->u_set_value_job, transfer.gpu);
634 }
635 }
636
637 memcpy(transfer.cpu, &job, sizeof(job));
638 memcpy(transfer.cpu + sizeof(job) - offset, payload, sizeof(*payload));
639 return transfer;
640 }
641
642 /* Generates a set value job. It's unclear what exactly this does, why it's
643 * necessary, and when to call it. */
644
645 static void
646 panfrost_set_value_job(struct panfrost_context *ctx)
647 {
648 struct mali_job_descriptor_header job = {
649 .job_type = JOB_TYPE_SET_VALUE,
650 .job_descriptor_size = 1,
651 .job_index = 1,
652 };
653
654 struct mali_payload_set_value payload = {
655 .out = ctx->tiler_polygon_list.gpu,
656 .unknown = 0x3,
657 };
658
659 struct panfrost_transfer transfer = panfrost_allocate_transient(ctx, sizeof(job) + sizeof(payload));
660 memcpy(transfer.cpu, &job, sizeof(job));
661 memcpy(transfer.cpu + sizeof(job), &payload, sizeof(payload));
662
663 ctx->u_set_value_job = (struct mali_job_descriptor_header *) transfer.cpu;
664 ctx->set_value_job = transfer.gpu;
665 }
666
667 static mali_ptr
668 panfrost_emit_varyings(
669 struct panfrost_context *ctx,
670 union mali_attr *slot,
671 unsigned stride,
672 unsigned count)
673 {
674 mali_ptr varying_address = ctx->varying_mem.gpu + ctx->varying_height;
675
676 /* Fill out the descriptor */
677 slot->elements = varying_address | MALI_ATTR_LINEAR;
678 slot->stride = stride;
679 slot->size = stride * count;
680
681 ctx->varying_height += ALIGN(slot->size, 64);
682 assert(ctx->varying_height < ctx->varying_mem.size);
683
684 return varying_address;
685 }
686
687 static void
688 panfrost_emit_point_coord(union mali_attr *slot)
689 {
690 slot->elements = MALI_VARYING_POINT_COORD | MALI_ATTR_LINEAR;
691 slot->stride = slot->size = 0;
692 }
693
694 static void
695 panfrost_emit_varying_descriptor(
696 struct panfrost_context *ctx,
697 unsigned invocation_count)
698 {
699 /* Load the shaders */
700
701 struct panfrost_shader_state *vs = &ctx->vs->variants[ctx->vs->active_variant];
702 struct panfrost_shader_state *fs = &ctx->fs->variants[ctx->fs->active_variant];
703 unsigned int num_gen_varyings = 0;
704
705 /* Allocate the varying descriptor */
706
707 size_t vs_size = sizeof(struct mali_attr_meta) * vs->tripipe->varying_count;
708 size_t fs_size = sizeof(struct mali_attr_meta) * fs->tripipe->varying_count;
709
710 struct panfrost_transfer trans = panfrost_allocate_transient(ctx,
711 vs_size + fs_size);
712
713 /*
714 * Assign ->src_offset now that we know about all the general purpose
715 * varyings that will be used by the fragment and vertex shaders.
716 */
717 for (unsigned i = 0; i < vs->tripipe->varying_count; i++) {
718 /*
719 * General purpose varyings have ->index set to 0, skip other
720 * entries.
721 */
722 if (vs->varyings[i].index)
723 continue;
724
725 vs->varyings[i].src_offset = 16 * (num_gen_varyings++);
726 }
727
728 for (unsigned i = 0; i < fs->tripipe->varying_count; i++) {
729 unsigned j;
730
731 if (fs->varyings[i].index)
732 continue;
733
734 /*
735 * Re-use the VS general purpose varying pos if it exists,
736 * create a new one otherwise.
737 */
738 for (j = 0; j < vs->tripipe->varying_count; j++) {
739 if (fs->varyings_loc[i] == vs->varyings_loc[j])
740 break;
741 }
742
743 if (j < vs->tripipe->varying_count)
744 fs->varyings[i].src_offset = vs->varyings[j].src_offset;
745 else
746 fs->varyings[i].src_offset = 16 * (num_gen_varyings++);
747 }
748
749 memcpy(trans.cpu, vs->varyings, vs_size);
750 memcpy(trans.cpu + vs_size, fs->varyings, fs_size);
751
752 ctx->payload_vertex.postfix.varying_meta = trans.gpu;
753 ctx->payload_tiler.postfix.varying_meta = trans.gpu + vs_size;
754
755 /* Buffer indices must be in this order per our convention */
756 union mali_attr varyings[PIPE_MAX_ATTRIBS];
757 unsigned idx = 0;
758
759 panfrost_emit_varyings(ctx, &varyings[idx++], num_gen_varyings * 16,
760 invocation_count);
761
762 /* fp32 vec4 gl_Position */
763 ctx->payload_tiler.postfix.position_varying =
764 panfrost_emit_varyings(ctx, &varyings[idx++],
765 sizeof(float) * 4, invocation_count);
766
767
768 if (vs->writes_point_size || fs->reads_point_coord) {
769 /* fp16 vec1 gl_PointSize */
770 ctx->payload_tiler.primitive_size.pointer =
771 panfrost_emit_varyings(ctx, &varyings[idx++],
772 2, invocation_count);
773 }
774
775 if (fs->reads_point_coord) {
776 /* Special descriptor */
777 panfrost_emit_point_coord(&varyings[idx++]);
778 }
779
780 mali_ptr varyings_p = panfrost_upload_transient(ctx, &varyings, idx * sizeof(union mali_attr));
781 ctx->payload_vertex.postfix.varyings = varyings_p;
782 ctx->payload_tiler.postfix.varyings = varyings_p;
783 }
784
785 static mali_ptr
786 panfrost_vertex_buffer_address(struct panfrost_context *ctx, unsigned i)
787 {
788 struct pipe_vertex_buffer *buf = &ctx->vertex_buffers[i];
789 struct panfrost_resource *rsrc = (struct panfrost_resource *) (buf->buffer.resource);
790
791 return rsrc->bo->gpu + buf->buffer_offset;
792 }
793
794 /* Emits attributes and varying descriptors, which should be called every draw,
795 * excepting some obscure circumstances */
796
797 static void
798 panfrost_emit_vertex_data(struct panfrost_context *ctx, struct panfrost_job *job)
799 {
800 /* Staged mali_attr, and index into them. i =/= k, depending on the
801 * vertex buffer mask */
802 union mali_attr attrs[PIPE_MAX_ATTRIBS];
803 unsigned k = 0;
804
805 unsigned invocation_count = MALI_NEGATIVE(ctx->payload_tiler.prefix.invocation_count);
806
807 for (int i = 0; i < ARRAY_SIZE(ctx->vertex_buffers); ++i) {
808 if (!(ctx->vb_mask & (1 << i))) continue;
809
810 struct pipe_vertex_buffer *buf = &ctx->vertex_buffers[i];
811 struct panfrost_resource *rsrc = (struct panfrost_resource *) (buf->buffer.resource);
812
813 if (!rsrc) continue;
814
815 /* Align to 64 bytes by masking off the lower bits. This
816 * will be adjusted back when we fixup the src_offset in
817 * mali_attr_meta */
818
819 mali_ptr addr = panfrost_vertex_buffer_address(ctx, i) & ~63;
820
821 /* Offset vertex count by draw_start to make sure we upload enough */
822 attrs[k].stride = buf->stride;
823 attrs[k].size = rsrc->base.width0;
824
825 panfrost_job_add_bo(job, rsrc->bo);
826 attrs[k].elements = addr | MALI_ATTR_LINEAR;
827
828 ++k;
829 }
830
831 ctx->payload_vertex.postfix.attributes = panfrost_upload_transient(ctx, attrs, k * sizeof(union mali_attr));
832
833 panfrost_emit_varying_descriptor(ctx, invocation_count);
834 }
835
836 static bool
837 panfrost_writes_point_size(struct panfrost_context *ctx)
838 {
839 assert(ctx->vs);
840 struct panfrost_shader_state *vs = &ctx->vs->variants[ctx->vs->active_variant];
841
842 return vs->writes_point_size && ctx->payload_tiler.prefix.draw_mode == MALI_POINTS;
843 }
844
845 /* Stage the attribute descriptors so we can adjust src_offset
846 * to let BOs align nicely */
847
848 static void
849 panfrost_stage_attributes(struct panfrost_context *ctx)
850 {
851 struct panfrost_vertex_state *so = ctx->vertex;
852
853 size_t sz = sizeof(struct mali_attr_meta) * so->num_elements;
854 struct panfrost_transfer transfer = panfrost_allocate_transient(ctx, sz);
855 struct mali_attr_meta *target = (struct mali_attr_meta *) transfer.cpu;
856
857 /* Copy as-is for the first pass */
858 memcpy(target, so->hw, sz);
859
860 /* Fixup offsets for the second pass. Recall that the hardware
861 * calculates attribute addresses as:
862 *
863 * addr = base + (stride * vtx) + src_offset;
864 *
865 * However, on Mali, base must be aligned to 64-bytes, so we
866 * instead let:
867 *
868 * base' = base & ~63 = base - (base & 63)
869 *
870 * To compensate when using base' (see emit_vertex_data), we have
871 * to adjust src_offset by the masked off piece:
872 *
873 * addr' = base' + (stride * vtx) + (src_offset + (base & 63))
874 * = base - (base & 63) + (stride * vtx) + src_offset + (base & 63)
875 * = base + (stride * vtx) + src_offset
876 * = addr;
877 *
878 * QED.
879 */
880
881 for (unsigned i = 0; i < so->num_elements; ++i) {
882 unsigned vbi = so->pipe[i].vertex_buffer_index;
883 mali_ptr addr = panfrost_vertex_buffer_address(ctx, vbi);
884
885 /* Adjust by the masked off bits of the offset */
886 target[i].src_offset += (addr & 63);
887 }
888
889 ctx->payload_vertex.postfix.attribute_meta = transfer.gpu;
890 }
891
892 static void
893 panfrost_upload_sampler_descriptors(struct panfrost_context *ctx)
894 {
895 size_t desc_size = sizeof(struct mali_sampler_descriptor);
896
897 for (int t = 0; t <= PIPE_SHADER_FRAGMENT; ++t) {
898 mali_ptr upload = 0;
899
900 if (ctx->sampler_count[t] && ctx->sampler_view_count[t]) {
901 size_t transfer_size = desc_size * ctx->sampler_count[t];
902
903 struct panfrost_transfer transfer =
904 panfrost_allocate_transient(ctx, transfer_size);
905
906 struct mali_sampler_descriptor *desc =
907 (struct mali_sampler_descriptor *) transfer.cpu;
908
909 for (int i = 0; i < ctx->sampler_count[t]; ++i)
910 desc[i] = ctx->samplers[t][i]->hw;
911
912 upload = transfer.gpu;
913 }
914
915 if (t == PIPE_SHADER_FRAGMENT)
916 ctx->payload_tiler.postfix.sampler_descriptor = upload;
917 else if (t == PIPE_SHADER_VERTEX)
918 ctx->payload_vertex.postfix.sampler_descriptor = upload;
919 else
920 assert(0);
921 }
922 }
923
924 /* Computes the address to a texture at a particular slice */
925
926 static mali_ptr
927 panfrost_get_texture_address(
928 struct panfrost_resource *rsrc,
929 unsigned level, unsigned face)
930 {
931 unsigned level_offset = rsrc->bo->slices[level].offset;
932 unsigned face_offset = face * rsrc->bo->cubemap_stride;
933
934 return rsrc->bo->gpu + level_offset + face_offset;
935
936 }
937
938 static mali_ptr
939 panfrost_upload_tex(
940 struct panfrost_context *ctx,
941 struct panfrost_sampler_view *view)
942 {
943 if (!view)
944 return (mali_ptr) NULL;
945
946 struct pipe_sampler_view *pview = &view->base;
947 struct panfrost_resource *rsrc = pan_resource(pview->texture);
948
949 /* Do we interleave an explicit stride with every element? */
950
951 bool has_manual_stride =
952 view->hw.format.usage2 & MALI_TEX_MANUAL_STRIDE;
953
954 /* For easy access */
955
956 assert(pview->target != PIPE_BUFFER);
957 unsigned first_level = pview->u.tex.first_level;
958 unsigned last_level = pview->u.tex.last_level;
959
960 /* Inject the addresses in, interleaving mip levels, cube faces, and
961 * strides in that order */
962
963 unsigned idx = 0;
964
965 for (unsigned l = first_level; l <= last_level; ++l) {
966 for (unsigned f = 0; f < pview->texture->array_size; ++f) {
967 view->hw.payload[idx++] =
968 panfrost_get_texture_address(rsrc, l, f);
969
970 if (has_manual_stride) {
971 view->hw.payload[idx++] =
972 rsrc->bo->slices[l].stride;
973 }
974 }
975 }
976
977 return panfrost_upload_transient(ctx, &view->hw,
978 sizeof(struct mali_texture_descriptor));
979 }
980
981 static void
982 panfrost_upload_texture_descriptors(struct panfrost_context *ctx)
983 {
984 for (int t = 0; t <= PIPE_SHADER_FRAGMENT; ++t) {
985 mali_ptr trampoline = 0;
986
987 if (ctx->sampler_view_count[t]) {
988 uint64_t trampolines[PIPE_MAX_SHADER_SAMPLER_VIEWS];
989
990 for (int i = 0; i < ctx->sampler_view_count[t]; ++i)
991 trampolines[i] =
992 panfrost_upload_tex(ctx, ctx->sampler_views[t][i]);
993
994 trampoline = panfrost_upload_transient(ctx, trampolines, sizeof(uint64_t) * ctx->sampler_view_count[t]);
995 }
996
997 if (t == PIPE_SHADER_FRAGMENT)
998 ctx->payload_tiler.postfix.texture_trampoline = trampoline;
999 else if (t == PIPE_SHADER_VERTEX)
1000 ctx->payload_vertex.postfix.texture_trampoline = trampoline;
1001 else
1002 assert(0);
1003 }
1004 }
1005
1006 struct sysval_uniform {
1007 union {
1008 float f[4];
1009 int32_t i[4];
1010 uint32_t u[4];
1011 };
1012 };
1013
1014 static void panfrost_upload_viewport_scale_sysval(struct panfrost_context *ctx,
1015 struct sysval_uniform *uniform)
1016 {
1017 const struct pipe_viewport_state *vp = &ctx->pipe_viewport;
1018
1019 uniform->f[0] = vp->scale[0];
1020 uniform->f[1] = vp->scale[1];
1021 uniform->f[2] = vp->scale[2];
1022 }
1023
1024 static void panfrost_upload_viewport_offset_sysval(struct panfrost_context *ctx,
1025 struct sysval_uniform *uniform)
1026 {
1027 const struct pipe_viewport_state *vp = &ctx->pipe_viewport;
1028
1029 uniform->f[0] = vp->translate[0];
1030 uniform->f[1] = vp->translate[1];
1031 uniform->f[2] = vp->translate[2];
1032 }
1033
1034 static void panfrost_upload_txs_sysval(struct panfrost_context *ctx,
1035 enum pipe_shader_type st,
1036 unsigned int sysvalid,
1037 struct sysval_uniform *uniform)
1038 {
1039 unsigned texidx = PAN_SYSVAL_ID_TO_TXS_TEX_IDX(sysvalid);
1040 unsigned dim = PAN_SYSVAL_ID_TO_TXS_DIM(sysvalid);
1041 bool is_array = PAN_SYSVAL_ID_TO_TXS_IS_ARRAY(sysvalid);
1042 struct pipe_sampler_view *tex = &ctx->sampler_views[st][texidx]->base;
1043
1044 assert(dim);
1045 uniform->i[0] = u_minify(tex->texture->width0, tex->u.tex.first_level);
1046
1047 if (dim > 1)
1048 uniform->i[1] = u_minify(tex->texture->height0,
1049 tex->u.tex.first_level);
1050
1051 if (dim > 2)
1052 uniform->i[2] = u_minify(tex->texture->depth0,
1053 tex->u.tex.first_level);
1054
1055 if (is_array)
1056 uniform->i[dim] = tex->texture->array_size;
1057 }
1058
1059 static void panfrost_upload_sysvals(struct panfrost_context *ctx, void *buf,
1060 struct panfrost_shader_state *ss,
1061 enum pipe_shader_type st)
1062 {
1063 struct sysval_uniform *uniforms = (void *)buf;
1064
1065 for (unsigned i = 0; i < ss->sysval_count; ++i) {
1066 int sysval = ss->sysval[i];
1067
1068 switch (PAN_SYSVAL_TYPE(sysval)) {
1069 case PAN_SYSVAL_VIEWPORT_SCALE:
1070 panfrost_upload_viewport_scale_sysval(ctx, &uniforms[i]);
1071 break;
1072 case PAN_SYSVAL_VIEWPORT_OFFSET:
1073 panfrost_upload_viewport_offset_sysval(ctx, &uniforms[i]);
1074 break;
1075 case PAN_SYSVAL_TEXTURE_SIZE:
1076 panfrost_upload_txs_sysval(ctx, st, PAN_SYSVAL_ID(sysval),
1077 &uniforms[i]);
1078 break;
1079 default:
1080 assert(0);
1081 }
1082 }
1083 }
1084
1085 /* Go through dirty flags and actualise them in the cmdstream. */
1086
1087 void
1088 panfrost_emit_for_draw(struct panfrost_context *ctx, bool with_vertex_data)
1089 {
1090 struct panfrost_job *job = panfrost_get_job_for_fbo(ctx);
1091
1092 if (with_vertex_data) {
1093 panfrost_emit_vertex_data(ctx, job);
1094 }
1095
1096 bool msaa = ctx->rasterizer->base.multisample;
1097
1098 if (ctx->dirty & PAN_DIRTY_RASTERIZER) {
1099 ctx->payload_tiler.gl_enables = ctx->rasterizer->tiler_gl_enables;
1100
1101 /* TODO: Sample size */
1102 SET_BIT(ctx->fragment_shader_core.unknown2_3, MALI_HAS_MSAA, msaa);
1103 SET_BIT(ctx->fragment_shader_core.unknown2_4, MALI_NO_MSAA, !msaa);
1104 }
1105
1106 if (ctx->occlusion_query) {
1107 ctx->payload_tiler.gl_enables |= MALI_OCCLUSION_QUERY | MALI_OCCLUSION_PRECISE;
1108 ctx->payload_tiler.postfix.occlusion_counter = ctx->occlusion_query->transfer.gpu;
1109 }
1110
1111 if (ctx->dirty & PAN_DIRTY_VS) {
1112 assert(ctx->vs);
1113
1114 struct panfrost_shader_state *vs = &ctx->vs->variants[ctx->vs->active_variant];
1115
1116 /* Late shader descriptor assignments */
1117
1118 vs->tripipe->texture_count = ctx->sampler_view_count[PIPE_SHADER_VERTEX];
1119 vs->tripipe->sampler_count = ctx->sampler_count[PIPE_SHADER_VERTEX];
1120
1121 /* Who knows */
1122 vs->tripipe->midgard1.unknown1 = 0x2201;
1123
1124 ctx->payload_vertex.postfix._shader_upper = vs->tripipe_gpu >> 4;
1125 }
1126
1127 if (ctx->dirty & (PAN_DIRTY_RASTERIZER | PAN_DIRTY_VS)) {
1128 /* Check if we need to link the gl_PointSize varying */
1129 if (!panfrost_writes_point_size(ctx)) {
1130 /* If the size is constant, write it out. Otherwise,
1131 * don't touch primitive_size (since we would clobber
1132 * the pointer there) */
1133
1134 ctx->payload_tiler.primitive_size.constant = ctx->rasterizer->base.line_width;
1135 }
1136 }
1137
1138 /* TODO: Maybe dirty track FS, maybe not. For now, it's transient. */
1139 if (ctx->fs)
1140 ctx->dirty |= PAN_DIRTY_FS;
1141
1142 if (ctx->dirty & PAN_DIRTY_FS) {
1143 assert(ctx->fs);
1144 struct panfrost_shader_state *variant = &ctx->fs->variants[ctx->fs->active_variant];
1145
1146 #define COPY(name) ctx->fragment_shader_core.name = variant->tripipe->name
1147
1148 COPY(shader);
1149 COPY(attribute_count);
1150 COPY(varying_count);
1151 COPY(midgard1.uniform_count);
1152 COPY(midgard1.work_count);
1153 COPY(midgard1.unknown2);
1154
1155 #undef COPY
1156 /* If there is a blend shader, work registers are shared */
1157
1158 if (ctx->blend->has_blend_shader)
1159 ctx->fragment_shader_core.midgard1.work_count = /*MAX2(ctx->fragment_shader_core.midgard1.work_count, ctx->blend->blend_work_count)*/16;
1160
1161 /* Set late due to depending on render state */
1162 /* The one at the end seems to mean "1 UBO" */
1163 unsigned flags = MALI_EARLY_Z | 0x200 | 0x2000 | 0x1;
1164
1165 /* Any time texturing is used, derivatives are implicitly
1166 * calculated, so we need to enable helper invocations */
1167
1168 if (ctx->sampler_view_count[PIPE_SHADER_FRAGMENT])
1169 flags |= MALI_HELPER_INVOCATIONS;
1170
1171 ctx->fragment_shader_core.midgard1.unknown1 = flags;
1172
1173 /* Assign texture/sample count right before upload */
1174 ctx->fragment_shader_core.texture_count = ctx->sampler_view_count[PIPE_SHADER_FRAGMENT];
1175 ctx->fragment_shader_core.sampler_count = ctx->sampler_count[PIPE_SHADER_FRAGMENT];
1176
1177 /* Assign the stencil refs late */
1178 ctx->fragment_shader_core.stencil_front.ref = ctx->stencil_ref.ref_value[0];
1179 ctx->fragment_shader_core.stencil_back.ref = ctx->stencil_ref.ref_value[1];
1180
1181 /* CAN_DISCARD should be set if the fragment shader possibly
1182 * contains a 'discard' instruction. It is likely this is
1183 * related to optimizations related to forward-pixel kill, as
1184 * per "Mali Performance 3: Is EGL_BUFFER_PRESERVED a good
1185 * thing?" by Peter Harris
1186 */
1187
1188 if (variant->can_discard) {
1189 ctx->fragment_shader_core.unknown2_3 |= MALI_CAN_DISCARD;
1190 ctx->fragment_shader_core.midgard1.unknown1 &= ~MALI_EARLY_Z;
1191 ctx->fragment_shader_core.midgard1.unknown1 |= 0x4000;
1192 ctx->fragment_shader_core.midgard1.unknown1 = 0x4200;
1193 }
1194
1195 /* Check if we're using the default blend descriptor (fast path) */
1196
1197 bool no_blending =
1198 !ctx->blend->has_blend_shader &&
1199 (ctx->blend->equation.rgb_mode == 0x122) &&
1200 (ctx->blend->equation.alpha_mode == 0x122) &&
1201 (ctx->blend->equation.color_mask == 0xf);
1202
1203 /* Even on MFBD, the shader descriptor gets blend shaders. It's
1204 * *also* copied to the blend_meta appended (by convention),
1205 * but this is the field actually read by the hardware. (Or
1206 * maybe both are read...?) */
1207
1208 if (ctx->blend->has_blend_shader) {
1209 ctx->fragment_shader_core.blend.shader = ctx->blend->blend_shader;
1210 } else {
1211 ctx->fragment_shader_core.blend.shader = 0;
1212 }
1213
1214 if (ctx->require_sfbd) {
1215 /* When only a single render target platform is used, the blend
1216 * information is inside the shader meta itself. We
1217 * additionally need to signal CAN_DISCARD for nontrivial blend
1218 * modes (so we're able to read back the destination buffer) */
1219
1220 if (!ctx->blend->has_blend_shader) {
1221 ctx->fragment_shader_core.blend.equation = ctx->blend->equation;
1222 ctx->fragment_shader_core.blend.constant = ctx->blend->constant;
1223 }
1224
1225 if (!no_blending) {
1226 ctx->fragment_shader_core.unknown2_3 |= MALI_CAN_DISCARD;
1227 }
1228 }
1229
1230 size_t size = sizeof(struct mali_shader_meta) + sizeof(struct midgard_blend_rt);
1231 struct panfrost_transfer transfer = panfrost_allocate_transient(ctx, size);
1232 memcpy(transfer.cpu, &ctx->fragment_shader_core, sizeof(struct mali_shader_meta));
1233
1234 ctx->payload_tiler.postfix._shader_upper = (transfer.gpu) >> 4;
1235
1236 if (!ctx->require_sfbd) {
1237 /* Additional blend descriptor tacked on for jobs using MFBD */
1238
1239 unsigned blend_count = 0x200;
1240
1241 if (ctx->blend->has_blend_shader) {
1242 /* For a blend shader, the bottom nibble corresponds to
1243 * the number of work registers used, which signals the
1244 * -existence- of a blend shader */
1245
1246 assert(ctx->blend->blend_work_count >= 2);
1247 blend_count |= MIN2(ctx->blend->blend_work_count, 3);
1248 } else {
1249 /* Otherwise, the bottom bit simply specifies if
1250 * blending (anything other than REPLACE) is enabled */
1251
1252
1253 if (!no_blending)
1254 blend_count |= 0x1;
1255 }
1256
1257 struct midgard_blend_rt rts[4];
1258
1259 /* TODO: MRT */
1260
1261 for (unsigned i = 0; i < 1; ++i) {
1262 rts[i].flags = blend_count;
1263
1264 if (ctx->blend->has_blend_shader) {
1265 rts[i].blend.shader = ctx->blend->blend_shader;
1266 } else {
1267 rts[i].blend.equation = ctx->blend->equation;
1268 rts[i].blend.constant = ctx->blend->constant;
1269 }
1270 }
1271
1272 memcpy(transfer.cpu + sizeof(struct mali_shader_meta), rts, sizeof(rts[0]) * 1);
1273 }
1274 }
1275
1276 /* We stage to transient, so always dirty.. */
1277 panfrost_stage_attributes(ctx);
1278
1279 if (ctx->dirty & PAN_DIRTY_SAMPLERS)
1280 panfrost_upload_sampler_descriptors(ctx);
1281
1282 if (ctx->dirty & PAN_DIRTY_TEXTURES)
1283 panfrost_upload_texture_descriptors(ctx);
1284
1285 const struct pipe_viewport_state *vp = &ctx->pipe_viewport;
1286
1287 for (int i = 0; i <= PIPE_SHADER_FRAGMENT; ++i) {
1288 struct panfrost_constant_buffer *buf = &ctx->constant_buffer[i];
1289
1290 struct panfrost_shader_state *vs = &ctx->vs->variants[ctx->vs->active_variant];
1291 struct panfrost_shader_state *fs = &ctx->fs->variants[ctx->fs->active_variant];
1292 struct panfrost_shader_state *ss = (i == PIPE_SHADER_FRAGMENT) ? fs : vs;
1293
1294 /* Allocate room for the sysval and the uniforms */
1295 size_t sys_size = sizeof(float) * 4 * ss->sysval_count;
1296 size_t size = sys_size + buf->size;
1297 struct panfrost_transfer transfer = panfrost_allocate_transient(ctx, size);
1298
1299 /* Upload sysvals requested by the shader */
1300 panfrost_upload_sysvals(ctx, transfer.cpu, ss, i);
1301
1302 /* Upload uniforms */
1303 memcpy(transfer.cpu + sys_size, buf->buffer, buf->size);
1304
1305 int uniform_count = 0;
1306
1307 struct mali_vertex_tiler_postfix *postfix;
1308
1309 switch (i) {
1310 case PIPE_SHADER_VERTEX:
1311 uniform_count = ctx->vs->variants[ctx->vs->active_variant].uniform_count;
1312 postfix = &ctx->payload_vertex.postfix;
1313 break;
1314
1315 case PIPE_SHADER_FRAGMENT:
1316 uniform_count = ctx->fs->variants[ctx->fs->active_variant].uniform_count;
1317 postfix = &ctx->payload_tiler.postfix;
1318 break;
1319
1320 default:
1321 unreachable("Invalid shader stage\n");
1322 }
1323
1324 /* Also attach the same buffer as a UBO for extended access */
1325
1326 struct mali_uniform_buffer_meta uniform_buffers[] = {
1327 {
1328 .size = MALI_POSITIVE((2 + uniform_count)),
1329 .ptr = transfer.gpu >> 2,
1330 },
1331 };
1332
1333 mali_ptr ubufs = panfrost_upload_transient(ctx, uniform_buffers, sizeof(uniform_buffers));
1334 postfix->uniforms = transfer.gpu;
1335 postfix->uniform_buffers = ubufs;
1336
1337 buf->dirty = 0;
1338 }
1339
1340 /* TODO: Upload the viewport somewhere more appropriate */
1341
1342 /* Clip bounds are encoded as floats. The viewport itself is encoded as
1343 * (somewhat) asymmetric ints. */
1344 const struct pipe_scissor_state *ss = &ctx->scissor;
1345
1346 struct mali_viewport view = {
1347 /* By default, do no viewport clipping, i.e. clip to (-inf,
1348 * inf) in each direction. Clipping to the viewport in theory
1349 * should work, but in practice causes issues when we're not
1350 * explicitly trying to scissor */
1351
1352 .clip_minx = -inff,
1353 .clip_miny = -inff,
1354 .clip_maxx = inff,
1355 .clip_maxy = inff,
1356
1357 .clip_minz = 0.0,
1358 .clip_maxz = 1.0,
1359 };
1360
1361 /* Always scissor to the viewport by default. */
1362 int minx = (int) (vp->translate[0] - vp->scale[0]);
1363 int maxx = (int) (vp->translate[0] + vp->scale[0]);
1364
1365 int miny = (int) (vp->translate[1] - vp->scale[1]);
1366 int maxy = (int) (vp->translate[1] + vp->scale[1]);
1367
1368 /* Apply the scissor test */
1369
1370 if (ss && ctx->rasterizer && ctx->rasterizer->base.scissor) {
1371 minx = ss->minx;
1372 maxx = ss->maxx;
1373 miny = ss->miny;
1374 maxy = ss->maxy;
1375 }
1376
1377 /* Hardware needs the min/max to be strictly ordered, so flip if we
1378 * need to. The viewport transformation in the vertex shader will
1379 * handle the negatives if we don't */
1380
1381 if (miny > maxy) {
1382 int temp = miny;
1383 miny = maxy;
1384 maxy = temp;
1385 }
1386
1387 if (minx > maxx) {
1388 int temp = minx;
1389 minx = maxx;
1390 maxx = temp;
1391 }
1392
1393 /* Clamp everything positive, just in case */
1394
1395 maxx = MAX2(0, maxx);
1396 maxy = MAX2(0, maxy);
1397 minx = MAX2(0, minx);
1398 miny = MAX2(0, miny);
1399
1400 /* Clamp to the framebuffer size as a last check */
1401
1402 minx = MIN2(ctx->pipe_framebuffer.width, minx);
1403 maxx = MIN2(ctx->pipe_framebuffer.width, maxx);
1404
1405 miny = MIN2(ctx->pipe_framebuffer.height, miny);
1406 maxy = MIN2(ctx->pipe_framebuffer.height, maxy);
1407
1408 /* Upload */
1409
1410 view.viewport0[0] = minx;
1411 view.viewport1[0] = MALI_POSITIVE(maxx);
1412
1413 view.viewport0[1] = miny;
1414 view.viewport1[1] = MALI_POSITIVE(maxy);
1415
1416 ctx->payload_tiler.postfix.viewport =
1417 panfrost_upload_transient(ctx,
1418 &view,
1419 sizeof(struct mali_viewport));
1420
1421 ctx->dirty = 0;
1422 }
1423
1424 /* Corresponds to exactly one draw, but does not submit anything */
1425
1426 static void
1427 panfrost_queue_draw(struct panfrost_context *ctx)
1428 {
1429 /* TODO: Expand the array? */
1430 if (ctx->draw_count >= MAX_DRAW_CALLS) {
1431 DBG("Job buffer overflow, ignoring draw\n");
1432 assert(0);
1433 }
1434
1435 /* Handle dirty flags now */
1436 panfrost_emit_for_draw(ctx, true);
1437
1438 /* We need a set_value job before any other draw jobs */
1439 if (ctx->draw_count == 0)
1440 panfrost_set_value_job(ctx);
1441
1442 struct panfrost_transfer vertex = panfrost_vertex_tiler_job(ctx, false);
1443 ctx->u_vertex_jobs[ctx->vertex_job_count] = (struct mali_job_descriptor_header *) vertex.cpu;
1444 ctx->vertex_jobs[ctx->vertex_job_count++] = vertex.gpu;
1445
1446 struct panfrost_transfer tiler = panfrost_vertex_tiler_job(ctx, true);
1447 ctx->u_tiler_jobs[ctx->tiler_job_count] = (struct mali_job_descriptor_header *) tiler.cpu;
1448 ctx->tiler_jobs[ctx->tiler_job_count++] = tiler.gpu;
1449
1450 ctx->draw_count++;
1451 }
1452
1453 /* The entire frame is in memory -- send it off to the kernel! */
1454
1455 static void
1456 panfrost_submit_frame(struct panfrost_context *ctx, bool flush_immediate,
1457 struct pipe_fence_handle **fence,
1458 struct panfrost_job *job)
1459 {
1460 struct pipe_context *gallium = (struct pipe_context *) ctx;
1461 struct panfrost_screen *screen = pan_screen(gallium->screen);
1462
1463 #ifndef DRY_RUN
1464
1465 panfrost_job_submit(ctx, job);
1466
1467 /* If visual, we can stall a frame */
1468
1469 if (!flush_immediate)
1470 screen->driver->force_flush_fragment(ctx, fence);
1471
1472 screen->last_fragment_flushed = false;
1473 screen->last_job = job;
1474
1475 /* If readback, flush now (hurts the pipelined performance) */
1476 if (flush_immediate)
1477 screen->driver->force_flush_fragment(ctx, fence);
1478
1479 if (screen->driver->dump_counters && pan_counters_base) {
1480 screen->driver->dump_counters(screen);
1481
1482 char filename[128];
1483 snprintf(filename, sizeof(filename), "%s/frame%d.mdgprf", pan_counters_base, ++performance_counter_number);
1484 FILE *fp = fopen(filename, "wb");
1485 fwrite(screen->perf_counters.cpu, 4096, sizeof(uint32_t), fp);
1486 fclose(fp);
1487 }
1488
1489 #endif
1490 }
1491
1492 static void
1493 panfrost_draw_wallpaper(struct pipe_context *pipe)
1494 {
1495 struct panfrost_context *ctx = pan_context(pipe);
1496
1497 /* Nothing to reload? */
1498 if (ctx->pipe_framebuffer.cbufs[0] == NULL)
1499 return;
1500
1501 /* Blit the wallpaper in */
1502 panfrost_blit_wallpaper(ctx);
1503
1504 /* We are flushing all queued draws and we know that no more jobs will
1505 * be added until the next frame.
1506 * We also know that the last jobs are the wallpaper jobs, and they
1507 * need to be linked so they execute right after the set_value job.
1508 */
1509
1510 /* set_value job to wallpaper vertex job */
1511 panfrost_link_job_pair(ctx->u_set_value_job, ctx->vertex_jobs[ctx->vertex_job_count - 1]);
1512 ctx->u_vertex_jobs[ctx->vertex_job_count - 1]->job_dependency_index_1 = ctx->u_set_value_job->job_index;
1513
1514 /* wallpaper vertex job to first vertex job */
1515 panfrost_link_job_pair(ctx->u_vertex_jobs[ctx->vertex_job_count - 1], ctx->vertex_jobs[0]);
1516 ctx->u_vertex_jobs[0]->job_dependency_index_1 = ctx->u_set_value_job->job_index;
1517
1518 /* last vertex job to wallpaper tiler job */
1519 panfrost_link_job_pair(ctx->u_vertex_jobs[ctx->vertex_job_count - 2], ctx->tiler_jobs[ctx->tiler_job_count - 1]);
1520 ctx->u_tiler_jobs[ctx->tiler_job_count - 1]->job_dependency_index_1 = ctx->u_vertex_jobs[ctx->vertex_job_count - 1]->job_index;
1521 ctx->u_tiler_jobs[ctx->tiler_job_count - 1]->job_dependency_index_2 = 0;
1522
1523 /* wallpaper tiler job to first tiler job */
1524 panfrost_link_job_pair(ctx->u_tiler_jobs[ctx->tiler_job_count - 1], ctx->tiler_jobs[0]);
1525 ctx->u_tiler_jobs[0]->job_dependency_index_1 = ctx->u_vertex_jobs[0]->job_index;
1526 ctx->u_tiler_jobs[0]->job_dependency_index_2 = ctx->u_tiler_jobs[ctx->tiler_job_count - 1]->job_index;
1527
1528 /* last tiler job to NULL */
1529 panfrost_link_job_pair(ctx->u_tiler_jobs[ctx->tiler_job_count - 2], 0);
1530 }
1531
1532 void
1533 panfrost_flush(
1534 struct pipe_context *pipe,
1535 struct pipe_fence_handle **fence,
1536 unsigned flags)
1537 {
1538 struct panfrost_context *ctx = pan_context(pipe);
1539 struct panfrost_job *job = panfrost_get_job_for_fbo(ctx);
1540
1541 /* Nothing to do! */
1542 if (!ctx->draw_count && !job->clear) return;
1543
1544 if (!job->clear)
1545 panfrost_draw_wallpaper(&ctx->base);
1546
1547 /* Whether to stall the pipeline for immediately correct results. Since
1548 * pipelined rendering is quite broken right now (to be fixed by the
1549 * panfrost_job refactor, just take the perf hit for correctness) */
1550 bool flush_immediate = /*flags & PIPE_FLUSH_END_OF_FRAME*/true;
1551
1552 /* Submit the frame itself */
1553 panfrost_submit_frame(ctx, flush_immediate, fence, job);
1554
1555 /* Prepare for the next frame */
1556 panfrost_invalidate_frame(ctx);
1557 }
1558
1559 #define DEFINE_CASE(c) case PIPE_PRIM_##c: return MALI_##c;
1560
1561 static int
1562 g2m_draw_mode(enum pipe_prim_type mode)
1563 {
1564 switch (mode) {
1565 DEFINE_CASE(POINTS);
1566 DEFINE_CASE(LINES);
1567 DEFINE_CASE(LINE_LOOP);
1568 DEFINE_CASE(LINE_STRIP);
1569 DEFINE_CASE(TRIANGLES);
1570 DEFINE_CASE(TRIANGLE_STRIP);
1571 DEFINE_CASE(TRIANGLE_FAN);
1572 DEFINE_CASE(QUADS);
1573 DEFINE_CASE(QUAD_STRIP);
1574 DEFINE_CASE(POLYGON);
1575
1576 default:
1577 unreachable("Invalid draw mode");
1578 }
1579 }
1580
1581 #undef DEFINE_CASE
1582
1583 static unsigned
1584 panfrost_translate_index_size(unsigned size)
1585 {
1586 switch (size) {
1587 case 1:
1588 return MALI_DRAW_INDEXED_UINT8;
1589
1590 case 2:
1591 return MALI_DRAW_INDEXED_UINT16;
1592
1593 case 4:
1594 return MALI_DRAW_INDEXED_UINT32;
1595
1596 default:
1597 unreachable("Invalid index size");
1598 }
1599 }
1600
1601 /* Gets a GPU address for the associated index buffer. Only gauranteed to be
1602 * good for the duration of the draw (transient), could last longer */
1603
1604 static mali_ptr
1605 panfrost_get_index_buffer_mapped(struct panfrost_context *ctx, const struct pipe_draw_info *info)
1606 {
1607 struct panfrost_resource *rsrc = (struct panfrost_resource *) (info->index.resource);
1608
1609 off_t offset = info->start * info->index_size;
1610
1611 if (!info->has_user_indices) {
1612 /* Only resources can be directly mapped */
1613 return rsrc->bo->gpu + offset;
1614 } else {
1615 /* Otherwise, we need to upload to transient memory */
1616 const uint8_t *ibuf8 = (const uint8_t *) info->index.user;
1617 return panfrost_upload_transient(ctx, ibuf8 + offset, info->count * info->index_size);
1618 }
1619 }
1620
1621 static bool
1622 panfrost_scissor_culls_everything(struct panfrost_context *ctx)
1623 {
1624 const struct pipe_scissor_state *ss = &ctx->scissor;
1625
1626 /* Check if we're scissoring at all */
1627
1628 if (!(ss && ctx->rasterizer && ctx->rasterizer->base.scissor))
1629 return false;
1630
1631 return (ss->minx == ss->maxx) && (ss->miny == ss->maxy);
1632 }
1633
1634 static void
1635 panfrost_draw_vbo(
1636 struct pipe_context *pipe,
1637 const struct pipe_draw_info *info)
1638 {
1639 struct panfrost_context *ctx = pan_context(pipe);
1640
1641 /* First of all, check the scissor to see if anything is drawn at all.
1642 * If it's not, we drop the draw (mostly a conformance issue;
1643 * well-behaved apps shouldn't hit this) */
1644
1645 if (panfrost_scissor_culls_everything(ctx))
1646 return;
1647
1648 ctx->payload_vertex.draw_start = info->start;
1649 ctx->payload_tiler.draw_start = info->start;
1650
1651 int mode = info->mode;
1652
1653 /* Fallback for unsupported modes */
1654
1655 if (!(ctx->draw_modes & (1 << mode))) {
1656 if (mode == PIPE_PRIM_QUADS && info->count == 4 && ctx->rasterizer && !ctx->rasterizer->base.flatshade) {
1657 mode = PIPE_PRIM_TRIANGLE_FAN;
1658 } else {
1659 if (info->count < 4) {
1660 /* Degenerate case? */
1661 return;
1662 }
1663
1664 util_primconvert_save_rasterizer_state(ctx->primconvert, &ctx->rasterizer->base);
1665 util_primconvert_draw_vbo(ctx->primconvert, info);
1666 return;
1667 }
1668 }
1669
1670 /* Now that we have a guaranteed terminating path, find the job.
1671 * Assignment commented out to prevent unused warning */
1672
1673 /* struct panfrost_job *job = */ panfrost_get_job_for_fbo(ctx);
1674
1675 ctx->payload_tiler.prefix.draw_mode = g2m_draw_mode(mode);
1676
1677 ctx->vertex_count = info->count;
1678
1679 /* For non-indexed draws, they're the same */
1680 unsigned invocation_count = ctx->vertex_count;
1681
1682 unsigned draw_flags = 0;
1683
1684 /* The draw flags interpret how primitive size is interpreted */
1685
1686 if (panfrost_writes_point_size(ctx))
1687 draw_flags |= MALI_DRAW_VARYING_SIZE;
1688
1689 /* For higher amounts of vertices (greater than what fits in a 16-bit
1690 * short), the other value is needed, otherwise there will be bizarre
1691 * rendering artefacts. It's not clear what these values mean yet. */
1692
1693 draw_flags |= (mode == PIPE_PRIM_POINTS || ctx->vertex_count > 65535) ? 0x3000 : 0x18000;
1694
1695 if (info->index_size) {
1696 /* Calculate the min/max index used so we can figure out how
1697 * many times to invoke the vertex shader */
1698
1699 /* Fetch / calculate index bounds */
1700 unsigned min_index = 0, max_index = 0;
1701
1702 if (info->max_index == ~0u) {
1703 u_vbuf_get_minmax_index(pipe, info, &min_index, &max_index);
1704 } else {
1705 min_index = info->min_index;
1706 max_index = info->max_index;
1707 }
1708
1709 /* Use the corresponding values */
1710 invocation_count = max_index - min_index + 1;
1711 ctx->payload_vertex.draw_start = min_index;
1712 ctx->payload_tiler.draw_start = min_index;
1713
1714 ctx->payload_tiler.prefix.negative_start = -min_index;
1715 ctx->payload_tiler.prefix.index_count = MALI_POSITIVE(info->count);
1716
1717 //assert(!info->restart_index); /* TODO: Research */
1718 assert(!info->index_bias);
1719
1720 draw_flags |= panfrost_translate_index_size(info->index_size);
1721 ctx->payload_tiler.prefix.indices = panfrost_get_index_buffer_mapped(ctx, info);
1722 } else {
1723 /* Index count == vertex count, if no indexing is applied, as
1724 * if it is internally indexed in the expected order */
1725
1726 ctx->payload_tiler.prefix.negative_start = 0;
1727 ctx->payload_tiler.prefix.index_count = MALI_POSITIVE(ctx->vertex_count);
1728
1729 /* Reverse index state */
1730 ctx->payload_tiler.prefix.indices = (uintptr_t) NULL;
1731 }
1732
1733 ctx->payload_vertex.prefix.invocation_count = MALI_POSITIVE(invocation_count);
1734 ctx->payload_tiler.prefix.invocation_count = MALI_POSITIVE(invocation_count);
1735 ctx->payload_tiler.prefix.unknown_draw = draw_flags;
1736
1737 /* Fire off the draw itself */
1738 panfrost_queue_draw(ctx);
1739 }
1740
1741 /* CSO state */
1742
1743 static void
1744 panfrost_generic_cso_delete(struct pipe_context *pctx, void *hwcso)
1745 {
1746 free(hwcso);
1747 }
1748
1749 static void *
1750 panfrost_create_rasterizer_state(
1751 struct pipe_context *pctx,
1752 const struct pipe_rasterizer_state *cso)
1753 {
1754 struct panfrost_context *ctx = pan_context(pctx);
1755 struct panfrost_rasterizer *so = CALLOC_STRUCT(panfrost_rasterizer);
1756
1757 so->base = *cso;
1758
1759 /* Bitmask, unknown meaning of the start value */
1760 so->tiler_gl_enables = ctx->is_t6xx ? 0x105 : 0x7;
1761
1762 if (cso->front_ccw)
1763 so->tiler_gl_enables |= MALI_FRONT_CCW_TOP;
1764
1765 if (cso->cull_face & PIPE_FACE_FRONT)
1766 so->tiler_gl_enables |= MALI_CULL_FACE_FRONT;
1767
1768 if (cso->cull_face & PIPE_FACE_BACK)
1769 so->tiler_gl_enables |= MALI_CULL_FACE_BACK;
1770
1771 return so;
1772 }
1773
1774 static void
1775 panfrost_bind_rasterizer_state(
1776 struct pipe_context *pctx,
1777 void *hwcso)
1778 {
1779 struct panfrost_context *ctx = pan_context(pctx);
1780
1781 /* TODO: Why can't rasterizer be NULL ever? Other drivers are fine.. */
1782 if (!hwcso)
1783 return;
1784
1785 ctx->rasterizer = hwcso;
1786 ctx->dirty |= PAN_DIRTY_RASTERIZER;
1787 }
1788
1789 static void *
1790 panfrost_create_vertex_elements_state(
1791 struct pipe_context *pctx,
1792 unsigned num_elements,
1793 const struct pipe_vertex_element *elements)
1794 {
1795 struct panfrost_vertex_state *so = CALLOC_STRUCT(panfrost_vertex_state);
1796
1797 so->num_elements = num_elements;
1798 memcpy(so->pipe, elements, sizeof(*elements) * num_elements);
1799
1800 /* XXX: What the cornball? This is totally, 100%, unapologetically
1801 * nonsense. And yet it somehow fixes a regression in -bshadow
1802 * (previously, we allocated the descriptor here... a newer commit
1803 * removed that allocation, and then memory corruption led to
1804 * shader_meta getting overwritten in bad ways and then the whole test
1805 * case falling apart . TODO: LOOK INTO PLEASE XXX XXX BAD XXX XXX XXX
1806 */
1807 panfrost_allocate_chunk(pan_context(pctx), 0, HEAP_DESCRIPTOR);
1808
1809 for (int i = 0; i < num_elements; ++i) {
1810 so->hw[i].index = elements[i].vertex_buffer_index;
1811
1812 enum pipe_format fmt = elements[i].src_format;
1813 const struct util_format_description *desc = util_format_description(fmt);
1814 so->hw[i].unknown1 = 0x2;
1815 so->hw[i].swizzle = panfrost_get_default_swizzle(desc->nr_channels);
1816
1817 so->hw[i].format = panfrost_find_format(desc);
1818
1819 /* The field itself should probably be shifted over */
1820 so->hw[i].src_offset = elements[i].src_offset;
1821 }
1822
1823 return so;
1824 }
1825
1826 static void
1827 panfrost_bind_vertex_elements_state(
1828 struct pipe_context *pctx,
1829 void *hwcso)
1830 {
1831 struct panfrost_context *ctx = pan_context(pctx);
1832
1833 ctx->vertex = hwcso;
1834 ctx->dirty |= PAN_DIRTY_VERTEX;
1835 }
1836
1837 static void *
1838 panfrost_create_shader_state(
1839 struct pipe_context *pctx,
1840 const struct pipe_shader_state *cso)
1841 {
1842 struct panfrost_shader_variants *so = CALLOC_STRUCT(panfrost_shader_variants);
1843 so->base = *cso;
1844
1845 /* Token deep copy to prevent memory corruption */
1846
1847 if (cso->type == PIPE_SHADER_IR_TGSI)
1848 so->base.tokens = tgsi_dup_tokens(so->base.tokens);
1849
1850 return so;
1851 }
1852
1853 static void
1854 panfrost_delete_shader_state(
1855 struct pipe_context *pctx,
1856 void *so)
1857 {
1858 struct panfrost_shader_variants *cso = (struct panfrost_shader_variants *) so;
1859
1860 if (cso->base.type == PIPE_SHADER_IR_TGSI) {
1861 DBG("Deleting TGSI shader leaks duplicated tokens\n");
1862 }
1863
1864 free(so);
1865 }
1866
1867 static void *
1868 panfrost_create_sampler_state(
1869 struct pipe_context *pctx,
1870 const struct pipe_sampler_state *cso)
1871 {
1872 struct panfrost_sampler_state *so = CALLOC_STRUCT(panfrost_sampler_state);
1873 so->base = *cso;
1874
1875 /* sampler_state corresponds to mali_sampler_descriptor, which we can generate entirely here */
1876
1877 struct mali_sampler_descriptor sampler_descriptor = {
1878 .filter_mode = MALI_TEX_MIN(translate_tex_filter(cso->min_img_filter))
1879 | MALI_TEX_MAG(translate_tex_filter(cso->mag_img_filter))
1880 | translate_mip_filter(cso->min_mip_filter)
1881 | 0x20,
1882
1883 .wrap_s = translate_tex_wrap(cso->wrap_s),
1884 .wrap_t = translate_tex_wrap(cso->wrap_t),
1885 .wrap_r = translate_tex_wrap(cso->wrap_r),
1886 .compare_func = panfrost_translate_alt_compare_func(cso->compare_func),
1887 .border_color = {
1888 cso->border_color.f[0],
1889 cso->border_color.f[1],
1890 cso->border_color.f[2],
1891 cso->border_color.f[3]
1892 },
1893 .min_lod = FIXED_16(cso->min_lod),
1894 .max_lod = FIXED_16(cso->max_lod),
1895 .unknown2 = 1,
1896 };
1897
1898 so->hw = sampler_descriptor;
1899
1900 return so;
1901 }
1902
1903 static void
1904 panfrost_bind_sampler_states(
1905 struct pipe_context *pctx,
1906 enum pipe_shader_type shader,
1907 unsigned start_slot, unsigned num_sampler,
1908 void **sampler)
1909 {
1910 assert(start_slot == 0);
1911
1912 struct panfrost_context *ctx = pan_context(pctx);
1913
1914 /* XXX: Should upload, not just copy? */
1915 ctx->sampler_count[shader] = num_sampler;
1916 memcpy(ctx->samplers[shader], sampler, num_sampler * sizeof (void *));
1917
1918 ctx->dirty |= PAN_DIRTY_SAMPLERS;
1919 }
1920
1921 static bool
1922 panfrost_variant_matches(
1923 struct panfrost_context *ctx,
1924 struct panfrost_shader_state *variant,
1925 enum pipe_shader_type type)
1926 {
1927 struct pipe_alpha_state *alpha = &ctx->depth_stencil->alpha;
1928
1929 bool is_fragment = (type == PIPE_SHADER_FRAGMENT);
1930
1931 if (is_fragment && (alpha->enabled || variant->alpha_state.enabled)) {
1932 /* Make sure enable state is at least the same */
1933 if (alpha->enabled != variant->alpha_state.enabled) {
1934 return false;
1935 }
1936
1937 /* Check that the contents of the test are the same */
1938 bool same_func = alpha->func == variant->alpha_state.func;
1939 bool same_ref = alpha->ref_value == variant->alpha_state.ref_value;
1940
1941 if (!(same_func && same_ref)) {
1942 return false;
1943 }
1944 }
1945 /* Otherwise, we're good to go */
1946 return true;
1947 }
1948
1949 static void
1950 panfrost_bind_shader_state(
1951 struct pipe_context *pctx,
1952 void *hwcso,
1953 enum pipe_shader_type type)
1954 {
1955 struct panfrost_context *ctx = pan_context(pctx);
1956
1957 if (type == PIPE_SHADER_FRAGMENT) {
1958 ctx->fs = hwcso;
1959 ctx->dirty |= PAN_DIRTY_FS;
1960 } else {
1961 assert(type == PIPE_SHADER_VERTEX);
1962 ctx->vs = hwcso;
1963 ctx->dirty |= PAN_DIRTY_VS;
1964 }
1965
1966 if (!hwcso) return;
1967
1968 /* Match the appropriate variant */
1969
1970 signed variant = -1;
1971 struct panfrost_shader_variants *variants = (struct panfrost_shader_variants *) hwcso;
1972
1973 for (unsigned i = 0; i < variants->variant_count; ++i) {
1974 if (panfrost_variant_matches(ctx, &variants->variants[i], type)) {
1975 variant = i;
1976 break;
1977 }
1978 }
1979
1980 if (variant == -1) {
1981 /* No variant matched, so create a new one */
1982 variant = variants->variant_count++;
1983 assert(variants->variant_count < MAX_SHADER_VARIANTS);
1984
1985 variants->variants[variant].base = hwcso;
1986
1987 if (type == PIPE_SHADER_FRAGMENT)
1988 variants->variants[variant].alpha_state = ctx->depth_stencil->alpha;
1989
1990 /* Allocate the mapped descriptor ahead-of-time. */
1991 struct panfrost_context *ctx = pan_context(pctx);
1992 struct panfrost_transfer transfer = panfrost_allocate_chunk(ctx, sizeof(struct mali_shader_meta), HEAP_DESCRIPTOR);
1993
1994 variants->variants[variant].tripipe = (struct mali_shader_meta *) transfer.cpu;
1995 variants->variants[variant].tripipe_gpu = transfer.gpu;
1996
1997 }
1998
1999 /* Select this variant */
2000 variants->active_variant = variant;
2001
2002 struct panfrost_shader_state *shader_state = &variants->variants[variant];
2003 assert(panfrost_variant_matches(ctx, shader_state, type));
2004
2005 /* We finally have a variant, so compile it */
2006
2007 if (!shader_state->compiled) {
2008 panfrost_shader_compile(ctx, shader_state->tripipe, NULL,
2009 panfrost_job_type_for_pipe(type), shader_state);
2010
2011 shader_state->compiled = true;
2012 }
2013 }
2014
2015 static void
2016 panfrost_bind_vs_state(struct pipe_context *pctx, void *hwcso)
2017 {
2018 panfrost_bind_shader_state(pctx, hwcso, PIPE_SHADER_VERTEX);
2019 }
2020
2021 static void
2022 panfrost_bind_fs_state(struct pipe_context *pctx, void *hwcso)
2023 {
2024 panfrost_bind_shader_state(pctx, hwcso, PIPE_SHADER_FRAGMENT);
2025 }
2026
2027 static void
2028 panfrost_set_vertex_buffers(
2029 struct pipe_context *pctx,
2030 unsigned start_slot,
2031 unsigned num_buffers,
2032 const struct pipe_vertex_buffer *buffers)
2033 {
2034 struct panfrost_context *ctx = pan_context(pctx);
2035
2036 util_set_vertex_buffers_mask(ctx->vertex_buffers, &ctx->vb_mask, buffers, start_slot, num_buffers);
2037 }
2038
2039 static void
2040 panfrost_set_constant_buffer(
2041 struct pipe_context *pctx,
2042 enum pipe_shader_type shader, uint index,
2043 const struct pipe_constant_buffer *buf)
2044 {
2045 struct panfrost_context *ctx = pan_context(pctx);
2046 struct panfrost_constant_buffer *pbuf = &ctx->constant_buffer[shader];
2047
2048 size_t sz = buf ? buf->buffer_size : 0;
2049
2050 /* Free previous buffer */
2051
2052 pbuf->dirty = true;
2053 pbuf->size = sz;
2054
2055 if (pbuf->buffer) {
2056 free(pbuf->buffer);
2057 pbuf->buffer = NULL;
2058 }
2059
2060 /* If unbinding, we're done */
2061
2062 if (!buf)
2063 return;
2064
2065 /* Multiple constant buffers not yet supported */
2066 assert(index == 0);
2067
2068 const uint8_t *cpu;
2069
2070 struct panfrost_resource *rsrc = (struct panfrost_resource *) (buf->buffer);
2071
2072 if (rsrc) {
2073 cpu = rsrc->bo->cpu;
2074 } else if (buf->user_buffer) {
2075 cpu = buf->user_buffer;
2076 } else {
2077 DBG("No constant buffer?\n");
2078 return;
2079 }
2080
2081 /* Copy the constant buffer into the driver context for later upload */
2082
2083 pbuf->buffer = malloc(sz);
2084 memcpy(pbuf->buffer, cpu + buf->buffer_offset, sz);
2085 }
2086
2087 static void
2088 panfrost_set_stencil_ref(
2089 struct pipe_context *pctx,
2090 const struct pipe_stencil_ref *ref)
2091 {
2092 struct panfrost_context *ctx = pan_context(pctx);
2093 ctx->stencil_ref = *ref;
2094
2095 /* Shader core dirty */
2096 ctx->dirty |= PAN_DIRTY_FS;
2097 }
2098
2099 static struct pipe_sampler_view *
2100 panfrost_create_sampler_view(
2101 struct pipe_context *pctx,
2102 struct pipe_resource *texture,
2103 const struct pipe_sampler_view *template)
2104 {
2105 struct panfrost_sampler_view *so = CALLOC_STRUCT(panfrost_sampler_view);
2106 int bytes_per_pixel = util_format_get_blocksize(texture->format);
2107
2108 pipe_reference(NULL, &texture->reference);
2109
2110 struct panfrost_resource *prsrc = (struct panfrost_resource *) texture;
2111 assert(prsrc->bo);
2112
2113 so->base = *template;
2114 so->base.texture = texture;
2115 so->base.reference.count = 1;
2116 so->base.context = pctx;
2117
2118 /* sampler_views correspond to texture descriptors, minus the texture
2119 * (data) itself. So, we serialise the descriptor here and cache it for
2120 * later. */
2121
2122 /* Make sure it's something with which we're familiar */
2123 assert(bytes_per_pixel >= 1 && bytes_per_pixel <= 4);
2124
2125 /* TODO: Detect from format better */
2126 const struct util_format_description *desc = util_format_description(prsrc->base.format);
2127
2128 unsigned char user_swizzle[4] = {
2129 template->swizzle_r,
2130 template->swizzle_g,
2131 template->swizzle_b,
2132 template->swizzle_a
2133 };
2134
2135 enum mali_format format = panfrost_find_format(desc);
2136
2137 bool is_depth = desc->format == PIPE_FORMAT_Z32_UNORM;
2138
2139 unsigned usage2_layout = 0x10;
2140
2141 switch (prsrc->bo->layout) {
2142 case PAN_AFBC:
2143 usage2_layout |= 0x8 | 0x4;
2144 break;
2145 case PAN_TILED:
2146 usage2_layout |= 0x1;
2147 break;
2148 case PAN_LINEAR:
2149 usage2_layout |= is_depth ? 0x1 : 0x2;
2150 break;
2151 default:
2152 assert(0);
2153 break;
2154 }
2155
2156 /* Check if we need to set a custom stride by computing the "expected"
2157 * stride and comparing it to what the BO actually wants. Only applies
2158 * to linear textures, since tiled/compressed textures have strict
2159 * alignment requirements for their strides as it is */
2160
2161 unsigned first_level = template->u.tex.first_level;
2162 unsigned last_level = template->u.tex.last_level;
2163
2164 if (prsrc->bo->layout == PAN_LINEAR) {
2165 for (unsigned l = first_level; l <= last_level; ++l) {
2166 unsigned actual_stride = prsrc->bo->slices[l].stride;
2167 unsigned width = u_minify(texture->width0, l);
2168 unsigned comp_stride = width * bytes_per_pixel;
2169
2170 if (comp_stride != actual_stride) {
2171 usage2_layout |= MALI_TEX_MANUAL_STRIDE;
2172 break;
2173 }
2174 }
2175 }
2176
2177 /* In the hardware, array_size refers specifically to array textures,
2178 * whereas in Gallium, it also covers cubemaps */
2179
2180 unsigned array_size = texture->array_size;
2181
2182 if (texture->target == PIPE_TEXTURE_CUBE) {
2183 /* TODO: Cubemap arrays */
2184 assert(array_size == 6);
2185 }
2186
2187 struct mali_texture_descriptor texture_descriptor = {
2188 .width = MALI_POSITIVE(u_minify(texture->width0, first_level)),
2189 .height = MALI_POSITIVE(u_minify(texture->height0, first_level)),
2190 .depth = MALI_POSITIVE(u_minify(texture->depth0, first_level)),
2191 .array_size = MALI_POSITIVE(array_size),
2192
2193 /* TODO: Decode */
2194 .format = {
2195 .swizzle = panfrost_translate_swizzle_4(desc->swizzle),
2196 .format = format,
2197
2198 .usage1 = (texture->target == PIPE_TEXTURE_3D) ? MALI_TEX_3D : 0,
2199 .is_not_cubemap = texture->target != PIPE_TEXTURE_CUBE,
2200
2201 .usage2 = usage2_layout
2202 },
2203
2204 .swizzle = panfrost_translate_swizzle_4(user_swizzle)
2205 };
2206
2207 //texture_descriptor.nr_mipmap_levels = last_level - first_level;
2208
2209 so->hw = texture_descriptor;
2210
2211 return (struct pipe_sampler_view *) so;
2212 }
2213
2214 static void
2215 panfrost_set_sampler_views(
2216 struct pipe_context *pctx,
2217 enum pipe_shader_type shader,
2218 unsigned start_slot, unsigned num_views,
2219 struct pipe_sampler_view **views)
2220 {
2221 struct panfrost_context *ctx = pan_context(pctx);
2222
2223 assert(start_slot == 0);
2224
2225 unsigned new_nr = 0;
2226 for (unsigned i = 0; i < num_views; ++i) {
2227 if (views[i])
2228 new_nr = i + 1;
2229 }
2230
2231 ctx->sampler_view_count[shader] = new_nr;
2232 memcpy(ctx->sampler_views[shader], views, num_views * sizeof (void *));
2233
2234 ctx->dirty |= PAN_DIRTY_TEXTURES;
2235 }
2236
2237 static void
2238 panfrost_sampler_view_destroy(
2239 struct pipe_context *pctx,
2240 struct pipe_sampler_view *view)
2241 {
2242 pipe_resource_reference(&view->texture, NULL);
2243 free(view);
2244 }
2245
2246 static void
2247 panfrost_set_framebuffer_state(struct pipe_context *pctx,
2248 const struct pipe_framebuffer_state *fb)
2249 {
2250 struct panfrost_context *ctx = pan_context(pctx);
2251
2252 /* Flush when switching framebuffers, but not if the framebuffer
2253 * state is being restored by u_blitter
2254 */
2255
2256 bool is_scanout = panfrost_is_scanout(ctx);
2257 bool has_draws = ctx->draw_count > 0;
2258
2259 if (!ctx->blitter->running && (!is_scanout || has_draws)) {
2260 panfrost_flush(pctx, NULL, PIPE_FLUSH_END_OF_FRAME);
2261 }
2262
2263 ctx->pipe_framebuffer.nr_cbufs = fb->nr_cbufs;
2264 ctx->pipe_framebuffer.samples = fb->samples;
2265 ctx->pipe_framebuffer.layers = fb->layers;
2266 ctx->pipe_framebuffer.width = fb->width;
2267 ctx->pipe_framebuffer.height = fb->height;
2268
2269 for (int i = 0; i < PIPE_MAX_COLOR_BUFS; i++) {
2270 struct pipe_surface *cb = i < fb->nr_cbufs ? fb->cbufs[i] : NULL;
2271
2272 /* check if changing cbuf */
2273 if (ctx->pipe_framebuffer.cbufs[i] == cb) continue;
2274
2275 if (cb && (i != 0)) {
2276 DBG("XXX: Multiple render targets not supported before t7xx!\n");
2277 assert(0);
2278 }
2279
2280 /* assign new */
2281 pipe_surface_reference(&ctx->pipe_framebuffer.cbufs[i], cb);
2282
2283 if (!cb)
2284 continue;
2285
2286 if (ctx->require_sfbd)
2287 ctx->vt_framebuffer_sfbd = panfrost_emit_sfbd(ctx, ~0);
2288 else
2289 ctx->vt_framebuffer_mfbd = panfrost_emit_mfbd(ctx, ~0);
2290
2291 panfrost_attach_vt_framebuffer(ctx);
2292
2293 struct panfrost_resource *tex = ((struct panfrost_resource *) ctx->pipe_framebuffer.cbufs[i]->texture);
2294 enum pipe_format format = ctx->pipe_framebuffer.cbufs[i]->format;
2295
2296 bool can_afbc = panfrost_format_supports_afbc(format);
2297 bool is_scanout = panfrost_is_scanout(ctx);
2298
2299 if (!is_scanout && tex->bo->layout != PAN_AFBC && can_afbc)
2300 panfrost_enable_afbc(ctx, tex, false);
2301
2302 if (!is_scanout && !tex->bo->has_checksum)
2303 panfrost_enable_checksum(ctx, tex);
2304 }
2305
2306 {
2307 struct pipe_surface *zb = fb->zsbuf;
2308
2309 if (ctx->pipe_framebuffer.zsbuf != zb) {
2310 pipe_surface_reference(&ctx->pipe_framebuffer.zsbuf, zb);
2311
2312 if (zb) {
2313 if (ctx->require_sfbd)
2314 ctx->vt_framebuffer_sfbd = panfrost_emit_sfbd(ctx, ~0);
2315 else
2316 ctx->vt_framebuffer_mfbd = panfrost_emit_mfbd(ctx, ~0);
2317
2318 panfrost_attach_vt_framebuffer(ctx);
2319
2320 struct panfrost_resource *tex = pan_resource(zb->texture);
2321 bool can_afbc = panfrost_format_supports_afbc(zb->format);
2322 bool is_scanout = panfrost_is_scanout(ctx);
2323
2324 if (!is_scanout && tex->bo->layout != PAN_AFBC && can_afbc)
2325 panfrost_enable_afbc(ctx, tex, true);
2326 }
2327 }
2328 }
2329 }
2330
2331 static void *
2332 panfrost_create_blend_state(struct pipe_context *pipe,
2333 const struct pipe_blend_state *blend)
2334 {
2335 struct panfrost_context *ctx = pan_context(pipe);
2336 struct panfrost_blend_state *so = CALLOC_STRUCT(panfrost_blend_state);
2337 so->base = *blend;
2338
2339 /* TODO: The following features are not yet implemented */
2340 assert(!blend->logicop_enable);
2341 assert(!blend->alpha_to_coverage);
2342 assert(!blend->alpha_to_one);
2343
2344 /* Compile the blend state, first as fixed-function if we can */
2345
2346 if (panfrost_make_fixed_blend_mode(&blend->rt[0], so, blend->rt[0].colormask, &ctx->blend_color))
2347 return so;
2348
2349 /* If we can't, compile a blend shader instead */
2350
2351 panfrost_make_blend_shader(ctx, so, &ctx->blend_color);
2352
2353 return so;
2354 }
2355
2356 static void
2357 panfrost_bind_blend_state(struct pipe_context *pipe,
2358 void *cso)
2359 {
2360 struct panfrost_context *ctx = pan_context(pipe);
2361 struct pipe_blend_state *blend = (struct pipe_blend_state *) cso;
2362 struct panfrost_blend_state *pblend = (struct panfrost_blend_state *) cso;
2363 ctx->blend = pblend;
2364
2365 if (!blend)
2366 return;
2367
2368 SET_BIT(ctx->fragment_shader_core.unknown2_4, MALI_NO_DITHER, !blend->dither);
2369
2370 /* TODO: Attach color */
2371
2372 /* Shader itself is not dirty, but the shader core is */
2373 ctx->dirty |= PAN_DIRTY_FS;
2374 }
2375
2376 static void
2377 panfrost_delete_blend_state(struct pipe_context *pipe,
2378 void *blend)
2379 {
2380 struct panfrost_blend_state *so = (struct panfrost_blend_state *) blend;
2381
2382 if (so->has_blend_shader) {
2383 DBG("Deleting blend state leak blend shaders bytecode\n");
2384 }
2385
2386 free(blend);
2387 }
2388
2389 static void
2390 panfrost_set_blend_color(struct pipe_context *pipe,
2391 const struct pipe_blend_color *blend_color)
2392 {
2393 struct panfrost_context *ctx = pan_context(pipe);
2394
2395 /* If blend_color is we're unbinding, so ctx->blend_color is now undefined -> nothing to do */
2396
2397 if (blend_color) {
2398 ctx->blend_color = *blend_color;
2399
2400 /* The blend mode depends on the blend constant color, due to the
2401 * fixed/programmable split. So, we're forced to regenerate the blend
2402 * equation */
2403
2404 /* TODO: Attach color */
2405 }
2406 }
2407
2408 static void *
2409 panfrost_create_depth_stencil_state(struct pipe_context *pipe,
2410 const struct pipe_depth_stencil_alpha_state *depth_stencil)
2411 {
2412 return mem_dup(depth_stencil, sizeof(*depth_stencil));
2413 }
2414
2415 static void
2416 panfrost_bind_depth_stencil_state(struct pipe_context *pipe,
2417 void *cso)
2418 {
2419 struct panfrost_context *ctx = pan_context(pipe);
2420 struct pipe_depth_stencil_alpha_state *depth_stencil = cso;
2421 ctx->depth_stencil = depth_stencil;
2422
2423 if (!depth_stencil)
2424 return;
2425
2426 /* Alpha does not exist in the hardware (it's not in ES3), so it's
2427 * emulated in the fragment shader */
2428
2429 if (depth_stencil->alpha.enabled) {
2430 /* We need to trigger a new shader (maybe) */
2431 ctx->base.bind_fs_state(&ctx->base, ctx->fs);
2432 }
2433
2434 /* Stencil state */
2435 SET_BIT(ctx->fragment_shader_core.unknown2_4, MALI_STENCIL_TEST, depth_stencil->stencil[0].enabled); /* XXX: which one? */
2436
2437 panfrost_make_stencil_state(&depth_stencil->stencil[0], &ctx->fragment_shader_core.stencil_front);
2438 ctx->fragment_shader_core.stencil_mask_front = depth_stencil->stencil[0].writemask;
2439
2440 panfrost_make_stencil_state(&depth_stencil->stencil[1], &ctx->fragment_shader_core.stencil_back);
2441 ctx->fragment_shader_core.stencil_mask_back = depth_stencil->stencil[1].writemask;
2442
2443 /* Depth state (TODO: Refactor) */
2444 SET_BIT(ctx->fragment_shader_core.unknown2_3, MALI_DEPTH_TEST, depth_stencil->depth.enabled);
2445
2446 int func = depth_stencil->depth.enabled ? depth_stencil->depth.func : PIPE_FUNC_ALWAYS;
2447
2448 ctx->fragment_shader_core.unknown2_3 &= ~MALI_DEPTH_FUNC_MASK;
2449 ctx->fragment_shader_core.unknown2_3 |= MALI_DEPTH_FUNC(panfrost_translate_compare_func(func));
2450
2451 /* Bounds test not implemented */
2452 assert(!depth_stencil->depth.bounds_test);
2453
2454 ctx->dirty |= PAN_DIRTY_FS;
2455 }
2456
2457 static void
2458 panfrost_delete_depth_stencil_state(struct pipe_context *pipe, void *depth)
2459 {
2460 free( depth );
2461 }
2462
2463 static void
2464 panfrost_set_sample_mask(struct pipe_context *pipe,
2465 unsigned sample_mask)
2466 {
2467 }
2468
2469 static void
2470 panfrost_set_clip_state(struct pipe_context *pipe,
2471 const struct pipe_clip_state *clip)
2472 {
2473 //struct panfrost_context *panfrost = pan_context(pipe);
2474 }
2475
2476 static void
2477 panfrost_set_viewport_states(struct pipe_context *pipe,
2478 unsigned start_slot,
2479 unsigned num_viewports,
2480 const struct pipe_viewport_state *viewports)
2481 {
2482 struct panfrost_context *ctx = pan_context(pipe);
2483
2484 assert(start_slot == 0);
2485 assert(num_viewports == 1);
2486
2487 ctx->pipe_viewport = *viewports;
2488 }
2489
2490 static void
2491 panfrost_set_scissor_states(struct pipe_context *pipe,
2492 unsigned start_slot,
2493 unsigned num_scissors,
2494 const struct pipe_scissor_state *scissors)
2495 {
2496 struct panfrost_context *ctx = pan_context(pipe);
2497
2498 assert(start_slot == 0);
2499 assert(num_scissors == 1);
2500
2501 ctx->scissor = *scissors;
2502 }
2503
2504 static void
2505 panfrost_set_polygon_stipple(struct pipe_context *pipe,
2506 const struct pipe_poly_stipple *stipple)
2507 {
2508 //struct panfrost_context *panfrost = pan_context(pipe);
2509 }
2510
2511 static void
2512 panfrost_set_active_query_state(struct pipe_context *pipe,
2513 boolean enable)
2514 {
2515 //struct panfrost_context *panfrost = pan_context(pipe);
2516 }
2517
2518 static void
2519 panfrost_destroy(struct pipe_context *pipe)
2520 {
2521 struct panfrost_context *panfrost = pan_context(pipe);
2522 struct panfrost_screen *screen = pan_screen(pipe->screen);
2523
2524 if (panfrost->blitter)
2525 util_blitter_destroy(panfrost->blitter);
2526
2527 screen->driver->free_slab(screen, &panfrost->scratchpad);
2528 screen->driver->free_slab(screen, &panfrost->varying_mem);
2529 screen->driver->free_slab(screen, &panfrost->shaders);
2530 screen->driver->free_slab(screen, &panfrost->tiler_heap);
2531 screen->driver->free_slab(screen, &panfrost->tiler_polygon_list);
2532 }
2533
2534 static struct pipe_query *
2535 panfrost_create_query(struct pipe_context *pipe,
2536 unsigned type,
2537 unsigned index)
2538 {
2539 struct panfrost_query *q = CALLOC_STRUCT(panfrost_query);
2540
2541 q->type = type;
2542 q->index = index;
2543
2544 return (struct pipe_query *) q;
2545 }
2546
2547 static void
2548 panfrost_destroy_query(struct pipe_context *pipe, struct pipe_query *q)
2549 {
2550 FREE(q);
2551 }
2552
2553 static boolean
2554 panfrost_begin_query(struct pipe_context *pipe, struct pipe_query *q)
2555 {
2556 struct panfrost_context *ctx = pan_context(pipe);
2557 struct panfrost_query *query = (struct panfrost_query *) q;
2558
2559 switch (query->type) {
2560 case PIPE_QUERY_OCCLUSION_COUNTER:
2561 case PIPE_QUERY_OCCLUSION_PREDICATE:
2562 case PIPE_QUERY_OCCLUSION_PREDICATE_CONSERVATIVE:
2563 {
2564 /* Allocate a word for the query results to be stored */
2565 query->transfer = panfrost_allocate_chunk(ctx, sizeof(unsigned), HEAP_DESCRIPTOR);
2566
2567 ctx->occlusion_query = query;
2568
2569 break;
2570 }
2571
2572 default:
2573 DBG("Skipping query %d\n", query->type);
2574 break;
2575 }
2576
2577 return true;
2578 }
2579
2580 static bool
2581 panfrost_end_query(struct pipe_context *pipe, struct pipe_query *q)
2582 {
2583 struct panfrost_context *ctx = pan_context(pipe);
2584 ctx->occlusion_query = NULL;
2585 return true;
2586 }
2587
2588 static boolean
2589 panfrost_get_query_result(struct pipe_context *pipe,
2590 struct pipe_query *q,
2591 boolean wait,
2592 union pipe_query_result *vresult)
2593 {
2594 /* STUB */
2595 struct panfrost_query *query = (struct panfrost_query *) q;
2596
2597 /* We need to flush out the jobs to actually run the counter, TODO
2598 * check wait, TODO wallpaper after if needed */
2599
2600 panfrost_flush(pipe, NULL, PIPE_FLUSH_END_OF_FRAME);
2601
2602 switch (query->type) {
2603 case PIPE_QUERY_OCCLUSION_COUNTER:
2604 case PIPE_QUERY_OCCLUSION_PREDICATE:
2605 case PIPE_QUERY_OCCLUSION_PREDICATE_CONSERVATIVE: {
2606 /* Read back the query results */
2607 unsigned *result = (unsigned *) query->transfer.cpu;
2608 unsigned passed = *result;
2609
2610 if (query->type == PIPE_QUERY_OCCLUSION_COUNTER) {
2611 vresult->u64 = passed;
2612 } else {
2613 vresult->b = !!passed;
2614 }
2615
2616 break;
2617 }
2618 default:
2619 DBG("Skipped query get %d\n", query->type);
2620 break;
2621 }
2622
2623 return true;
2624 }
2625
2626 static struct pipe_stream_output_target *
2627 panfrost_create_stream_output_target(struct pipe_context *pctx,
2628 struct pipe_resource *prsc,
2629 unsigned buffer_offset,
2630 unsigned buffer_size)
2631 {
2632 struct pipe_stream_output_target *target;
2633
2634 target = CALLOC_STRUCT(pipe_stream_output_target);
2635
2636 if (!target)
2637 return NULL;
2638
2639 pipe_reference_init(&target->reference, 1);
2640 pipe_resource_reference(&target->buffer, prsc);
2641
2642 target->context = pctx;
2643 target->buffer_offset = buffer_offset;
2644 target->buffer_size = buffer_size;
2645
2646 return target;
2647 }
2648
2649 static void
2650 panfrost_stream_output_target_destroy(struct pipe_context *pctx,
2651 struct pipe_stream_output_target *target)
2652 {
2653 pipe_resource_reference(&target->buffer, NULL);
2654 free(target);
2655 }
2656
2657 static void
2658 panfrost_set_stream_output_targets(struct pipe_context *pctx,
2659 unsigned num_targets,
2660 struct pipe_stream_output_target **targets,
2661 const unsigned *offsets)
2662 {
2663 /* STUB */
2664 }
2665
2666 static void
2667 panfrost_setup_hardware(struct panfrost_context *ctx)
2668 {
2669 struct pipe_context *gallium = (struct pipe_context *) ctx;
2670 struct panfrost_screen *screen = pan_screen(gallium->screen);
2671
2672 for (int i = 0; i < ARRAY_SIZE(ctx->transient_pools); ++i) {
2673 /* Allocate the beginning of the transient pool */
2674 int entry_size = (1 << 22); /* 4MB */
2675
2676 ctx->transient_pools[i].entry_size = entry_size;
2677 ctx->transient_pools[i].entry_count = 1;
2678
2679 ctx->transient_pools[i].entries[0] = (struct panfrost_memory_entry *) pb_slab_alloc(&screen->slabs, entry_size, HEAP_TRANSIENT);
2680 }
2681
2682 screen->driver->allocate_slab(screen, &ctx->scratchpad, 64, false, 0, 0, 0);
2683 screen->driver->allocate_slab(screen, &ctx->varying_mem, 16384, false, PAN_ALLOCATE_INVISIBLE | PAN_ALLOCATE_COHERENT_LOCAL, 0, 0);
2684 screen->driver->allocate_slab(screen, &ctx->shaders, 4096, true, PAN_ALLOCATE_EXECUTE, 0, 0);
2685 screen->driver->allocate_slab(screen, &ctx->tiler_heap, 32768, false, PAN_ALLOCATE_INVISIBLE | PAN_ALLOCATE_GROWABLE, 1, 128);
2686 screen->driver->allocate_slab(screen, &ctx->tiler_polygon_list, 128*128, false, PAN_ALLOCATE_INVISIBLE | PAN_ALLOCATE_GROWABLE, 1, 128);
2687 screen->driver->allocate_slab(screen, &ctx->tiler_dummy, 1, false, PAN_ALLOCATE_INVISIBLE, 0, 0);
2688
2689 }
2690
2691 /* New context creation, which also does hardware initialisation since I don't
2692 * know the better way to structure this :smirk: */
2693
2694 struct pipe_context *
2695 panfrost_create_context(struct pipe_screen *screen, void *priv, unsigned flags)
2696 {
2697 struct panfrost_context *ctx = CALLOC_STRUCT(panfrost_context);
2698 struct panfrost_screen *pscreen = pan_screen(screen);
2699 memset(ctx, 0, sizeof(*ctx));
2700 struct pipe_context *gallium = (struct pipe_context *) ctx;
2701 unsigned gpu_id;
2702
2703 gpu_id = pscreen->driver->query_gpu_version(pscreen);
2704
2705 ctx->is_t6xx = gpu_id <= 0x0750; /* For now, this flag means T760 or less */
2706 ctx->require_sfbd = gpu_id < 0x0750; /* T760 is the first to support MFBD */
2707
2708 gallium->screen = screen;
2709
2710 gallium->destroy = panfrost_destroy;
2711
2712 gallium->set_framebuffer_state = panfrost_set_framebuffer_state;
2713
2714 gallium->flush = panfrost_flush;
2715 gallium->clear = panfrost_clear;
2716 gallium->draw_vbo = panfrost_draw_vbo;
2717
2718 gallium->set_vertex_buffers = panfrost_set_vertex_buffers;
2719 gallium->set_constant_buffer = panfrost_set_constant_buffer;
2720
2721 gallium->set_stencil_ref = panfrost_set_stencil_ref;
2722
2723 gallium->create_sampler_view = panfrost_create_sampler_view;
2724 gallium->set_sampler_views = panfrost_set_sampler_views;
2725 gallium->sampler_view_destroy = panfrost_sampler_view_destroy;
2726
2727 gallium->create_rasterizer_state = panfrost_create_rasterizer_state;
2728 gallium->bind_rasterizer_state = panfrost_bind_rasterizer_state;
2729 gallium->delete_rasterizer_state = panfrost_generic_cso_delete;
2730
2731 gallium->create_vertex_elements_state = panfrost_create_vertex_elements_state;
2732 gallium->bind_vertex_elements_state = panfrost_bind_vertex_elements_state;
2733 gallium->delete_vertex_elements_state = panfrost_generic_cso_delete;
2734
2735 gallium->create_fs_state = panfrost_create_shader_state;
2736 gallium->delete_fs_state = panfrost_delete_shader_state;
2737 gallium->bind_fs_state = panfrost_bind_fs_state;
2738
2739 gallium->create_vs_state = panfrost_create_shader_state;
2740 gallium->delete_vs_state = panfrost_delete_shader_state;
2741 gallium->bind_vs_state = panfrost_bind_vs_state;
2742
2743 gallium->create_sampler_state = panfrost_create_sampler_state;
2744 gallium->delete_sampler_state = panfrost_generic_cso_delete;
2745 gallium->bind_sampler_states = panfrost_bind_sampler_states;
2746
2747 gallium->create_blend_state = panfrost_create_blend_state;
2748 gallium->bind_blend_state = panfrost_bind_blend_state;
2749 gallium->delete_blend_state = panfrost_delete_blend_state;
2750
2751 gallium->set_blend_color = panfrost_set_blend_color;
2752
2753 gallium->create_depth_stencil_alpha_state = panfrost_create_depth_stencil_state;
2754 gallium->bind_depth_stencil_alpha_state = panfrost_bind_depth_stencil_state;
2755 gallium->delete_depth_stencil_alpha_state = panfrost_delete_depth_stencil_state;
2756
2757 gallium->set_sample_mask = panfrost_set_sample_mask;
2758
2759 gallium->set_clip_state = panfrost_set_clip_state;
2760 gallium->set_viewport_states = panfrost_set_viewport_states;
2761 gallium->set_scissor_states = panfrost_set_scissor_states;
2762 gallium->set_polygon_stipple = panfrost_set_polygon_stipple;
2763 gallium->set_active_query_state = panfrost_set_active_query_state;
2764
2765 gallium->create_query = panfrost_create_query;
2766 gallium->destroy_query = panfrost_destroy_query;
2767 gallium->begin_query = panfrost_begin_query;
2768 gallium->end_query = panfrost_end_query;
2769 gallium->get_query_result = panfrost_get_query_result;
2770
2771 gallium->create_stream_output_target = panfrost_create_stream_output_target;
2772 gallium->stream_output_target_destroy = panfrost_stream_output_target_destroy;
2773 gallium->set_stream_output_targets = panfrost_set_stream_output_targets;
2774
2775 panfrost_resource_context_init(gallium);
2776
2777 pscreen->driver->init_context(ctx);
2778
2779 panfrost_setup_hardware(ctx);
2780
2781 /* XXX: leaks */
2782 gallium->stream_uploader = u_upload_create_default(gallium);
2783 gallium->const_uploader = gallium->stream_uploader;
2784 assert(gallium->stream_uploader);
2785
2786 /* Midgard supports ES modes, plus QUADS/QUAD_STRIPS/POLYGON */
2787 ctx->draw_modes = (1 << (PIPE_PRIM_POLYGON + 1)) - 1;
2788
2789 ctx->primconvert = util_primconvert_create(gallium, ctx->draw_modes);
2790
2791 ctx->blitter = util_blitter_create(gallium);
2792 assert(ctx->blitter);
2793
2794 /* Prepare for render! */
2795
2796 panfrost_job_init(ctx);
2797 panfrost_emit_vertex_payload(ctx);
2798 panfrost_emit_tiler_payload(ctx);
2799 panfrost_invalidate_frame(ctx);
2800 panfrost_default_shader_backend(ctx);
2801 panfrost_generate_space_filler_indices();
2802
2803 return gallium;
2804 }