blob: c32254adf81e5c9ed741ebf472412bb0b9a2aff9 [file] [log] [blame]
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001/*
2 * © Copyright 2018 Alyssa Rosenzweig
Alyssa Rosenzweig5ff79732019-08-06 16:43:28 -07003 * Copyright © 2014-2017 Broadcom
Alyssa Rosenzweigf714eab2019-08-07 10:11:28 -07004 * Copyright (C) 2017 Intel Corporation
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00005 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 *
25 */
26
27#include <sys/poll.h>
28#include <errno.h>
29
Boris Brezillon154cb722019-09-14 09:58:55 +020030#include "pan_bo.h"
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +000031#include "pan_context.h"
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +000032#include "pan_format.h"
Tomeu Vizoso6887ff42019-11-28 10:21:06 +010033#include "panfrost-quirks.h"
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +000034
35#include "util/macros.h"
Eric Anholt882ca6d2019-06-27 15:05:31 -070036#include "util/format/u_format.h"
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +000037#include "util/u_inlines.h"
38#include "util/u_upload_mgr.h"
39#include "util/u_memory.h"
Alyssa Rosenzweig89b02bf2019-04-13 00:10:20 +000040#include "util/u_vbuf.h"
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +000041#include "util/half_float.h"
Alyssa Rosenzweige008d4f2019-04-14 22:42:44 +000042#include "util/u_helpers.h"
Eric Anholt882ca6d2019-06-27 15:05:31 -070043#include "util/format/u_format.h"
Alyssa Rosenzweig72fc06d2019-08-08 07:10:24 -070044#include "util/u_prim.h"
Alyssa Rosenzweig7f548122019-06-26 15:59:29 -070045#include "util/u_prim_restart.h"
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +000046#include "indices/u_primconvert.h"
47#include "tgsi/tgsi_parse.h"
Alyssa Rosenzweig46479992019-07-31 15:49:13 -070048#include "tgsi/tgsi_from_mesa.h"
Alyssa Rosenzweig31f5a432019-05-02 02:27:04 +000049#include "util/u_math.h"
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +000050
51#include "pan_screen.h"
52#include "pan_blending.h"
53#include "pan_blend_shaders.h"
Tomeu Vizoso97f2d042019-03-08 15:24:57 +010054#include "pan_util.h"
Icecream95cf2c5a52020-01-23 10:32:18 +130055#include "pandecode/decode.h"
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +000056
Alyssa Rosenzweigb0e915b2019-12-09 11:00:42 -050057struct midgard_tiler_descriptor
Boris Brezillonaa851a62019-09-01 10:30:39 +020058panfrost_emit_midg_tiler(struct panfrost_batch *batch, unsigned vertex_count)
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +000059{
Tomeu Vizoso6469c1a2019-10-29 15:42:03 +010060 struct panfrost_screen *screen = pan_screen(batch->ctx->base.screen);
Alyssa Rosenzweig9fb09042019-11-27 08:31:16 -050061 bool hierarchy = !(screen->quirks & MIDGARD_NO_HIER_TILING);
Vinson Leede2e5f62019-11-27 23:37:00 -080062 struct midgard_tiler_descriptor t = {0};
Boris Brezillonaa851a62019-09-01 10:30:39 +020063 unsigned height = batch->key.height;
64 unsigned width = batch->key.width;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +000065
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -070066 t.hierarchy_mask =
Alyssa Rosenzweig9fb09042019-11-27 08:31:16 -050067 panfrost_choose_hierarchy_mask(width, height, vertex_count, hierarchy);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +000068
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -070069 /* Compute the polygon header size and use that to offset the body */
70
71 unsigned header_size = panfrost_tiler_header_size(
Alyssa Rosenzweig9fb09042019-11-27 08:31:16 -050072 width, height, t.hierarchy_mask, hierarchy);
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -070073
Alyssa Rosenzweigf5c29342019-08-19 14:30:53 -070074 t.polygon_list_size = panfrost_tiler_full_size(
Alyssa Rosenzweig9fb09042019-11-27 08:31:16 -050075 width, height, t.hierarchy_mask, hierarchy);
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -070076
77 /* Sanity check */
78
Alyssa Rosenzweig9fb09042019-11-27 08:31:16 -050079 if (vertex_count) {
Boris Brezillon1e483a82019-09-14 19:18:51 +020080 struct panfrost_bo *tiler_heap;
81
82 tiler_heap = panfrost_batch_get_tiler_heap(batch);
Boris Brezillon2c526992019-09-05 21:41:26 +020083 t.polygon_list = panfrost_batch_get_polygon_list(batch,
84 header_size +
85 t.polygon_list_size);
Alyssa Rosenzweigf5c29342019-08-19 14:30:53 -070086
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -070087
88 /* Allow the entire tiler heap */
Boris Brezillon1e483a82019-09-14 19:18:51 +020089 t.heap_start = tiler_heap->gpu;
90 t.heap_end = tiler_heap->gpu + tiler_heap->size;
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -070091 } else {
Boris Brezillon1e483a82019-09-14 19:18:51 +020092 struct panfrost_bo *tiler_dummy;
93
94 tiler_dummy = panfrost_batch_get_tiler_dummy(batch);
Alyssa Rosenzweig9fb09042019-11-27 08:31:16 -050095 header_size = MALI_TILER_MINIMUM_HEADER_SIZE;
Boris Brezillon1e483a82019-09-14 19:18:51 +020096
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -070097 /* The tiler is disabled, so don't allow the tiler heap */
Boris Brezillon1e483a82019-09-14 19:18:51 +020098 t.heap_start = tiler_dummy->gpu;
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -070099 t.heap_end = t.heap_start;
100
101 /* Use a dummy polygon list */
Boris Brezillon1e483a82019-09-14 19:18:51 +0200102 t.polygon_list = tiler_dummy->gpu;
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700103
Alyssa Rosenzweig897110a2019-08-19 14:47:50 -0700104 /* Disable the tiler */
Alyssa Rosenzweig9fb09042019-11-27 08:31:16 -0500105 if (hierarchy)
106 t.hierarchy_mask |= MALI_TILER_DISABLED;
107 else {
108 t.hierarchy_mask = MALI_TILER_USER;
109 t.polygon_list_size = MALI_TILER_MINIMUM_HEADER_SIZE + 4;
Tomeu Vizoso6469c1a2019-10-29 15:42:03 +0100110
Alyssa Rosenzweigadf716d2019-12-05 09:06:53 -0500111 /* We don't have a WRITE_VALUE job, so write the polygon list manually */
Tomeu Vizoso6469c1a2019-10-29 15:42:03 +0100112 uint32_t *polygon_list_body = (uint32_t *) (tiler_dummy->cpu + header_size);
113 polygon_list_body[0] = 0xa0000000; /* TODO: Just that? */
114 }
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700115 }
116
117 t.polygon_list_body =
118 t.polygon_list + header_size;
119
Alyssa Rosenzweig31fc52a2019-07-10 07:22:19 -0700120 return t;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000121}
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000122
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000123static void
124panfrost_clear(
125 struct pipe_context *pipe,
126 unsigned buffers,
127 const union pipe_color_union *color,
128 double depth, unsigned stencil)
129{
130 struct panfrost_context *ctx = pan_context(pipe);
Boris Brezillonc138ca82019-09-19 15:52:02 +0200131
132 /* TODO: panfrost_get_fresh_batch_for_fbo() instantiates a new batch if
133 * the existing batch targeting this FBO has draws. We could probably
134 * avoid that by replacing plain clears by quad-draws with a specific
135 * color/depth/stencil value, thus avoiding the generation of extra
Alyssa Rosenzweigadf716d2019-12-05 09:06:53 -0500136 * fragment jobs.
Boris Brezillonc138ca82019-09-19 15:52:02 +0200137 */
138 struct panfrost_batch *batch = panfrost_get_fresh_batch_for_fbo(ctx);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000139
Boris Brezillon0eec73a2019-09-14 18:40:23 +0200140 panfrost_batch_add_fbo_bos(batch);
Boris Brezillon12d8a172019-09-05 21:41:28 +0200141 panfrost_batch_clear(batch, buffers, color, depth, stencil);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000142}
143
Alyssa Rosenzweig97aa0542019-02-10 20:06:21 +0000144static void
Boris Brezillon12f72172019-08-02 19:18:46 +0200145panfrost_attach_vt_framebuffer(struct panfrost_context *ctx)
Alyssa Rosenzweig97aa0542019-02-10 20:06:21 +0000146{
Alyssa Rosenzweig990e2442019-07-24 08:46:15 -0700147 struct panfrost_screen *screen = pan_screen(ctx->base.screen);
Boris Brezillon4166ca92019-09-05 19:07:12 +0200148 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
149
Alyssa Rosenzweigb0e915b2019-12-09 11:00:42 -0500150 /* If we haven't, reserve space for the framebuffer */
151
152 if (!batch->framebuffer.gpu) {
153 unsigned size = (screen->quirks & MIDGARD_SFBD) ?
154 sizeof(struct mali_single_framebuffer) :
155 sizeof(struct bifrost_framebuffer);
156
157 batch->framebuffer = panfrost_allocate_transient(batch, size);
158
159 /* Tag the pointer */
160 if (!(screen->quirks & MIDGARD_SFBD))
161 batch->framebuffer.gpu |= MALI_MFBD;
162 }
Alyssa Rosenzweig97aa0542019-02-10 20:06:21 +0000163
Alyssa Rosenzweigcd1be462019-07-31 14:08:07 -0700164 for (unsigned i = 0; i < PIPE_SHADER_TYPES; ++i)
Alyssa Rosenzweigb0e915b2019-12-09 11:00:42 -0500165 ctx->payloads[i].postfix.framebuffer = batch->framebuffer.gpu;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000166}
167
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000168/* Reset per-frame context, called on context initialisation as well as after
169 * flushing a frame */
170
Boris Brezillon6ddfd372019-09-05 20:47:45 +0200171void
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000172panfrost_invalidate_frame(struct panfrost_context *ctx)
173{
Alyssa Rosenzweigcd1be462019-07-31 14:08:07 -0700174 for (unsigned i = 0; i < PIPE_SHADER_TYPES; ++i)
175 ctx->payloads[i].postfix.framebuffer = 0;
Alyssa Rosenzweig718ebfa2019-07-11 11:39:33 -0700176
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000177 if (ctx->rasterizer)
178 ctx->dirty |= PAN_DIRTY_RASTERIZER;
179
180 /* XXX */
181 ctx->dirty |= PAN_DIRTY_SAMPLERS | PAN_DIRTY_TEXTURES;
Alyssa Rosenzweig72fc06d2019-08-08 07:10:24 -0700182
183 /* TODO: When does this need to be handled? */
184 ctx->active_queries = true;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000185}
186
187/* In practice, every field of these payloads should be configurable
188 * arbitrarily, which means these functions are basically catch-all's for
189 * as-of-yet unwavering unknowns */
190
191static void
192panfrost_emit_vertex_payload(struct panfrost_context *ctx)
193{
Tomeu Vizoso5a7688f2019-07-11 08:06:41 +0200194 /* 0x2 bit clear on 32-bit T6XX */
195
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000196 struct midgard_payload_vertex_tiler payload = {
Tomeu Vizoso5a7688f2019-07-11 08:06:41 +0200197 .gl_enables = 0x4 | 0x2,
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000198 };
199
Alyssa Rosenzweig3b722412019-07-31 14:56:03 -0700200 /* Vertex and compute are closely coupled, so share a payload */
201
Alyssa Rosenzweig0da52012019-07-31 14:05:14 -0700202 memcpy(&ctx->payloads[PIPE_SHADER_VERTEX], &payload, sizeof(payload));
Alyssa Rosenzweig3b722412019-07-31 14:56:03 -0700203 memcpy(&ctx->payloads[PIPE_SHADER_COMPUTE], &payload, sizeof(payload));
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000204}
205
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000206static unsigned
207translate_tex_wrap(enum pipe_tex_wrap w)
208{
209 switch (w) {
210 case PIPE_TEX_WRAP_REPEAT:
211 return MALI_WRAP_REPEAT;
212
Alyssa Rosenzweig9836c262019-08-20 13:14:56 -0700213 case PIPE_TEX_WRAP_CLAMP:
Alyssa Rosenzweig5fe58272019-12-27 12:42:53 -0500214 return MALI_WRAP_CLAMP;
215
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000216 case PIPE_TEX_WRAP_CLAMP_TO_EDGE:
217 return MALI_WRAP_CLAMP_TO_EDGE;
218
219 case PIPE_TEX_WRAP_CLAMP_TO_BORDER:
220 return MALI_WRAP_CLAMP_TO_BORDER;
221
222 case PIPE_TEX_WRAP_MIRROR_REPEAT:
223 return MALI_WRAP_MIRRORED_REPEAT;
224
Alyssa Rosenzweig5fe58272019-12-27 12:42:53 -0500225 case PIPE_TEX_WRAP_MIRROR_CLAMP:
226 return MALI_WRAP_MIRRORED_CLAMP;
227
228 case PIPE_TEX_WRAP_MIRROR_CLAMP_TO_EDGE:
229 return MALI_WRAP_MIRRORED_CLAMP_TO_EDGE;
230
231 case PIPE_TEX_WRAP_MIRROR_CLAMP_TO_BORDER:
232 return MALI_WRAP_MIRRORED_CLAMP_TO_BORDER;
233
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000234 default:
Alyssa Rosenzweigc65271c2019-05-16 23:42:33 +0000235 unreachable("Invalid wrap");
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000236 }
237}
238
239static unsigned
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000240panfrost_translate_compare_func(enum pipe_compare_func in)
241{
242 switch (in) {
243 case PIPE_FUNC_NEVER:
244 return MALI_FUNC_NEVER;
245
246 case PIPE_FUNC_LESS:
247 return MALI_FUNC_LESS;
248
249 case PIPE_FUNC_EQUAL:
250 return MALI_FUNC_EQUAL;
251
252 case PIPE_FUNC_LEQUAL:
253 return MALI_FUNC_LEQUAL;
254
255 case PIPE_FUNC_GREATER:
256 return MALI_FUNC_GREATER;
257
258 case PIPE_FUNC_NOTEQUAL:
259 return MALI_FUNC_NOTEQUAL;
260
261 case PIPE_FUNC_GEQUAL:
262 return MALI_FUNC_GEQUAL;
263
264 case PIPE_FUNC_ALWAYS:
265 return MALI_FUNC_ALWAYS;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000266
Alyssa Rosenzweigc65271c2019-05-16 23:42:33 +0000267 default:
268 unreachable("Invalid func");
269 }
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000270}
271
272static unsigned
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000273panfrost_translate_stencil_op(enum pipe_stencil_op in)
274{
275 switch (in) {
276 case PIPE_STENCIL_OP_KEEP:
277 return MALI_STENCIL_KEEP;
278
279 case PIPE_STENCIL_OP_ZERO:
280 return MALI_STENCIL_ZERO;
281
282 case PIPE_STENCIL_OP_REPLACE:
283 return MALI_STENCIL_REPLACE;
284
285 case PIPE_STENCIL_OP_INCR:
286 return MALI_STENCIL_INCR;
287
288 case PIPE_STENCIL_OP_DECR:
289 return MALI_STENCIL_DECR;
290
291 case PIPE_STENCIL_OP_INCR_WRAP:
292 return MALI_STENCIL_INCR_WRAP;
293
294 case PIPE_STENCIL_OP_DECR_WRAP:
295 return MALI_STENCIL_DECR_WRAP;
296
297 case PIPE_STENCIL_OP_INVERT:
298 return MALI_STENCIL_INVERT;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000299
Alyssa Rosenzweigc65271c2019-05-16 23:42:33 +0000300 default:
301 unreachable("Invalid stencil op");
302 }
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000303}
304
305static void
306panfrost_make_stencil_state(const struct pipe_stencil_state *in, struct mali_stencil_test *out)
307{
308 out->ref = 0; /* Gallium gets it from elsewhere */
309
310 out->mask = in->valuemask;
311 out->func = panfrost_translate_compare_func(in->func);
312 out->sfail = panfrost_translate_stencil_op(in->fail_op);
313 out->dpfail = panfrost_translate_stencil_op(in->zfail_op);
314 out->dppass = panfrost_translate_stencil_op(in->zpass_op);
315}
316
317static void
318panfrost_default_shader_backend(struct panfrost_context *ctx)
319{
Tomeu Vizosoe40d11c2019-11-05 16:25:27 +0100320 struct panfrost_screen *screen = pan_screen(ctx->base.screen);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000321 struct mali_shader_meta shader = {
322 .alpha_coverage = ~MALI_ALPHA_COVERAGE(0.000000),
323
Alyssa Rosenzweig97aa0542019-02-10 20:06:21 +0000324 .unknown2_3 = MALI_DEPTH_FUNC(MALI_FUNC_ALWAYS) | 0x3010,
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000325 .unknown2_4 = MALI_NO_MSAA | 0x4e0,
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000326 };
327
Tomeu Vizosoe40d11c2019-11-05 16:25:27 +0100328 /* unknown2_4 has 0x10 bit set on T6XX and T720. We don't know why this is
Arnaud Patard397f9ba2019-07-23 06:42:00 -0700329 * required (independent of 32-bit/64-bit descriptors), or why it's not
330 * used on later GPU revisions. Otherwise, all shader jobs fault on
331 * these earlier chips (perhaps this is a chicken bit of some kind).
332 * More investigation is needed. */
333
Tomeu Vizoso6887ff42019-11-28 10:21:06 +0100334 if (screen->quirks & MIDGARD_SFBD)
Arnaud Patard397f9ba2019-07-23 06:42:00 -0700335 shader.unknown2_4 |= 0x10;
Alyssa Rosenzweig97aa0542019-02-10 20:06:21 +0000336
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000337 struct pipe_stencil_state default_stencil = {
338 .enabled = 0,
339 .func = PIPE_FUNC_ALWAYS,
340 .fail_op = MALI_STENCIL_KEEP,
341 .zfail_op = MALI_STENCIL_KEEP,
342 .zpass_op = MALI_STENCIL_KEEP,
343 .writemask = 0xFF,
344 .valuemask = 0xFF
345 };
346
347 panfrost_make_stencil_state(&default_stencil, &shader.stencil_front);
348 shader.stencil_mask_front = default_stencil.writemask;
349
350 panfrost_make_stencil_state(&default_stencil, &shader.stencil_back);
351 shader.stencil_mask_back = default_stencil.writemask;
352
353 if (default_stencil.enabled)
354 shader.unknown2_4 |= MALI_STENCIL_TEST;
355
356 memcpy(&ctx->fragment_shader_core, &shader, sizeof(shader));
357}
358
359/* Generates a vertex/tiler job. This is, in some sense, the heart of the
360 * graphics command stream. It should be called once per draw, accordding to
361 * presentations. Set is_tiler for "tiler" jobs (fragment shader jobs, but in
362 * Mali parlance, "fragment" refers to framebuffer writeout). Clear it for
363 * vertex jobs. */
364
365struct panfrost_transfer
Tomeu Vizoso0e1c5cc2019-05-29 11:25:20 +0200366panfrost_vertex_tiler_job(struct panfrost_context *ctx, bool is_tiler)
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000367{
Boris Brezillon07a68832019-09-01 10:15:23 +0200368 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000369 struct mali_job_descriptor_header job = {
370 .job_type = is_tiler ? JOB_TYPE_TILER : JOB_TYPE_VERTEX,
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000371 .job_descriptor_size = 1,
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000372 };
373
Alyssa Rosenzweig0da52012019-07-31 14:05:14 -0700374 struct midgard_payload_vertex_tiler *payload = is_tiler ? &ctx->payloads[PIPE_SHADER_FRAGMENT] : &ctx->payloads[PIPE_SHADER_VERTEX];
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000375
Boris Brezillon07a68832019-09-01 10:15:23 +0200376 struct panfrost_transfer transfer = panfrost_allocate_transient(batch, sizeof(job) + sizeof(*payload));
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000377 memcpy(transfer.cpu, &job, sizeof(job));
Tomeu Vizoso5a7688f2019-07-11 08:06:41 +0200378 memcpy(transfer.cpu + sizeof(job), payload, sizeof(*payload));
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000379 return transfer;
380}
381
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -0700382mali_ptr
Alyssa Rosenzweig31d9caa2019-04-15 04:08:46 +0000383panfrost_vertex_buffer_address(struct panfrost_context *ctx, unsigned i)
384{
385 struct pipe_vertex_buffer *buf = &ctx->vertex_buffers[i];
386 struct panfrost_resource *rsrc = (struct panfrost_resource *) (buf->buffer.resource);
387
388 return rsrc->bo->gpu + buf->buffer_offset;
389}
390
Alyssa Rosenzweig89b02bf2019-04-13 00:10:20 +0000391static bool
392panfrost_writes_point_size(struct panfrost_context *ctx)
393{
Alyssa Rosenzweigac6aa932019-07-31 14:13:30 -0700394 assert(ctx->shader[PIPE_SHADER_VERTEX]);
395 struct panfrost_shader_state *vs = &ctx->shader[PIPE_SHADER_VERTEX]->variants[ctx->shader[PIPE_SHADER_VERTEX]->active_variant];
Alyssa Rosenzweig89b02bf2019-04-13 00:10:20 +0000396
Alyssa Rosenzweig0da52012019-07-31 14:05:14 -0700397 return vs->writes_point_size && ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.draw_mode == MALI_POINTS;
Alyssa Rosenzweig89b02bf2019-04-13 00:10:20 +0000398}
399
Alyssa Rosenzweig31d9caa2019-04-15 04:08:46 +0000400/* Stage the attribute descriptors so we can adjust src_offset
401 * to let BOs align nicely */
402
403static void
404panfrost_stage_attributes(struct panfrost_context *ctx)
405{
Boris Brezillon07a68832019-09-01 10:15:23 +0200406 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
Alyssa Rosenzweig31d9caa2019-04-15 04:08:46 +0000407 struct panfrost_vertex_state *so = ctx->vertex;
408
Alyssa Rosenzweigbe691ca2019-12-19 14:00:24 -0500409 size_t sz = sizeof(struct mali_attr_meta) * PAN_MAX_ATTRIBUTE;
Boris Brezillon07a68832019-09-01 10:15:23 +0200410 struct panfrost_transfer transfer = panfrost_allocate_transient(batch, sz);
Alyssa Rosenzweig31d9caa2019-04-15 04:08:46 +0000411 struct mali_attr_meta *target = (struct mali_attr_meta *) transfer.cpu;
412
413 /* Copy as-is for the first pass */
414 memcpy(target, so->hw, sz);
415
416 /* Fixup offsets for the second pass. Recall that the hardware
417 * calculates attribute addresses as:
418 *
419 * addr = base + (stride * vtx) + src_offset;
420 *
421 * However, on Mali, base must be aligned to 64-bytes, so we
422 * instead let:
423 *
424 * base' = base & ~63 = base - (base & 63)
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -0700425 *
Alyssa Rosenzweig31d9caa2019-04-15 04:08:46 +0000426 * To compensate when using base' (see emit_vertex_data), we have
427 * to adjust src_offset by the masked off piece:
428 *
429 * addr' = base' + (stride * vtx) + (src_offset + (base & 63))
430 * = base - (base & 63) + (stride * vtx) + src_offset + (base & 63)
431 * = base + (stride * vtx) + src_offset
432 * = addr;
433 *
434 * QED.
435 */
436
Rohan Garg16edd562019-07-17 18:50:13 +0200437 unsigned start = ctx->payloads[PIPE_SHADER_VERTEX].offset_start;
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -0700438
Alyssa Rosenzweig31d9caa2019-04-15 04:08:46 +0000439 for (unsigned i = 0; i < so->num_elements; ++i) {
440 unsigned vbi = so->pipe[i].vertex_buffer_index;
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -0700441 struct pipe_vertex_buffer *buf = &ctx->vertex_buffers[vbi];
Alyssa Rosenzweig31d9caa2019-04-15 04:08:46 +0000442 mali_ptr addr = panfrost_vertex_buffer_address(ctx, vbi);
443
444 /* Adjust by the masked off bits of the offset */
445 target[i].src_offset += (addr & 63);
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -0700446
447 /* Also, somewhat obscurely per-instance data needs to be
448 * offset in response to a delayed start in an indexed draw */
449
Alyssa Rosenzweigbe691ca2019-12-19 14:00:24 -0500450 if (so->pipe[i].instance_divisor && ctx->instance_count > 1 && start)
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -0700451 target[i].src_offset -= buf->stride * start;
Alyssa Rosenzweig31d9caa2019-04-15 04:08:46 +0000452 }
453
Alyssa Rosenzweigbe691ca2019-12-19 14:00:24 -0500454 /* Let's also include vertex builtins */
455
456 target[PAN_VERTEX_ID].format = MALI_R32UI;
457 target[PAN_VERTEX_ID].swizzle = panfrost_get_default_swizzle(1);
458
459 target[PAN_INSTANCE_ID].format = MALI_R32UI;
460 target[PAN_INSTANCE_ID].swizzle = panfrost_get_default_swizzle(1);
461
Alyssa Rosenzweig0da52012019-07-31 14:05:14 -0700462 ctx->payloads[PIPE_SHADER_VERTEX].postfix.attribute_meta = transfer.gpu;
Alyssa Rosenzweig31d9caa2019-04-15 04:08:46 +0000463}
464
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700465static void
466panfrost_upload_sampler_descriptors(struct panfrost_context *ctx)
467{
Boris Brezillon07a68832019-09-01 10:15:23 +0200468 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700469 size_t desc_size = sizeof(struct mali_sampler_descriptor);
470
471 for (int t = 0; t <= PIPE_SHADER_FRAGMENT; ++t) {
Alyssa Rosenzweig0219b992019-06-11 14:21:14 -0700472 mali_ptr upload = 0;
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700473
Alyssa Rosenzweig73bd9fe2019-12-13 12:41:54 -0500474 if (ctx->sampler_count[t]) {
Alyssa Rosenzweig0219b992019-06-11 14:21:14 -0700475 size_t transfer_size = desc_size * ctx->sampler_count[t];
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700476
Alyssa Rosenzweig0219b992019-06-11 14:21:14 -0700477 struct panfrost_transfer transfer =
Boris Brezillon07a68832019-09-01 10:15:23 +0200478 panfrost_allocate_transient(batch, transfer_size);
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700479
Alyssa Rosenzweig0219b992019-06-11 14:21:14 -0700480 struct mali_sampler_descriptor *desc =
481 (struct mali_sampler_descriptor *) transfer.cpu;
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700482
Alyssa Rosenzweig0219b992019-06-11 14:21:14 -0700483 for (int i = 0; i < ctx->sampler_count[t]; ++i)
484 desc[i] = ctx->samplers[t][i]->hw;
485
486 upload = transfer.gpu;
487 }
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700488
Alyssa Rosenzweigcd1be462019-07-31 14:08:07 -0700489 ctx->payloads[t].postfix.sampler_descriptor = upload;
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700490 }
491}
492
Alyssa Rosenzweig9f15f4d2019-08-20 15:36:00 -0700493static enum mali_texture_layout
494panfrost_layout_for_texture(struct panfrost_resource *rsrc)
Alyssa Rosenzweigaaae6182019-07-15 14:59:03 -0700495{
Alyssa Rosenzweigaaae6182019-07-15 14:59:03 -0700496 switch (rsrc->layout) {
497 case PAN_AFBC:
Alyssa Rosenzweig9f15f4d2019-08-20 15:36:00 -0700498 return MALI_TEXTURE_AFBC;
Alyssa Rosenzweigaaae6182019-07-15 14:59:03 -0700499 case PAN_TILED:
Alyssa Rosenzweig9f15f4d2019-08-20 15:36:00 -0700500 return MALI_TEXTURE_TILED;
Alyssa Rosenzweigaaae6182019-07-15 14:59:03 -0700501 case PAN_LINEAR:
Alyssa Rosenzweig6bd9c4d2020-01-10 13:12:35 -0500502 return MALI_TEXTURE_LINEAR;
Alyssa Rosenzweigaaae6182019-07-15 14:59:03 -0700503 default:
Alyssa Rosenzweig9f15f4d2019-08-20 15:36:00 -0700504 unreachable("Invalid texture layout");
Alyssa Rosenzweigaaae6182019-07-15 14:59:03 -0700505 }
Alyssa Rosenzweigaaae6182019-07-15 14:59:03 -0700506}
507
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700508static mali_ptr
509panfrost_upload_tex(
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -0700510 struct panfrost_context *ctx,
Boris Brezillonada752a2019-09-15 09:21:13 +0200511 enum pipe_shader_type st,
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -0700512 struct panfrost_sampler_view *view)
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700513{
514 if (!view)
Alyssa Rosenzweig6d8490f2019-07-11 15:34:56 -0700515 return (mali_ptr) 0;
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700516
Alyssa Rosenzweig53171542019-06-12 15:07:09 -0700517 struct pipe_sampler_view *pview = &view->base;
518 struct panfrost_resource *rsrc = pan_resource(pview->texture);
Tomeu Vizosoed3eede2020-01-02 11:24:19 +0100519 mali_ptr descriptor_gpu;
520 void *descriptor;
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700521
522 /* Do we interleave an explicit stride with every element? */
523
Alyssa Rosenzweigaaae6182019-07-15 14:59:03 -0700524 bool has_manual_stride = view->manual_stride;
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700525
Alyssa Rosenzweig53171542019-06-12 15:07:09 -0700526 /* For easy access */
527
Alyssa Rosenzweig5e268a02019-08-16 10:25:05 -0700528 bool is_buffer = pview->target == PIPE_BUFFER;
529 unsigned first_level = is_buffer ? 0 : pview->u.tex.first_level;
530 unsigned last_level = is_buffer ? 0 : pview->u.tex.last_level;
531 unsigned first_layer = is_buffer ? 0 : pview->u.tex.first_layer;
532 unsigned last_layer = is_buffer ? 0 : pview->u.tex.last_layer;
Alyssa Rosenzweig4152d452020-01-06 21:22:12 -0500533 unsigned first_face = 0;
534 unsigned last_face = 0;
535 unsigned face_mult = 1;
536
537 /* Cubemaps have 6 faces as layers in between each actual layer.
538 * There's a bit of an impedence mismatch between Gallium and the
539 * hardware, let's fixup for it */
540
541 if (pview->target == PIPE_TEXTURE_CUBE || pview->target == PIPE_TEXTURE_CUBE_ARRAY) {
542 /* TODO: logic wrong in the asserted out cases ... can they happen? */
543
544 first_face = first_layer % 6;
545 last_face = last_layer % 6;
546 first_layer /= 6;
547 last_layer /= 6;
548
549 assert((first_layer == last_layer) || (first_face == 0 && last_face == 5));
550 face_mult = 6;
551 }
Alyssa Rosenzweig53171542019-06-12 15:07:09 -0700552
Tomeu Vizoso7c745f62019-06-28 09:17:55 +0200553 /* Lower-bit is set when sampling from colour AFBC */
Boris Brezillonaa5bc352019-07-02 11:37:40 +0200554 bool is_afbc = rsrc->layout == PAN_AFBC;
Tomeu Vizoso7c745f62019-06-28 09:17:55 +0200555 bool is_zs = rsrc->base.bind & PIPE_BIND_DEPTH_STENCIL;
556 unsigned afbc_bit = (is_afbc && !is_zs) ? 1 : 0;
557
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -0700558 /* Add the BO to the job so it's retained until the job is done. */
Boris Brezillon2c526992019-09-05 21:41:26 +0200559 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
Boris Brezillonada752a2019-09-15 09:21:13 +0200560 panfrost_batch_add_bo(batch, rsrc->bo,
561 PAN_BO_ACCESS_SHARED | PAN_BO_ACCESS_READ |
562 panfrost_bo_access_for_stage(st));
Boris Brezillon873b7b92019-07-01 17:22:26 +0200563
Alyssa Rosenzweigaaae6182019-07-15 14:59:03 -0700564 /* Add the usage flags in, since they can change across the CSO
565 * lifetime due to layout switches */
566
Alyssa Rosenzweig9f15f4d2019-08-20 15:36:00 -0700567 view->hw.format.layout = panfrost_layout_for_texture(rsrc);
568 view->hw.format.manual_stride = has_manual_stride;
Alyssa Rosenzweigaaae6182019-07-15 14:59:03 -0700569
Alyssa Rosenzweig4152d452020-01-06 21:22:12 -0500570 /* Inject the addresses in, interleaving array indices, mip levels,
571 * cube faces, and strides in that order */
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700572
573 unsigned idx = 0;
Tomeu Vizosoed3eede2020-01-02 11:24:19 +0100574 unsigned levels = 1 + last_level - first_level;
575 unsigned layers = 1 + last_layer - first_layer;
Alyssa Rosenzweig4152d452020-01-06 21:22:12 -0500576 unsigned faces = 1 + last_face - first_face;
577 unsigned num_elements = levels * layers * faces;
Tomeu Vizosoed3eede2020-01-02 11:24:19 +0100578 if (has_manual_stride)
579 num_elements *= 2;
580
581 descriptor = malloc(sizeof(struct mali_texture_descriptor) +
582 sizeof(mali_ptr) * num_elements);
583 memcpy(descriptor, &view->hw, sizeof(struct mali_texture_descriptor));
584
585 mali_ptr *pointers_and_strides = descriptor +
586 sizeof(struct mali_texture_descriptor);
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700587
Alyssa Rosenzweig4152d452020-01-06 21:22:12 -0500588 for (unsigned w = first_layer; w <= last_layer; ++w) {
589 for (unsigned l = first_level; l <= last_level; ++l) {
590 for (unsigned f = first_face; f <= last_face; ++f) {
Tomeu Vizosoed3eede2020-01-02 11:24:19 +0100591 pointers_and_strides[idx++] =
Alyssa Rosenzweig4152d452020-01-06 21:22:12 -0500592 panfrost_get_texture_address(rsrc, l, w*face_mult + f)
Icecream9531bd3b52020-01-11 19:19:45 +1300593 + afbc_bit + view->astc_stretch;
Alyssa Rosenzweig4152d452020-01-06 21:22:12 -0500594
595 if (has_manual_stride) {
596 pointers_and_strides[idx++] =
597 rsrc->slices[l].stride;
598 }
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700599 }
600 }
601 }
602
Tomeu Vizosoed3eede2020-01-02 11:24:19 +0100603 descriptor_gpu = panfrost_upload_transient(batch, descriptor,
604 sizeof(struct mali_texture_descriptor) +
605 num_elements * sizeof(*pointers_and_strides));
606 free(descriptor);
607
608 return descriptor_gpu;
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700609}
610
611static void
612panfrost_upload_texture_descriptors(struct panfrost_context *ctx)
613{
Boris Brezillon07a68832019-09-01 10:15:23 +0200614 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
615
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700616 for (int t = 0; t <= PIPE_SHADER_FRAGMENT; ++t) {
Alyssa Rosenzweig0219b992019-06-11 14:21:14 -0700617 mali_ptr trampoline = 0;
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700618
Alyssa Rosenzweig0219b992019-06-11 14:21:14 -0700619 if (ctx->sampler_view_count[t]) {
620 uint64_t trampolines[PIPE_MAX_SHADER_SAMPLER_VIEWS];
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700621
Alyssa Rosenzweig0219b992019-06-11 14:21:14 -0700622 for (int i = 0; i < ctx->sampler_view_count[t]; ++i)
623 trampolines[i] =
Boris Brezillonada752a2019-09-15 09:21:13 +0200624 panfrost_upload_tex(ctx, t, ctx->sampler_views[t][i]);
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700625
Boris Brezillon07a68832019-09-01 10:15:23 +0200626 trampoline = panfrost_upload_transient(batch, trampolines, sizeof(uint64_t) * ctx->sampler_view_count[t]);
Alyssa Rosenzweig0219b992019-06-11 14:21:14 -0700627 }
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700628
Alyssa Rosenzweigcd1be462019-07-31 14:08:07 -0700629 ctx->payloads[t].postfix.texture_trampoline = trampoline;
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -0700630 }
631}
632
Boris Brezillonc57f7d02019-06-14 10:41:17 +0200633struct sysval_uniform {
634 union {
635 float f[4];
636 int32_t i[4];
637 uint32_t u[4];
Alyssa Rosenzweig2efa0252019-08-01 11:03:15 -0700638 uint64_t du[2];
Boris Brezillonc57f7d02019-06-14 10:41:17 +0200639 };
640};
641
642static void panfrost_upload_viewport_scale_sysval(struct panfrost_context *ctx,
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -0700643 struct sysval_uniform *uniform)
Boris Brezillonc57f7d02019-06-14 10:41:17 +0200644{
645 const struct pipe_viewport_state *vp = &ctx->pipe_viewport;
646
647 uniform->f[0] = vp->scale[0];
648 uniform->f[1] = vp->scale[1];
649 uniform->f[2] = vp->scale[2];
650}
651
652static void panfrost_upload_viewport_offset_sysval(struct panfrost_context *ctx,
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -0700653 struct sysval_uniform *uniform)
Boris Brezillonc57f7d02019-06-14 10:41:17 +0200654{
655 const struct pipe_viewport_state *vp = &ctx->pipe_viewport;
656
657 uniform->f[0] = vp->translate[0];
658 uniform->f[1] = vp->translate[1];
659 uniform->f[2] = vp->translate[2];
660}
661
Boris Brezillonc3558862019-06-17 22:13:04 +0200662static void panfrost_upload_txs_sysval(struct panfrost_context *ctx,
663 enum pipe_shader_type st,
664 unsigned int sysvalid,
665 struct sysval_uniform *uniform)
666{
667 unsigned texidx = PAN_SYSVAL_ID_TO_TXS_TEX_IDX(sysvalid);
668 unsigned dim = PAN_SYSVAL_ID_TO_TXS_DIM(sysvalid);
669 bool is_array = PAN_SYSVAL_ID_TO_TXS_IS_ARRAY(sysvalid);
670 struct pipe_sampler_view *tex = &ctx->sampler_views[st][texidx]->base;
671
672 assert(dim);
673 uniform->i[0] = u_minify(tex->texture->width0, tex->u.tex.first_level);
674
675 if (dim > 1)
676 uniform->i[1] = u_minify(tex->texture->height0,
677 tex->u.tex.first_level);
678
679 if (dim > 2)
680 uniform->i[2] = u_minify(tex->texture->depth0,
681 tex->u.tex.first_level);
682
683 if (is_array)
684 uniform->i[dim] = tex->texture->array_size;
685}
686
Alyssa Rosenzweig2efa0252019-08-01 11:03:15 -0700687static void panfrost_upload_ssbo_sysval(
688 struct panfrost_context *ctx,
689 enum pipe_shader_type st,
690 unsigned ssbo_id,
691 struct sysval_uniform *uniform)
692{
693 assert(ctx->ssbo_mask[st] & (1 << ssbo_id));
694 struct pipe_shader_buffer sb = ctx->ssbo[st][ssbo_id];
695
696 /* Compute address */
Boris Brezillon2c526992019-09-05 21:41:26 +0200697 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
Alyssa Rosenzweig2efa0252019-08-01 11:03:15 -0700698 struct panfrost_bo *bo = pan_resource(sb.buffer)->bo;
699
Boris Brezillonada752a2019-09-15 09:21:13 +0200700 panfrost_batch_add_bo(batch, bo,
701 PAN_BO_ACCESS_SHARED | PAN_BO_ACCESS_RW |
702 panfrost_bo_access_for_stage(st));
Alyssa Rosenzweig2efa0252019-08-01 11:03:15 -0700703
704 /* Upload address and size as sysval */
705 uniform->du[0] = bo->gpu + sb.buffer_offset;
706 uniform->u[2] = sb.buffer_size;
707}
708
Alyssa Rosenzweig4e07e7b2019-11-21 08:42:28 -0500709static void
710panfrost_upload_sampler_sysval(
711 struct panfrost_context *ctx,
712 enum pipe_shader_type st,
713 unsigned sampler_index,
714 struct sysval_uniform *uniform)
715{
716 struct pipe_sampler_state *sampl =
717 &ctx->samplers[st][sampler_index]->base;
718
719 uniform->f[0] = sampl->min_lod;
720 uniform->f[1] = sampl->max_lod;
721 uniform->f[2] = sampl->lod_bias;
722
723 /* Even without any errata, Midgard represents "no mipmapping" as
724 * fixing the LOD with the clamps; keep behaviour consistent. c.f.
725 * panfrost_create_sampler_state which also explains our choice of
726 * epsilon value (again to keep behaviour consistent) */
727
728 if (sampl->min_mip_filter == PIPE_TEX_MIPFILTER_NONE)
729 uniform->f[1] = uniform->f[0] + (1.0/256.0);
730}
731
Alyssa Rosenzweig15954ab2019-08-06 14:07:10 -0700732static void panfrost_upload_num_work_groups_sysval(struct panfrost_context *ctx,
733 struct sysval_uniform *uniform)
734{
735 uniform->u[0] = ctx->compute_grid->grid[0];
736 uniform->u[1] = ctx->compute_grid->grid[1];
737 uniform->u[2] = ctx->compute_grid->grid[2];
738}
739
Boris Brezillonc57f7d02019-06-14 10:41:17 +0200740static void panfrost_upload_sysvals(struct panfrost_context *ctx, void *buf,
741 struct panfrost_shader_state *ss,
742 enum pipe_shader_type st)
743{
744 struct sysval_uniform *uniforms = (void *)buf;
745
746 for (unsigned i = 0; i < ss->sysval_count; ++i) {
747 int sysval = ss->sysval[i];
748
749 switch (PAN_SYSVAL_TYPE(sysval)) {
750 case PAN_SYSVAL_VIEWPORT_SCALE:
751 panfrost_upload_viewport_scale_sysval(ctx, &uniforms[i]);
752 break;
753 case PAN_SYSVAL_VIEWPORT_OFFSET:
754 panfrost_upload_viewport_offset_sysval(ctx, &uniforms[i]);
755 break;
Boris Brezillonc3558862019-06-17 22:13:04 +0200756 case PAN_SYSVAL_TEXTURE_SIZE:
757 panfrost_upload_txs_sysval(ctx, st, PAN_SYSVAL_ID(sysval),
758 &uniforms[i]);
759 break;
Alyssa Rosenzweig2efa0252019-08-01 11:03:15 -0700760 case PAN_SYSVAL_SSBO:
761 panfrost_upload_ssbo_sysval(ctx, st, PAN_SYSVAL_ID(sysval),
762 &uniforms[i]);
763 break;
Alyssa Rosenzweig15954ab2019-08-06 14:07:10 -0700764 case PAN_SYSVAL_NUM_WORK_GROUPS:
765 panfrost_upload_num_work_groups_sysval(ctx, &uniforms[i]);
766 break;
Alyssa Rosenzweig4e07e7b2019-11-21 08:42:28 -0500767 case PAN_SYSVAL_SAMPLER:
768 panfrost_upload_sampler_sysval(ctx, st, PAN_SYSVAL_ID(sysval),
769 &uniforms[i]);
770 break;
Boris Brezillonc57f7d02019-06-14 10:41:17 +0200771 default:
772 assert(0);
773 }
774 }
775}
776
Alyssa Rosenzweigca2caf02019-06-20 16:07:57 -0700777static const void *
778panfrost_map_constant_buffer_cpu(struct panfrost_constant_buffer *buf, unsigned index)
779{
780 struct pipe_constant_buffer *cb = &buf->cb[index];
781 struct panfrost_resource *rsrc = pan_resource(cb->buffer);
782
783 if (rsrc)
784 return rsrc->bo->cpu;
785 else if (cb->user_buffer)
786 return cb->user_buffer;
787 else
788 unreachable("No constant buffer");
789}
790
Alyssa Rosenzweig856e0392019-06-20 16:32:06 -0700791static mali_ptr
792panfrost_map_constant_buffer_gpu(
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -0700793 struct panfrost_context *ctx,
Boris Brezillonada752a2019-09-15 09:21:13 +0200794 enum pipe_shader_type st,
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -0700795 struct panfrost_constant_buffer *buf,
796 unsigned index)
Alyssa Rosenzweig856e0392019-06-20 16:32:06 -0700797{
798 struct pipe_constant_buffer *cb = &buf->cb[index];
799 struct panfrost_resource *rsrc = pan_resource(cb->buffer);
Boris Brezillonc16fb1f2019-09-14 17:32:02 +0200800 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
Alyssa Rosenzweig856e0392019-06-20 16:32:06 -0700801
Boris Brezillon07a68832019-09-01 10:15:23 +0200802 if (rsrc) {
Boris Brezillonada752a2019-09-15 09:21:13 +0200803 panfrost_batch_add_bo(batch, rsrc->bo,
804 PAN_BO_ACCESS_SHARED |
805 PAN_BO_ACCESS_READ |
806 panfrost_bo_access_for_stage(st));
Alyssa Rosenzweig0b714f32020-01-06 20:39:58 -0500807
808 /* Alignment gauranteed by PIPE_CAP_CONSTANT_BUFFER_OFFSET_ALIGNMENT */
809 return rsrc->bo->gpu + cb->buffer_offset;
Boris Brezillon07a68832019-09-01 10:15:23 +0200810 } else if (cb->user_buffer) {
Alyssa Rosenzweig0b714f32020-01-06 20:39:58 -0500811 return panfrost_upload_transient(batch, cb->user_buffer + cb->buffer_offset, cb->buffer_size);
Boris Brezillon07a68832019-09-01 10:15:23 +0200812 } else {
Alyssa Rosenzweig856e0392019-06-20 16:32:06 -0700813 unreachable("No constant buffer");
Boris Brezillon07a68832019-09-01 10:15:23 +0200814 }
Alyssa Rosenzweig856e0392019-06-20 16:32:06 -0700815}
816
Alyssa Rosenzweig5d60be42019-06-20 16:16:07 -0700817/* Compute number of UBOs active (more specifically, compute the highest UBO
Alyssa Rosenzweig4c6d7512019-06-20 16:21:48 -0700818 * number addressable -- if there are gaps, include them in the count anyway).
819 * We always include UBO #0 in the count, since we *need* uniforms enabled for
820 * sysvals. */
Alyssa Rosenzweig5d60be42019-06-20 16:16:07 -0700821
822static unsigned
823panfrost_ubo_count(struct panfrost_context *ctx, enum pipe_shader_type stage)
824{
Alyssa Rosenzweig4c6d7512019-06-20 16:21:48 -0700825 unsigned mask = ctx->constant_buffer[stage].enabled_mask | 1;
Alyssa Rosenzweig5d60be42019-06-20 16:16:07 -0700826 return 32 - __builtin_clz(mask);
827}
828
Tomeu Vizosoab81a232019-11-20 16:00:23 +0100829/* Fixes up a shader state with current state */
Alyssa Rosenzweigb670bec2019-06-21 11:56:28 -0700830
Tomeu Vizosoab81a232019-11-20 16:00:23 +0100831static void
832panfrost_patch_shader_state(struct panfrost_context *ctx,
833 enum pipe_shader_type stage)
Alyssa Rosenzweigb670bec2019-06-21 11:56:28 -0700834{
Tomeu Vizosoab81a232019-11-20 16:00:23 +0100835 struct panfrost_shader_variants *all = ctx->shader[stage];
836
837 if (!all) {
838 ctx->payloads[stage].postfix.shader = 0;
839 return;
840 }
841
842 struct panfrost_shader_state *ss = &all->variants[all->active_variant];
843
Alyssa Rosenzweigb670bec2019-06-21 11:56:28 -0700844 ss->tripipe->texture_count = ctx->sampler_view_count[stage];
845 ss->tripipe->sampler_count = ctx->sampler_count[stage];
846
847 ss->tripipe->midgard1.flags = 0x220;
848
849 unsigned ubo_count = panfrost_ubo_count(ctx, stage);
850 ss->tripipe->midgard1.uniform_buffer_count = ubo_count;
851
Boris Brezillon12f790f2019-10-01 20:12:12 +0200852 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
853
854 /* Add the shader BO to the batch. */
Boris Brezillonada752a2019-09-15 09:21:13 +0200855 panfrost_batch_add_bo(batch, ss->bo,
856 PAN_BO_ACCESS_PRIVATE |
857 PAN_BO_ACCESS_READ |
858 panfrost_bo_access_for_stage(stage));
Boris Brezillon12f790f2019-10-01 20:12:12 +0200859
Tomeu Vizosoab81a232019-11-20 16:00:23 +0100860 ctx->payloads[stage].postfix.shader = panfrost_upload_transient(batch,
861 ss->tripipe,
862 sizeof(struct mali_shader_meta));
Alyssa Rosenzweig3bfdb872019-07-31 15:05:57 -0700863}
864
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000865/* Go through dirty flags and actualise them in the cmdstream. */
866
867void
868panfrost_emit_for_draw(struct panfrost_context *ctx, bool with_vertex_data)
869{
Boris Brezillon2c526992019-09-05 21:41:26 +0200870 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
Alyssa Rosenzweig990e2442019-07-24 08:46:15 -0700871 struct panfrost_screen *screen = pan_screen(ctx->base.screen);
Alyssa Rosenzweig8c268902019-03-12 23:16:37 +0000872
Boris Brezillon0eec73a2019-09-14 18:40:23 +0200873 panfrost_batch_add_fbo_bos(batch);
Boris Brezillon12f72172019-08-02 19:18:46 +0200874 panfrost_attach_vt_framebuffer(ctx);
Alyssa Rosenzweig718ebfa2019-07-11 11:39:33 -0700875
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000876 if (with_vertex_data) {
Boris Brezillon2c526992019-09-05 21:41:26 +0200877 panfrost_emit_vertex_data(batch);
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -0700878
879 /* Varyings emitted for -all- geometry */
880 unsigned total_count = ctx->padded_count * ctx->instance_count;
881 panfrost_emit_varying_descriptor(ctx, total_count);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000882 }
883
Alyssa Rosenzweig8c268902019-03-12 23:16:37 +0000884 bool msaa = ctx->rasterizer->base.multisample;
885
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000886 if (ctx->dirty & PAN_DIRTY_RASTERIZER) {
Alyssa Rosenzweig0da52012019-07-31 14:05:14 -0700887 ctx->payloads[PIPE_SHADER_FRAGMENT].gl_enables = ctx->rasterizer->tiler_gl_enables;
Alyssa Rosenzweig8c268902019-03-12 23:16:37 +0000888
889 /* TODO: Sample size */
890 SET_BIT(ctx->fragment_shader_core.unknown2_3, MALI_HAS_MSAA, msaa);
891 SET_BIT(ctx->fragment_shader_core.unknown2_4, MALI_NO_MSAA, !msaa);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000892 }
893
Boris Brezillon12d8a172019-09-05 21:41:28 +0200894 panfrost_batch_set_requirements(batch);
Tomeu Vizosobabc3ad2019-06-20 15:37:10 +0200895
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000896 if (ctx->occlusion_query) {
Alyssa Rosenzweiga0c00302019-10-26 09:02:34 -0400897 ctx->payloads[PIPE_SHADER_FRAGMENT].gl_enables |= MALI_OCCLUSION_QUERY;
Urja Rannikkodff99ce2019-10-22 12:05:07 +0000898 ctx->payloads[PIPE_SHADER_FRAGMENT].postfix.occlusion_counter = ctx->occlusion_query->bo->gpu;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000899 }
900
Tomeu Vizosoab81a232019-11-20 16:00:23 +0100901 panfrost_patch_shader_state(ctx, PIPE_SHADER_VERTEX);
902 panfrost_patch_shader_state(ctx, PIPE_SHADER_COMPUTE);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000903
904 if (ctx->dirty & (PAN_DIRTY_RASTERIZER | PAN_DIRTY_VS)) {
905 /* Check if we need to link the gl_PointSize varying */
Alyssa Rosenzweig89b02bf2019-04-13 00:10:20 +0000906 if (!panfrost_writes_point_size(ctx)) {
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000907 /* If the size is constant, write it out. Otherwise,
908 * don't touch primitive_size (since we would clobber
909 * the pointer there) */
910
Alyssa Rosenzweig3909b162019-12-30 12:55:50 -0500911 bool points = ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.draw_mode == MALI_POINTS;
912
913 ctx->payloads[PIPE_SHADER_FRAGMENT].primitive_size.constant = points ?
914 ctx->rasterizer->base.point_size :
915 ctx->rasterizer->base.line_width;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000916 }
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000917 }
918
919 /* TODO: Maybe dirty track FS, maybe not. For now, it's transient. */
Alyssa Rosenzweigac6aa932019-07-31 14:13:30 -0700920 if (ctx->shader[PIPE_SHADER_FRAGMENT])
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000921 ctx->dirty |= PAN_DIRTY_FS;
922
923 if (ctx->dirty & PAN_DIRTY_FS) {
Alyssa Rosenzweigac6aa932019-07-31 14:13:30 -0700924 assert(ctx->shader[PIPE_SHADER_FRAGMENT]);
925 struct panfrost_shader_state *variant = &ctx->shader[PIPE_SHADER_FRAGMENT]->variants[ctx->shader[PIPE_SHADER_FRAGMENT]->active_variant];
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000926
Tomeu Vizosoab81a232019-11-20 16:00:23 +0100927 panfrost_patch_shader_state(ctx, PIPE_SHADER_FRAGMENT);
Alyssa Rosenzweigb670bec2019-06-21 11:56:28 -0700928
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000929#define COPY(name) ctx->fragment_shader_core.name = variant->tripipe->name
930
931 COPY(shader);
932 COPY(attribute_count);
933 COPY(varying_count);
Alyssa Rosenzweigb670bec2019-06-21 11:56:28 -0700934 COPY(texture_count);
935 COPY(sampler_count);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000936 COPY(midgard1.uniform_count);
Alyssa Rosenzweigb670bec2019-06-21 11:56:28 -0700937 COPY(midgard1.uniform_buffer_count);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000938 COPY(midgard1.work_count);
Alyssa Rosenzweigb670bec2019-06-21 11:56:28 -0700939 COPY(midgard1.flags);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000940 COPY(midgard1.unknown2);
941
942#undef COPY
Alyssa Rosenzweig46396af2019-07-05 15:40:08 -0700943
944 /* Get blending setup */
Alyssa Rosenzweig375d4c22019-08-12 16:14:03 -0700945 unsigned rt_count = MAX2(ctx->pipe_framebuffer.nr_cbufs, 1);
Alyssa Rosenzweig46396af2019-07-05 15:40:08 -0700946
Alyssa Rosenzweig375d4c22019-08-12 16:14:03 -0700947 struct panfrost_blend_final blend[PIPE_MAX_COLOR_BUFS];
Alyssa Rosenzweigd58600c2019-12-31 21:37:30 -0500948 unsigned shader_offset = 0;
949 struct panfrost_bo *shader_bo = NULL;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000950
Alyssa Rosenzweigd58600c2019-12-31 21:37:30 -0500951 for (unsigned c = 0; c < rt_count; ++c) {
952 blend[c] = panfrost_get_blend_for_context(ctx, c, &shader_bo, &shader_offset);
953 }
Alyssa Rosenzweig375d4c22019-08-12 16:14:03 -0700954
955 /* If there is a blend shader, work registers are shared. XXX: opt */
956
957 for (unsigned c = 0; c < rt_count; ++c) {
958 if (blend[c].is_shader)
959 ctx->fragment_shader_core.midgard1.work_count = 16;
960 }
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000961
Alyssa Rosenzweigb670bec2019-06-21 11:56:28 -0700962 /* Depending on whether it's legal to in the given shader, we
963 * try to enable early-z testing (or forward-pixel kill?) */
964
Tomeu Vizoso27801b92019-11-12 13:48:54 +0100965 SET_BIT(ctx->fragment_shader_core.midgard1.flags, MALI_EARLY_Z, !variant->can_discard);
Alyssa Rosenzweig8d1adc02019-06-07 16:00:49 -0700966
967 /* Any time texturing is used, derivatives are implicitly
968 * calculated, so we need to enable helper invocations */
969
Tomeu Vizoso27801b92019-11-12 13:48:54 +0100970 SET_BIT(ctx->fragment_shader_core.midgard1.flags, MALI_HELPER_INVOCATIONS, variant->helper_invocations);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000971
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000972 /* Assign the stencil refs late */
Alyssa Rosenzweig65d89092019-07-17 15:42:48 -0700973
974 unsigned front_ref = ctx->stencil_ref.ref_value[0];
975 unsigned back_ref = ctx->stencil_ref.ref_value[1];
976 bool back_enab = ctx->depth_stencil->stencil[1].enabled;
977
978 ctx->fragment_shader_core.stencil_front.ref = front_ref;
979 ctx->fragment_shader_core.stencil_back.ref = back_enab ? back_ref : front_ref;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000980
981 /* CAN_DISCARD should be set if the fragment shader possibly
Alyssa Rosenzweig97aa0542019-02-10 20:06:21 +0000982 * contains a 'discard' instruction. It is likely this is
983 * related to optimizations related to forward-pixel kill, as
984 * per "Mali Performance 3: Is EGL_BUFFER_PRESERVED a good
985 * thing?" by Peter Harris
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000986 */
987
Tomeu Vizoso27801b92019-11-12 13:48:54 +0100988 SET_BIT(ctx->fragment_shader_core.unknown2_3, MALI_CAN_DISCARD, variant->can_discard);
989 SET_BIT(ctx->fragment_shader_core.midgard1.flags, 0x400, variant->can_discard);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000990
Alyssa Rosenzweig09c66922019-05-01 03:21:06 +0000991 /* Even on MFBD, the shader descriptor gets blend shaders. It's
992 * *also* copied to the blend_meta appended (by convention),
993 * but this is the field actually read by the hardware. (Or
Alyssa Rosenzweigd58600c2019-12-31 21:37:30 -0500994 * maybe both are read...?). Specify the last RTi with a blend
995 * shader. */
Alyssa Rosenzweig09c66922019-05-01 03:21:06 +0000996
Alyssa Rosenzweigd58600c2019-12-31 21:37:30 -0500997 ctx->fragment_shader_core.blend.shader = 0;
998
999 for (signed rt = (rt_count - 1); rt >= 0; --rt) {
1000 if (blend[rt].is_shader) {
1001 ctx->fragment_shader_core.blend.shader =
1002 blend[rt].shader.gpu | blend[rt].shader.first_tag;
1003 break;
1004 }
Alyssa Rosenzweig09c66922019-05-01 03:21:06 +00001005 }
1006
Tomeu Vizoso6887ff42019-11-28 10:21:06 +01001007 if (screen->quirks & MIDGARD_SFBD) {
Alyssa Rosenzweig97aa0542019-02-10 20:06:21 +00001008 /* When only a single render target platform is used, the blend
1009 * information is inside the shader meta itself. We
1010 * additionally need to signal CAN_DISCARD for nontrivial blend
1011 * modes (so we're able to read back the destination buffer) */
1012
Tomeu Vizoso27801b92019-11-12 13:48:54 +01001013 SET_BIT(ctx->fragment_shader_core.unknown2_3, MALI_HAS_BLEND_SHADER, blend[0].is_shader);
1014
1015 if (!blend[0].is_shader) {
Alyssa Rosenzweig46396af2019-07-05 15:40:08 -07001016 ctx->fragment_shader_core.blend.equation =
Alyssa Rosenzweig375d4c22019-08-12 16:14:03 -07001017 *blend[0].equation.equation;
Alyssa Rosenzweig46396af2019-07-05 15:40:08 -07001018 ctx->fragment_shader_core.blend.constant =
Alyssa Rosenzweig375d4c22019-08-12 16:14:03 -07001019 blend[0].equation.constant;
Alyssa Rosenzweig97aa0542019-02-10 20:06:21 +00001020 }
1021
Tomeu Vizoso27801b92019-11-12 13:48:54 +01001022 SET_BIT(ctx->fragment_shader_core.unknown2_3, MALI_CAN_DISCARD, !blend[0].no_blending);
Alyssa Rosenzweig97aa0542019-02-10 20:06:21 +00001023 }
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001024
Alyssa Rosenzweig375d4c22019-08-12 16:14:03 -07001025 size_t size = sizeof(struct mali_shader_meta) + (sizeof(struct midgard_blend_rt) * rt_count);
Boris Brezillon07a68832019-09-01 10:15:23 +02001026 struct panfrost_transfer transfer = panfrost_allocate_transient(batch, size);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001027 memcpy(transfer.cpu, &ctx->fragment_shader_core, sizeof(struct mali_shader_meta));
1028
Alyssa Rosenzweigfa14cdf2019-10-27 19:46:21 -04001029 ctx->payloads[PIPE_SHADER_FRAGMENT].postfix.shader = transfer.gpu;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001030
Tomeu Vizoso6887ff42019-11-28 10:21:06 +01001031 if (!(screen->quirks & MIDGARD_SFBD)) {
Alyssa Rosenzweig97aa0542019-02-10 20:06:21 +00001032 /* Additional blend descriptor tacked on for jobs using MFBD */
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001033
Alyssa Rosenzweig050b9342019-05-04 21:57:01 +00001034 struct midgard_blend_rt rts[4];
Alyssa Rosenzweig97aa0542019-02-10 20:06:21 +00001035
Alyssa Rosenzweig375d4c22019-08-12 16:14:03 -07001036 for (unsigned i = 0; i < rt_count; ++i) {
Alyssa Rosenzweigfd819162019-11-12 14:19:52 -05001037 rts[i].flags = 0x200;
Alyssa Rosenzweig375d4c22019-08-12 16:14:03 -07001038
Alyssa Rosenzweig6585bb92019-06-17 16:23:23 -07001039 bool is_srgb =
Alyssa Rosenzweigf0854742019-06-19 11:27:59 -07001040 (ctx->pipe_framebuffer.nr_cbufs > i) &&
Alyssa Rosenzweig227c3952019-07-18 10:59:59 -07001041 (ctx->pipe_framebuffer.cbufs[i]) &&
Alyssa Rosenzweig6585bb92019-06-17 16:23:23 -07001042 util_format_is_srgb(ctx->pipe_framebuffer.cbufs[i]->format);
1043
Alyssa Rosenzweigfd819162019-11-12 14:19:52 -05001044 SET_BIT(rts[i].flags, MALI_BLEND_MRT_SHADER, blend[i].is_shader);
1045 SET_BIT(rts[i].flags, MALI_BLEND_LOAD_TIB, !blend[i].no_blending);
1046 SET_BIT(rts[i].flags, MALI_BLEND_SRGB, is_srgb);
1047 SET_BIT(rts[i].flags, MALI_BLEND_NO_DITHER, !ctx->blend->base.dither);
Alyssa Rosenzweig5c554e22019-07-17 16:19:45 -07001048
Alyssa Rosenzweig375d4c22019-08-12 16:14:03 -07001049 if (blend[i].is_shader) {
Alyssa Rosenzweigd58600c2019-12-31 21:37:30 -05001050 rts[i].blend.shader = blend[i].shader.gpu | blend[i].shader.first_tag;
Alyssa Rosenzweig3645c782019-05-18 20:36:00 +00001051 } else {
Alyssa Rosenzweig375d4c22019-08-12 16:14:03 -07001052 rts[i].blend.equation = *blend[i].equation.equation;
1053 rts[i].blend.constant = blend[i].equation.constant;
Alyssa Rosenzweig3645c782019-05-18 20:36:00 +00001054 }
Alyssa Rosenzweig09c66922019-05-01 03:21:06 +00001055 }
Alyssa Rosenzweig97aa0542019-02-10 20:06:21 +00001056
Alyssa Rosenzweig375d4c22019-08-12 16:14:03 -07001057 memcpy(transfer.cpu + sizeof(struct mali_shader_meta), rts, sizeof(rts[0]) * rt_count);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001058 }
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001059 }
1060
Alyssa Rosenzweig31d9caa2019-04-15 04:08:46 +00001061 /* We stage to transient, so always dirty.. */
Alyssa Rosenzweiga34370e2019-07-31 15:06:14 -07001062 if (ctx->vertex)
1063 panfrost_stage_attributes(ctx);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001064
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -07001065 if (ctx->dirty & PAN_DIRTY_SAMPLERS)
1066 panfrost_upload_sampler_descriptors(ctx);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001067
Alyssa Rosenzweig416fc3b2019-06-07 14:25:28 -07001068 if (ctx->dirty & PAN_DIRTY_TEXTURES)
1069 panfrost_upload_texture_descriptors(ctx);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001070
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001071 const struct pipe_viewport_state *vp = &ctx->pipe_viewport;
1072
Alyssa Rosenzweig428bed32019-07-31 15:06:38 -07001073 for (int i = 0; i < PIPE_SHADER_TYPES; ++i) {
1074 struct panfrost_shader_variants *all = ctx->shader[i];
1075
1076 if (!all)
1077 continue;
1078
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001079 struct panfrost_constant_buffer *buf = &ctx->constant_buffer[i];
1080
Alyssa Rosenzweig428bed32019-07-31 15:06:38 -07001081 struct panfrost_shader_state *ss = &all->variants[all->active_variant];
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001082
Alyssa Rosenzweigca2caf02019-06-20 16:07:57 -07001083 /* Uniforms are implicitly UBO #0 */
1084 bool has_uniforms = buf->enabled_mask & (1 << 0);
1085
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001086 /* Allocate room for the sysval and the uniforms */
1087 size_t sys_size = sizeof(float) * 4 * ss->sysval_count;
Alyssa Rosenzweigca2caf02019-06-20 16:07:57 -07001088 size_t uniform_size = has_uniforms ? (buf->cb[0].buffer_size) : 0;
1089 size_t size = sys_size + uniform_size;
Boris Brezillon07a68832019-09-01 10:15:23 +02001090 struct panfrost_transfer transfer = panfrost_allocate_transient(batch, size);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001091
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001092 /* Upload sysvals requested by the shader */
Boris Brezillonc57f7d02019-06-14 10:41:17 +02001093 panfrost_upload_sysvals(ctx, transfer.cpu, ss, i);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001094
1095 /* Upload uniforms */
Icecream9580048742020-01-24 19:45:17 +13001096 if (has_uniforms && uniform_size) {
Alyssa Rosenzweigca2caf02019-06-20 16:07:57 -07001097 const void *cpu = panfrost_map_constant_buffer_cpu(buf, 0);
1098 memcpy(transfer.cpu + sys_size, cpu, uniform_size);
1099 }
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001100
Alyssa Rosenzweig3113be32019-07-31 14:15:19 -07001101 int uniform_count =
1102 ctx->shader[i]->variants[ctx->shader[i]->active_variant].uniform_count;
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001103
Alyssa Rosenzweigcd1be462019-07-31 14:08:07 -07001104 struct mali_vertex_tiler_postfix *postfix =
1105 &ctx->payloads[i].postfix;
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001106
Alyssa Rosenzweig4c6d7512019-06-20 16:21:48 -07001107 /* Next up, attach UBOs. UBO #0 is the uniforms we just
1108 * uploaded */
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001109
Alyssa Rosenzweig4c6d7512019-06-20 16:21:48 -07001110 unsigned ubo_count = panfrost_ubo_count(ctx, i);
1111 assert(ubo_count >= 1);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001112
Alyssa Rosenzweig4c6d7512019-06-20 16:21:48 -07001113 size_t sz = sizeof(struct mali_uniform_buffer_meta) * ubo_count;
Alyssa Rosenzweigfae790e2019-07-15 11:30:35 -07001114 struct mali_uniform_buffer_meta ubos[PAN_MAX_CONST_BUFFERS];
Alyssa Rosenzweig4c6d7512019-06-20 16:21:48 -07001115
1116 /* Upload uniforms as a UBO */
1117 ubos[0].size = MALI_POSITIVE((2 + uniform_count));
1118 ubos[0].ptr = transfer.gpu >> 2;
1119
Alyssa Rosenzweig856e0392019-06-20 16:32:06 -07001120 /* The rest are honest-to-goodness UBOs */
1121
1122 for (unsigned ubo = 1; ubo < ubo_count; ++ubo) {
Alyssa Rosenzweig42f0aae2019-08-30 17:37:22 -07001123 size_t usz = buf->cb[ubo].buffer_size;
Alyssa Rosenzweig856e0392019-06-20 16:32:06 -07001124
Alyssa Rosenzweigf28e9e82019-06-20 16:51:08 -07001125 bool enabled = buf->enabled_mask & (1 << ubo);
Alyssa Rosenzweig42f0aae2019-08-30 17:37:22 -07001126 bool empty = usz == 0;
Alyssa Rosenzweigf28e9e82019-06-20 16:51:08 -07001127
1128 if (!enabled || empty) {
1129 /* Stub out disabled UBOs to catch accesses */
1130
1131 ubos[ubo].size = 0;
1132 ubos[ubo].ptr = 0xDEAD0000;
1133 continue;
1134 }
1135
Boris Brezillonada752a2019-09-15 09:21:13 +02001136 mali_ptr gpu = panfrost_map_constant_buffer_gpu(ctx, i, buf, ubo);
Alyssa Rosenzweigf28e9e82019-06-20 16:51:08 -07001137
Alyssa Rosenzweig856e0392019-06-20 16:32:06 -07001138 unsigned bytes_per_field = 16;
Alyssa Rosenzweig42f0aae2019-08-30 17:37:22 -07001139 unsigned aligned = ALIGN_POT(usz, bytes_per_field);
Alyssa Rosenzweig856e0392019-06-20 16:32:06 -07001140 unsigned fields = aligned / bytes_per_field;
1141
1142 ubos[ubo].size = MALI_POSITIVE(fields);
1143 ubos[ubo].ptr = gpu >> 2;
1144 }
1145
Boris Brezillon07a68832019-09-01 10:15:23 +02001146 mali_ptr ubufs = panfrost_upload_transient(batch, ubos, sz);
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +00001147 postfix->uniforms = transfer.gpu;
1148 postfix->uniform_buffers = ubufs;
1149
Alyssa Rosenzweigca2caf02019-06-20 16:07:57 -07001150 buf->dirty_mask = 0;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001151 }
1152
Alyssa Rosenzweig2eb65c22019-03-13 01:50:40 +00001153 /* TODO: Upload the viewport somewhere more appropriate */
1154
1155 /* Clip bounds are encoded as floats. The viewport itself is encoded as
1156 * (somewhat) asymmetric ints. */
1157 const struct pipe_scissor_state *ss = &ctx->scissor;
1158
1159 struct mali_viewport view = {
1160 /* By default, do no viewport clipping, i.e. clip to (-inf,
1161 * inf) in each direction. Clipping to the viewport in theory
1162 * should work, but in practice causes issues when we're not
1163 * explicitly trying to scissor */
1164
Alyssa Rosenzweig7c82dfb2019-07-05 08:25:56 -07001165 .clip_minx = -INFINITY,
1166 .clip_miny = -INFINITY,
1167 .clip_maxx = INFINITY,
1168 .clip_maxy = INFINITY,
Alyssa Rosenzweig2eb65c22019-03-13 01:50:40 +00001169 };
1170
Alyssa Rosenzweigbd9446e2019-03-24 20:01:15 +00001171 /* Always scissor to the viewport by default. */
Alyssa Rosenzweigfad76472019-07-17 16:30:09 -07001172 float vp_minx = (int) (vp->translate[0] - fabsf(vp->scale[0]));
1173 float vp_maxx = (int) (vp->translate[0] + fabsf(vp->scale[0]));
Alyssa Rosenzweigbd9446e2019-03-24 20:01:15 +00001174
Alyssa Rosenzweigfad76472019-07-17 16:30:09 -07001175 float vp_miny = (int) (vp->translate[1] - fabsf(vp->scale[1]));
1176 float vp_maxy = (int) (vp->translate[1] + fabsf(vp->scale[1]));
Alyssa Rosenzweigbd9446e2019-03-24 20:01:15 +00001177
Alyssa Rosenzweigd4542f82019-08-16 10:25:34 -07001178 float minz = (vp->translate[2] - fabsf(vp->scale[2]));
1179 float maxz = (vp->translate[2] + fabsf(vp->scale[2]));
1180
Alyssa Rosenzweigfc3f57b2019-06-14 12:25:26 -07001181 /* Apply the scissor test */
Alyssa Rosenzweig2adf35e2019-05-23 03:01:32 +00001182
Alyssa Rosenzweigfad76472019-07-17 16:30:09 -07001183 unsigned minx, miny, maxx, maxy;
1184
Alyssa Rosenzweigfc3f57b2019-06-14 12:25:26 -07001185 if (ss && ctx->rasterizer && ctx->rasterizer->base.scissor) {
Alyssa Rosenzweigfad76472019-07-17 16:30:09 -07001186 minx = MAX2(ss->minx, vp_minx);
1187 miny = MAX2(ss->miny, vp_miny);
1188 maxx = MIN2(ss->maxx, vp_maxx);
1189 maxy = MIN2(ss->maxy, vp_maxy);
1190 } else {
1191 minx = vp_minx;
1192 miny = vp_miny;
1193 maxx = vp_maxx;
1194 maxy = vp_maxy;
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07001195 }
Alyssa Rosenzweig2eb65c22019-03-13 01:50:40 +00001196
Alyssa Rosenzweig2adf35e2019-05-23 03:01:32 +00001197 /* Hardware needs the min/max to be strictly ordered, so flip if we
Alyssa Rosenzweigfc3f57b2019-06-14 12:25:26 -07001198 * need to. The viewport transformation in the vertex shader will
1199 * handle the negatives if we don't */
1200
Alyssa Rosenzweig2adf35e2019-05-23 03:01:32 +00001201 if (miny > maxy) {
Alyssa Rosenzweig8fba6ab2019-08-21 09:21:19 -07001202 unsigned temp = miny;
Alyssa Rosenzweig2adf35e2019-05-23 03:01:32 +00001203 miny = maxy;
1204 maxy = temp;
1205 }
1206
Alyssa Rosenzweigfc3f57b2019-06-14 12:25:26 -07001207 if (minx > maxx) {
Alyssa Rosenzweig8fba6ab2019-08-21 09:21:19 -07001208 unsigned temp = minx;
Alyssa Rosenzweigfc3f57b2019-06-14 12:25:26 -07001209 minx = maxx;
1210 maxx = temp;
1211 }
1212
Alyssa Rosenzweigd4542f82019-08-16 10:25:34 -07001213 if (minz > maxz) {
1214 float temp = minz;
1215 minz = maxz;
1216 maxz = temp;
1217 }
1218
Alyssa Rosenzweigfc3f57b2019-06-14 12:25:26 -07001219 /* Clamp to the framebuffer size as a last check */
1220
1221 minx = MIN2(ctx->pipe_framebuffer.width, minx);
1222 maxx = MIN2(ctx->pipe_framebuffer.width, maxx);
1223
1224 miny = MIN2(ctx->pipe_framebuffer.height, miny);
1225 maxy = MIN2(ctx->pipe_framebuffer.height, maxy);
1226
Alyssa Rosenzweigc3788292019-06-18 12:30:55 -07001227 /* Update the job, unless we're doing wallpapering (whose lack of
1228 * scissor we can ignore, since if we "miss" a tile of wallpaper, it'll
1229 * just... be faster :) */
1230
Alyssa Rosenzweigf0854742019-06-19 11:27:59 -07001231 if (!ctx->wallpaper_batch)
Boris Brezillon2c526992019-09-05 21:41:26 +02001232 panfrost_batch_union_scissor(batch, minx, miny, maxx, maxy);
Alyssa Rosenzweigc3788292019-06-18 12:30:55 -07001233
Alyssa Rosenzweigfc3f57b2019-06-14 12:25:26 -07001234 /* Upload */
1235
1236 view.viewport0[0] = minx;
1237 view.viewport1[0] = MALI_POSITIVE(maxx);
1238
Alyssa Rosenzweig2adf35e2019-05-23 03:01:32 +00001239 view.viewport0[1] = miny;
1240 view.viewport1[1] = MALI_POSITIVE(maxy);
1241
Alyssa Rosenzweigd4542f82019-08-16 10:25:34 -07001242 view.clip_minz = minz;
1243 view.clip_maxz = maxz;
1244
Alyssa Rosenzweig0da52012019-07-31 14:05:14 -07001245 ctx->payloads[PIPE_SHADER_FRAGMENT].postfix.viewport =
Boris Brezillon07a68832019-09-01 10:15:23 +02001246 panfrost_upload_transient(batch,
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07001247 &view,
1248 sizeof(struct mali_viewport));
Alyssa Rosenzweig2eb65c22019-03-13 01:50:40 +00001249
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001250 ctx->dirty = 0;
1251}
1252
1253/* Corresponds to exactly one draw, but does not submit anything */
1254
1255static void
1256panfrost_queue_draw(struct panfrost_context *ctx)
1257{
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001258 /* Handle dirty flags now */
1259 panfrost_emit_for_draw(ctx, true);
1260
Alyssa Rosenzweigcd5d6182019-06-20 15:25:17 -07001261 /* If rasterizer discard is enable, only submit the vertex */
1262
1263 bool rasterizer_discard = ctx->rasterizer
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07001264 && ctx->rasterizer->base.rasterizer_discard;
Alyssa Rosenzweigcd5d6182019-06-20 15:25:17 -07001265
Tomeu Vizoso0e1c5cc2019-05-29 11:25:20 +02001266 struct panfrost_transfer vertex = panfrost_vertex_tiler_job(ctx, false);
Alyssa Rosenzweigcd5d6182019-06-20 15:25:17 -07001267 struct panfrost_transfer tiler;
1268
1269 if (!rasterizer_discard)
1270 tiler = panfrost_vertex_tiler_job(ctx, true);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001271
Boris Brezillon2c526992019-09-05 21:41:26 +02001272 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
Alyssa Rosenzweigf0854742019-06-19 11:27:59 -07001273
Alyssa Rosenzweigcd5d6182019-06-20 15:25:17 -07001274 if (rasterizer_discard)
1275 panfrost_scoreboard_queue_vertex_job(batch, vertex, FALSE);
Boris Brezillon71eda742019-09-20 08:55:54 +02001276 else if (ctx->wallpaper_batch && batch->first_tiler.gpu)
Alyssa Rosenzweigf0854742019-06-19 11:27:59 -07001277 panfrost_scoreboard_queue_fused_job_prepend(batch, vertex, tiler);
1278 else
1279 panfrost_scoreboard_queue_fused_job(batch, vertex, tiler);
Alyssa Rosenzweigbc887e82019-12-09 11:18:47 -05001280
1281 for (unsigned i = 0; i < PIPE_SHADER_TYPES; ++i) {
1282 struct panfrost_shader_variants *all = ctx->shader[i];
1283
1284 if (!all)
1285 continue;
1286
1287 struct panfrost_shader_state *ss = &all->variants[all->active_variant];
1288 batch->stack_size = MAX2(batch->stack_size, ss->stack_size);
1289 }
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001290}
1291
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001292/* The entire frame is in memory -- send it off to the kernel! */
1293
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001294void
1295panfrost_flush(
1296 struct pipe_context *pipe,
1297 struct pipe_fence_handle **fence,
1298 unsigned flags)
1299{
1300 struct panfrost_context *ctx = pan_context(pipe);
Boris Brezillonb5d8f9b2019-09-15 18:23:10 +02001301 struct util_dynarray fences;
1302
1303 /* We must collect the fences before the flush is done, otherwise we'll
1304 * lose track of them.
1305 */
1306 if (fence) {
1307 util_dynarray_init(&fences, NULL);
Boris Brezillona45984b2019-09-15 19:15:16 +02001308 hash_table_foreach(ctx->batches, hentry) {
1309 struct panfrost_batch *batch = hentry->data;
1310
1311 panfrost_batch_fence_reference(batch->out_sync);
1312 util_dynarray_append(&fences,
1313 struct panfrost_batch_fence *,
1314 batch->out_sync);
1315 }
Boris Brezillonb5d8f9b2019-09-15 18:23:10 +02001316 }
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001317
Boris Brezillona45984b2019-09-15 19:15:16 +02001318 /* Submit all pending jobs */
1319 panfrost_flush_all_batches(ctx, false);
Boris Brezillon2fc91a12019-09-05 19:14:25 +02001320
1321 if (fence) {
Boris Brezillonb5d8f9b2019-09-15 18:23:10 +02001322 struct panfrost_fence *f = panfrost_fence_create(ctx, &fences);
Boris Brezillon2fc91a12019-09-05 19:14:25 +02001323 pipe->screen->fence_reference(pipe->screen, fence, NULL);
1324 *fence = (struct pipe_fence_handle *)f;
Boris Brezillonb5d8f9b2019-09-15 18:23:10 +02001325
1326 util_dynarray_foreach(&fences, struct panfrost_batch_fence *, fence)
1327 panfrost_batch_fence_unreference(*fence);
1328
1329 util_dynarray_fini(&fences);
Boris Brezillon2fc91a12019-09-05 19:14:25 +02001330 }
Icecream95cf2c5a52020-01-23 10:32:18 +13001331
1332 if (pan_debug & PAN_DBG_TRACE)
1333 pandecode_next_frame();
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001334}
1335
1336#define DEFINE_CASE(c) case PIPE_PRIM_##c: return MALI_##c;
1337
1338static int
1339g2m_draw_mode(enum pipe_prim_type mode)
1340{
1341 switch (mode) {
1342 DEFINE_CASE(POINTS);
1343 DEFINE_CASE(LINES);
1344 DEFINE_CASE(LINE_LOOP);
1345 DEFINE_CASE(LINE_STRIP);
1346 DEFINE_CASE(TRIANGLES);
1347 DEFINE_CASE(TRIANGLE_STRIP);
1348 DEFINE_CASE(TRIANGLE_FAN);
1349 DEFINE_CASE(QUADS);
1350 DEFINE_CASE(QUAD_STRIP);
1351 DEFINE_CASE(POLYGON);
1352
1353 default:
Alyssa Rosenzweigc65271c2019-05-16 23:42:33 +00001354 unreachable("Invalid draw mode");
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001355 }
1356}
1357
1358#undef DEFINE_CASE
1359
1360static unsigned
1361panfrost_translate_index_size(unsigned size)
1362{
1363 switch (size) {
1364 case 1:
1365 return MALI_DRAW_INDEXED_UINT8;
1366
1367 case 2:
1368 return MALI_DRAW_INDEXED_UINT16;
1369
1370 case 4:
1371 return MALI_DRAW_INDEXED_UINT32;
1372
1373 default:
Alyssa Rosenzweigc65271c2019-05-16 23:42:33 +00001374 unreachable("Invalid index size");
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001375 }
1376}
1377
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001378/* Gets a GPU address for the associated index buffer. Only gauranteed to be
1379 * good for the duration of the draw (transient), could last longer */
1380
1381static mali_ptr
1382panfrost_get_index_buffer_mapped(struct panfrost_context *ctx, const struct pipe_draw_info *info)
1383{
1384 struct panfrost_resource *rsrc = (struct panfrost_resource *) (info->index.resource);
1385
1386 off_t offset = info->start * info->index_size;
Boris Brezillon2c526992019-09-05 21:41:26 +02001387 struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001388
1389 if (!info->has_user_indices) {
1390 /* Only resources can be directly mapped */
Boris Brezillonada752a2019-09-15 09:21:13 +02001391 panfrost_batch_add_bo(batch, rsrc->bo,
1392 PAN_BO_ACCESS_SHARED |
1393 PAN_BO_ACCESS_READ |
1394 PAN_BO_ACCESS_VERTEX_TILER);
Alyssa Rosenzweig61708142019-03-21 02:54:38 +00001395 return rsrc->bo->gpu + offset;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001396 } else {
1397 /* Otherwise, we need to upload to transient memory */
Alyssa Rosenzweig89b02bf2019-04-13 00:10:20 +00001398 const uint8_t *ibuf8 = (const uint8_t *) info->index.user;
Boris Brezillon07a68832019-09-01 10:15:23 +02001399 return panfrost_upload_transient(batch, ibuf8 + offset, info->count * info->index_size);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001400 }
1401}
1402
Alyssa Rosenzweig9865b792019-06-17 09:26:34 -07001403static bool
1404panfrost_scissor_culls_everything(struct panfrost_context *ctx)
1405{
1406 const struct pipe_scissor_state *ss = &ctx->scissor;
1407
1408 /* Check if we're scissoring at all */
1409
Boris Brezillon443e5302019-06-26 11:16:31 +02001410 if (!(ctx->rasterizer && ctx->rasterizer->base.scissor))
Alyssa Rosenzweig9865b792019-06-17 09:26:34 -07001411 return false;
1412
Alyssa Rosenzweig124f6b52019-06-24 14:13:20 -07001413 return (ss->minx == ss->maxx) || (ss->miny == ss->maxy);
Alyssa Rosenzweig9865b792019-06-17 09:26:34 -07001414}
1415
Alyssa Rosenzweig72fc06d2019-08-08 07:10:24 -07001416/* Count generated primitives (when there is no geom/tess shaders) for
1417 * transform feedback */
1418
1419static void
1420panfrost_statistics_record(
1421 struct panfrost_context *ctx,
1422 const struct pipe_draw_info *info)
1423{
1424 if (!ctx->active_queries)
1425 return;
1426
1427 uint32_t prims = u_prims_for_vertices(info->mode, info->count);
1428 ctx->prims_generated += prims;
1429
Alyssa Rosenzweig42f0aae2019-08-30 17:37:22 -07001430 if (!ctx->streamout.num_targets)
Alyssa Rosenzweig72fc06d2019-08-08 07:10:24 -07001431 return;
1432
1433 ctx->tf_prims_generated += prims;
1434}
1435
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001436static void
1437panfrost_draw_vbo(
1438 struct pipe_context *pipe,
1439 const struct pipe_draw_info *info)
1440{
1441 struct panfrost_context *ctx = pan_context(pipe);
1442
Alyssa Rosenzweig9865b792019-06-17 09:26:34 -07001443 /* First of all, check the scissor to see if anything is drawn at all.
1444 * If it's not, we drop the draw (mostly a conformance issue;
1445 * well-behaved apps shouldn't hit this) */
1446
1447 if (panfrost_scissor_culls_everything(ctx))
1448 return;
1449
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001450 int mode = info->mode;
1451
Alyssa Rosenzweig7f548122019-06-26 15:59:29 -07001452 /* Fallback unsupported restart index */
1453 unsigned primitive_index = (1 << (info->index_size * 8)) - 1;
1454
1455 if (info->primitive_restart && info->index_size
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07001456 && info->restart_index != primitive_index) {
Alyssa Rosenzweig7f548122019-06-26 15:59:29 -07001457 util_draw_vbo_without_prim_restart(pipe, info);
1458 return;
1459 }
1460
Alyssa Rosenzweig85e2bb52019-02-08 02:28:12 +00001461 /* Fallback for unsupported modes */
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001462
Alyssa Rosenzweig27b62642019-08-21 09:40:11 -07001463 assert(ctx->rasterizer != NULL);
1464
Alyssa Rosenzweig7c02c4f2019-03-15 02:13:34 +00001465 if (!(ctx->draw_modes & (1 << mode))) {
Alyssa Rosenzweig27b62642019-08-21 09:40:11 -07001466 if (mode == PIPE_PRIM_QUADS && info->count == 4 && !ctx->rasterizer->base.flatshade) {
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001467 mode = PIPE_PRIM_TRIANGLE_FAN;
1468 } else {
1469 if (info->count < 4) {
1470 /* Degenerate case? */
1471 return;
1472 }
1473
1474 util_primconvert_save_rasterizer_state(ctx->primconvert, &ctx->rasterizer->base);
1475 util_primconvert_draw_vbo(ctx->primconvert, info);
1476 return;
1477 }
1478 }
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001479
Boris Brezillon835439b2019-09-05 21:01:20 +02001480 ctx->payloads[PIPE_SHADER_VERTEX].offset_start = info->start;
1481 ctx->payloads[PIPE_SHADER_FRAGMENT].offset_start = info->start;
1482
Alyssa Rosenzweig59c96232019-02-25 05:32:16 +00001483 /* Now that we have a guaranteed terminating path, find the job.
1484 * Assignment commented out to prevent unused warning */
1485
Boris Brezillon2c526992019-09-05 21:41:26 +02001486 /* struct panfrost_batch *batch = */ panfrost_get_batch_for_fbo(ctx);
Alyssa Rosenzweig59c96232019-02-25 05:32:16 +00001487
Alyssa Rosenzweig0da52012019-07-31 14:05:14 -07001488 ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.draw_mode = g2m_draw_mode(mode);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001489
Rohan Garg16edd562019-07-17 18:50:13 +02001490 /* Take into account a negative bias */
1491 ctx->vertex_count = info->count + abs(info->index_bias);
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001492 ctx->instance_count = info->instance_count;
Alyssa Rosenzweig7c295882019-08-08 08:16:09 -07001493 ctx->active_prim = info->mode;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001494
1495 /* For non-indexed draws, they're the same */
Alyssa Rosenzweigc9b164f2019-06-27 08:29:06 -07001496 unsigned vertex_count = ctx->vertex_count;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001497
Alyssa Rosenzweig89b02bf2019-04-13 00:10:20 +00001498 unsigned draw_flags = 0;
1499
1500 /* The draw flags interpret how primitive size is interpreted */
1501
1502 if (panfrost_writes_point_size(ctx))
1503 draw_flags |= MALI_DRAW_VARYING_SIZE;
1504
Alyssa Rosenzweig7f548122019-06-26 15:59:29 -07001505 if (info->primitive_restart)
1506 draw_flags |= MALI_DRAW_PRIMITIVE_RESTART_FIXED_INDEX;
1507
Alyssa Rosenzweig6ddaa552019-11-22 11:45:13 -05001508 /* These doesn't make much sense */
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001509
Alyssa Rosenzweig6ddaa552019-11-22 11:45:13 -05001510 draw_flags |= 0x3000;
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001511
Alyssa Rosenzweig71df7c62019-12-27 15:33:21 -05001512 if (ctx->rasterizer && ctx->rasterizer->base.flatshade_first)
1513 draw_flags |= MALI_DRAW_FLATSHADE_FIRST;
Alyssa Rosenzweig0e4c3212019-03-31 04:26:48 +00001514
Alyssa Rosenzweig72fc06d2019-08-08 07:10:24 -07001515 panfrost_statistics_record(ctx, info);
1516
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001517 if (info->index_size) {
1518 /* Calculate the min/max index used so we can figure out how
1519 * many times to invoke the vertex shader */
1520
Alyssa Rosenzweig89b02bf2019-04-13 00:10:20 +00001521 /* Fetch / calculate index bounds */
1522 unsigned min_index = 0, max_index = 0;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001523
Alyssa Rosenzweig89b02bf2019-04-13 00:10:20 +00001524 if (info->max_index == ~0u) {
1525 u_vbuf_get_minmax_index(pipe, info, &min_index, &max_index);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001526 } else {
Alyssa Rosenzweig89b02bf2019-04-13 00:10:20 +00001527 min_index = info->min_index;
1528 max_index = info->max_index;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001529 }
1530
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001531 /* Use the corresponding values */
Alyssa Rosenzweigc9b164f2019-06-27 08:29:06 -07001532 vertex_count = max_index - min_index + 1;
Rohan Garg16edd562019-07-17 18:50:13 +02001533 ctx->payloads[PIPE_SHADER_VERTEX].offset_start = min_index + info->index_bias;
1534 ctx->payloads[PIPE_SHADER_FRAGMENT].offset_start = min_index + info->index_bias;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001535
Rohan Garg16edd562019-07-17 18:50:13 +02001536 ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.offset_bias_correction = -min_index;
Alyssa Rosenzweig0da52012019-07-31 14:05:14 -07001537 ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.index_count = MALI_POSITIVE(info->count);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001538
1539 //assert(!info->restart_index); /* TODO: Research */
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001540
Alyssa Rosenzweig89b02bf2019-04-13 00:10:20 +00001541 draw_flags |= panfrost_translate_index_size(info->index_size);
Alyssa Rosenzweig0da52012019-07-31 14:05:14 -07001542 ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.indices = panfrost_get_index_buffer_mapped(ctx, info);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001543 } else {
1544 /* Index count == vertex count, if no indexing is applied, as
1545 * if it is internally indexed in the expected order */
1546
Rohan Garg16edd562019-07-17 18:50:13 +02001547 ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.offset_bias_correction = 0;
Alyssa Rosenzweig0da52012019-07-31 14:05:14 -07001548 ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.index_count = MALI_POSITIVE(ctx->vertex_count);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001549
1550 /* Reverse index state */
Alyssa Rosenzweige39c5272020-01-24 08:26:38 -05001551 ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.indices = (mali_ptr) 0;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001552 }
1553
Alyssa Rosenzweigc9b164f2019-06-27 08:29:06 -07001554 /* Dispatch "compute jobs" for the vertex/tiler pair as (1,
1555 * vertex_count, 1) */
1556
1557 panfrost_pack_work_groups_fused(
Alyssa Rosenzweig0da52012019-07-31 14:05:14 -07001558 &ctx->payloads[PIPE_SHADER_VERTEX].prefix,
1559 &ctx->payloads[PIPE_SHADER_FRAGMENT].prefix,
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07001560 1, vertex_count, info->instance_count,
1561 1, 1, 1);
Alyssa Rosenzweigc9b164f2019-06-27 08:29:06 -07001562
Alyssa Rosenzweig0da52012019-07-31 14:05:14 -07001563 ctx->payloads[PIPE_SHADER_FRAGMENT].prefix.unknown_draw = draw_flags;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001564
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001565 /* Encode the padded vertex count */
1566
1567 if (info->instance_count > 1) {
Alyssa Rosenzweigd36ca7c2019-12-19 16:46:43 -05001568 ctx->padded_count = panfrost_padded_vertex_count(vertex_count);
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001569
Alyssa Rosenzweigd36ca7c2019-12-19 16:46:43 -05001570 unsigned shift = __builtin_ctz(ctx->padded_count);
1571 unsigned k = ctx->padded_count >> (shift + 1);
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001572
Alyssa Rosenzweigd36ca7c2019-12-19 16:46:43 -05001573 ctx->payloads[PIPE_SHADER_VERTEX].instance_shift = shift;
1574 ctx->payloads[PIPE_SHADER_FRAGMENT].instance_shift = shift;
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001575
Alyssa Rosenzweigd36ca7c2019-12-19 16:46:43 -05001576 ctx->payloads[PIPE_SHADER_VERTEX].instance_odd = k;
1577 ctx->payloads[PIPE_SHADER_FRAGMENT].instance_odd = k;
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001578 } else {
Boris Brezillon055497f2019-09-18 15:22:24 +02001579 ctx->padded_count = vertex_count;
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001580
1581 /* Reset instancing state */
Alyssa Rosenzweig0da52012019-07-31 14:05:14 -07001582 ctx->payloads[PIPE_SHADER_VERTEX].instance_shift = 0;
1583 ctx->payloads[PIPE_SHADER_VERTEX].instance_odd = 0;
1584 ctx->payloads[PIPE_SHADER_FRAGMENT].instance_shift = 0;
1585 ctx->payloads[PIPE_SHADER_FRAGMENT].instance_odd = 0;
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001586 }
1587
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001588 /* Fire off the draw itself */
1589 panfrost_queue_draw(ctx);
Alyssa Rosenzweig7c295882019-08-08 08:16:09 -07001590
1591 /* Increment transform feedback offsets */
1592
1593 for (unsigned i = 0; i < ctx->streamout.num_targets; ++i) {
1594 unsigned output_count = u_stream_outputs_for_vertices(
1595 ctx->active_prim, ctx->vertex_count);
1596
1597 ctx->streamout.offsets[i] += output_count;
1598 }
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001599}
1600
1601/* CSO state */
1602
1603static void
1604panfrost_generic_cso_delete(struct pipe_context *pctx, void *hwcso)
1605{
1606 free(hwcso);
1607}
1608
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001609static void *
1610panfrost_create_rasterizer_state(
1611 struct pipe_context *pctx,
1612 const struct pipe_rasterizer_state *cso)
1613{
1614 struct panfrost_rasterizer *so = CALLOC_STRUCT(panfrost_rasterizer);
1615
1616 so->base = *cso;
1617
Tomeu Vizoso5a7688f2019-07-11 08:06:41 +02001618 /* Bitmask, unknown meaning of the start value. 0x105 on 32-bit T6XX */
1619 so->tiler_gl_enables = 0x7;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001620
Alyssa Rosenzweig2adf35e2019-05-23 03:01:32 +00001621 if (cso->front_ccw)
1622 so->tiler_gl_enables |= MALI_FRONT_CCW_TOP;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001623
1624 if (cso->cull_face & PIPE_FACE_FRONT)
1625 so->tiler_gl_enables |= MALI_CULL_FACE_FRONT;
1626
1627 if (cso->cull_face & PIPE_FACE_BACK)
1628 so->tiler_gl_enables |= MALI_CULL_FACE_BACK;
1629
1630 return so;
1631}
1632
1633static void
1634panfrost_bind_rasterizer_state(
1635 struct pipe_context *pctx,
1636 void *hwcso)
1637{
1638 struct panfrost_context *ctx = pan_context(pctx);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001639
1640 /* TODO: Why can't rasterizer be NULL ever? Other drivers are fine.. */
1641 if (!hwcso)
1642 return;
1643
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001644 ctx->rasterizer = hwcso;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001645 ctx->dirty |= PAN_DIRTY_RASTERIZER;
Alyssa Rosenzweigbe030602019-06-24 11:01:05 -07001646
Tomeu Vizoso7d24cef2019-11-13 08:42:34 +01001647 ctx->fragment_shader_core.depth_units = ctx->rasterizer->base.offset_units * 2.0f;
Alyssa Rosenzweig83057662019-07-11 07:02:26 -07001648 ctx->fragment_shader_core.depth_factor = ctx->rasterizer->base.offset_scale;
1649
1650 /* Gauranteed with the core GL call, so don't expose ARB_polygon_offset */
1651 assert(ctx->rasterizer->base.offset_clamp == 0.0);
1652
1653 /* XXX: Which bit is which? Does this maybe allow offseting not-tri? */
1654
1655 SET_BIT(ctx->fragment_shader_core.unknown2_4, MALI_DEPTH_RANGE_A, ctx->rasterizer->base.offset_tri);
1656 SET_BIT(ctx->fragment_shader_core.unknown2_4, MALI_DEPTH_RANGE_B, ctx->rasterizer->base.offset_tri);
1657
Alyssa Rosenzweigbe030602019-06-24 11:01:05 -07001658 /* Point sprites are emulated */
1659
Alyssa Rosenzweigf35f3732019-06-24 11:53:58 -07001660 struct panfrost_shader_state *variant =
Alyssa Rosenzweigac6aa932019-07-31 14:13:30 -07001661 ctx->shader[PIPE_SHADER_FRAGMENT] ? &ctx->shader[PIPE_SHADER_FRAGMENT]->variants[ctx->shader[PIPE_SHADER_FRAGMENT]->active_variant] : NULL;
Alyssa Rosenzweigf35f3732019-06-24 11:53:58 -07001662
1663 if (ctx->rasterizer->base.sprite_coord_enable || (variant && variant->point_sprite_mask))
Alyssa Rosenzweigac6aa932019-07-31 14:13:30 -07001664 ctx->base.bind_fs_state(&ctx->base, ctx->shader[PIPE_SHADER_FRAGMENT]);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001665}
1666
1667static void *
1668panfrost_create_vertex_elements_state(
1669 struct pipe_context *pctx,
1670 unsigned num_elements,
1671 const struct pipe_vertex_element *elements)
1672{
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001673 struct panfrost_vertex_state *so = CALLOC_STRUCT(panfrost_vertex_state);
1674
1675 so->num_elements = num_elements;
1676 memcpy(so->pipe, elements, sizeof(*elements) * num_elements);
1677
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001678 for (int i = 0; i < num_elements; ++i) {
Alyssa Rosenzweig8d747492019-06-27 14:13:10 -07001679 so->hw[i].index = i;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001680
1681 enum pipe_format fmt = elements[i].src_format;
1682 const struct util_format_description *desc = util_format_description(fmt);
1683 so->hw[i].unknown1 = 0x2;
1684 so->hw[i].swizzle = panfrost_get_default_swizzle(desc->nr_channels);
1685
1686 so->hw[i].format = panfrost_find_format(desc);
1687
1688 /* The field itself should probably be shifted over */
1689 so->hw[i].src_offset = elements[i].src_offset;
1690 }
1691
1692 return so;
1693}
1694
1695static void
1696panfrost_bind_vertex_elements_state(
1697 struct pipe_context *pctx,
1698 void *hwcso)
1699{
1700 struct panfrost_context *ctx = pan_context(pctx);
1701
1702 ctx->vertex = hwcso;
1703 ctx->dirty |= PAN_DIRTY_VERTEX;
1704}
1705
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001706static void *
1707panfrost_create_shader_state(
1708 struct pipe_context *pctx,
Alyssa Rosenzweig271726e2019-12-13 15:13:02 -05001709 const struct pipe_shader_state *cso,
1710 enum pipe_shader_type stage)
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001711{
1712 struct panfrost_shader_variants *so = CALLOC_STRUCT(panfrost_shader_variants);
1713 so->base = *cso;
1714
1715 /* Token deep copy to prevent memory corruption */
1716
1717 if (cso->type == PIPE_SHADER_IR_TGSI)
1718 so->base.tokens = tgsi_dup_tokens(so->base.tokens);
1719
Alyssa Rosenzweig271726e2019-12-13 15:13:02 -05001720 /* Precompile for shader-db if we need to */
1721 if (unlikely((pan_debug & PAN_DBG_PRECOMPILE) && cso->type == PIPE_SHADER_IR_NIR)) {
1722 struct panfrost_context *ctx = pan_context(pctx);
1723
1724 struct mali_shader_meta meta;
1725 struct panfrost_shader_state state;
1726 uint64_t outputs_written;
1727
1728 panfrost_shader_compile(ctx, &meta,
1729 PIPE_SHADER_IR_NIR,
1730 so->base.ir.nir,
1731 tgsi_processor_to_shader_stage(stage), &state,
1732 &outputs_written);
1733 }
1734
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001735 return so;
1736}
1737
1738static void
1739panfrost_delete_shader_state(
1740 struct pipe_context *pctx,
1741 void *so)
1742{
Alyssa Rosenzweigacc52ff2019-02-14 04:00:19 +00001743 struct panfrost_shader_variants *cso = (struct panfrost_shader_variants *) so;
1744
1745 if (cso->base.type == PIPE_SHADER_IR_TGSI) {
Tomeu Vizoso97f2d042019-03-08 15:24:57 +01001746 DBG("Deleting TGSI shader leaks duplicated tokens\n");
Alyssa Rosenzweigacc52ff2019-02-14 04:00:19 +00001747 }
1748
Tomeu Vizoso950b5fc52019-08-01 16:45:50 +02001749 for (unsigned i = 0; i < cso->variant_count; ++i) {
1750 struct panfrost_shader_state *shader_state = &cso->variants[i];
Boris Brezillone15ab932019-09-14 10:35:47 +02001751 panfrost_bo_unreference(shader_state->bo);
Tomeu Vizoso950b5fc52019-08-01 16:45:50 +02001752 shader_state->bo = NULL;
1753 }
Icecream95d8a35012020-01-12 14:19:25 +13001754 free(cso->variants);
Tomeu Vizoso950b5fc52019-08-01 16:45:50 +02001755
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001756 free(so);
1757}
1758
1759static void *
1760panfrost_create_sampler_state(
1761 struct pipe_context *pctx,
1762 const struct pipe_sampler_state *cso)
1763{
1764 struct panfrost_sampler_state *so = CALLOC_STRUCT(panfrost_sampler_state);
1765 so->base = *cso;
1766
1767 /* sampler_state corresponds to mali_sampler_descriptor, which we can generate entirely here */
1768
Alyssa Rosenzweigcf6cad32019-07-31 08:50:02 -07001769 bool min_nearest = cso->min_img_filter == PIPE_TEX_FILTER_NEAREST;
1770 bool mag_nearest = cso->mag_img_filter == PIPE_TEX_FILTER_NEAREST;
1771 bool mip_linear = cso->min_mip_filter == PIPE_TEX_MIPFILTER_LINEAR;
1772
1773 unsigned min_filter = min_nearest ? MALI_SAMP_MIN_NEAREST : 0;
1774 unsigned mag_filter = mag_nearest ? MALI_SAMP_MAG_NEAREST : 0;
1775 unsigned mip_filter = mip_linear ?
1776 (MALI_SAMP_MIP_LINEAR_1 | MALI_SAMP_MIP_LINEAR_2) : 0;
Alyssa Rosenzweig3e47a112019-07-31 09:08:07 -07001777 unsigned normalized = cso->normalized_coords ? MALI_SAMP_NORM_COORDS : 0;
Alyssa Rosenzweigcf6cad32019-07-31 08:50:02 -07001778
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001779 struct mali_sampler_descriptor sampler_descriptor = {
Alyssa Rosenzweig3e47a112019-07-31 09:08:07 -07001780 .filter_mode = min_filter | mag_filter | mip_filter | normalized,
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001781 .wrap_s = translate_tex_wrap(cso->wrap_s),
1782 .wrap_t = translate_tex_wrap(cso->wrap_t),
1783 .wrap_r = translate_tex_wrap(cso->wrap_r),
Alyssa Rosenzweigde077c22019-12-27 12:56:03 -05001784 .compare_func = panfrost_flip_compare_func(
1785 panfrost_translate_compare_func(
1786 cso->compare_func)),
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001787 .border_color = {
1788 cso->border_color.f[0],
1789 cso->border_color.f[1],
1790 cso->border_color.f[2],
1791 cso->border_color.f[3]
1792 },
Icecream95f2f12772020-01-09 15:13:58 +13001793 .min_lod = FIXED_16(cso->min_lod, false), /* clamp at 0 */
1794 .max_lod = FIXED_16(cso->max_lod, false),
1795 .lod_bias = FIXED_16(cso->lod_bias, true), /* can be negative */
Alyssa Rosenzweig17adcfc2019-06-24 09:16:11 -07001796 .seamless_cube_map = cso->seamless_cube_map,
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001797 };
1798
Alyssa Rosenzweigf57dfe42019-06-21 16:58:48 -07001799 /* If necessary, we disable mipmapping in the sampler descriptor by
1800 * clamping the LOD as tight as possible (from 0 to epsilon,
1801 * essentially -- remember these are fixed point numbers, so
1802 * epsilon=1/256) */
1803
1804 if (cso->min_mip_filter == PIPE_TEX_MIPFILTER_NONE)
1805 sampler_descriptor.max_lod = sampler_descriptor.min_lod;
1806
1807 /* Enforce that there is something in the middle by adding epsilon*/
1808
1809 if (sampler_descriptor.min_lod == sampler_descriptor.max_lod)
1810 sampler_descriptor.max_lod++;
1811
1812 /* Sanity check */
1813 assert(sampler_descriptor.max_lod > sampler_descriptor.min_lod);
1814
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001815 so->hw = sampler_descriptor;
1816
1817 return so;
1818}
1819
1820static void
1821panfrost_bind_sampler_states(
1822 struct pipe_context *pctx,
1823 enum pipe_shader_type shader,
1824 unsigned start_slot, unsigned num_sampler,
1825 void **sampler)
1826{
1827 assert(start_slot == 0);
1828
1829 struct panfrost_context *ctx = pan_context(pctx);
1830
1831 /* XXX: Should upload, not just copy? */
1832 ctx->sampler_count[shader] = num_sampler;
1833 memcpy(ctx->samplers[shader], sampler, num_sampler * sizeof (void *));
1834
1835 ctx->dirty |= PAN_DIRTY_SAMPLERS;
1836}
1837
1838static bool
Alyssa Rosenzweig9ab8d312019-06-14 10:12:38 -07001839panfrost_variant_matches(
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07001840 struct panfrost_context *ctx,
1841 struct panfrost_shader_state *variant,
1842 enum pipe_shader_type type)
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001843{
Alyssa Rosenzweigbe030602019-06-24 11:01:05 -07001844 struct pipe_rasterizer_state *rasterizer = &ctx->rasterizer->base;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001845 struct pipe_alpha_state *alpha = &ctx->depth_stencil->alpha;
1846
Alyssa Rosenzweig9ab8d312019-06-14 10:12:38 -07001847 bool is_fragment = (type == PIPE_SHADER_FRAGMENT);
1848
1849 if (is_fragment && (alpha->enabled || variant->alpha_state.enabled)) {
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001850 /* Make sure enable state is at least the same */
1851 if (alpha->enabled != variant->alpha_state.enabled) {
1852 return false;
1853 }
1854
1855 /* Check that the contents of the test are the same */
1856 bool same_func = alpha->func == variant->alpha_state.func;
1857 bool same_ref = alpha->ref_value == variant->alpha_state.ref_value;
1858
1859 if (!(same_func && same_ref)) {
1860 return false;
1861 }
1862 }
Alyssa Rosenzweigbe030602019-06-24 11:01:05 -07001863
1864 if (is_fragment && rasterizer && (rasterizer->sprite_coord_enable |
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07001865 variant->point_sprite_mask)) {
Alyssa Rosenzweigbe030602019-06-24 11:01:05 -07001866 /* Ensure the same varyings are turned to point sprites */
1867 if (rasterizer->sprite_coord_enable != variant->point_sprite_mask)
1868 return false;
1869
1870 /* Ensure the orientation is correct */
1871 bool upper_left =
1872 rasterizer->sprite_coord_mode ==
1873 PIPE_SPRITE_COORD_UPPER_LEFT;
1874
1875 if (variant->point_sprite_upper_left != upper_left)
1876 return false;
1877 }
1878
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001879 /* Otherwise, we're good to go */
1880 return true;
1881}
1882
Alyssa Rosenzweigf714eab2019-08-07 10:11:28 -07001883/**
1884 * Fix an uncompiled shader's stream output info, and produce a bitmask
1885 * of which VARYING_SLOT_* are captured for stream output.
1886 *
1887 * Core Gallium stores output->register_index as a "slot" number, where
1888 * slots are assigned consecutively to all outputs in info->outputs_written.
1889 * This naive packing of outputs doesn't work for us - we too have slots,
1890 * but the layout is defined by the VUE map, which we won't have until we
1891 * compile a specific shader variant. So, we remap these and simply store
1892 * VARYING_SLOT_* in our copy's output->register_index fields.
1893 *
1894 * We then produce a bitmask of outputs which are used for SO.
1895 *
1896 * Implementation from iris.
1897 */
1898
1899static uint64_t
1900update_so_info(struct pipe_stream_output_info *so_info,
1901 uint64_t outputs_written)
1902{
1903 uint64_t so_outputs = 0;
Vinson Leede2e5f62019-11-27 23:37:00 -08001904 uint8_t reverse_map[64] = {0};
Alyssa Rosenzweigf714eab2019-08-07 10:11:28 -07001905 unsigned slot = 0;
1906
1907 while (outputs_written)
1908 reverse_map[slot++] = u_bit_scan64(&outputs_written);
1909
1910 for (unsigned i = 0; i < so_info->num_outputs; i++) {
1911 struct pipe_stream_output *output = &so_info->output[i];
1912
1913 /* Map Gallium's condensed "slots" back to real VARYING_SLOT_* enums */
1914 output->register_index = reverse_map[output->register_index];
1915
1916 so_outputs |= 1ull << output->register_index;
1917 }
1918
1919 return so_outputs;
1920}
1921
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001922static void
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00001923panfrost_bind_shader_state(
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001924 struct pipe_context *pctx,
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00001925 void *hwcso,
1926 enum pipe_shader_type type)
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001927{
1928 struct panfrost_context *ctx = pan_context(pctx);
1929
Alyssa Rosenzweig3113be32019-07-31 14:15:19 -07001930 ctx->shader[type] = hwcso;
1931
1932 if (type == PIPE_SHADER_FRAGMENT)
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00001933 ctx->dirty |= PAN_DIRTY_FS;
Alyssa Rosenzweig3113be32019-07-31 14:15:19 -07001934 else
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00001935 ctx->dirty |= PAN_DIRTY_VS;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001936
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00001937 if (!hwcso) return;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001938
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00001939 /* Match the appropriate variant */
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001940
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00001941 signed variant = -1;
1942 struct panfrost_shader_variants *variants = (struct panfrost_shader_variants *) hwcso;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001943
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00001944 for (unsigned i = 0; i < variants->variant_count; ++i) {
Alyssa Rosenzweig9ab8d312019-06-14 10:12:38 -07001945 if (panfrost_variant_matches(ctx, &variants->variants[i], type)) {
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00001946 variant = i;
1947 break;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001948 }
1949 }
1950
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00001951 if (variant == -1) {
1952 /* No variant matched, so create a new one */
1953 variant = variants->variant_count++;
Icecream95d8a35012020-01-12 14:19:25 +13001954
1955 if (variants->variant_count > variants->variant_space) {
1956 unsigned old_space = variants->variant_space;
1957
1958 variants->variant_space *= 2;
1959 if (variants->variant_space == 0)
1960 variants->variant_space = 1;
1961
1962 /* Arbitrary limit to stop runaway programs from
1963 * creating an unbounded number of shader variants. */
1964 assert(variants->variant_space < 1024);
1965
1966 unsigned msize = sizeof(struct panfrost_shader_state);
1967 variants->variants = realloc(variants->variants,
1968 variants->variant_space * msize);
1969
1970 memset(&variants->variants[old_space], 0,
1971 (variants->variant_space - old_space) * msize);
1972 }
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00001973
Alyssa Rosenzweigbe030602019-06-24 11:01:05 -07001974 struct panfrost_shader_state *v =
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07001975 &variants->variants[variant];
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00001976
Alyssa Rosenzweigbe030602019-06-24 11:01:05 -07001977 if (type == PIPE_SHADER_FRAGMENT) {
1978 v->alpha_state = ctx->depth_stencil->alpha;
1979
1980 if (ctx->rasterizer) {
1981 v->point_sprite_mask = ctx->rasterizer->base.sprite_coord_enable;
1982 v->point_sprite_upper_left =
1983 ctx->rasterizer->base.sprite_coord_mode ==
1984 PIPE_SPRITE_COORD_UPPER_LEFT;
1985 }
1986 }
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00001987
Alyssa Rosenzweig54438262019-08-14 14:21:02 -07001988 variants->variants[variant].tripipe = calloc(1, sizeof(struct mali_shader_meta));
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00001989
1990 }
1991
1992 /* Select this variant */
1993 variants->active_variant = variant;
1994
1995 struct panfrost_shader_state *shader_state = &variants->variants[variant];
Alyssa Rosenzweig9ab8d312019-06-14 10:12:38 -07001996 assert(panfrost_variant_matches(ctx, shader_state, type));
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00001997
1998 /* We finally have a variant, so compile it */
1999
2000 if (!shader_state->compiled) {
Alyssa Rosenzweig5b0a1a42019-08-07 10:26:12 -07002001 uint64_t outputs_written = 0;
2002
Alyssa Rosenzweigc2280462019-07-31 15:19:09 -07002003 panfrost_shader_compile(ctx, shader_state->tripipe,
2004 variants->base.type,
2005 variants->base.type == PIPE_SHADER_IR_NIR ?
2006 variants->base.ir.nir :
2007 variants->base.tokens,
Alyssa Rosenzweig5b0a1a42019-08-07 10:26:12 -07002008 tgsi_processor_to_shader_stage(type), shader_state,
2009 &outputs_written);
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00002010
2011 shader_state->compiled = true;
Alyssa Rosenzweige7a05a62019-08-07 10:33:15 -07002012
2013 /* Fixup the stream out information, since what Gallium returns
2014 * normally is mildly insane */
2015
2016 shader_state->stream_output = variants->base.stream_output;
2017 shader_state->so_mask =
2018 update_so_info(&shader_state->stream_output, outputs_written);
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00002019 }
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002020}
2021
Alyssa Rosenzweig271726e2019-12-13 15:13:02 -05002022static void *
2023panfrost_create_vs_state(struct pipe_context *pctx, const struct pipe_shader_state *hwcso)
2024{
2025 return panfrost_create_shader_state(pctx, hwcso, PIPE_SHADER_VERTEX);
2026}
2027
2028static void *
2029panfrost_create_fs_state(struct pipe_context *pctx, const struct pipe_shader_state *hwcso)
2030{
2031 return panfrost_create_shader_state(pctx, hwcso, PIPE_SHADER_FRAGMENT);
2032}
2033
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002034static void
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00002035panfrost_bind_vs_state(struct pipe_context *pctx, void *hwcso)
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002036{
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00002037 panfrost_bind_shader_state(pctx, hwcso, PIPE_SHADER_VERTEX);
2038}
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002039
Alyssa Rosenzweig1acffb52019-06-04 23:48:17 +00002040static void
2041panfrost_bind_fs_state(struct pipe_context *pctx, void *hwcso)
2042{
2043 panfrost_bind_shader_state(pctx, hwcso, PIPE_SHADER_FRAGMENT);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002044}
2045
2046static void
2047panfrost_set_vertex_buffers(
2048 struct pipe_context *pctx,
2049 unsigned start_slot,
2050 unsigned num_buffers,
2051 const struct pipe_vertex_buffer *buffers)
2052{
2053 struct panfrost_context *ctx = pan_context(pctx);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002054
Alyssa Rosenzweige008d4f2019-04-14 22:42:44 +00002055 util_set_vertex_buffers_mask(ctx->vertex_buffers, &ctx->vb_mask, buffers, start_slot, num_buffers);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002056}
2057
2058static void
2059panfrost_set_constant_buffer(
2060 struct pipe_context *pctx,
2061 enum pipe_shader_type shader, uint index,
2062 const struct pipe_constant_buffer *buf)
2063{
2064 struct panfrost_context *ctx = pan_context(pctx);
2065 struct panfrost_constant_buffer *pbuf = &ctx->constant_buffer[shader];
2066
Alyssa Rosenzweigca2caf02019-06-20 16:07:57 -07002067 util_copy_constant_buffer(&pbuf->cb[index], buf);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002068
Alyssa Rosenzweigca2caf02019-06-20 16:07:57 -07002069 unsigned mask = (1 << index);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002070
Alyssa Rosenzweigca2caf02019-06-20 16:07:57 -07002071 if (unlikely(!buf)) {
2072 pbuf->enabled_mask &= ~mask;
2073 pbuf->dirty_mask &= ~mask;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002074 return;
2075 }
2076
Alyssa Rosenzweigca2caf02019-06-20 16:07:57 -07002077 pbuf->enabled_mask |= mask;
2078 pbuf->dirty_mask |= mask;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002079}
2080
2081static void
2082panfrost_set_stencil_ref(
2083 struct pipe_context *pctx,
2084 const struct pipe_stencil_ref *ref)
2085{
2086 struct panfrost_context *ctx = pan_context(pctx);
2087 ctx->stencil_ref = *ref;
2088
2089 /* Shader core dirty */
2090 ctx->dirty |= PAN_DIRTY_FS;
2091}
2092
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07002093static enum mali_texture_type
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002094panfrost_translate_texture_type(enum pipe_texture_target t) {
2095 switch (t)
2096 {
2097 case PIPE_BUFFER:
Alyssa Rosenzweig0ae72df2019-08-16 10:26:03 -07002098 case PIPE_TEXTURE_1D:
2099 case PIPE_TEXTURE_1D_ARRAY:
2100 return MALI_TEX_1D;
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07002101
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002102 case PIPE_TEXTURE_2D:
2103 case PIPE_TEXTURE_2D_ARRAY:
2104 case PIPE_TEXTURE_RECT:
2105 return MALI_TEX_2D;
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07002106
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002107 case PIPE_TEXTURE_3D:
2108 return MALI_TEX_3D;
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07002109
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002110 case PIPE_TEXTURE_CUBE:
2111 case PIPE_TEXTURE_CUBE_ARRAY:
2112 return MALI_TEX_CUBE;
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07002113
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002114 default:
2115 unreachable("Unknown target");
Alyssa Rosenzweig83c02a52019-06-17 14:26:08 -07002116 }
2117}
2118
Icecream9531bd3b52020-01-11 19:19:45 +13002119static uint8_t
2120panfrost_compute_astc_stretch(
2121 const struct util_format_description *desc)
2122{
2123 unsigned width = desc->block.width;
2124 unsigned height = desc->block.height;
2125 assert(width >= 4 && width <= 12);
2126 assert(height >= 4 && height <= 12);
2127 if (width == 12)
2128 width = 11;
2129 if (height == 12)
2130 height = 11;
2131 return ((height - 4) * 8) + (width - 4);
2132}
2133
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002134static struct pipe_sampler_view *
2135panfrost_create_sampler_view(
2136 struct pipe_context *pctx,
2137 struct pipe_resource *texture,
2138 const struct pipe_sampler_view *template)
2139{
Tomeu Vizoso0fcf73b2019-06-18 14:24:57 +02002140 struct panfrost_sampler_view *so = rzalloc(pctx, struct panfrost_sampler_view);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002141 int bytes_per_pixel = util_format_get_blocksize(texture->format);
2142
2143 pipe_reference(NULL, &texture->reference);
2144
2145 struct panfrost_resource *prsrc = (struct panfrost_resource *) texture;
Alyssa Rosenzweig81b10532019-05-14 23:18:18 +00002146 assert(prsrc->bo);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002147
2148 so->base = *template;
2149 so->base.texture = texture;
2150 so->base.reference.count = 1;
2151 so->base.context = pctx;
2152
2153 /* sampler_views correspond to texture descriptors, minus the texture
2154 * (data) itself. So, we serialise the descriptor here and cache it for
2155 * later. */
2156
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002157 const struct util_format_description *desc = util_format_description(prsrc->base.format);
2158
2159 unsigned char user_swizzle[4] = {
2160 template->swizzle_r,
2161 template->swizzle_g,
2162 template->swizzle_b,
2163 template->swizzle_a
2164 };
2165
2166 enum mali_format format = panfrost_find_format(desc);
2167
Icecream9531bd3b52020-01-11 19:19:45 +13002168 if (format == MALI_ASTC_HDR_SUPP || format == MALI_ASTC_SRGB_SUPP)
2169 so->astc_stretch = panfrost_compute_astc_stretch(desc);
2170
Alyssa Rosenzweig81b10532019-05-14 23:18:18 +00002171 /* Check if we need to set a custom stride by computing the "expected"
2172 * stride and comparing it to what the BO actually wants. Only applies
Alyssa Rosenzweigd89e0712019-06-07 17:07:13 -07002173 * to linear textures, since tiled/compressed textures have strict
2174 * alignment requirements for their strides as it is */
Alyssa Rosenzweig81b10532019-05-14 23:18:18 +00002175
Alyssa Rosenzweigd89e0712019-06-07 17:07:13 -07002176 unsigned first_level = template->u.tex.first_level;
2177 unsigned last_level = template->u.tex.last_level;
Alyssa Rosenzweig81b10532019-05-14 23:18:18 +00002178
Boris Brezillonaa5bc352019-07-02 11:37:40 +02002179 if (prsrc->layout == PAN_LINEAR) {
Alyssa Rosenzweigd89e0712019-06-07 17:07:13 -07002180 for (unsigned l = first_level; l <= last_level; ++l) {
Boris Brezillonaa5bc352019-07-02 11:37:40 +02002181 unsigned actual_stride = prsrc->slices[l].stride;
Alyssa Rosenzweigd89e0712019-06-07 17:07:13 -07002182 unsigned width = u_minify(texture->width0, l);
2183 unsigned comp_stride = width * bytes_per_pixel;
2184
2185 if (comp_stride != actual_stride) {
Alyssa Rosenzweigaaae6182019-07-15 14:59:03 -07002186 so->manual_stride = true;
Alyssa Rosenzweigd89e0712019-06-07 17:07:13 -07002187 break;
2188 }
2189 }
Alyssa Rosenzweig81b10532019-05-14 23:18:18 +00002190 }
2191
Alyssa Rosenzweig67a34ac2019-06-14 16:26:49 -07002192 /* In the hardware, array_size refers specifically to array textures,
2193 * whereas in Gallium, it also covers cubemaps */
2194
2195 unsigned array_size = texture->array_size;
2196
Alyssa Rosenzweig0ad17f52019-06-24 14:39:37 -07002197 if (template->target == PIPE_TEXTURE_CUBE) {
Alyssa Rosenzweig67a34ac2019-06-14 16:26:49 -07002198 /* TODO: Cubemap arrays */
2199 assert(array_size == 6);
Alyssa Rosenzweigeb3c0972019-06-21 17:27:05 -07002200 array_size /= 6;
Alyssa Rosenzweig67a34ac2019-06-14 16:26:49 -07002201 }
2202
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002203 struct mali_texture_descriptor texture_descriptor = {
Alyssa Rosenzweig53171542019-06-12 15:07:09 -07002204 .width = MALI_POSITIVE(u_minify(texture->width0, first_level)),
2205 .height = MALI_POSITIVE(u_minify(texture->height0, first_level)),
2206 .depth = MALI_POSITIVE(u_minify(texture->depth0, first_level)),
Alyssa Rosenzweig67a34ac2019-06-14 16:26:49 -07002207 .array_size = MALI_POSITIVE(array_size),
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002208
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002209 .format = {
2210 .swizzle = panfrost_translate_swizzle_4(desc->swizzle),
2211 .format = format,
Alyssa Rosenzweig58c34e42019-06-17 16:16:20 -07002212 .srgb = desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB,
Alyssa Rosenzweig0ad17f52019-06-24 14:39:37 -07002213 .type = panfrost_translate_texture_type(template->target),
Alyssa Rosenzweig9f15f4d2019-08-20 15:36:00 -07002214 .unknown2 = 0x1,
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002215 },
2216
2217 .swizzle = panfrost_translate_swizzle_4(user_swizzle)
2218 };
2219
Alyssa Rosenzweig96f6b8a2019-08-20 15:24:18 -07002220 texture_descriptor.levels = last_level - first_level;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002221
2222 so->hw = texture_descriptor;
2223
2224 return (struct pipe_sampler_view *) so;
2225}
2226
2227static void
2228panfrost_set_sampler_views(
2229 struct pipe_context *pctx,
2230 enum pipe_shader_type shader,
2231 unsigned start_slot, unsigned num_views,
2232 struct pipe_sampler_view **views)
2233{
2234 struct panfrost_context *ctx = pan_context(pctx);
Tomeu Vizoso5dfe4122019-12-12 08:43:12 +01002235 unsigned new_nr = 0;
2236 unsigned i;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002237
2238 assert(start_slot == 0);
2239
Tomeu Vizoso5dfe4122019-12-12 08:43:12 +01002240 for (i = 0; i < num_views; ++i) {
Alyssa Rosenzweig0219b992019-06-11 14:21:14 -07002241 if (views[i])
2242 new_nr = i + 1;
Tomeu Vizoso5dfe4122019-12-12 08:43:12 +01002243 pipe_sampler_view_reference((struct pipe_sampler_view **)&ctx->sampler_views[shader][i],
2244 views[i]);
Alyssa Rosenzweig0219b992019-06-11 14:21:14 -07002245 }
2246
Tomeu Vizoso5dfe4122019-12-12 08:43:12 +01002247 for (; i < ctx->sampler_view_count[shader]; i++) {
2248 pipe_sampler_view_reference((struct pipe_sampler_view **)&ctx->sampler_views[shader][i],
2249 NULL);
2250 }
Alyssa Rosenzweig0219b992019-06-11 14:21:14 -07002251 ctx->sampler_view_count[shader] = new_nr;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002252
2253 ctx->dirty |= PAN_DIRTY_TEXTURES;
2254}
2255
2256static void
2257panfrost_sampler_view_destroy(
2258 struct pipe_context *pctx,
Tomeu Vizoso9fe1a922019-05-23 10:09:33 +02002259 struct pipe_sampler_view *view)
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002260{
Tomeu Vizoso9fe1a922019-05-23 10:09:33 +02002261 pipe_resource_reference(&view->texture, NULL);
Tomeu Vizoso0fcf73b2019-06-18 14:24:57 +02002262 ralloc_free(view);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002263}
2264
Alyssa Rosenzweig4e736b82019-08-01 10:31:35 -07002265static void
2266panfrost_set_shader_buffers(
2267 struct pipe_context *pctx,
2268 enum pipe_shader_type shader,
2269 unsigned start, unsigned count,
2270 const struct pipe_shader_buffer *buffers,
2271 unsigned writable_bitmask)
2272{
2273 struct panfrost_context *ctx = pan_context(pctx);
2274
2275 util_set_shader_buffers_mask(ctx->ssbo[shader], &ctx->ssbo_mask[shader],
2276 buffers, start, count);
2277}
2278
Alyssa Rosenzweig5ad00fb2019-07-15 14:15:24 -07002279/* Hints that a framebuffer should use AFBC where possible */
2280
2281static void
2282panfrost_hint_afbc(
2283 struct panfrost_screen *screen,
2284 const struct pipe_framebuffer_state *fb)
2285{
2286 /* AFBC implemenation incomplete; hide it */
2287 if (!(pan_debug & PAN_DBG_AFBC)) return;
2288
2289 /* Hint AFBC to the resources bound to each color buffer */
2290
2291 for (unsigned i = 0; i < fb->nr_cbufs; ++i) {
2292 struct pipe_surface *surf = fb->cbufs[i];
2293 struct panfrost_resource *rsrc = pan_resource(surf->texture);
2294 panfrost_resource_hint_layout(screen, rsrc, PAN_AFBC, 1);
2295 }
2296
2297 /* Also hint it to the depth buffer */
2298
2299 if (fb->zsbuf) {
2300 struct panfrost_resource *rsrc = pan_resource(fb->zsbuf->texture);
2301 panfrost_resource_hint_layout(screen, rsrc, PAN_AFBC, 1);
2302 }
2303}
2304
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002305static void
2306panfrost_set_framebuffer_state(struct pipe_context *pctx,
2307 const struct pipe_framebuffer_state *fb)
2308{
2309 struct panfrost_context *ctx = pan_context(pctx);
2310
Boris Brezillon1ac33aa2019-09-15 20:33:13 +02002311 panfrost_hint_afbc(pan_screen(pctx->screen), fb);
Alyssa Rosenzweig629c7362019-07-18 11:05:01 -07002312 util_copy_framebuffer_state(&ctx->pipe_framebuffer, fb);
Boris Brezillon1ac33aa2019-09-15 20:33:13 +02002313 ctx->batch = NULL;
2314 panfrost_invalidate_frame(ctx);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002315}
2316
2317static void *
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002318panfrost_create_depth_stencil_state(struct pipe_context *pipe,
2319 const struct pipe_depth_stencil_alpha_state *depth_stencil)
2320{
2321 return mem_dup(depth_stencil, sizeof(*depth_stencil));
2322}
2323
2324static void
2325panfrost_bind_depth_stencil_state(struct pipe_context *pipe,
2326 void *cso)
2327{
2328 struct panfrost_context *ctx = pan_context(pipe);
2329 struct pipe_depth_stencil_alpha_state *depth_stencil = cso;
2330 ctx->depth_stencil = depth_stencil;
2331
2332 if (!depth_stencil)
2333 return;
2334
2335 /* Alpha does not exist in the hardware (it's not in ES3), so it's
2336 * emulated in the fragment shader */
2337
2338 if (depth_stencil->alpha.enabled) {
2339 /* We need to trigger a new shader (maybe) */
Alyssa Rosenzweigac6aa932019-07-31 14:13:30 -07002340 ctx->base.bind_fs_state(&ctx->base, ctx->shader[PIPE_SHADER_FRAGMENT]);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002341 }
2342
2343 /* Stencil state */
Alyssa Rosenzweig65d89092019-07-17 15:42:48 -07002344 SET_BIT(ctx->fragment_shader_core.unknown2_4, MALI_STENCIL_TEST, depth_stencil->stencil[0].enabled);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002345
2346 panfrost_make_stencil_state(&depth_stencil->stencil[0], &ctx->fragment_shader_core.stencil_front);
2347 ctx->fragment_shader_core.stencil_mask_front = depth_stencil->stencil[0].writemask;
2348
Alyssa Rosenzweig65d89092019-07-17 15:42:48 -07002349 /* If back-stencil is not enabled, use the front values */
2350 bool back_enab = ctx->depth_stencil->stencil[1].enabled;
2351 unsigned back_index = back_enab ? 1 : 0;
2352
2353 panfrost_make_stencil_state(&depth_stencil->stencil[back_index], &ctx->fragment_shader_core.stencil_back);
2354 ctx->fragment_shader_core.stencil_mask_back = depth_stencil->stencil[back_index].writemask;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002355
2356 /* Depth state (TODO: Refactor) */
Boris Brezillon28440822019-11-04 11:57:22 +01002357 SET_BIT(ctx->fragment_shader_core.unknown2_3, MALI_DEPTH_WRITEMASK,
2358 depth_stencil->depth.writemask);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002359
2360 int func = depth_stencil->depth.enabled ? depth_stencil->depth.func : PIPE_FUNC_ALWAYS;
2361
2362 ctx->fragment_shader_core.unknown2_3 &= ~MALI_DEPTH_FUNC_MASK;
2363 ctx->fragment_shader_core.unknown2_3 |= MALI_DEPTH_FUNC(panfrost_translate_compare_func(func));
2364
2365 /* Bounds test not implemented */
2366 assert(!depth_stencil->depth.bounds_test);
2367
2368 ctx->dirty |= PAN_DIRTY_FS;
2369}
2370
2371static void
2372panfrost_delete_depth_stencil_state(struct pipe_context *pipe, void *depth)
2373{
2374 free( depth );
2375}
2376
2377static void
2378panfrost_set_sample_mask(struct pipe_context *pipe,
2379 unsigned sample_mask)
2380{
2381}
2382
2383static void
2384panfrost_set_clip_state(struct pipe_context *pipe,
2385 const struct pipe_clip_state *clip)
2386{
2387 //struct panfrost_context *panfrost = pan_context(pipe);
2388}
2389
2390static void
2391panfrost_set_viewport_states(struct pipe_context *pipe,
2392 unsigned start_slot,
2393 unsigned num_viewports,
2394 const struct pipe_viewport_state *viewports)
2395{
2396 struct panfrost_context *ctx = pan_context(pipe);
2397
2398 assert(start_slot == 0);
2399 assert(num_viewports == 1);
2400
2401 ctx->pipe_viewport = *viewports;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002402}
2403
2404static void
2405panfrost_set_scissor_states(struct pipe_context *pipe,
2406 unsigned start_slot,
2407 unsigned num_scissors,
2408 const struct pipe_scissor_state *scissors)
2409{
2410 struct panfrost_context *ctx = pan_context(pipe);
2411
2412 assert(start_slot == 0);
2413 assert(num_scissors == 1);
2414
2415 ctx->scissor = *scissors;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002416}
2417
2418static void
2419panfrost_set_polygon_stipple(struct pipe_context *pipe,
2420 const struct pipe_poly_stipple *stipple)
2421{
2422 //struct panfrost_context *panfrost = pan_context(pipe);
2423}
2424
2425static void
2426panfrost_set_active_query_state(struct pipe_context *pipe,
Ilia Mirkin0e30c6b2019-07-04 11:41:41 -04002427 bool enable)
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002428{
Alyssa Rosenzweig7c224c12019-08-08 07:01:12 -07002429 struct panfrost_context *ctx = pan_context(pipe);
2430 ctx->active_queries = enable;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002431}
2432
2433static void
2434panfrost_destroy(struct pipe_context *pipe)
2435{
2436 struct panfrost_context *panfrost = pan_context(pipe);
2437
2438 if (panfrost->blitter)
2439 util_blitter_destroy(panfrost->blitter);
Tomeu Vizoso756f7b92019-03-08 10:27:07 +01002440
Alyssa Rosenzweig7005c0d2019-06-23 11:05:10 -07002441 if (panfrost->blitter_wallpaper)
2442 util_blitter_destroy(panfrost->blitter_wallpaper);
2443
Boris Brezillonb60ed3c2019-11-06 15:52:45 +01002444 util_unreference_framebuffer_state(&panfrost->pipe_framebuffer);
Boris Brezillon8c8e4fd2019-11-06 15:49:43 +01002445 u_upload_destroy(pipe->stream_uploader);
2446
Tomeu Vizoso0fcf73b2019-06-18 14:24:57 +02002447 ralloc_free(pipe);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002448}
2449
2450static struct pipe_query *
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002451panfrost_create_query(struct pipe_context *pipe,
2452 unsigned type,
2453 unsigned index)
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002454{
Tomeu Vizoso0fcf73b2019-06-18 14:24:57 +02002455 struct panfrost_query *q = rzalloc(pipe, struct panfrost_query);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002456
2457 q->type = type;
2458 q->index = index;
2459
2460 return (struct pipe_query *) q;
2461}
2462
2463static void
2464panfrost_destroy_query(struct pipe_context *pipe, struct pipe_query *q)
2465{
Urja Rannikkodff99ce2019-10-22 12:05:07 +00002466 struct panfrost_query *query = (struct panfrost_query *) q;
2467
2468 if (query->bo) {
2469 panfrost_bo_unreference(query->bo);
2470 query->bo = NULL;
2471 }
2472
Tomeu Vizoso0fcf73b2019-06-18 14:24:57 +02002473 ralloc_free(q);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002474}
2475
Ilia Mirkin0e30c6b2019-07-04 11:41:41 -04002476static bool
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002477panfrost_begin_query(struct pipe_context *pipe, struct pipe_query *q)
2478{
2479 struct panfrost_context *ctx = pan_context(pipe);
2480 struct panfrost_query *query = (struct panfrost_query *) q;
2481
2482 switch (query->type) {
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002483 case PIPE_QUERY_OCCLUSION_COUNTER:
2484 case PIPE_QUERY_OCCLUSION_PREDICATE:
Alyssa Rosenzweig7c224c12019-08-08 07:01:12 -07002485 case PIPE_QUERY_OCCLUSION_PREDICATE_CONSERVATIVE:
Urja Rannikkodff99ce2019-10-22 12:05:07 +00002486 /* Allocate a bo for the query results to be stored */
2487 if (!query->bo) {
2488 query->bo = panfrost_bo_create(
2489 pan_screen(ctx->base.screen),
2490 sizeof(unsigned), 0);
2491 }
2492
2493 unsigned *result = (unsigned *)query->bo->cpu;
2494 *result = 0; /* Default to 0 if nothing at all drawn. */
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002495 ctx->occlusion_query = query;
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002496 break;
Alyssa Rosenzweig7c224c12019-08-08 07:01:12 -07002497
2498 /* Geometry statistics are computed in the driver. XXX: geom/tess
2499 * shaders.. */
2500
2501 case PIPE_QUERY_PRIMITIVES_GENERATED:
2502 query->start = ctx->prims_generated;
2503 break;
2504 case PIPE_QUERY_PRIMITIVES_EMITTED:
2505 query->start = ctx->tf_prims_generated;
2506 break;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002507
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002508 default:
Tomeu Vizosod902e232020-01-06 10:48:20 +01002509 DBG("Skipping query %u\n", query->type);
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002510 break;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002511 }
2512
2513 return true;
2514}
2515
2516static bool
2517panfrost_end_query(struct pipe_context *pipe, struct pipe_query *q)
2518{
2519 struct panfrost_context *ctx = pan_context(pipe);
Alyssa Rosenzweig7c224c12019-08-08 07:01:12 -07002520 struct panfrost_query *query = (struct panfrost_query *) q;
2521
2522 switch (query->type) {
2523 case PIPE_QUERY_OCCLUSION_COUNTER:
2524 case PIPE_QUERY_OCCLUSION_PREDICATE:
2525 case PIPE_QUERY_OCCLUSION_PREDICATE_CONSERVATIVE:
2526 ctx->occlusion_query = NULL;
2527 break;
2528 case PIPE_QUERY_PRIMITIVES_GENERATED:
2529 query->end = ctx->prims_generated;
2530 break;
2531 case PIPE_QUERY_PRIMITIVES_EMITTED:
2532 query->end = ctx->tf_prims_generated;
2533 break;
2534 }
2535
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002536 return true;
2537}
2538
Ilia Mirkin0e30c6b2019-07-04 11:41:41 -04002539static bool
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002540panfrost_get_query_result(struct pipe_context *pipe,
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002541 struct pipe_query *q,
Ilia Mirkin0e30c6b2019-07-04 11:41:41 -04002542 bool wait,
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002543 union pipe_query_result *vresult)
2544{
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002545 struct panfrost_query *query = (struct panfrost_query *) q;
Boris Brezillona45984b2019-09-15 19:15:16 +02002546 struct panfrost_context *ctx = pan_context(pipe);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002547
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002548
2549 switch (query->type) {
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002550 case PIPE_QUERY_OCCLUSION_COUNTER:
2551 case PIPE_QUERY_OCCLUSION_PREDICATE:
Alyssa Rosenzweig7c224c12019-08-08 07:01:12 -07002552 case PIPE_QUERY_OCCLUSION_PREDICATE_CONSERVATIVE:
2553 /* Flush first */
Boris Brezillona45984b2019-09-15 19:15:16 +02002554 panfrost_flush_all_batches(ctx, true);
Alyssa Rosenzweig7c224c12019-08-08 07:01:12 -07002555
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002556 /* Read back the query results */
Urja Rannikkodff99ce2019-10-22 12:05:07 +00002557 unsigned *result = (unsigned *) query->bo->cpu;
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002558 unsigned passed = *result;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002559
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002560 if (query->type == PIPE_QUERY_OCCLUSION_COUNTER) {
2561 vresult->u64 = passed;
2562 } else {
2563 vresult->b = !!passed;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002564 }
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002565
2566 break;
Alyssa Rosenzweig7c224c12019-08-08 07:01:12 -07002567
2568 case PIPE_QUERY_PRIMITIVES_GENERATED:
2569 case PIPE_QUERY_PRIMITIVES_EMITTED:
Boris Brezillona45984b2019-09-15 19:15:16 +02002570 panfrost_flush_all_batches(ctx, true);
Alyssa Rosenzweig7c224c12019-08-08 07:01:12 -07002571 vresult->u64 = query->end - query->start;
2572 break;
2573
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002574 default:
Alyssa Rosenzweig42f0aae2019-08-30 17:37:22 -07002575 DBG("Skipped query get %u\n", query->type);
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002576 break;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002577 }
2578
2579 return true;
2580}
2581
Alyssa Rosenzweigf277bd32019-03-25 04:57:27 +00002582static struct pipe_stream_output_target *
2583panfrost_create_stream_output_target(struct pipe_context *pctx,
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002584 struct pipe_resource *prsc,
2585 unsigned buffer_offset,
2586 unsigned buffer_size)
Alyssa Rosenzweigf277bd32019-03-25 04:57:27 +00002587{
2588 struct pipe_stream_output_target *target;
2589
Tomeu Vizoso0fcf73b2019-06-18 14:24:57 +02002590 target = rzalloc(pctx, struct pipe_stream_output_target);
Alyssa Rosenzweigf277bd32019-03-25 04:57:27 +00002591
2592 if (!target)
2593 return NULL;
2594
2595 pipe_reference_init(&target->reference, 1);
2596 pipe_resource_reference(&target->buffer, prsc);
2597
2598 target->context = pctx;
2599 target->buffer_offset = buffer_offset;
2600 target->buffer_size = buffer_size;
2601
2602 return target;
2603}
2604
2605static void
2606panfrost_stream_output_target_destroy(struct pipe_context *pctx,
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002607 struct pipe_stream_output_target *target)
Alyssa Rosenzweigf277bd32019-03-25 04:57:27 +00002608{
2609 pipe_resource_reference(&target->buffer, NULL);
Tomeu Vizoso0fcf73b2019-06-18 14:24:57 +02002610 ralloc_free(target);
Alyssa Rosenzweigf277bd32019-03-25 04:57:27 +00002611}
2612
2613static void
2614panfrost_set_stream_output_targets(struct pipe_context *pctx,
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -07002615 unsigned num_targets,
2616 struct pipe_stream_output_target **targets,
2617 const unsigned *offsets)
Alyssa Rosenzweigf277bd32019-03-25 04:57:27 +00002618{
Alyssa Rosenzweig5ff79732019-08-06 16:43:28 -07002619 struct panfrost_context *ctx = pan_context(pctx);
2620 struct panfrost_streamout *so = &ctx->streamout;
2621
2622 assert(num_targets <= ARRAY_SIZE(so->targets));
2623
2624 for (unsigned i = 0; i < num_targets; i++) {
2625 if (offsets[i] != -1)
2626 so->offsets[i] = offsets[i];
2627
2628 pipe_so_target_reference(&so->targets[i], targets[i]);
2629 }
2630
2631 for (unsigned i = 0; i < so->num_targets; i++)
2632 pipe_so_target_reference(&so->targets[i], NULL);
2633
2634 so->num_targets = num_targets;
Alyssa Rosenzweigf277bd32019-03-25 04:57:27 +00002635}
2636
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002637struct pipe_context *
2638panfrost_create_context(struct pipe_screen *screen, void *priv, unsigned flags)
2639{
Tomeu Vizoso0fcf73b2019-06-18 14:24:57 +02002640 struct panfrost_context *ctx = rzalloc(screen, struct panfrost_context);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002641 struct pipe_context *gallium = (struct pipe_context *) ctx;
Tomeu Vizoso756f7b92019-03-08 10:27:07 +01002642
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002643 gallium->screen = screen;
2644
2645 gallium->destroy = panfrost_destroy;
2646
2647 gallium->set_framebuffer_state = panfrost_set_framebuffer_state;
2648
2649 gallium->flush = panfrost_flush;
2650 gallium->clear = panfrost_clear;
2651 gallium->draw_vbo = panfrost_draw_vbo;
2652
2653 gallium->set_vertex_buffers = panfrost_set_vertex_buffers;
2654 gallium->set_constant_buffer = panfrost_set_constant_buffer;
Alyssa Rosenzweig4e736b82019-08-01 10:31:35 -07002655 gallium->set_shader_buffers = panfrost_set_shader_buffers;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002656
2657 gallium->set_stencil_ref = panfrost_set_stencil_ref;
2658
2659 gallium->create_sampler_view = panfrost_create_sampler_view;
2660 gallium->set_sampler_views = panfrost_set_sampler_views;
2661 gallium->sampler_view_destroy = panfrost_sampler_view_destroy;
2662
2663 gallium->create_rasterizer_state = panfrost_create_rasterizer_state;
2664 gallium->bind_rasterizer_state = panfrost_bind_rasterizer_state;
2665 gallium->delete_rasterizer_state = panfrost_generic_cso_delete;
2666
2667 gallium->create_vertex_elements_state = panfrost_create_vertex_elements_state;
2668 gallium->bind_vertex_elements_state = panfrost_bind_vertex_elements_state;
Alyssa Rosenzweig81d32622019-05-17 00:14:49 +00002669 gallium->delete_vertex_elements_state = panfrost_generic_cso_delete;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002670
Alyssa Rosenzweig271726e2019-12-13 15:13:02 -05002671 gallium->create_fs_state = panfrost_create_fs_state;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002672 gallium->delete_fs_state = panfrost_delete_shader_state;
2673 gallium->bind_fs_state = panfrost_bind_fs_state;
2674
Alyssa Rosenzweig271726e2019-12-13 15:13:02 -05002675 gallium->create_vs_state = panfrost_create_vs_state;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002676 gallium->delete_vs_state = panfrost_delete_shader_state;
2677 gallium->bind_vs_state = panfrost_bind_vs_state;
2678
2679 gallium->create_sampler_state = panfrost_create_sampler_state;
2680 gallium->delete_sampler_state = panfrost_generic_cso_delete;
2681 gallium->bind_sampler_states = panfrost_bind_sampler_states;
2682
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002683 gallium->create_depth_stencil_alpha_state = panfrost_create_depth_stencil_state;
2684 gallium->bind_depth_stencil_alpha_state = panfrost_bind_depth_stencil_state;
2685 gallium->delete_depth_stencil_alpha_state = panfrost_delete_depth_stencil_state;
2686
2687 gallium->set_sample_mask = panfrost_set_sample_mask;
2688
2689 gallium->set_clip_state = panfrost_set_clip_state;
2690 gallium->set_viewport_states = panfrost_set_viewport_states;
2691 gallium->set_scissor_states = panfrost_set_scissor_states;
2692 gallium->set_polygon_stipple = panfrost_set_polygon_stipple;
2693 gallium->set_active_query_state = panfrost_set_active_query_state;
2694
2695 gallium->create_query = panfrost_create_query;
2696 gallium->destroy_query = panfrost_destroy_query;
2697 gallium->begin_query = panfrost_begin_query;
2698 gallium->end_query = panfrost_end_query;
2699 gallium->get_query_result = panfrost_get_query_result;
2700
Alyssa Rosenzweigf277bd32019-03-25 04:57:27 +00002701 gallium->create_stream_output_target = panfrost_create_stream_output_target;
2702 gallium->stream_output_target_destroy = panfrost_stream_output_target_destroy;
2703 gallium->set_stream_output_targets = panfrost_set_stream_output_targets;
2704
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002705 panfrost_resource_context_init(gallium);
Alyssa Rosenzweig46396af2019-07-05 15:40:08 -07002706 panfrost_blend_context_init(gallium);
Alyssa Rosenzweiga8fc40a2019-07-23 08:28:23 -07002707 panfrost_compute_context_init(gallium);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002708
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002709 /* XXX: leaks */
2710 gallium->stream_uploader = u_upload_create_default(gallium);
2711 gallium->const_uploader = gallium->stream_uploader;
2712 assert(gallium->stream_uploader);
2713
Alyssa Rosenzweig85e2bb52019-02-08 02:28:12 +00002714 /* Midgard supports ES modes, plus QUADS/QUAD_STRIPS/POLYGON */
2715 ctx->draw_modes = (1 << (PIPE_PRIM_POLYGON + 1)) - 1;
2716
2717 ctx->primconvert = util_primconvert_create(gallium, ctx->draw_modes);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002718
2719 ctx->blitter = util_blitter_create(gallium);
Alyssa Rosenzweig7005c0d2019-06-23 11:05:10 -07002720 ctx->blitter_wallpaper = util_blitter_create(gallium);
2721
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002722 assert(ctx->blitter);
Alyssa Rosenzweig7005c0d2019-06-23 11:05:10 -07002723 assert(ctx->blitter_wallpaper);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002724
2725 /* Prepare for render! */
2726
Boris Brezillon2c526992019-09-05 21:41:26 +02002727 panfrost_batch_init(ctx);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002728 panfrost_emit_vertex_payload(ctx);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002729 panfrost_invalidate_frame(ctx);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002730 panfrost_default_shader_backend(ctx);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00002731
2732 return gallium;
2733}