summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/panfrost/midgard/midgard.h
blob: 03ac2f5597e3575b88417074e1977acb8801ab45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
/* Author(s):
 *   Connor Abbott
 *   Alyssa Rosenzweig
 *
 * Copyright (c) 2013 Connor Abbott (connor@abbott.cx)
 * Copyright (c) 2018 Alyssa Rosenzweig (alyssa@rosenzweig.io)
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

#ifndef __midgard_h__
#define __midgard_h__

#include <stdint.h>
#include <stdbool.h>

typedef enum {
        midgard_word_type_alu,
        midgard_word_type_load_store,
        midgard_word_type_texture,
        midgard_word_type_unknown
} midgard_word_type;

typedef enum {
        midgard_alu_vmul,
        midgard_alu_sadd,
        midgard_alu_smul,
        midgard_alu_vadd,
        midgard_alu_lut
} midgard_alu;

/*
 * ALU words
 */

typedef enum {
        midgard_alu_op_fadd       = 0x10,
        midgard_alu_op_fmul       = 0x14,
        midgard_alu_op_fmin       = 0x28,
        midgard_alu_op_fmax       = 0x2C,
        midgard_alu_op_fmov       = 0x30,
        midgard_alu_op_froundeven = 0x34,
        midgard_alu_op_ftrunc     = 0x35,
        midgard_alu_op_ffloor     = 0x36,
        midgard_alu_op_fceil      = 0x37,
        midgard_alu_op_ffma       = 0x38,
        midgard_alu_op_fdot3      = 0x3C,
        midgard_alu_op_fdot3r     = 0x3D,
        midgard_alu_op_fdot4      = 0x3E,
        midgard_alu_op_freduce    = 0x3F,
        midgard_alu_op_iadd       = 0x40,
        midgard_alu_op_ishladd    = 0x41,
        midgard_alu_op_isub       = 0x46,
        midgard_alu_op_imul       = 0x58,
        midgard_alu_op_imin       = 0x60,
        midgard_alu_op_imax       = 0x62,
        midgard_alu_op_iasr       = 0x68,
        midgard_alu_op_ilsr       = 0x69,
        midgard_alu_op_ishl       = 0x6E,
        midgard_alu_op_iand       = 0x70,
        midgard_alu_op_ior        = 0x71,
        midgard_alu_op_inot       = 0x72,
        midgard_alu_op_iandnot    = 0x74, /* (a, b) -> a & ~b, used for not/b2f */
        midgard_alu_op_ixor       = 0x76,
        midgard_alu_op_imov       = 0x7B,
        midgard_alu_op_feq        = 0x80,
        midgard_alu_op_fne        = 0x81,
        midgard_alu_op_flt        = 0x82,
        midgard_alu_op_fle        = 0x83,
        midgard_alu_op_fball_eq   = 0x88,
        midgard_alu_op_bball_eq   = 0x89,
        midgard_alu_op_bbany_neq  = 0x90, /* used for bvec4(1) */
        midgard_alu_op_fbany_neq  = 0x91, /* bvec4(0) also */
        midgard_alu_op_f2i        = 0x99,
        midgard_alu_op_f2u8       = 0x9C,
        midgard_alu_op_f2u        = 0x9D,
        midgard_alu_op_ieq        = 0xA0,
        midgard_alu_op_ine        = 0xA1,
        midgard_alu_op_ilt        = 0xA4,
        midgard_alu_op_ile        = 0xA5,
        midgard_alu_op_iball_eq   = 0xA8,
        midgard_alu_op_ball       = 0xA9,
        midgard_alu_op_ibany_neq  = 0xB1,
        midgard_alu_op_i2f        = 0xB8,
        midgard_alu_op_u2f        = 0xBC,
        midgard_alu_op_icsel      = 0xC1,
        midgard_alu_op_fcsel      = 0xC5,
        midgard_alu_op_fround     = 0xC6,
        midgard_alu_op_fatan_pt2  = 0xE8,
        midgard_alu_op_frcp       = 0xF0,
        midgard_alu_op_frsqrt     = 0xF2,
        midgard_alu_op_fsqrt      = 0xF3,
        midgard_alu_op_fexp2      = 0xF4,
        midgard_alu_op_flog2      = 0xF5,
        midgard_alu_op_fsin       = 0xF6,
        midgard_alu_op_fcos       = 0xF7,
        midgard_alu_op_fatan2_pt1 = 0xF9,
} midgard_alu_op;

