pan/bi: Emit load_vary ops
[mesa.git] / src / panfrost / bifrost / bifrost.h
1 /*
2 * Copyright (C) 2019 Connor Abbott <cwabbott0@gmail.com>
3 * Copyright (C) 2019 Lyude Paul <thatslyude@gmail.com>
4 * Copyright (C) 2019 Ryan Houdek <Sonicadvance1@gmail.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
26 #ifndef __bifrost_h__
27 #define __bifrost_h__
28
29 #include <stdint.h>
30 #include <stdbool.h>
31
32 struct bifrost_header {
33 unsigned unk0 : 7;
34 // If true, convert any infinite result of any floating-point operation to
35 // the biggest representable number.
36 unsigned suppress_inf: 1;
37 // Convert any NaN results to 0.
38 unsigned suppress_nan : 1;
39 unsigned unk1 : 2;
40 // true if the execution mask of the next clause is the same as the mask of
41 // the current clause.
42 unsigned back_to_back : 1;
43 unsigned no_end_of_shader: 1;
44 unsigned unk2 : 2;
45 // Set to true for fragment shaders, to implement this bit of spec text
46 // from section 7.1.5 of the GLSL ES spec:
47 //
48 // "Stores to image and buffer variables performed by helper invocations
49 // have no effect on the underlying image or buffer memory."
50 //
51 // Helper invocations are threads (invocations) corresponding to pixels in
52 // a quad that aren't actually part of the triangle, but are included to
53 // make derivatives work correctly. They're usually turned on, but they
54 // need to be masked off for GLSL-level stores. This bit seems to be the
55 // only bit that's actually different between fragment shaders and other
56 // shaders, so this is probably what it's doing.
57 unsigned elide_writes : 1;
58 // If backToBack is off:
59 // - true for conditional branches and fallthrough
60 // - false for unconditional branches
61 // The blob seems to always set it to true if back-to-back is on.
62 unsigned branch_cond : 1;
63 // This bit is set when the next clause writes to the data register of some
64 // previous clause.
65 unsigned datareg_writebarrier: 1;
66 unsigned datareg : 6;
67 unsigned scoreboard_deps: 8;
68 unsigned scoreboard_index: 3;
69 unsigned clause_type: 4;
70 unsigned unk3 : 1; // part of clauseType?
71 unsigned next_clause_type: 4;
72 unsigned unk4 : 1; // part of nextClauseType?
73 } __attribute__((packed));
74
75 enum bifrost_packed_src {
76 BIFROST_SRC_PORT0 = 0,
77 BIFROST_SRC_PORT1 = 1,
78 BIFROST_SRC_PORT3 = 2,
79 BIFROST_SRC_STAGE = 3,
80 BIFROST_SRC_CONST_LO = 4,
81 BIFROST_SRC_CONST_HI = 5,
82 BIFROST_SRC_PASS_FMA = 6,
83 BIFROST_SRC_PASS_ADD = 7,
84 };
85
86 struct bifrost_fma_inst {
87 unsigned src0 : 3;
88 unsigned op : 20;
89 } __attribute__((packed));
90
91 struct bifrost_add_inst {
92 unsigned src0 : 3;
93 unsigned op : 17;
94 } __attribute__((packed));
95
96 enum bifrost_outmod {
97 BIFROST_NONE = 0x0,
98 BIFROST_POS = 0x1,
99 BIFROST_SAT_SIGNED = 0x2,
100 BIFROST_SAT = 0x3,
101 };
102
103 enum bifrost_roundmode {
104 BIFROST_RTE = 0x0, /* round to even */
105 BIFROST_RTP = 0x1, /* round to positive */
106 BIFROST_RTN = 0x2, /* round to negative */
107 BIFROST_RTZ = 0x3 /* round to zero */
108 };
109
110 /* NONE: Same as fmax() and fmin() -- return the other
111 * number if any number is NaN. Also always return +0 if
112 * one argument is +0 and the other is -0.
113 *
114 * NAN_WINS: Instead of never returning a NaN, always return
115 * one. The "greater"/"lesser" NaN is always returned, first
116 * by checking the sign and then the mantissa bits.
117 *
118 * SRC1_WINS: For max, implement src0 > src1 ? src0 : src1.
119 * For min, implement src0 < src1 ? src0 : src1. This
120 * includes handling NaN's and signedness of 0 differently
121 * from above, since +0 and -0 compare equal and comparisons
122 * always return false for NaN's. As a result, this mode is
123 * *not* commutative.
124 *
125 * SRC0_WINS: For max, implement src0 < src1 ? src1 : src0
126 * For min, implement src0 > src1 ? src1 : src0
127 */
128
129
130 enum bifrost_minmax_mode {
131 BIFROST_MINMAX_NONE = 0x0,
132 BIFROST_NAN_WINS = 0x1,
133 BIFROST_SRC1_WINS = 0x2,
134 BIFROST_SRC0_WINS = 0x3,
135 };
136
137 #define BIFROST_FMA_OP_FADD32 (0x58 >> 2)
138
139 struct bifrost_fma_add {
140 unsigned src0 : 3;
141 unsigned src1 : 3;
142 unsigned src1_abs : 1;
143 unsigned src0_neg : 1;
144 unsigned src1_neg : 1;
145 unsigned unk : 3;
146 unsigned src0_abs : 1;
147 enum bifrost_outmod outmod : 2;
148 enum bifrost_roundmode roundmode : 2;
149 unsigned op : 6;
150 } __attribute__((packed));
151
152 #define BIFROST_FMA_OP_FMA (0x00)
153
154 struct bifrost_fma_fma {
155 unsigned src0 : 3;
156 unsigned src1 : 3;
157 unsigned src2 : 3;
158 unsigned src_expand : 3;
159 unsigned src0_abs : 1;
160 unsigned unk : 4;
161 unsigned src0_neg : 1;
162 unsigned src2_neg : 1;
163 unsigned src1_abs : 1;
164 unsigned src2_abs : 1;
165 unsigned op : 5;
166 } __attribute__((packed));
167
168 enum bifrost_csel_cond {
169 BIFROST_FEQ_F = 0x0,
170 BIFROST_FGT_F = 0x1,
171 BIFROST_FGE_F = 0x2,
172 BIFROST_IEQ_F = 0x3,
173 BIFROST_IGT_I = 0x4,
174 BIFROST_IGE_I = 0x5,
175 BIFROST_UGT_I = 0x6,
176 BIFROST_UGE_I = 0x7
177 };
178
179 struct bifrost_csel4 {
180 unsigned src0 : 3;
181 unsigned src1 : 3;
182 unsigned src2 : 3;
183 unsigned src3 : 3;
184 enum bifrost_csel_cond cond : 3;
185 unsigned op : 8;
186 } __attribute__((packed));
187
188 struct bifrost_shift_fma {
189 unsigned src0 : 3;
190 unsigned src1 : 3;
191 unsigned src2 : 3;
192 unsigned half : 3; /* 000 for i32, 100 for i8, 111 for v2i16 */
193 unsigned unk : 1; /* always set? */
194 unsigned invert_1 : 1; /* Inverts sources to combining op */
195 /* For XOR, switches RSHIFT to LSHIFT since only one invert needed */
196 unsigned invert_2 : 1;
197 unsigned op : 8;
198 } __attribute__((packed));
199
200 struct bifrost_shift_add {
201 unsigned src0 : 3;
202 unsigned src1 : 3;
203 unsigned src2 : 3;
204 unsigned zero : 2;
205
206 unsigned invert_1 : 1;
207 unsigned invert_2 : 1;
208
209 unsigned op : 7;
210 } __attribute__((packed));
211
212 enum bifrost_ldst_type {
213 BIFROST_LDST_F16 = 0,
214 BIFROST_LDST_F32 = 1,
215 BIFROST_LDST_I32 = 2,
216 BIFROST_LDST_U32 = 3
217 };
218
219 struct bifrost_ld_var_addr {
220 unsigned src0 : 3;
221 unsigned src1 : 3;
222 unsigned location : 5;
223 enum bifrost_ldst_type type : 2;
224 unsigned op : 7;
225 } __attribute__((packed));
226
227 struct bifrost_ld_attr {
228 unsigned src0 : 3;
229 unsigned src1 : 3;
230 unsigned location : 5;
231 unsigned channels : 2; /* MALI_POSITIVE */
232 enum bifrost_ldst_type type : 2;
233 unsigned op : 5;
234 } __attribute__((packed));
235
236 enum bifrost_interp_mode {
237 BIFROST_INTERP_PER_FRAG = 0x0,
238 BIFROST_INTERP_CENTROID = 0x1,
239 BIFROST_INTERP_DEFAULT = 0x2,
240 BIFROST_INTERP_EXPLICIT = 0x3
241 };
242
243 #define BIFROST_ADD_OP_LD_VAR_16 (0x1a << 1)
244 #define BIFROST_ADD_OP_LD_VAR_32 (0x0a << 1)
245
246 struct bifrost_ld_var {
247 unsigned src0 : 3;
248
249 /* If top two bits set, indirect with src in bottom three */
250 unsigned addr : 5;
251
252 unsigned channels : 2; /* MALI_POSITIVE */
253 enum bifrost_interp_mode interp_mode : 2;
254 unsigned reuse : 1;
255 unsigned flat : 1;
256 unsigned op : 6;
257 } __attribute__((packed));
258
259 struct bifrost_tex_ctrl {
260 unsigned sampler_index : 4; // also used to signal indirects
261 unsigned tex_index : 7;
262 bool no_merge_index : 1; // whether to merge (direct) sampler & texture indices
263 bool filter : 1; // use the usual filtering pipeline (0 for texelFetch & textureGather)
264 unsigned unk0 : 2;
265 bool texel_offset : 1; // *Offset()
266 bool is_shadow : 1;
267 bool is_array : 1;
268 unsigned tex_type : 2; // 2D, 3D, Cube, Buffer
269 bool compute_lod : 1; // 0 for *Lod()
270 bool not_supply_lod : 1; // 0 for *Lod() or when a bias is applied
271 bool calc_gradients : 1; // 0 for *Grad()
272 unsigned unk1 : 1;
273 unsigned result_type : 4; // integer, unsigned, float TODO: why is this 4 bits?
274 unsigned unk2 : 4;
275 } __attribute__((packed));
276
277 struct bifrost_dual_tex_ctrl {
278 unsigned sampler_index0 : 2;
279 unsigned unk0 : 2;
280 unsigned tex_index0 : 2;
281 unsigned sampler_index1 : 2;
282 unsigned tex_index1 : 2;
283 unsigned unk1 : 22;
284 } __attribute__((packed));
285
286 enum branch_bit_size {
287 BR_SIZE_32 = 0,
288 BR_SIZE_16XX = 1,
289 BR_SIZE_16YY = 2,
290 // For the above combinations of bitsize and location, an extra bit is
291 // encoded via comparing the sources. The only possible source of ambiguity
292 // would be if the sources were the same, but then the branch condition
293 // would be always true or always false anyways, so we can ignore it. But
294 // this no longer works when comparing the y component to the x component,
295 // since it's valid to compare the y component of a source against its own
296 // x component. Instead, the extra bit is encoded via an extra bitsize.
297 BR_SIZE_16YX0 = 3,
298 BR_SIZE_16YX1 = 4,
299 BR_SIZE_32_AND_16X = 5,
300 BR_SIZE_32_AND_16Y = 6,
301 // Used for comparisons with zero and always-true, see below. I think this
302 // only works for integer comparisons.
303 BR_SIZE_ZERO = 7,
304 };
305
306 enum bifrost_reg_write_unit {
307 REG_WRITE_NONE = 0, // don't write
308 REG_WRITE_TWO, // write using reg2
309 REG_WRITE_THREE, // write using reg3
310 };
311
312 struct bifrost_regs {
313 unsigned uniform_const : 8;
314 unsigned reg2 : 6;
315 unsigned reg3 : 6;
316 unsigned reg0 : 5;
317 unsigned reg1 : 6;
318 unsigned ctrl : 4;
319 } __attribute__((packed));
320
321 enum bifrost_branch_cond {
322 BR_COND_LT = 0,
323 BR_COND_LE = 1,
324 BR_COND_GE = 2,
325 BR_COND_GT = 3,
326 // Equal vs. not-equal determined by src0/src1 comparison
327 BR_COND_EQ = 4,
328 // floating-point comparisons
329 // Becomes UNE when you flip the arguments
330 BR_COND_OEQ = 5,
331 // TODO what happens when you flip the arguments?
332 BR_COND_OGT = 6,
333 BR_COND_OLT = 7,
334 };
335
336 enum bifrost_branch_code {
337 BR_ALWAYS = 63,
338 };
339
340 struct bifrost_branch {
341 unsigned src0 : 3;
342
343 /* For BR_SIZE_ZERO, upper two bits become ctrl */
344 unsigned src1 : 3;
345
346 /* Offset source -- always uniform/const but
347 * theoretically could support indirect jumps? */
348 unsigned src2 : 3;
349
350 enum bifrost_branch_cond cond : 3;
351 enum branch_bit_size size : 3;
352
353 unsigned op : 5;
354 };
355
356 /* Clause packing */
357
358 #define BIFROST_FMA_NOP (0x701960)
359 #define BIFROST_ADD_NOP (0x3D960)
360
361 struct bifrost_fmt1 {
362 unsigned ins_0 : 3;
363 unsigned tag : 5;
364 uint64_t ins_1 : 64;
365 unsigned ins_2 : 11;
366 uint64_t header : 45;
367 } __attribute__((packed));
368
369 #define BIFROST_FMT1_INSTRUCTIONS 0b00101
370 #define BIFROST_FMT1_FINAL 0b01001
371 #define BIFROST_FMT1_CONSTANTS 0b00001
372
373 enum bifrost_reg_control {
374 BIFROST_WRITE_FMA_P2 = 1,
375 BIFROST_WRITE_FMA_P2_READ_P3 = 2,
376 BIFROST_WRITE_FMA_P2_READ_P3_ALT = 3,
377 BIFROST_READ_P3 = 4,
378 BIFROST_WRITE_ADD_P2 = 5,
379 BIFROST_WRITE_ADD_P2_READ_P3 = 6,
380 BIFROST_WRITE_ADD_P2_FMA_P3 = 7,
381
382 BIFROST_FIRST_NONE = 8,
383 BIFROST_FIRST_WRITE_FMA_P2 = 9,
384 BIFROST_REG_NONE = 11,
385 BIFROST_FIRST_READ_P3 = 12,
386 BIFROST_FIRST_WRITE_ADD_P2 = 13,
387 BIFROST_FIRST_WRITE_ADD_P2_READ_P3 = 14,
388 BIFROST_FIRST_WRITE_ADD_P2_FMA_P3 = 15
389 };
390
391 #endif