blob: 37c9c690996b0b347f6076522a958a17d34b1dd1 [file] [log] [blame]
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +00001/*
2 * © Copyright 2018 Alyssa Rosenzweig
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 */
24
25#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
Boris Brezillon154cb722019-09-14 09:58:55 +020028#include "pan_bo.h"
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +000029#include "pan_context.h"
Alyssa Rosenzweig35418f62019-12-16 18:05:21 -050030#include "pan_util.h"
Alyssa Rosenzweig80169062020-04-06 16:44:17 -040031#include "panfrost-quirks.h"
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +000032
33#include "compiler/nir/nir.h"
34#include "nir/tgsi_to_nir.h"
35#include "midgard/midgard_compile.h"
Alyssa Rosenzweig80169062020-04-06 16:44:17 -040036#include "bifrost/bifrost_compile.h"
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +000037#include "util/u_dynarray.h"
38
39#include "tgsi/tgsi_dump.h"
40
Alyssa Rosenzweigd1042392020-04-08 13:54:17 -040041static unsigned
42pan_format_from_nir_base(nir_alu_type base)
43{
44 switch (base) {
45 case nir_type_int:
46 return MALI_FORMAT_SINT;
47 case nir_type_uint:
48 case nir_type_bool:
49 return MALI_FORMAT_UINT;
50 case nir_type_float:
51 return MALI_CHANNEL_FLOAT;
52 default:
53 unreachable("Invalid base");
54 }
55}
56
57static unsigned
58pan_format_from_nir_size(nir_alu_type base, unsigned size)
59{
60 if (base == nir_type_float) {
61 switch (size) {
62 case 16: return MALI_FORMAT_SINT;
63 case 32: return MALI_FORMAT_UNORM;
64 default:
65 unreachable("Invalid float size for format");
66 }
67 } else {
68 switch (size) {
69 case 1:
70 case 8: return MALI_CHANNEL_8;
71 case 16: return MALI_CHANNEL_16;
72 case 32: return MALI_CHANNEL_32;
73 default:
74 unreachable("Invalid int size for format");
75 }
76 }
77}
78
79static enum mali_format
Alyssa Rosenzweig1c1782c2020-06-09 18:15:20 -040080pan_format_from_glsl(const struct glsl_type *type, unsigned precision, unsigned frac)
Alyssa Rosenzweigd1042392020-04-08 13:54:17 -040081{
Alyssa Rosenzweig8462ca02020-06-10 15:47:45 -040082 const struct glsl_type *column = glsl_without_array_or_matrix(type);
83 enum glsl_base_type glsl_base = glsl_get_base_type(column);
Alyssa Rosenzweigd1042392020-04-08 13:54:17 -040084 nir_alu_type t = nir_get_nir_type_for_glsl_base_type(glsl_base);
Alyssa Rosenzweig8462ca02020-06-10 15:47:45 -040085 unsigned chan = glsl_get_components(column);
86
87 /* If we have a fractional location added, we need to increase the size
88 * so it will fit, i.e. a vec3 in YZW requires us to allocate a vec4.
89 * We could do better but this is an edge case as it is, normally
90 * packed varyings will be aligned. */
91 chan += frac;
92
93 assert(chan >= 1 && chan <= 4);
Alyssa Rosenzweigd1042392020-04-08 13:54:17 -040094
95 unsigned base = nir_alu_type_get_base_type(t);
96 unsigned size = nir_alu_type_get_type_size(t);
97
Alyssa Rosenzweig1c1782c2020-06-09 18:15:20 -040098 /* Demote to fp16 where possible. int16 varyings are TODO as the hw
99 * will saturate instead of wrap which is not conformant, so we need to
100 * insert i2i16/u2u16 instructions before the st_vary_32i/32u to get
101 * the intended behaviour */
102
103 bool is_16 = (precision == GLSL_PRECISION_MEDIUM)
104 || (precision == GLSL_PRECISION_LOW);
105
106 if (is_16 && base == nir_type_float)
107 size = 16;
108 else
109 size = 32;
110
Alyssa Rosenzweigd1042392020-04-08 13:54:17 -0400111 return pan_format_from_nir_base(base) |
112 pan_format_from_nir_size(base, size) |
Alyssa Rosenzweig8462ca02020-06-10 15:47:45 -0400113 MALI_NR_CHANNELS(chan);
Alyssa Rosenzweigd1042392020-04-08 13:54:17 -0400114}
115
Tomeu Vizoso3c98c452020-04-24 08:40:51 +0200116static enum bifrost_shader_type
117bifrost_blend_type_from_nir(nir_alu_type nir_type)
118{
119 switch(nir_type) {
120 case 0: /* Render target not in use */
121 return 0;
122 case nir_type_float16:
123 return BIFROST_BLEND_F16;
124 case nir_type_float32:
125 return BIFROST_BLEND_F32;
126 case nir_type_int32:
127 return BIFROST_BLEND_I32;
128 case nir_type_uint32:
129 return BIFROST_BLEND_U32;
130 case nir_type_int16:
131 return BIFROST_BLEND_I16;
132 case nir_type_uint16:
133 return BIFROST_BLEND_U16;
134 default:
Alyssa Rosenzweiged1910d2020-07-07 16:15:45 -0400135 unreachable("Unsupported blend shader type for NIR alu type");
Tomeu Vizoso3c98c452020-04-24 08:40:51 +0200136 return 0;
137 }
138}
139
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000140void
Boris Brezillonb02f97c2020-03-05 16:20:18 +0100141panfrost_shader_compile(struct panfrost_context *ctx,
142 enum pipe_shader_ir ir_type,
143 const void *ir,
144 gl_shader_stage stage,
145 struct panfrost_shader_state *state,
146 uint64_t *outputs_written)
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000147{
Alyssa Rosenzweigca8c6252020-03-23 18:44:21 -0400148 struct panfrost_device *dev = pan_device(ctx->base.screen);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000149 uint8_t *dst;
150
151 nir_shader *s;
152
Alyssa Rosenzweigc2280462019-07-31 15:19:09 -0700153 if (ir_type == PIPE_SHADER_IR_NIR) {
154 s = nir_shader_clone(NULL, ir);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000155 } else {
Alyssa Rosenzweigc2280462019-07-31 15:19:09 -0700156 assert (ir_type == PIPE_SHADER_IR_TGSI);
Axel Davy522bd412020-05-12 21:52:40 +0200157 s = tgsi_to_nir(ir, ctx->base.screen, false);
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000158 }
159
Alyssa Rosenzweig46479992019-07-31 15:49:13 -0700160 s->info.stage = stage;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000161
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000162 /* Call out to Midgard compiler given the above NIR */
163
Alyssa Rosenzweig3a4524e2020-03-10 15:41:56 -0400164 panfrost_program program = {
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000165 .alpha_ref = state->alpha_state.ref_value
166 };
167
Alyssa Rosenzweig80169062020-04-06 16:44:17 -0400168 if (dev->quirks & IS_BIFROST) {
169 bifrost_compile_shader_nir(s, &program, dev->gpu_id);
170 } else {
171 midgard_compile_shader_nir(s, &program, false, 0, dev->gpu_id,
Alyssa Rosenzweiged1910d2020-07-07 16:15:45 -0400172 dev->debug & PAN_DBG_PRECOMPILE);
Alyssa Rosenzweig80169062020-04-06 16:44:17 -0400173 }
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000174
175 /* Prepare the compiled binary for upload */
176 int size = program.compiled.size;
177 dst = program.compiled.data;
178
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000179 /* Upload the shader. The lookahead tag is ORed on as a tagged pointer.
180 * I bet someone just thought that would be a cute pun. At least,
181 * that's how I'd do it. */
182
Alyssa Rosenzweigbf5d8cf2019-12-16 16:45:28 -0500183 if (size) {
Alyssa Rosenzweig1d88f072020-07-07 16:19:39 -0400184 state->bo = panfrost_bo_create(dev, size, PAN_BO_EXECUTE);
Alyssa Rosenzweigbf5d8cf2019-12-16 16:45:28 -0500185 memcpy(state->bo->cpu, dst, size);
Alyssa Rosenzweig80169062020-04-06 16:44:17 -0400186 }
187
188 if (!(dev->quirks & IS_BIFROST)) {
189 /* If size = 0, no shader. Use dummy tag to avoid
190 * INSTR_INVALID_ENC */
191 state->first_tag = size ? program.first_tag : 1;
Alyssa Rosenzweigbf5d8cf2019-12-16 16:45:28 -0500192 }
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000193
194 util_dynarray_fini(&program.compiled);
195
Alyssa Rosenzweig7e8de5a2019-04-03 01:48:09 +0000196 state->sysval_count = program.sysval_count;
197 memcpy(state->sysval, program.sysvals, sizeof(state->sysval[0]) * state->sysval_count);
198
Alyssa Rosenzweig87813782019-12-19 13:39:14 -0500199 bool vertex_id = s->info.system_values_read & (1 << SYSTEM_VALUE_VERTEX_ID);
200 bool instance_id = s->info.system_values_read & (1 << SYSTEM_VALUE_INSTANCE_ID);
201
Alyssa Rosenzweig1d194f82020-05-29 16:06:10 -0400202 /* On Bifrost it's a sysval, on Midgard it's a varying */
203 state->reads_frag_coord = s->info.system_values_read & (1 << SYSTEM_VALUE_FRAG_COORD);
204
Alyssa Rosenzweigdce77222020-06-02 14:12:29 -0400205 state->writes_global = s->info.writes_memory;
206
Alyssa Rosenzweig46479992019-07-31 15:49:13 -0700207 switch (stage) {
Alyssa Rosenzweig5534fdb2019-07-23 17:02:38 -0700208 case MESA_SHADER_VERTEX:
Boris Brezillon55e01432020-03-05 15:17:31 +0100209 state->attribute_count = util_bitcount64(s->info.inputs_read);
210 state->varying_count = util_bitcount64(s->info.outputs_written);
Alyssa Rosenzweig87813782019-12-19 13:39:14 -0500211
212 if (vertex_id)
Boris Brezillon55e01432020-03-05 15:17:31 +0100213 state->attribute_count = MAX2(state->attribute_count, PAN_VERTEX_ID + 1);
Alyssa Rosenzweig87813782019-12-19 13:39:14 -0500214
215 if (instance_id)
Boris Brezillon55e01432020-03-05 15:17:31 +0100216 state->attribute_count = MAX2(state->attribute_count, PAN_INSTANCE_ID + 1);
Alyssa Rosenzweig87813782019-12-19 13:39:14 -0500217
Alyssa Rosenzweig5534fdb2019-07-23 17:02:38 -0700218 break;
219 case MESA_SHADER_FRAGMENT:
Boris Brezillon55e01432020-03-05 15:17:31 +0100220 state->attribute_count = 0;
221 state->varying_count = util_bitcount64(s->info.inputs_read);
Boris Brezillon38c20692020-01-31 10:55:49 +0100222 if (s->info.outputs_written & BITFIELD64_BIT(FRAG_RESULT_DEPTH))
223 state->writes_depth = true;
224 if (s->info.outputs_written & BITFIELD64_BIT(FRAG_RESULT_STENCIL))
225 state->writes_stencil = true;
Alyssa Rosenzweig1085f742020-05-21 15:49:30 -0400226
227 /* List of reasons we need to execute frag shaders when things
228 * are masked off */
229
230 state->fs_sidefx =
231 s->info.writes_memory ||
232 s->info.fs.uses_discard ||
233 s->info.fs.uses_demote;
Alyssa Rosenzweig5534fdb2019-07-23 17:02:38 -0700234 break;
Alyssa Rosenzweigff345d42019-07-31 15:52:04 -0700235 case MESA_SHADER_COMPUTE:
236 /* TODO: images */
Boris Brezillon55e01432020-03-05 15:17:31 +0100237 state->attribute_count = 0;
238 state->varying_count = 0;
Alyssa Rosenzweig96031262020-02-06 14:29:42 -0500239 state->shared_size = s->info.cs.shared_size;
Alyssa Rosenzweigff345d42019-07-31 15:52:04 -0700240 break;
Alyssa Rosenzweig5534fdb2019-07-23 17:02:38 -0700241 default:
242 unreachable("Unknown shader state");
243 }
244
Alyssa Rosenzweigbab4f6c2019-07-23 16:52:40 -0700245 state->can_discard = s->info.fs.uses_discard;
Alyssa Rosenzweig48991c72019-07-23 16:49:37 -0700246 state->helper_invocations = s->info.fs.needs_helper_invocations;
Alyssa Rosenzweig75970152019-12-09 11:18:21 -0500247 state->stack_size = program.tls_size;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000248
Alyssa Rosenzweigf1de9522020-06-08 18:05:21 -0400249 state->reads_frag_coord = s->info.inputs_read & (1 << VARYING_SLOT_POS);
250 state->reads_point_coord = s->info.inputs_read & (1 << VARYING_SLOT_PNTC);
251 state->reads_face = s->info.inputs_read & (1 << VARYING_SLOT_FACE);
252 state->writes_point_size = s->info.outputs_written & (1 << VARYING_SLOT_PSIZ);
253
Alyssa Rosenzweig5b0a1a42019-08-07 10:26:12 -0700254 if (outputs_written)
255 *outputs_written = s->info.outputs_written;
256
Alyssa Rosenzweige30091b2020-04-08 14:44:31 -0400257 /* Separate as primary uniform count is truncated. Sysvals are prefix
258 * uniforms */
259 state->uniform_count = s->num_uniforms + program.sysval_count;
Boris Brezillon55e01432020-03-05 15:17:31 +0100260 state->uniform_cutoff = program.uniform_cutoff;
261 state->work_reg_count = program.work_register_count;
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000262
Tomeu Vizoso3c98c452020-04-24 08:40:51 +0200263 if (dev->quirks & IS_BIFROST)
264 for (unsigned i = 0; i < BIFROST_MAX_RENDER_TARGET_COUNT; i++)
265 state->blend_types[i] = bifrost_blend_type_from_nir(program.blend_types[i]);
266
Alyssa Rosenzweigd1042392020-04-08 13:54:17 -0400267 /* Record the varying mapping for the command stream's bookkeeping */
268
Alyssa Rosenzweigd1042392020-04-08 13:54:17 -0400269 struct exec_list *l_varyings =
270 stage == MESA_SHADER_VERTEX ? &s->outputs : &s->inputs;
271
272 nir_foreach_variable(var, l_varyings) {
273 unsigned loc = var->data.driver_location;
274 unsigned sz = glsl_count_attribute_slots(var->type, FALSE);
275
276 for (int c = 0; c < sz; ++c) {
Alyssa Rosenzweig3cc425e2020-06-10 15:48:33 -0400277 state->varyings_loc[loc + c] = var->data.location + c;
Alyssa Rosenzweig1c1782c2020-06-09 18:15:20 -0400278 state->varyings[loc + c] = pan_format_from_glsl(var->type,
279 var->data.precision, var->data.location_frac);
Alyssa Rosenzweigd1042392020-04-08 13:54:17 -0400280 }
281 }
Alyssa Rosenzweig7da251f2019-02-05 04:32:27 +0000282}