typedef enum {
        midgard_outmod_none = 0,
        midgard_outmod_pos  = 1,
        midgard_outmod_int  = 2,
        midgard_outmod_sat  = 3
} midgard_outmod;

typedef enum {
        midgard_reg_mode_quarter = 0,
        midgard_reg_mode_half = 1,
        midgard_reg_mode_full = 2,
        midgard_reg_mode_double = 3 /* TODO: verify */
} midgard_reg_mode;

typedef enum {
        midgard_dest_override_lower = 0,
        midgard_dest_override_upper = 1,
        midgard_dest_override_none = 2
} midgard_dest_override;

typedef struct
__attribute__((__packed__))
{
        bool abs         : 1;
        bool negate      : 1;

        /* replicate lower half if dest = half, or low/high half selection if
         * dest = full
         */
        bool rep_low     : 1;
        bool rep_high    : 1; /* unused if dest = full */
        bool half        : 1; /* only matters if dest = full */
        unsigned swizzle : 8;
}
midgard_vector_alu_src;

typedef struct
__attribute__((__packed__))
{
        midgard_alu_op op               :  8;
        midgard_reg_mode reg_mode   :  2;
        unsigned src1 : 13;
        unsigned src2 : 13;
        midgard_dest_override dest_override : 2;
        midgard_outmod outmod               : 2;
        unsigned mask                           : 8;
}
midgard_vector_alu;

typedef struct
__attribute__((__packed__))
{
        bool abs           : 1;
        bool negate        : 1;
        bool full          : 1; /* 0 = half, 1 = full */
        unsigned component : 3;
}
midgard_scalar_alu_src;

typedef struct
__attribute__((__packed__))
{
        midgard_alu_op op         :  8;
        unsigned src1             :  6;
        unsigned src2             : 11;
        unsigned unknown          :  1;
        midgard_outmod outmod :  2;
        bool output_full          :  1;
        unsigned output_component :  3;
}
midgard_scalar_alu;

typedef struct
__attribute__((__packed__))
{
        unsigned src1_reg : 5;
        unsigned src2_reg : 5;
        unsigned out_reg  : 5;
        bool src2_imm     : 1;
}
midgard_reg_info;

typedef enum {
        midgard_jmp_writeout_op_branch_uncond = 1,
        midgard_jmp_writeout_op_branch_cond = 2,
        midgard_jmp_writeout_op_discard = 4,
        midgard_jmp_writeout_op_writeout = 7,
} midgard_jmp_writeout_op;

typedef enum {
        midgard_condition_write0 = 0,
        midgard_condition_false = 1,
        midgard_condition_true = 2,
        midgard_condition_always = 3, /* Special for writeout/uncond discard */
} midgard_condition;

typedef struct
__attribute__((__packed__))
{
        midgard_jmp_writeout_op op : 3; /* == branch_uncond */
        unsigned dest_tag : 4; /* tag of branch destination */
        unsigned unknown : 2;
        int offset : 7;
}
midgard_branch_uncond;

typedef struct
__attribute__((__packed__))
{
        midgard_jmp_writeout_op op : 3; /* == branch_cond */
        unsigned dest_tag : 4; /* tag of branch destination */
        int offset : 7;
        midgard_condition cond : 2;
}
midgard_branch_cond;

typedef struct
__attribute__((__packed__))
{
        midgard_jmp_writeout_op op : 3; /* == branch_cond */
        unsigned dest_tag : 4; /* tag of branch destination */
        unsigned unknown : 2;
        signed offset : 23;
        unsigned cond : 16;
}
midgard_branch_extended;

typedef struct
__attribute__((__packed__))
{
        midgard_jmp_writeout_op op : 3; /* == writeout */
        unsigned unknown : 13;
}
midgard_writeout;

/*
 * Load/store words
 */

