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