panfrost: Add note about preloaded varyings
[mesa.git] / src / panfrost / include / panfrost-job.h
1 /*
2 * © Copyright 2017-2018 Alyssa Rosenzweig
3 * © Copyright 2017-2018 Connor Abbott
4 * © Copyright 2017-2018 Lyude Paul
5 * © Copyright2019 Collabora, Ltd.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the next
15 * paragraph) shall be included in all copies or substantial portions of the
16 * Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 * SOFTWARE.
25 *
26 */
27
28 #ifndef __PANFROST_JOB_H__
29 #define __PANFROST_JOB_H__
30
31 #include <stdint.h>
32 #include <stdbool.h>
33 #include <panfrost-misc.h>
34
35 enum mali_job_type {
36 JOB_NOT_STARTED = 0,
37 JOB_TYPE_NULL = 1,
38 JOB_TYPE_WRITE_VALUE = 2,
39 JOB_TYPE_CACHE_FLUSH = 3,
40 JOB_TYPE_COMPUTE = 4,
41 JOB_TYPE_VERTEX = 5,
42 JOB_TYPE_GEOMETRY = 6,
43 JOB_TYPE_TILER = 7,
44 JOB_TYPE_FUSED = 8,
45 JOB_TYPE_FRAGMENT = 9,
46 };
47
48 enum mali_draw_mode {
49 MALI_DRAW_NONE = 0x0,
50 MALI_POINTS = 0x1,
51 MALI_LINES = 0x2,
52 MALI_LINE_STRIP = 0x4,
53 MALI_LINE_LOOP = 0x6,
54 MALI_TRIANGLES = 0x8,
55 MALI_TRIANGLE_STRIP = 0xA,
56 MALI_TRIANGLE_FAN = 0xC,
57 MALI_POLYGON = 0xD,
58 MALI_QUADS = 0xE,
59 MALI_QUAD_STRIP = 0xF,
60
61 /* All other modes invalid */
62 };
63
64 /* Applies to tiler_gl_enables */
65
66 #define MALI_OCCLUSION_QUERY (1 << 3)
67 #define MALI_OCCLUSION_PRECISE (1 << 4)
68
69 /* Set for a glFrontFace(GL_CCW) in a Y=0=TOP coordinate system (like Gallium).
70 * In OpenGL, this would corresponds to glFrontFace(GL_CW). Mesa and the blob
71 * disagree about how to do viewport flipping, so the blob actually sets this
72 * for GL_CW but then has a negative viewport stride */
73
74 #define MALI_FRONT_CCW_TOP (1 << 5)
75
76 #define MALI_CULL_FACE_FRONT (1 << 6)
77 #define MALI_CULL_FACE_BACK (1 << 7)
78
79 /* Used in stencil and depth tests */
80
81 enum mali_func {
82 MALI_FUNC_NEVER = 0,
83 MALI_FUNC_LESS = 1,
84 MALI_FUNC_EQUAL = 2,
85 MALI_FUNC_LEQUAL = 3,
86 MALI_FUNC_GREATER = 4,
87 MALI_FUNC_NOTEQUAL = 5,
88 MALI_FUNC_GEQUAL = 6,
89 MALI_FUNC_ALWAYS = 7
90 };
91
92 /* Flags apply to unknown2_3? */
93
94 #define MALI_HAS_MSAA (1 << 0)
95 #define MALI_CAN_DISCARD (1 << 5)
96
97 /* Applies on SFBD systems, specifying that programmable blending is in use */
98 #define MALI_HAS_BLEND_SHADER (1 << 6)
99
100 /* func is mali_func */
101 #define MALI_DEPTH_FUNC(func) (func << 8)
102 #define MALI_GET_DEPTH_FUNC(flags) ((flags >> 8) & 0x7)
103 #define MALI_DEPTH_FUNC_MASK MALI_DEPTH_FUNC(0x7)
104
105 #define MALI_DEPTH_WRITEMASK (1 << 11)
106
107 /* Next flags to unknown2_4 */
108 #define MALI_STENCIL_TEST (1 << 0)
109
110 /* What?! */
111 #define MALI_SAMPLE_ALPHA_TO_COVERAGE_NO_BLEND_SHADER (1 << 1)
112
113 #define MALI_NO_DITHER (1 << 9)
114 #define MALI_DEPTH_RANGE_A (1 << 12)
115 #define MALI_DEPTH_RANGE_B (1 << 13)
116 #define MALI_NO_MSAA (1 << 14)
117
118 /* Stencil test state is all encoded in a single u32, just with a lot of
119 * enums... */
120
121 enum mali_stencil_op {
122 MALI_STENCIL_KEEP = 0,
123 MALI_STENCIL_REPLACE = 1,
124 MALI_STENCIL_ZERO = 2,
125 MALI_STENCIL_INVERT = 3,
126 MALI_STENCIL_INCR_WRAP = 4,
127 MALI_STENCIL_DECR_WRAP = 5,
128 MALI_STENCIL_INCR = 6,
129 MALI_STENCIL_DECR = 7
130 };
131
132 struct mali_stencil_test {
133 unsigned ref : 8;
134 unsigned mask : 8;
135 enum mali_func func : 3;
136 enum mali_stencil_op sfail : 3;
137 enum mali_stencil_op dpfail : 3;
138 enum mali_stencil_op dppass : 3;
139 unsigned zero : 4;
140 } __attribute__((packed));
141
142 #define MALI_MASK_R (1 << 0)
143 #define MALI_MASK_G (1 << 1)
144 #define MALI_MASK_B (1 << 2)
145 #define MALI_MASK_A (1 << 3)
146
147 enum mali_nondominant_mode {
148 MALI_BLEND_NON_MIRROR = 0,
149 MALI_BLEND_NON_ZERO = 1
150 };
151
152 enum mali_dominant_blend {
153 MALI_BLEND_DOM_SOURCE = 0,
154 MALI_BLEND_DOM_DESTINATION = 1
155 };
156
157 enum mali_dominant_factor {
158 MALI_DOMINANT_UNK0 = 0,
159 MALI_DOMINANT_ZERO = 1,
160 MALI_DOMINANT_SRC_COLOR = 2,
161 MALI_DOMINANT_DST_COLOR = 3,
162 MALI_DOMINANT_UNK4 = 4,
163 MALI_DOMINANT_SRC_ALPHA = 5,
164 MALI_DOMINANT_DST_ALPHA = 6,
165 MALI_DOMINANT_CONSTANT = 7,
166 };
167
168 enum mali_blend_modifier {
169 MALI_BLEND_MOD_UNK0 = 0,
170 MALI_BLEND_MOD_NORMAL = 1,
171 MALI_BLEND_MOD_SOURCE_ONE = 2,
172 MALI_BLEND_MOD_DEST_ONE = 3,
173 };
174
175 struct mali_blend_mode {
176 enum mali_blend_modifier clip_modifier : 2;
177 unsigned unused_0 : 1;
178 unsigned negate_source : 1;
179
180 enum mali_dominant_blend dominant : 1;
181
182 enum mali_nondominant_mode nondominant_mode : 1;
183
184 unsigned unused_1 : 1;
185
186 unsigned negate_dest : 1;
187
188 enum mali_dominant_factor dominant_factor : 3;
189 unsigned complement_dominant : 1;
190 } __attribute__((packed));
191
192 struct mali_blend_equation {
193 /* Of type mali_blend_mode */
194 unsigned rgb_mode : 12;
195 unsigned alpha_mode : 12;
196
197 unsigned zero1 : 4;
198
199 /* Corresponds to MALI_MASK_* above and glColorMask arguments */
200
201 unsigned color_mask : 4;
202 } __attribute__((packed));
203
204 /* Used with channel swizzling */
205 enum mali_channel {
206 MALI_CHANNEL_RED = 0,
207 MALI_CHANNEL_GREEN = 1,
208 MALI_CHANNEL_BLUE = 2,
209 MALI_CHANNEL_ALPHA = 3,
210 MALI_CHANNEL_ZERO = 4,
211 MALI_CHANNEL_ONE = 5,
212 MALI_CHANNEL_RESERVED_0 = 6,
213 MALI_CHANNEL_RESERVED_1 = 7,
214 };
215
216 struct mali_channel_swizzle {
217 enum mali_channel r : 3;
218 enum mali_channel g : 3;
219 enum mali_channel b : 3;
220 enum mali_channel a : 3;
221 } __attribute__((packed));
222
223 /* Compressed per-pixel formats. Each of these formats expands to one to four
224 * floating-point or integer numbers, as defined by the OpenGL specification.
225 * There are various places in OpenGL where the user can specify a compressed
226 * format in memory, which all use the same 8-bit enum in the various
227 * descriptors, although different hardware units support different formats.
228 */
229
230 /* The top 3 bits specify how the bits of each component are interpreted. */
231
232 /* e.g. ETC2_RGB8 */
233 #define MALI_FORMAT_COMPRESSED (0 << 5)
234
235 /* e.g. R11F_G11F_B10F */
236 #define MALI_FORMAT_SPECIAL (2 << 5)
237
238 /* signed normalized, e.g. RGBA8_SNORM */
239 #define MALI_FORMAT_SNORM (3 << 5)
240
241 /* e.g. RGBA8UI */
242 #define MALI_FORMAT_UINT (4 << 5)
243
244 /* e.g. RGBA8 and RGBA32F */
245 #define MALI_FORMAT_UNORM (5 << 5)
246
247 /* e.g. RGBA8I and RGBA16F */
248 #define MALI_FORMAT_SINT (6 << 5)
249
250 /* These formats seem to largely duplicate the others. They're used at least
251 * for Bifrost framebuffer output.
252 */
253 #define MALI_FORMAT_SPECIAL2 (7 << 5)
254
255 /* If the high 3 bits are 3 to 6 these two bits say how many components
256 * there are.
257 */
258 #define MALI_NR_CHANNELS(n) ((n - 1) << 3)
259
260 /* If the high 3 bits are 3 to 6, then the low 3 bits say how big each
261 * component is, except the special MALI_CHANNEL_FLOAT which overrides what the
262 * bits mean.
263 */
264
265 #define MALI_CHANNEL_4 2
266
267 #define MALI_CHANNEL_8 3
268
269 #define MALI_CHANNEL_16 4
270
271 #define MALI_CHANNEL_32 5
272
273 /* For MALI_FORMAT_SINT it means a half-float (e.g. RG16F). For
274 * MALI_FORMAT_UNORM, it means a 32-bit float.
275 */
276 #define MALI_CHANNEL_FLOAT 7
277
278 enum mali_format {
279 MALI_ETC2_RGB8 = MALI_FORMAT_COMPRESSED | 0x1,
280 MALI_ETC2_R11_UNORM = MALI_FORMAT_COMPRESSED | 0x2,
281 MALI_ETC2_RGBA8 = MALI_FORMAT_COMPRESSED | 0x3,
282 MALI_ETC2_RG11_UNORM = MALI_FORMAT_COMPRESSED | 0x4,
283 MALI_ETC2_R11_SNORM = MALI_FORMAT_COMPRESSED | 0x11,
284 MALI_ETC2_RG11_SNORM = MALI_FORMAT_COMPRESSED | 0x12,
285 MALI_ETC2_RGB8A1 = MALI_FORMAT_COMPRESSED | 0x13,
286 MALI_ASTC_SRGB_SUPP = MALI_FORMAT_COMPRESSED | 0x16,
287 MALI_ASTC_HDR_SUPP = MALI_FORMAT_COMPRESSED | 0x17,
288
289 MALI_RGB565 = MALI_FORMAT_SPECIAL | 0x0,
290 MALI_RGB5_A1_UNORM = MALI_FORMAT_SPECIAL | 0x2,
291 MALI_RGB10_A2_UNORM = MALI_FORMAT_SPECIAL | 0x3,
292 MALI_RGB10_A2_SNORM = MALI_FORMAT_SPECIAL | 0x5,
293 MALI_RGB10_A2UI = MALI_FORMAT_SPECIAL | 0x7,
294 MALI_RGB10_A2I = MALI_FORMAT_SPECIAL | 0x9,
295
296 /* YUV formats */
297 MALI_NV12 = MALI_FORMAT_SPECIAL | 0xc,
298
299 MALI_Z32_UNORM = MALI_FORMAT_SPECIAL | 0xD,
300 MALI_R32_FIXED = MALI_FORMAT_SPECIAL | 0x11,
301 MALI_RG32_FIXED = MALI_FORMAT_SPECIAL | 0x12,
302 MALI_RGB32_FIXED = MALI_FORMAT_SPECIAL | 0x13,
303 MALI_RGBA32_FIXED = MALI_FORMAT_SPECIAL | 0x14,
304 MALI_R11F_G11F_B10F = MALI_FORMAT_SPECIAL | 0x19,
305 MALI_R9F_G9F_B9F_E5F = MALI_FORMAT_SPECIAL | 0x1b,
306 /* Only used for varyings, to indicate the transformed gl_Position */
307 MALI_VARYING_POS = MALI_FORMAT_SPECIAL | 0x1e,
308 /* Only used for varyings, to indicate that the write should be
309 * discarded.
310 */
311 MALI_VARYING_DISCARD = MALI_FORMAT_SPECIAL | 0x1f,
312
313 MALI_R8_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(1) | MALI_CHANNEL_8,
314 MALI_R16_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(1) | MALI_CHANNEL_16,
315 MALI_R32_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(1) | MALI_CHANNEL_32,
316 MALI_RG8_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(2) | MALI_CHANNEL_8,
317 MALI_RG16_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(2) | MALI_CHANNEL_16,
318 MALI_RG32_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(2) | MALI_CHANNEL_32,
319 MALI_RGB8_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(3) | MALI_CHANNEL_8,
320 MALI_RGB16_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(3) | MALI_CHANNEL_16,
321 MALI_RGB32_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(3) | MALI_CHANNEL_32,
322 MALI_RGBA8_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(4) | MALI_CHANNEL_8,
323 MALI_RGBA16_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(4) | MALI_CHANNEL_16,
324 MALI_RGBA32_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(4) | MALI_CHANNEL_32,
325
326 MALI_R8UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(1) | MALI_CHANNEL_8,
327 MALI_R16UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(1) | MALI_CHANNEL_16,
328 MALI_R32UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(1) | MALI_CHANNEL_32,
329 MALI_RG8UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(2) | MALI_CHANNEL_8,
330 MALI_RG16UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(2) | MALI_CHANNEL_16,
331 MALI_RG32UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(2) | MALI_CHANNEL_32,
332 MALI_RGB8UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(3) | MALI_CHANNEL_8,
333 MALI_RGB16UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(3) | MALI_CHANNEL_16,
334 MALI_RGB32UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(3) | MALI_CHANNEL_32,
335 MALI_RGBA8UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(4) | MALI_CHANNEL_8,
336 MALI_RGBA16UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(4) | MALI_CHANNEL_16,
337 MALI_RGBA32UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(4) | MALI_CHANNEL_32,
338
339 MALI_R8_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(1) | MALI_CHANNEL_8,
340 MALI_R16_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(1) | MALI_CHANNEL_16,
341 MALI_R32_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(1) | MALI_CHANNEL_32,
342 MALI_R32F = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(1) | MALI_CHANNEL_FLOAT,
343 MALI_RG8_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(2) | MALI_CHANNEL_8,
344 MALI_RG16_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(2) | MALI_CHANNEL_16,
345 MALI_RG32_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(2) | MALI_CHANNEL_32,
346 MALI_RG32F = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(2) | MALI_CHANNEL_FLOAT,
347 MALI_RGB8_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(3) | MALI_CHANNEL_8,
348 MALI_RGB16_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(3) | MALI_CHANNEL_16,
349 MALI_RGB32_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(3) | MALI_CHANNEL_32,
350 MALI_RGB32F = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(3) | MALI_CHANNEL_FLOAT,
351 MALI_RGBA4_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(4) | MALI_CHANNEL_4,
352 MALI_RGBA8_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(4) | MALI_CHANNEL_8,
353 MALI_RGBA16_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(4) | MALI_CHANNEL_16,
354 MALI_RGBA32_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(4) | MALI_CHANNEL_32,
355 MALI_RGBA32F = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(4) | MALI_CHANNEL_FLOAT,
356
357 MALI_R8I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(1) | MALI_CHANNEL_8,
358 MALI_R16I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(1) | MALI_CHANNEL_16,
359 MALI_R32I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(1) | MALI_CHANNEL_32,
360 MALI_R16F = MALI_FORMAT_SINT | MALI_NR_CHANNELS(1) | MALI_CHANNEL_FLOAT,
361 MALI_RG8I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(2) | MALI_CHANNEL_8,
362 MALI_RG16I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(2) | MALI_CHANNEL_16,
363 MALI_RG32I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(2) | MALI_CHANNEL_32,
364 MALI_RG16F = MALI_FORMAT_SINT | MALI_NR_CHANNELS(2) | MALI_CHANNEL_FLOAT,
365 MALI_RGB8I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(3) | MALI_CHANNEL_8,
366 MALI_RGB16I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(3) | MALI_CHANNEL_16,
367 MALI_RGB32I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(3) | MALI_CHANNEL_32,
368 MALI_RGB16F = MALI_FORMAT_SINT | MALI_NR_CHANNELS(3) | MALI_CHANNEL_FLOAT,
369 MALI_RGBA8I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(4) | MALI_CHANNEL_8,
370 MALI_RGBA16I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(4) | MALI_CHANNEL_16,
371 MALI_RGBA32I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(4) | MALI_CHANNEL_32,
372 MALI_RGBA16F = MALI_FORMAT_SINT | MALI_NR_CHANNELS(4) | MALI_CHANNEL_FLOAT,
373
374 MALI_RGBA4 = MALI_FORMAT_SPECIAL2 | 0x8,
375 MALI_RGBA8_2 = MALI_FORMAT_SPECIAL2 | 0xd,
376 MALI_RGB10_A2_2 = MALI_FORMAT_SPECIAL2 | 0xe,
377 };
378
379
380 /* Alpha coverage is encoded as 4-bits (from a clampf), with inversion
381 * literally performing a bitwise invert. This function produces slightly wrong
382 * results and I'm not sure why; some rounding issue I suppose... */
383
384 #define MALI_ALPHA_COVERAGE(clampf) ((uint16_t) (int) (clampf * 15.0f))
385 #define MALI_GET_ALPHA_COVERAGE(nibble) ((float) nibble / 15.0f)
386
387 /* Applies to midgard1.flags_lo */
388
389 /* Should be set when the fragment shader updates the depth value. */
390 #define MALI_WRITES_Z (1 << 4)
391
392 /* Should the hardware perform early-Z testing? Normally should be set
393 * for performance reasons. Clear if you use: discard,
394 * alpha-to-coverage... * It's also possible this disables
395 * forward-pixel kill; we're not quite sure which bit is which yet.
396 * TODO: How does this interact with blending?*/
397
398 #define MALI_EARLY_Z (1 << 6)
399
400 /* Should the hardware calculate derivatives (via helper invocations)? Set in a
401 * fragment shader that uses texturing or derivative functions */
402
403 #define MALI_HELPER_INVOCATIONS (1 << 7)
404
405 /* Flags denoting the fragment shader's use of tilebuffer readback. If the
406 * shader might read any part of the tilebuffer, set MALI_READS_TILEBUFFER. If
407 * it might read depth/stencil in particular, also set MALI_READS_ZS */
408
409 #define MALI_READS_ZS (1 << 8)
410 #define MALI_READS_TILEBUFFER (1 << 12)
411
412 /* Applies to midgard1.flags_hi */
413
414 /* Should be set when the fragment shader updates the stencil value. */
415 #define MALI_WRITES_S (1 << 2)
416
417 /* The raw Midgard blend payload can either be an equation or a shader
418 * address, depending on the context */
419
420 union midgard_blend {
421 mali_ptr shader;
422
423 struct {
424 struct mali_blend_equation equation;
425 float constant;
426 };
427 };
428
429 /* We need to load the tilebuffer to blend (i.e. the destination factor is not
430 * ZERO) */
431
432 #define MALI_BLEND_LOAD_TIB (0x1)
433
434 /* A blend shader is used to blend this render target */
435 #define MALI_BLEND_MRT_SHADER (0x2)
436
437 /* On MRT Midgard systems (using an MFBD), each render target gets its own
438 * blend descriptor */
439
440 #define MALI_BLEND_SRGB (0x400)
441
442 /* Dithering is specified here for MFBD, otherwise NO_DITHER for SFBD */
443 #define MALI_BLEND_NO_DITHER (0x800)
444
445 struct midgard_blend_rt {
446 /* Flags base value of 0x200 to enable the render target.
447 * OR with 0x1 for blending (anything other than REPLACE).
448 * OR with 0x2 for programmable blending
449 * OR with MALI_BLEND_SRGB for implicit sRGB
450 */
451
452 u64 flags;
453 union midgard_blend blend;
454 } __attribute__((packed));
455
456 /* On Bifrost systems (all MRT), each render target gets one of these
457 * descriptors */
458
459 struct bifrost_blend_rt {
460 /* This is likely an analogue of the flags on
461 * midgard_blend_rt */
462
463 u16 flags; // = 0x200
464
465 /* Single-channel blend constants are encoded in a sort of
466 * fixed-point. Basically, the float is mapped to a byte, becoming
467 * a high byte, and then the lower-byte is added for precision.
468 * For the original float f:
469 *
470 * f = (constant_hi / 255) + (constant_lo / 65535)
471 *
472 * constant_hi = int(f / 255)
473 * constant_lo = 65535*f - (65535/255) * constant_hi
474 */
475
476 u16 constant;
477
478 struct mali_blend_equation equation;
479 /*
480 * - 0x19 normally
481 * - 0x3 when this slot is unused (everything else is 0 except the index)
482 * - 0x11 when this is the fourth slot (and it's used)
483 + * - 0 when there is a blend shader
484 */
485 u16 unk2;
486 /* increments from 0 to 3 */
487 u16 index;
488
489 union {
490 struct {
491 /* So far, I've only seen:
492 * - R001 for 1-component formats
493 * - RG01 for 2-component formats
494 * - RGB1 for 3-component formats
495 * - RGBA for 4-component formats
496 */
497 u32 swizzle : 12;
498 enum mali_format format : 8;
499
500 /* Type of the shader output variable. Note, this can
501 * be different from the format.
502 *
503 * 0: f16 (mediump float)
504 * 1: f32 (highp float)
505 * 2: i32 (highp int)
506 * 3: u32 (highp uint)
507 * 4: i16 (mediump int)
508 * 5: u16 (mediump uint)
509 */
510 u32 shader_type : 3;
511 u32 zero : 9;
512 };
513
514 /* Only the low 32 bits of the blend shader are stored, the
515 * high 32 bits are implicitly the same as the original shader.
516 * According to the kernel driver, the program counter for
517 * shaders is actually only 24 bits, so shaders cannot cross
518 * the 2^24-byte boundary, and neither can the blend shader.
519 * The blob handles this by allocating a 2^24 byte pool for
520 * shaders, and making sure that any blend shaders are stored
521 * in the same pool as the original shader. The kernel will
522 * make sure this allocation is aligned to 2^24 bytes.
523 */
524 u32 shader;
525 };
526 } __attribute__((packed));
527
528 /* Descriptor for the shader. Following this is at least one, up to four blend
529 * descriptors for each active render target */
530
531 struct mali_shader_meta {
532 mali_ptr shader;
533 u16 sampler_count;
534 u16 texture_count;
535 u16 attribute_count;
536 u16 varying_count;
537
538 union {
539 struct {
540 u32 uniform_buffer_count : 4;
541 u32 unk1 : 28; // = 0x800000 for vertex, 0x958020 for tiler
542 } bifrost1;
543 struct {
544 unsigned uniform_buffer_count : 4;
545 unsigned flags_lo : 12;
546
547 /* vec4 units */
548 unsigned work_count : 5;
549 unsigned uniform_count : 5;
550 unsigned flags_hi : 6;
551 } midgard1;
552 };
553
554 /* Same as glPolygoOffset() arguments */
555 float depth_units;
556 float depth_factor;
557
558 u32 unknown2_2;
559
560 u16 alpha_coverage;
561 u16 unknown2_3;
562
563 u8 stencil_mask_front;
564 u8 stencil_mask_back;
565 u16 unknown2_4;
566
567 struct mali_stencil_test stencil_front;
568 struct mali_stencil_test stencil_back;
569
570 union {
571 struct {
572 u32 unk3 : 7;
573 /* On Bifrost, some system values are preloaded in
574 * registers R55-R62 by the thread dispatcher prior to
575 * the start of shader execution. This is a bitfield
576 * with one entry for each register saying which
577 * registers need to be preloaded. Right now, the known
578 * values are:
579 *
580 * Vertex/compute:
581 * - R55 : gl_LocalInvocationID.xy
582 * - R56 : gl_LocalInvocationID.z + unknown in high 16 bits
583 * - R57 : gl_WorkGroupID.x
584 * - R58 : gl_WorkGroupID.y
585 * - R59 : gl_WorkGroupID.z
586 * - R60 : gl_GlobalInvocationID.x
587 * - R61 : gl_GlobalInvocationID.y/gl_VertexID (without base)
588 * - R62 : gl_GlobalInvocationID.z/gl_InstanceID (without base)
589 *
590 * Fragment:
591 * - R55 : unknown, never seen (but the bit for this is
592 * always set?)
593 * - R56 : unknown (bit always unset)
594 * - R57 : gl_PrimitiveID
595 * - R58 : gl_FrontFacing in low bit, potentially other stuff
596 * - R59 : u16 fragment coordinates (used to compute
597 * gl_FragCoord.xy, together with sample positions)
598 * - R60 : gl_SampleMask (used in epilog, so pretty
599 * much always used, but the bit is always 0 -- is
600 * this just always pushed?)
601 * - R61 : gl_SampleMaskIn and gl_SampleID, used by
602 * varying interpolation.
603 * - R62 : unknown (bit always unset).
604 *
605 * Later GPUs (starting with Mali-G52?) support
606 * preloading float varyings into r0-r7. This is
607 * indicated by setting 0x40. There is no distinction
608 * here between 1 varying and 2.
609 */
610 u32 preload_regs : 8;
611 /* In units of 8 bytes or 64 bits, since the
612 * uniform/const port loads 64 bits at a time.
613 */
614 u32 uniform_count : 7;
615 u32 unk4 : 10; // = 2
616 } bifrost2;
617 struct {
618 u32 unknown2_7;
619 } midgard2;
620 };
621
622 u32 padding;
623
624 /* Blending information for the older non-MRT Midgard HW. Check for
625 * MALI_HAS_BLEND_SHADER to decide how to interpret.
626 */
627
628 union midgard_blend blend;
629 } __attribute__((packed));
630
631 /* This only concerns hardware jobs */
632
633 /* Possible values for job_descriptor_size */
634
635 #define MALI_JOB_32 0
636 #define MALI_JOB_64 1
637
638 struct mali_job_descriptor_header {
639 u32 exception_status;
640 u32 first_incomplete_task;
641 u64 fault_pointer;
642 u8 job_descriptor_size : 1;
643 enum mali_job_type job_type : 7;
644 u8 job_barrier : 1;
645 u8 unknown_flags : 7;
646 u16 job_index;
647 u16 job_dependency_index_1;
648 u16 job_dependency_index_2;
649 u64 next_job;
650 } __attribute__((packed));
651
652 /* These concern exception_status */
653
654 /* Access type causing a fault, paralleling AS_FAULTSTATUS_* entries in the
655 * kernel */
656
657 enum mali_exception_access {
658 /* Atomic in the kernel for MMU, but that doesn't make sense for a job
659 * fault so it's just unused */
660 MALI_EXCEPTION_ACCESS_NONE = 0,
661
662 MALI_EXCEPTION_ACCESS_EXECUTE = 1,
663 MALI_EXCEPTION_ACCESS_READ = 2,
664 MALI_EXCEPTION_ACCESS_WRITE = 3
665 };
666
667 /* Details about write_value from panfrost igt tests which use it as a generic
668 * dword write primitive */
669
670 #define MALI_WRITE_VALUE_ZERO 3
671
672 struct mali_payload_write_value {
673 u64 address;
674 u32 value_descriptor;
675 u32 reserved;
676 u64 immediate;
677 } __attribute__((packed));
678
679 /*
680 * Mali Attributes
681 *
682 * This structure lets the attribute unit compute the address of an attribute
683 * given the vertex and instance ID. Unfortunately, the way this works is
684 * rather complicated when instancing is enabled.
685 *
686 * To explain this, first we need to explain how compute and vertex threads are
687 * dispatched. This is a guess (although a pretty firm guess!) since the
688 * details are mostly hidden from the driver, except for attribute instancing.
689 * When a quad is dispatched, it receives a single, linear index. However, we
690 * need to translate that index into a (vertex id, instance id) pair, or a
691 * (local id x, local id y, local id z) triple for compute shaders (although
692 * vertex shaders and compute shaders are handled almost identically).
693 * Focusing on vertex shaders, one option would be to do:
694 *
695 * vertex_id = linear_id % num_vertices
696 * instance_id = linear_id / num_vertices
697 *
698 * but this involves a costly division and modulus by an arbitrary number.
699 * Instead, we could pad num_vertices. We dispatch padded_num_vertices *
700 * num_instances threads instead of num_vertices * num_instances, which results
701 * in some "extra" threads with vertex_id >= num_vertices, which we have to
702 * discard. The more we pad num_vertices, the more "wasted" threads we
703 * dispatch, but the division is potentially easier.
704 *
705 * One straightforward choice is to pad num_vertices to the next power of two,
706 * which means that the division and modulus are just simple bit shifts and
707 * masking. But the actual algorithm is a bit more complicated. The thread
708 * dispatcher has special support for dividing by 3, 5, 7, and 9, in addition
709 * to dividing by a power of two. This is possibly using the technique
710 * described in patent US20170010862A1. As a result, padded_num_vertices can be
711 * 1, 3, 5, 7, or 9 times a power of two. This results in less wasted threads,
712 * since we need less padding.
713 *
714 * padded_num_vertices is picked by the hardware. The driver just specifies the
715 * actual number of vertices. At least for Mali G71, the first few cases are
716 * given by:
717 *
718 * num_vertices | padded_num_vertices
719 * 3 | 4
720 * 4-7 | 8
721 * 8-11 | 12 (3 * 4)
722 * 12-15 | 16
723 * 16-19 | 20 (5 * 4)
724 *
725 * Note that padded_num_vertices is a multiple of four (presumably because
726 * threads are dispatched in groups of 4). Also, padded_num_vertices is always
727 * at least one more than num_vertices, which seems like a quirk of the
728 * hardware. For larger num_vertices, the hardware uses the following
729 * algorithm: using the binary representation of num_vertices, we look at the
730 * most significant set bit as well as the following 3 bits. Let n be the
731 * number of bits after those 4 bits. Then we set padded_num_vertices according
732 * to the following table:
733 *
734 * high bits | padded_num_vertices
735 * 1000 | 9 * 2^n
736 * 1001 | 5 * 2^(n+1)
737 * 101x | 3 * 2^(n+2)
738 * 110x | 7 * 2^(n+1)
739 * 111x | 2^(n+4)
740 *
741 * For example, if num_vertices = 70 is passed to glDraw(), its binary
742 * representation is 1000110, so n = 3 and the high bits are 1000, and
743 * therefore padded_num_vertices = 9 * 2^3 = 72.
744 *
745 * The attribute unit works in terms of the original linear_id. if
746 * num_instances = 1, then they are the same, and everything is simple.
747 * However, with instancing things get more complicated. There are four
748 * possible modes, two of them we can group together:
749 *
750 * 1. Use the linear_id directly. Only used when there is no instancing.
751 *
752 * 2. Use the linear_id modulo a constant. This is used for per-vertex
753 * attributes with instancing enabled by making the constant equal
754 * padded_num_vertices. Because the modulus is always padded_num_vertices, this
755 * mode only supports a modulus that is a power of 2 times 1, 3, 5, 7, or 9.
756 * The shift field specifies the power of two, while the extra_flags field
757 * specifies the odd number. If shift = n and extra_flags = m, then the modulus
758 * is (2m + 1) * 2^n. As an example, if num_vertices = 70, then as computed
759 * above, padded_num_vertices = 9 * 2^3, so we should set extra_flags = 4 and
760 * shift = 3. Note that we must exactly follow the hardware algorithm used to
761 * get padded_num_vertices in order to correctly implement per-vertex
762 * attributes.
763 *
764 * 3. Divide the linear_id by a constant. In order to correctly implement
765 * instance divisors, we have to divide linear_id by padded_num_vertices times
766 * to user-specified divisor. So first we compute padded_num_vertices, again
767 * following the exact same algorithm that the hardware uses, then multiply it
768 * by the GL-level divisor to get the hardware-level divisor. This case is
769 * further divided into two more cases. If the hardware-level divisor is a
770 * power of two, then we just need to shift. The shift amount is specified by
771 * the shift field, so that the hardware-level divisor is just 2^shift.
772 *
773 * If it isn't a power of two, then we have to divide by an arbitrary integer.
774 * For that, we use the well-known technique of multiplying by an approximation
775 * of the inverse. The driver must compute the magic multiplier and shift
776 * amount, and then the hardware does the multiplication and shift. The
777 * hardware and driver also use the "round-down" optimization as described in
778 * http://ridiculousfish.com/files/faster_unsigned_division_by_constants.pdf.
779 * The hardware further assumes the multiplier is between 2^31 and 2^32, so the
780 * high bit is implicitly set to 1 even though it is set to 0 by the driver --
781 * presumably this simplifies the hardware multiplier a little. The hardware
782 * first multiplies linear_id by the multiplier and takes the high 32 bits,
783 * then applies the round-down correction if extra_flags = 1, then finally
784 * shifts right by the shift field.
785 *
786 * There are some differences between ridiculousfish's algorithm and the Mali
787 * hardware algorithm, which means that the reference code from ridiculousfish
788 * doesn't always produce the right constants. Mali does not use the pre-shift
789 * optimization, since that would make a hardware implementation slower (it
790 * would have to always do the pre-shift, multiply, and post-shift operations).
791 * It also forces the multplier to be at least 2^31, which means that the
792 * exponent is entirely fixed, so there is no trial-and-error. Altogether,
793 * given the divisor d, the algorithm the driver must follow is:
794 *
795 * 1. Set shift = floor(log2(d)).
796 * 2. Compute m = ceil(2^(shift + 32) / d) and e = 2^(shift + 32) % d.
797 * 3. If e <= 2^shift, then we need to use the round-down algorithm. Set
798 * magic_divisor = m - 1 and extra_flags = 1.
799 * 4. Otherwise, set magic_divisor = m and extra_flags = 0.
800 *
801 * Unrelated to instancing/actual attributes, images (the OpenCL kind) are
802 * implemented as special attributes, denoted by MALI_ATTR_IMAGE. For images,
803 * let shift=extra_flags=0. Stride is set to the image format's bytes-per-pixel
804 * (*NOT the row stride*). Size is set to the size of the image itself.
805 *
806 * Special internal attribtues and varyings (gl_VertexID, gl_FrontFacing, etc)
807 * use particular fixed addresses with modified structures.
808 */
809
810 enum mali_attr_mode {
811 MALI_ATTR_UNUSED = 0,
812 MALI_ATTR_LINEAR = 1,
813 MALI_ATTR_POT_DIVIDE = 2,
814 MALI_ATTR_MODULO = 3,
815 MALI_ATTR_NPOT_DIVIDE = 4,
816 MALI_ATTR_IMAGE = 5,
817 };
818
819 /* Pseudo-address for gl_VertexID, gl_FragCoord, gl_FrontFacing */
820
821 #define MALI_ATTR_VERTEXID (0x22)
822 #define MALI_ATTR_INSTANCEID (0x24)
823 #define MALI_VARYING_FRAG_COORD (0x25)
824 #define MALI_VARYING_FRONT_FACING (0x26)
825
826 /* This magic "pseudo-address" is used as `elements` to implement
827 * gl_PointCoord. When read from a fragment shader, it generates a point
828 * coordinate per the OpenGL ES 2.0 specification. Flipped coordinate spaces
829 * require an affine transformation in the shader. */
830
831 #define MALI_VARYING_POINT_COORD (0x61)
832
833 /* Used for comparison to check if an address is special. Mostly a guess, but
834 * it doesn't really matter. */
835
836 #define MALI_RECORD_SPECIAL (0x100)
837
838 union mali_attr {
839 /* This is used for actual attributes. */
840 struct {
841 /* The bottom 3 bits are the mode */
842 mali_ptr elements : 64 - 8;
843 u32 shift : 5;
844 u32 extra_flags : 3;
845 u32 stride;
846 u32 size;
847 };
848 /* The entry after an NPOT_DIVIDE entry has this format. It stores
849 * extra information that wouldn't fit in a normal entry.
850 */
851 struct {
852 u32 unk; /* = 0x20 */
853 u32 magic_divisor;
854 u32 zero;
855 /* This is the original, GL-level divisor. */
856 u32 divisor;
857 };
858 } __attribute__((packed));
859
860 struct mali_attr_meta {
861 /* Vertex buffer index */
862 u8 index;
863
864 unsigned unknown1 : 2;
865 unsigned swizzle : 12;
866 enum mali_format format : 8;
867
868 /* Always observed to be zero at the moment */
869 unsigned unknown3 : 2;
870
871 /* When packing multiple attributes in a buffer, offset addresses by
872 * this value. Obscurely, this is signed. */
873 int32_t src_offset;
874 } __attribute__((packed));
875
876 #define FBD_MASK (~0x3f)
877
878 /* MFBD, rather than SFBD */
879 #define MALI_MFBD (0x1)
880
881 /* ORed into an MFBD address to specify the fbx section is included */
882 #define MALI_MFBD_TAG_EXTRA (0x2)
883
884 /* Uniform buffer objects are 64-bit fields divided as:
885 *
886 * u64 size : 10;
887 * mali_ptr ptr : 64 - 10;
888 *
889 * The size is actually the size minus 1 (MALI_POSITIVE), in units of 16 bytes.
890 * This gives a maximum of 2^14 bytes, which just so happens to be the GL
891 * minimum-maximum for GL_MAX_UNIFORM_BLOCK_SIZE.
892 *
893 * The pointer is missing the bottom 2 bits and top 8 bits. The top 8 bits
894 * should be 0 for userspace pointers, according to
895 * https://lwn.net/Articles/718895/. By reusing these bits, we can make each
896 * entry in the table only 64 bits.
897 */
898
899 #define MALI_MAKE_UBO(elements, ptr) \
900 (MALI_POSITIVE((elements)) | (((ptr) >> 2) << 10))
901
902 /* On Bifrost, these fields are the same between the vertex and tiler payloads.
903 * They also seem to be the same between Bifrost and Midgard. They're shared in
904 * fused payloads.
905 */
906
907 /* Applies to unknown_draw */
908
909 #define MALI_DRAW_INDEXED_UINT8 (0x10)
910 #define MALI_DRAW_INDEXED_UINT16 (0x20)
911 #define MALI_DRAW_INDEXED_UINT32 (0x30)
912 #define MALI_DRAW_INDEXED_SIZE (0x30)
913 #define MALI_DRAW_INDEXED_SHIFT (4)
914
915 #define MALI_DRAW_VARYING_SIZE (0x100)
916
917 /* Set to use first vertex as the provoking vertex for flatshading. Clear to
918 * use the last vertex. This is the default in DX and VK, but not in GL. */
919
920 #define MALI_DRAW_FLATSHADE_FIRST (0x800)
921
922 #define MALI_DRAW_PRIMITIVE_RESTART_FIXED_INDEX (0x10000)
923
924 struct mali_vertex_tiler_prefix {
925 /* This is a dynamic bitfield containing the following things in this order:
926 *
927 * - gl_WorkGroupSize.x
928 * - gl_WorkGroupSize.y
929 * - gl_WorkGroupSize.z
930 * - gl_NumWorkGroups.x
931 * - gl_NumWorkGroups.y
932 * - gl_NumWorkGroups.z
933 *
934 * The number of bits allocated for each number is based on the *_shift
935 * fields below. For example, workgroups_y_shift gives the bit that
936 * gl_NumWorkGroups.y starts at, and workgroups_z_shift gives the bit
937 * that gl_NumWorkGroups.z starts at (and therefore one after the bit
938 * that gl_NumWorkGroups.y ends at). The actual value for each gl_*
939 * value is one more than the stored value, since if any of the values
940 * are zero, then there would be no invocations (and hence no job). If
941 * there were 0 bits allocated to a given field, then it must be zero,
942 * and hence the real value is one.
943 *
944 * Vertex jobs reuse the same job dispatch mechanism as compute jobs,
945 * effectively doing glDispatchCompute(1, vertex_count, instance_count)
946 * where vertex count is the number of vertices.
947 */
948 u32 invocation_count;
949
950 /* Bitfield for shifts:
951 *
952 * size_y_shift : 5
953 * size_z_shift : 5
954 * workgroups_x_shift : 6
955 * workgroups_y_shift : 6
956 * workgroups_z_shift : 6
957 * workgroups_x_shift_2 : 4
958 */
959 u32 invocation_shifts;
960
961 u32 draw_mode : 4;
962 u32 unknown_draw : 22;
963
964 /* This is the the same as workgroups_x_shift_2 in compute shaders, but
965 * always 5 for vertex jobs and 6 for tiler jobs. I suspect this has
966 * something to do with how many quads get put in the same execution
967 * engine, which is a balance (you don't want to starve the engine, but
968 * you also want to distribute work evenly).
969 */
970 u32 workgroups_x_shift_3 : 6;
971
972
973 /* Negative of min_index. This is used to compute
974 * the unbiased index in tiler/fragment shader runs.
975 *
976 * The hardware adds offset_bias_correction in each run,
977 * so that absent an index bias, the first vertex processed is
978 * genuinely the first vertex (0). But with an index bias,
979 * the first vertex process is numbered the same as the bias.
980 *
981 * To represent this more conviniently:
982 * unbiased_index = lower_bound_index +
983 * index_bias +
984 * offset_bias_correction
985 *
986 * This is done since the hardware doesn't accept a index_bias
987 * and this allows it to recover the unbiased index.
988 */
989 int32_t offset_bias_correction;
990 u32 zero1;
991
992 /* Like many other strictly nonzero quantities, index_count is
993 * subtracted by one. For an indexed cube, this is equal to 35 = 6
994 * faces * 2 triangles/per face * 3 vertices/per triangle - 1. That is,
995 * for an indexed draw, index_count is the number of actual vertices
996 * rendered whereas invocation_count is the number of unique vertices
997 * rendered (the number of times the vertex shader must be invoked).
998 * For non-indexed draws, this is just equal to invocation_count. */
999
1000 u32 index_count;
1001
1002 /* No hidden structure; literally just a pointer to an array of uint
1003 * indices (width depends on flags). Thanks, guys, for not making my
1004 * life insane for once! NULL for non-indexed draws. */
1005
1006 u64 indices;
1007 } __attribute__((packed));
1008
1009 /* Point size / line width can either be specified as a 32-bit float (for
1010 * constant size) or as a [machine word size]-bit GPU pointer (for varying size). If a pointer
1011 * is selected, by setting the appropriate MALI_DRAW_VARYING_SIZE bit in the tiler
1012 * payload, the contents of varying_pointer will be intepreted as an array of
1013 * fp16 sizes, one for each vertex. gl_PointSize is therefore implemented by
1014 * creating a special MALI_R16F varying writing to varying_pointer. */
1015
1016 union midgard_primitive_size {
1017 float constant;
1018 u64 pointer;
1019 };
1020
1021 struct bifrost_vertex_only {
1022 u32 unk2; /* =0x2 */
1023
1024 u32 zero0;
1025
1026 u64 zero1;
1027 } __attribute__((packed));
1028
1029 struct bifrost_tiler_heap_meta {
1030 u32 zero;
1031 u32 heap_size;
1032 /* note: these are just guesses! */
1033 mali_ptr tiler_heap_start;
1034 mali_ptr tiler_heap_free;
1035 mali_ptr tiler_heap_end;
1036
1037 /* hierarchy weights? but they're still 0 after the job has run... */
1038 u32 zeros[12];
1039 } __attribute__((packed));
1040
1041 struct bifrost_tiler_meta {
1042 u64 zero0;
1043 u16 hierarchy_mask;
1044 u16 flags;
1045 u16 width;
1046 u16 height;
1047 u64 zero1;
1048 mali_ptr tiler_heap_meta;
1049 /* TODO what is this used for? */
1050 u64 zeros[20];
1051 } __attribute__((packed));
1052
1053 struct bifrost_tiler_only {
1054 /* 0x20 */
1055 union midgard_primitive_size primitive_size;
1056
1057 mali_ptr tiler_meta;
1058
1059 u64 zero1, zero2, zero3, zero4, zero5, zero6;
1060
1061 u32 gl_enables;
1062 u32 zero7;
1063 u64 zero8;
1064 } __attribute__((packed));
1065
1066 struct mali_vertex_tiler_postfix {
1067 /* Zero for vertex jobs. Pointer to the position (gl_Position) varying
1068 * output from the vertex shader for tiler jobs.
1069 */
1070
1071 u64 position_varying;
1072
1073 /* An array of mali_uniform_buffer_meta's. The size is given by the
1074 * shader_meta.
1075 */
1076 u64 uniform_buffers;
1077
1078 /* This is a pointer to an array of pointers to the texture
1079 * descriptors, number of pointers bounded by number of textures. The
1080 * indirection is needed to accomodate varying numbers and sizes of
1081 * texture descriptors */
1082 u64 texture_trampoline;
1083
1084 /* For OpenGL, from what I've seen, this is intimately connected to
1085 * texture_meta. cwabbott says this is not the case under Vulkan, hence
1086 * why this field is seperate (Midgard is Vulkan capable). Pointer to
1087 * array of sampler descriptors (which are uniform in size) */
1088 u64 sampler_descriptor;
1089
1090 u64 uniforms;
1091 u64 shader;
1092 u64 attributes; /* struct attribute_buffer[] */
1093 u64 attribute_meta; /* attribute_meta[] */
1094 u64 varyings; /* struct attr */
1095 u64 varying_meta; /* pointer */
1096 u64 viewport;
1097 u64 occlusion_counter; /* A single bit as far as I can tell */
1098
1099 /* On Bifrost, this points directly to a mali_shared_memory structure.
1100 * On Midgard, this points to a framebuffer (either SFBD or MFBD as
1101 * tagged), which embeds a mali_shared_memory structure */
1102 mali_ptr shared_memory;
1103 } __attribute__((packed));
1104
1105 struct midgard_payload_vertex_tiler {
1106 struct mali_vertex_tiler_prefix prefix;
1107
1108 u16 gl_enables; // 0x5
1109
1110 /* Both zero for non-instanced draws. For instanced draws, a
1111 * decomposition of padded_num_vertices. See the comments about the
1112 * corresponding fields in mali_attr for context. */
1113
1114 unsigned instance_shift : 5;
1115 unsigned instance_odd : 3;
1116
1117 u8 zero4;
1118
1119 /* Offset for first vertex in buffer */
1120 u32 offset_start;
1121
1122 u64 zero5;
1123
1124 struct mali_vertex_tiler_postfix postfix;
1125
1126 union midgard_primitive_size primitive_size;
1127 } __attribute__((packed));
1128
1129 struct bifrost_payload_vertex {
1130 struct mali_vertex_tiler_prefix prefix;
1131 struct bifrost_vertex_only vertex;
1132 struct mali_vertex_tiler_postfix postfix;
1133 } __attribute__((packed));
1134
1135 struct bifrost_payload_tiler {
1136 struct mali_vertex_tiler_prefix prefix;
1137 struct bifrost_tiler_only tiler;
1138 struct mali_vertex_tiler_postfix postfix;
1139 } __attribute__((packed));
1140
1141 struct bifrost_payload_fused {
1142 struct mali_vertex_tiler_prefix prefix;
1143 struct bifrost_tiler_only tiler;
1144 struct mali_vertex_tiler_postfix tiler_postfix;
1145 u64 padding; /* zero */
1146 struct bifrost_vertex_only vertex;
1147 struct mali_vertex_tiler_postfix vertex_postfix;
1148 } __attribute__((packed));
1149
1150 /* Purposeful off-by-one in width, height fields. For example, a (64, 64)
1151 * texture is stored as (63, 63) in these fields. This adjusts for that.
1152 * There's an identical pattern in the framebuffer descriptor. Even vertex
1153 * count fields work this way, hence the generic name -- integral fields that
1154 * are strictly positive generally need this adjustment. */
1155
1156 #define MALI_POSITIVE(dim) (dim - 1)
1157
1158 /* Used with wrapping. Unclear what top bit conveys */
1159
1160 enum mali_wrap_mode {
1161 MALI_WRAP_REPEAT = 0x8 | 0x0,
1162 MALI_WRAP_CLAMP_TO_EDGE = 0x8 | 0x1,
1163 MALI_WRAP_CLAMP = 0x8 | 0x2,
1164 MALI_WRAP_CLAMP_TO_BORDER = 0x8 | 0x3,
1165 MALI_WRAP_MIRRORED_REPEAT = 0x8 | 0x4 | 0x0,
1166 MALI_WRAP_MIRRORED_CLAMP_TO_EDGE = 0x8 | 0x4 | 0x1,
1167 MALI_WRAP_MIRRORED_CLAMP = 0x8 | 0x4 | 0x2,
1168 MALI_WRAP_MIRRORED_CLAMP_TO_BORDER = 0x8 | 0x4 | 0x3,
1169 };
1170
1171 /* Shared across both command stream and Midgard, and even with Bifrost */
1172
1173 enum mali_texture_type {
1174 MALI_TEX_CUBE = 0x0,
1175 MALI_TEX_1D = 0x1,
1176 MALI_TEX_2D = 0x2,
1177 MALI_TEX_3D = 0x3
1178 };
1179
1180 /* 8192x8192 */
1181 #define MAX_MIP_LEVELS (13)
1182
1183 /* Cubemap bloats everything up */
1184 #define MAX_CUBE_FACES (6)
1185
1186 /* For each pointer, there is an address and optionally also a stride */
1187 #define MAX_ELEMENTS (2)
1188
1189 /* It's not known why there are 4-bits allocated -- this enum is almost
1190 * certainly incomplete */
1191
1192 enum mali_texture_layout {
1193 /* For a Z/S texture, this is linear */
1194 MALI_TEXTURE_TILED = 0x1,
1195
1196 /* Z/S textures cannot be tiled */
1197 MALI_TEXTURE_LINEAR = 0x2,
1198
1199 /* 16x16 sparse */
1200 MALI_TEXTURE_AFBC = 0xC
1201 };
1202
1203 /* Corresponds to the type passed to glTexImage2D and so forth */
1204
1205 struct mali_texture_format {
1206 unsigned swizzle : 12;
1207 enum mali_format format : 8;
1208
1209 unsigned srgb : 1;
1210 unsigned unknown1 : 1;
1211
1212 enum mali_texture_type type : 2;
1213 enum mali_texture_layout layout : 4;
1214
1215 /* Always set */
1216 unsigned unknown2 : 1;
1217
1218 /* Set to allow packing an explicit stride */
1219 unsigned manual_stride : 1;
1220
1221 unsigned zero : 2;
1222 } __attribute__((packed));
1223
1224 struct mali_texture_descriptor {
1225 uint16_t width;
1226 uint16_t height;
1227 uint16_t depth;
1228 uint16_t array_size;
1229
1230 struct mali_texture_format format;
1231
1232 uint16_t unknown3;
1233
1234 /* One for non-mipmapped, zero for mipmapped */
1235 uint8_t unknown3A;
1236
1237 /* Zero for non-mipmapped, (number of levels - 1) for mipmapped */
1238 uint8_t levels;
1239
1240 /* Swizzling is a single 32-bit word, broken up here for convenience.
1241 * Here, swizzling refers to the ES 3.0 texture parameters for channel
1242 * level swizzling, not the internal pixel-level swizzling which is
1243 * below OpenGL's reach */
1244
1245 unsigned swizzle : 12;
1246 unsigned swizzle_zero : 20;
1247
1248 uint32_t unknown5;
1249 uint32_t unknown6;
1250 uint32_t unknown7;
1251 } __attribute__((packed));
1252
1253 /* filter_mode */
1254
1255 #define MALI_SAMP_MAG_NEAREST (1 << 0)
1256 #define MALI_SAMP_MIN_NEAREST (1 << 1)
1257
1258 /* TODO: What do these bits mean individually? Only seen set together */
1259
1260 #define MALI_SAMP_MIP_LINEAR_1 (1 << 3)
1261 #define MALI_SAMP_MIP_LINEAR_2 (1 << 4)
1262
1263 /* Flag in filter_mode, corresponding to OpenCL's NORMALIZED_COORDS_TRUE
1264 * sampler_t flag. For typical OpenGL textures, this is always set. */
1265
1266 #define MALI_SAMP_NORM_COORDS (1 << 5)
1267
1268 /* Used for lod encoding. Thanks @urjaman for pointing out these routines can
1269 * be cleaned up a lot. */
1270
1271 #define DECODE_FIXED_16(x) ((float) (x / 256.0))
1272
1273 static inline int16_t
1274 FIXED_16(float x, bool allow_negative)
1275 {
1276 /* Clamp inputs, accounting for float error */
1277 float max_lod = (32.0 - (1.0 / 512.0));
1278 float min_lod = allow_negative ? -max_lod : 0.0;
1279
1280 x = ((x > max_lod) ? max_lod : ((x < min_lod) ? min_lod : x));
1281
1282 return (int) (x * 256.0);
1283 }
1284
1285 struct mali_sampler_descriptor {
1286 uint16_t filter_mode;
1287
1288 /* Fixed point, signed.
1289 * Upper 7 bits before the decimal point, although it caps [0-31].
1290 * Lower 8 bits after the decimal point: int(round(x * 256)) */
1291
1292 int16_t lod_bias;
1293 int16_t min_lod;
1294 int16_t max_lod;
1295
1296 /* All one word in reality, but packed a bit. Comparisons are flipped
1297 * from OpenGL. */
1298
1299 enum mali_wrap_mode wrap_s : 4;
1300 enum mali_wrap_mode wrap_t : 4;
1301 enum mali_wrap_mode wrap_r : 4;
1302 enum mali_func compare_func : 3;
1303
1304 /* No effect on 2D textures. For cubemaps, set for ES3 and clear for
1305 * ES2, controlling seamless cubemapping */
1306 unsigned seamless_cube_map : 1;
1307
1308 unsigned zero : 16;
1309
1310 uint32_t zero2;
1311 float border_color[4];
1312 } __attribute__((packed));
1313
1314 /* viewport0/viewport1 form the arguments to glViewport. viewport1 is
1315 * modified by MALI_POSITIVE; viewport0 is as-is.
1316 */
1317
1318 struct mali_viewport {
1319 /* XY clipping planes */
1320 float clip_minx;
1321 float clip_miny;
1322 float clip_maxx;
1323 float clip_maxy;
1324
1325 /* Depth clipping planes */
1326 float clip_minz;
1327 float clip_maxz;
1328
1329 u16 viewport0[2];
1330 u16 viewport1[2];
1331 } __attribute__((packed));
1332
1333 /* From presentations, 16x16 tiles externally. Use shift for fast computation
1334 * of tile numbers. */
1335
1336 #define MALI_TILE_SHIFT 4
1337 #define MALI_TILE_LENGTH (1 << MALI_TILE_SHIFT)
1338
1339 /* Tile coordinates are stored as a compact u32, as only 12 bits are needed to
1340 * each component. Notice that this provides a theoretical upper bound of (1 <<
1341 * 12) = 4096 tiles in each direction, addressing a maximum framebuffer of size
1342 * 65536x65536. Multiplying that together, times another four given that Mali
1343 * framebuffers are 32-bit ARGB8888, means that this upper bound would take 16
1344 * gigabytes of RAM just to store the uncompressed framebuffer itself, let
1345 * alone rendering in real-time to such a buffer.
1346 *
1347 * Nice job, guys.*/
1348
1349 /* From mali_kbase_10969_workaround.c */
1350 #define MALI_X_COORD_MASK 0x00000FFF
1351 #define MALI_Y_COORD_MASK 0x0FFF0000
1352
1353 /* Extract parts of a tile coordinate */
1354
1355 #define MALI_TILE_COORD_X(coord) ((coord) & MALI_X_COORD_MASK)
1356 #define MALI_TILE_COORD_Y(coord) (((coord) & MALI_Y_COORD_MASK) >> 16)
1357
1358 /* Helpers to generate tile coordinates based on the boundary coordinates in
1359 * screen space. So, with the bounds (0, 0) to (128, 128) for the screen, these
1360 * functions would convert it to the bounding tiles (0, 0) to (7, 7).
1361 * Intentional "off-by-one"; finding the tile number is a form of fencepost
1362 * problem. */
1363
1364 #define MALI_MAKE_TILE_COORDS(X, Y) ((X) | ((Y) << 16))
1365 #define MALI_BOUND_TO_TILE(B, bias) ((B - bias) >> MALI_TILE_SHIFT)
1366 #define MALI_COORDINATE_TO_TILE(W, H, bias) MALI_MAKE_TILE_COORDS(MALI_BOUND_TO_TILE(W, bias), MALI_BOUND_TO_TILE(H, bias))
1367 #define MALI_COORDINATE_TO_TILE_MIN(W, H) MALI_COORDINATE_TO_TILE(W, H, 0)
1368 #define MALI_COORDINATE_TO_TILE_MAX(W, H) MALI_COORDINATE_TO_TILE(W, H, 1)
1369
1370 struct mali_payload_fragment {
1371 u32 min_tile_coord;
1372 u32 max_tile_coord;
1373 mali_ptr framebuffer;
1374 } __attribute__((packed));
1375
1376 /* Single Framebuffer Descriptor */
1377
1378 /* Flags apply to format. With just MSAA_A and MSAA_B, the framebuffer is
1379 * configured for 4x. With MSAA_8, it is configured for 8x. */
1380
1381 #define MALI_SFBD_FORMAT_MSAA_8 (1 << 3)
1382 #define MALI_SFBD_FORMAT_MSAA_A (1 << 4)
1383 #define MALI_SFBD_FORMAT_MSAA_B (1 << 4)
1384 #define MALI_SFBD_FORMAT_SRGB (1 << 5)
1385
1386 /* Fast/slow based on whether all three buffers are cleared at once */
1387
1388 #define MALI_CLEAR_FAST (1 << 18)
1389 #define MALI_CLEAR_SLOW (1 << 28)
1390 #define MALI_CLEAR_SLOW_STENCIL (1 << 31)
1391
1392 /* Configures hierarchical tiling on Midgard for both SFBD/MFBD (embedded
1393 * within the larget framebuffer descriptor). Analogous to
1394 * bifrost_tiler_heap_meta and bifrost_tiler_meta*/
1395
1396 /* See pan_tiler.c for derivation */
1397 #define MALI_HIERARCHY_MASK ((1 << 9) - 1)
1398
1399 /* Flag disabling the tiler for clear-only jobs, with
1400 hierarchical tiling */
1401 #define MALI_TILER_DISABLED (1 << 12)
1402
1403 /* Flag selecting userspace-generated polygon list, for clear-only jobs without
1404 * hierarhical tiling. */
1405 #define MALI_TILER_USER 0xFFF
1406
1407 /* Absent any geometry, the minimum size of the polygon list header */
1408 #define MALI_TILER_MINIMUM_HEADER_SIZE 0x200
1409
1410 struct midgard_tiler_descriptor {
1411 /* Size of the entire polygon list; see pan_tiler.c for the
1412 * computation. It's based on hierarchical tiling */
1413
1414 u32 polygon_list_size;
1415
1416 /* Name known from the replay workaround in the kernel. What exactly is
1417 * flagged here is less known. We do that (tiler_hierarchy_mask & 0x1ff)
1418 * specifies a mask of hierarchy weights, which explains some of the
1419 * performance mysteries around setting it. We also see the bottom bit
1420 * of tiler_flags set in the kernel, but no comment why.
1421 *
1422 * hierarchy_mask can have the TILER_DISABLED flag */
1423
1424 u16 hierarchy_mask;
1425 u16 flags;
1426
1427 /* See mali_tiler.c for an explanation */
1428 mali_ptr polygon_list;
1429 mali_ptr polygon_list_body;
1430
1431 /* Names based on we see symmetry with replay jobs which name these
1432 * explicitly */
1433
1434 mali_ptr heap_start; /* tiler heap_free_address */
1435 mali_ptr heap_end;
1436
1437 /* Hierarchy weights. We know these are weights based on the kernel,
1438 * but I've never seen them be anything other than zero */
1439 u32 weights[8];
1440 };
1441
1442 enum mali_block_format {
1443 MALI_BLOCK_TILED = 0x0,
1444 MALI_BLOCK_UNKNOWN = 0x1,
1445 MALI_BLOCK_LINEAR = 0x2,
1446 MALI_BLOCK_AFBC = 0x3,
1447 };
1448
1449 struct mali_sfbd_format {
1450 /* 0x1 */
1451 unsigned unk1 : 6;
1452
1453 /* mali_channel_swizzle */
1454 unsigned swizzle : 12;
1455
1456 /* MALI_POSITIVE */
1457 unsigned nr_channels : 2;
1458
1459 /* 0x4 */
1460 unsigned unk2 : 6;
1461
1462 enum mali_block_format block : 2;
1463
1464 /* 0xb */
1465 unsigned unk3 : 4;
1466 };
1467
1468 /* Shared structure at the start of framebuffer descriptors, or used bare for
1469 * compute jobs, configuring stack and shared memory */
1470
1471 struct mali_shared_memory {
1472 u32 stack_shift : 4;
1473 u32 unk0 : 28;
1474
1475 /* Configuration for shared memory for compute shaders.
1476 * shared_workgroup_count is logarithmic and may be computed for a
1477 * compute shader using shared memory as:
1478 *
1479 * shared_workgroup_count = MAX2(ceil(log2(count_x)) + ... + ceil(log2(count_z), 10)
1480 *
1481 * For compute shaders that don't use shared memory, or non-compute
1482 * shaders, this is set to ~0
1483 */
1484
1485 u32 shared_workgroup_count : 5;
1486 u32 shared_unk1 : 3;
1487 u32 shared_shift : 4;
1488 u32 shared_zero : 20;
1489
1490 mali_ptr scratchpad;
1491
1492 /* For compute shaders, the RAM backing of workgroup-shared memory. For
1493 * fragment shaders on Bifrost, apparently multisampling locations */
1494
1495 mali_ptr shared_memory;
1496 mali_ptr unknown1;
1497 } __attribute__((packed));
1498
1499 /* Configures multisampling on Bifrost fragment jobs */
1500
1501 struct bifrost_multisampling {
1502 u64 zero1;
1503 u64 zero2;
1504 mali_ptr sample_locations;
1505 u64 zero4;
1506 } __attribute__((packed));
1507
1508 struct mali_single_framebuffer {
1509 struct mali_shared_memory shared_memory;
1510 struct mali_sfbd_format format;
1511
1512 u32 clear_flags;
1513 u32 zero2;
1514
1515 /* Purposeful off-by-one in these fields should be accounted for by the
1516 * MALI_DIMENSION macro */
1517
1518 u16 width;
1519 u16 height;
1520
1521 u32 zero3[4];
1522 mali_ptr checksum;
1523 u32 checksum_stride;
1524 u32 zero5;
1525
1526 /* By default, the framebuffer is upside down from OpenGL's
1527 * perspective. Set framebuffer to the end and negate the stride to
1528 * flip in the Y direction */
1529
1530 mali_ptr framebuffer;
1531 int32_t stride;
1532
1533 u32 zero4;
1534
1535 /* Depth and stencil buffers are interleaved, it appears, as they are
1536 * set to the same address in captures. Both fields set to zero if the
1537 * buffer is not being cleared. Depending on GL_ENABLE magic, you might
1538 * get a zero enable despite the buffer being present; that still is
1539 * disabled. */
1540
1541 mali_ptr depth_buffer; // not SAME_VA
1542 u32 depth_stride_zero : 4;
1543 u32 depth_stride : 28;
1544 u32 zero7;
1545
1546 mali_ptr stencil_buffer; // not SAME_VA
1547 u32 stencil_stride_zero : 4;
1548 u32 stencil_stride : 28;
1549 u32 zero8;
1550
1551 u32 clear_color_1; // RGBA8888 from glClear, actually used by hardware
1552 u32 clear_color_2; // always equal, but unclear function?
1553 u32 clear_color_3; // always equal, but unclear function?
1554 u32 clear_color_4; // always equal, but unclear function?
1555
1556 /* Set to zero if not cleared */
1557
1558 float clear_depth_1; // float32, ditto
1559 float clear_depth_2; // float32, ditto
1560 float clear_depth_3; // float32, ditto
1561 float clear_depth_4; // float32, ditto
1562
1563 u32 clear_stencil; // Exactly as it appears in OpenGL
1564
1565 u32 zero6[7];
1566
1567 struct midgard_tiler_descriptor tiler;
1568
1569 /* More below this, maybe */
1570 } __attribute__((packed));
1571
1572 /* Format bits for the render target flags */
1573
1574 #define MALI_MFBD_FORMAT_MSAA (1 << 1)
1575 #define MALI_MFBD_FORMAT_SRGB (1 << 2)
1576
1577 struct mali_rt_format {
1578 unsigned unk1 : 32;
1579 unsigned unk2 : 3;
1580
1581 unsigned nr_channels : 2; /* MALI_POSITIVE */
1582
1583 unsigned unk3 : 5;
1584 enum mali_block_format block : 2;
1585 unsigned flags : 4;
1586
1587 unsigned swizzle : 12;
1588
1589 unsigned zero : 3;
1590
1591 /* Disables MFBD preload. When this bit is set, the render target will
1592 * be cleared every frame. When this bit is clear, the hardware will
1593 * automatically wallpaper the render target back from main memory.
1594 * Unfortunately, MFBD preload is very broken on Midgard, so in
1595 * practice, this is a chicken bit that should always be set.
1596 * Discovered by accident, as all good chicken bits are. */
1597
1598 unsigned no_preload : 1;
1599 } __attribute__((packed));
1600
1601 struct mali_render_target {
1602 struct mali_rt_format format;
1603
1604 u64 zero1;
1605
1606 struct {
1607 /* Stuff related to ARM Framebuffer Compression. When AFBC is enabled,
1608 * there is an extra metadata buffer that contains 16 bytes per tile.
1609 * The framebuffer needs to be the same size as before, since we don't
1610 * know ahead of time how much space it will take up. The
1611 * framebuffer_stride is set to 0, since the data isn't stored linearly
1612 * anymore.
1613 *
1614 * When AFBC is disabled, these fields are zero.
1615 */
1616
1617 mali_ptr metadata;
1618 u32 stride; // stride in units of tiles
1619 u32 unk; // = 0x20000
1620 } afbc;
1621
1622 mali_ptr framebuffer;
1623
1624 u32 zero2 : 4;
1625 u32 framebuffer_stride : 28; // in units of bytes
1626 u32 zero3;
1627
1628 u32 clear_color_1; // RGBA8888 from glClear, actually used by hardware
1629 u32 clear_color_2; // always equal, but unclear function?
1630 u32 clear_color_3; // always equal, but unclear function?
1631 u32 clear_color_4; // always equal, but unclear function?
1632 } __attribute__((packed));
1633
1634 /* An optional part of mali_framebuffer. It comes between the main structure
1635 * and the array of render targets. It must be included if any of these are
1636 * enabled:
1637 *
1638 * - Transaction Elimination
1639 * - Depth/stencil
1640 * - TODO: Anything else?
1641 */
1642
1643 /* flags_hi */
1644 #define MALI_EXTRA_PRESENT (0x10)
1645
1646 /* flags_lo */
1647 #define MALI_EXTRA_ZS (0x4)
1648
1649 struct mali_framebuffer_extra {
1650 mali_ptr checksum;
1651 /* Each tile has an 8 byte checksum, so the stride is "width in tiles * 8" */
1652 u32 checksum_stride;
1653
1654 unsigned flags_lo : 4;
1655 enum mali_block_format zs_block : 2;
1656 unsigned flags_hi : 26;
1657
1658 union {
1659 /* Note: AFBC is only allowed for 24/8 combined depth/stencil. */
1660 struct {
1661 mali_ptr depth_stencil_afbc_metadata;
1662 u32 depth_stencil_afbc_stride; // in units of tiles
1663 u32 zero1;
1664
1665 mali_ptr depth_stencil;
1666
1667 u64 padding;
1668 } ds_afbc;
1669
1670 struct {
1671 /* Depth becomes depth/stencil in case of combined D/S */
1672 mali_ptr depth;
1673 u32 depth_stride_zero : 4;
1674 u32 depth_stride : 28;
1675 u32 zero1;
1676
1677 mali_ptr stencil;
1678 u32 stencil_stride_zero : 4;
1679 u32 stencil_stride : 28;
1680 u32 zero2;
1681 } ds_linear;
1682 };
1683
1684
1685 u64 zero3, zero4;
1686 } __attribute__((packed));
1687
1688 /* Flags for mfbd_flags */
1689
1690 /* Enables writing depth results back to main memory (rather than keeping them
1691 * on-chip in the tile buffer and then discarding) */
1692
1693 #define MALI_MFBD_DEPTH_WRITE (1 << 10)
1694
1695 /* The MFBD contains the extra mali_framebuffer_extra section */
1696
1697 #define MALI_MFBD_EXTRA (1 << 13)
1698
1699 struct mali_framebuffer {
1700 union {
1701 struct mali_shared_memory shared_memory;
1702 struct bifrost_multisampling msaa;
1703 };
1704
1705 /* 0x20 */
1706 u16 width1, height1;
1707 u32 zero3;
1708 u16 width2, height2;
1709 u32 unk1 : 19; // = 0x01000
1710 u32 rt_count_1 : 2; // off-by-one (use MALI_POSITIVE)
1711 u32 unk2 : 3; // = 0
1712 u32 rt_count_2 : 3; // no off-by-one
1713 u32 zero4 : 5;
1714 /* 0x30 */
1715 u32 clear_stencil : 8;
1716 u32 mfbd_flags : 24; // = 0x100
1717 float clear_depth;
1718
1719 struct midgard_tiler_descriptor tiler;
1720
1721 /* optional: struct mali_framebuffer_extra extra */
1722 /* struct mali_render_target rts[] */
1723 } __attribute__((packed));
1724
1725 #endif /* __PANFROST_JOB_H__ */