typedef enum {
        midgard_op_ld_st_noop   = 0x03,
        midgard_op_load_attr_16 = 0x95,
        midgard_op_load_attr_32 = 0x94,
        midgard_op_load_vary_16 = 0x99,
        midgard_op_load_vary_32 = 0x98,
        midgard_op_load_color_buffer_16 = 0x9D,
        midgard_op_load_color_buffer_8 = 0xBA,
        midgard_op_load_uniform_16 = 0xAC,
        midgard_op_load_uniform_32 = 0xB0,
        midgard_op_store_vary_16 = 0xD5,
        midgard_op_store_vary_32 = 0xD4
} midgard_load_store_op;

typedef enum {
        midgard_interp_centroid = 1,
        midgard_interp_default = 2
} midgard_interpolation;

typedef struct
__attribute__((__packed__))
{
        unsigned zero1 : 4; /* Always zero */

        /* Varying qualifiers, zero if not a varying */
        unsigned flat    : 1;
        unsigned is_varying : 1; /* Always one for varying, but maybe something else? */
        midgard_interpolation interpolation : 2;

        unsigned zero2 : 2; /* Always zero */
}
midgard_varying_parameter;

typedef struct
__attribute__((__packed__))
{
        midgard_load_store_op op : 8;
        unsigned reg     : 5;
        unsigned mask    : 4;
        unsigned swizzle : 8;
        unsigned unknown : 16;

        unsigned varying_parameters : 10;

        unsigned address : 9;
}
midgard_load_store_word;

typedef struct
__attribute__((__packed__))
{
        unsigned type      : 4;
        unsigned next_type : 4;
        uint64_t word1     : 60;
        uint64_t word2     : 60;
}
midgard_load_store;

/* Texture pipeline results are in r28-r29 */
#define REG_TEX_BASE 28

/* Texture opcodes... maybe? */
#define TEXTURE_OP_NORMAL 0x11
#define TEXTURE_OP_TEXEL_FETCH 0x14

/* Texture format types, found in format */
#define TEXTURE_CUBE 0x00
#define TEXTURE_2D 0x02
#define TEXTURE_3D 0x03

typedef struct
__attribute__((__packed__))
{
        unsigned type      : 4;
        unsigned next_type : 4;

        unsigned op  : 6;
        unsigned shadow    : 1;
        unsigned unknown3  : 1;

        /* A little obscure, but last is set for the last texture operation in
         * a shader. cont appears to just be last's opposite (?). Yeah, I know,
         * kind of funky.. BiOpen thinks it could do with memory hinting, or
         * tile locking? */

        unsigned cont  : 1;
        unsigned last  : 1;

        unsigned format    : 5;
        unsigned has_offset : 1;

        /* Like in Bifrost */
        unsigned filter  : 1;

        unsigned in_reg_select : 1;
        unsigned in_reg_upper  : 1;

        unsigned in_reg_swizzle_left : 2;
        unsigned in_reg_swizzle_right : 2;

        unsigned unknown1 : 2;

        unsigned unknown8  : 4;

        unsigned out_full  : 1;

        /* Always 1 afaict... */
        unsigned unknown7  : 2;

        unsigned out_reg_select : 1;
        unsigned out_upper : 1;

        unsigned mask : 4;

        unsigned unknown2  : 2;

        unsigned swizzle  : 8;
        unsigned unknown4  : 8;

        unsigned unknownA  : 4;

        unsigned offset_unknown1  : 1;
        unsigned offset_reg_select : 1;
        unsigned offset_reg_upper : 1;
        unsigned offset_unknown4  : 1;
        unsigned offset_unknown5  : 1;
        unsigned offset_unknown6  : 1;
        unsigned offset_unknown7  : 1;
        unsigned offset_unknown8  : 1;
        unsigned offset_unknown9  : 1;

        unsigned unknownB  : 3;

        /* Texture bias or LOD, depending on whether it is executed in a
         * fragment/vertex shader respectively. Compute as int(2^8 * biasf).
         *
         * For texel fetch, this is the LOD as is. */
        unsigned bias  : 8;

        unsigned unknown9  : 8;

        unsigned texture_handle : 16;
        unsigned sampler_handle : 16;
}
midgard_texture_word;

/* Opcode name table */

static char *alu_opcode_names[256] = {
        [midgard_alu_op_fadd]       = "fadd",
        [midgard_alu_op_fmul]       = "fmul",
        [midgard_alu_op_fmin]       = "fmin",
        [midgard_alu_op_fmax]       = "fmax",
        [midgard_alu_op_fmov]       = "fmov",
        [midgard_alu_op_froundeven] = "froundeven",
        [midgard_alu_op_ftrunc]     = "ftrunc",
        [midgard_alu_op_ffloor]     = "ffloor",
        [midgard_alu_op_fceil]      = "fceil",
        [midgard_alu_op_ffma]       = "ffma",
        [midgard_alu_op_fdot3]      = "fdot3",
        [midgard_alu_op_fdot3r]     = "fdot3r",
        [midgard_alu_op_fdot4]      = "fdot4",
        [midgard_alu_op_freduce]    = "freduce",
        [midgard_alu_op_imin]       = "imin",
        [midgard_alu_op_imax]       = "imax",
        [midgard_alu_op_ishl]       = "ishl",
        [midgard_alu_op_iasr]       = "iasr",
        [midgard_alu_op_ilsr]       = "ilsr",
        [midgard_alu_op_iadd]       = "iadd",
        [midgard_alu_op_ishladd]    = "ishladd",
        [midgard_alu_op_isub]       = "isub",
        [midgard_alu_op_imul]       = "imul",
        [midgard_alu_op_imov]       = "imov",
        [midgard_alu_op_iand]       = "iand",
        [midgard_alu_op_ior]        = "ior",
        [midgard_alu_op_inot]       = "inot",
        [midgard_alu_op_iandnot]    = "iandnot",
        [midgard_alu_op_ixor]       = "ixor",
        [midgard_alu_op_feq]        = "feq",
        [midgard_alu_op_fne]        = "fne",
        [midgard_alu_op_flt]        = "flt",
        [midgard_alu_op_fle]        = "fle",
        [midgard_alu_op_fball_eq]   = "fball_eq",
        [midgard_alu_op_fbany_neq]  = "fbany_neq",
        [midgard_alu_op_bball_eq]   = "bball_eq",
        [midgard_alu_op_bbany_neq]  = "bbany_neq",
        [midgard_alu_op_f2i]        = "f2i",
        [midgard_alu_op_f2u]        = "f2u",
        [midgard_alu_op_f2u8]       = "f2u8",
        [midgard_alu_op_ieq]        = "ieq",
        [midgard_alu_op_ine]        = "ine",
        [midgard_alu_op_ilt]        = "ilt",
        [midgard_alu_op_ile]        = "ile",
        [midgard_alu_op_iball_eq]   = "iball_eq",
        [midgard_alu_op_ball]       = "ball",
        [midgard_alu_op_ibany_neq]  = "ibany_neq",
        [midgard_alu_op_i2f]        = "i2f",
        [midgard_alu_op_u2f]        = "u2f",
        [midgard_alu_op_icsel]      = "icsel",
        [midgard_alu_op_fcsel]      = "fcsel",
        [midgard_alu_op_fround]     = "fround",
        [midgard_alu_op_fatan_pt2]  = "fatan_pt2",
        [midgard_alu_op_frcp]       = "frcp",
        [midgard_alu_op_frsqrt]     = "frsqrt",
        [midgard_alu_op_fsqrt]      = "fsqrt",
        [midgard_alu_op_fexp2]      = "fexp2",
        [midgard_alu_op_flog2]      = "flog2",
        [midgard_alu_op_fsin]       = "fsin",
        [midgard_alu_op_fcos]       = "fcos",
        [midgard_alu_op_fatan2_pt1] = "fatan2_pt1"
};

static char *load_store_opcode_names[256] = {
        [midgard_op_load_attr_16] = "ld_attr_16",
        [midgard_op_load_attr_32] = "ld_attr_32",
        [midgard_op_load_vary_16] = "ld_vary_16",
        [midgard_op_load_vary_32] = "ld_vary_32",
        [midgard_op_load_uniform_16] = "ld_uniform_16",
        [midgard_op_load_uniform_32] = "ld_uniform_32",
        [midgard_op_load_color_buffer_8] = "ld_color_buffer_8",
        [midgard_op_load_color_buffer_16] = "ld_color_buffer_16",
        [midgard_op_store_vary_16] = "st_vary_16",
        [midgard_op_store_vary_32] = "st_vary_32"
};

#endif