ir3: Rewrite UBO push analysis to support bindless
[mesa.git] / src / gallium / drivers / freedreno / ir3 / ir3_gallium.c
1 /*
2 * Copyright (C) 2014 Rob Clark <robclark@freedesktop.org>
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 * Authors:
24 * Rob Clark <robclark@freedesktop.org>
25 */
26
27 #include "pipe/p_state.h"
28 #include "pipe/p_screen.h"
29 #include "util/u_string.h"
30 #include "util/u_memory.h"
31 #include "util/u_inlines.h"
32 #include "util/format/u_format.h"
33 #include "tgsi/tgsi_dump.h"
34 #include "tgsi/tgsi_parse.h"
35
36 #include "nir/tgsi_to_nir.h"
37
38 #include "freedreno_context.h"
39 #include "freedreno_util.h"
40
41 #include "ir3/ir3_shader.h"
42 #include "ir3/ir3_gallium.h"
43 #include "ir3/ir3_compiler.h"
44 #include "ir3/ir3_nir.h"
45
46 static void
47 dump_shader_info(struct ir3_shader_variant *v, bool binning_pass,
48 struct pipe_debug_callback *debug)
49 {
50 if (!unlikely(fd_mesa_debug & FD_DBG_SHADERDB))
51 return;
52
53 pipe_debug_message(debug, SHADER_INFO,
54 "%s shader: %u inst, %u nops, %u non-nops, %u dwords, "
55 "%u last-baryf, %u half, %u full, %u constlen, "
56 "%u sstall, %u (ss), %u (sy), %d max_sun, %d loops\n",
57 ir3_shader_stage(v),
58 v->info.instrs_count,
59 v->info.nops_count,
60 v->info.instrs_count - v->info.nops_count,
61 v->info.sizedwords,
62 v->info.last_baryf,
63 v->info.max_half_reg + 1,
64 v->info.max_reg + 1,
65 v->constlen,
66 v->info.sstall,
67 v->info.ss, v->info.sy,
68 v->max_sun, v->loops);
69 }
70
71 struct ir3_shader_variant *
72 ir3_shader_variant(struct ir3_shader *shader, struct ir3_shader_key key,
73 bool binning_pass, struct pipe_debug_callback *debug)
74 {
75 struct ir3_shader_variant *v;
76 bool created = false;
77
78 /* some shader key values only apply to vertex or frag shader,
79 * so normalize the key to avoid constructing multiple identical
80 * variants:
81 */
82 ir3_normalize_key(&key, shader->type);
83
84 v = ir3_shader_get_variant(shader, &key, binning_pass, &created);
85
86 if (created) {
87 dump_shader_info(v, binning_pass, debug);
88 }
89
90 return v;
91 }
92
93 static void
94 copy_stream_out(struct ir3_stream_output_info *i,
95 const struct pipe_stream_output_info *p)
96 {
97 STATIC_ASSERT(ARRAY_SIZE(i->stride) == ARRAY_SIZE(p->stride));
98 STATIC_ASSERT(ARRAY_SIZE(i->output) == ARRAY_SIZE(p->output));
99
100 i->num_outputs = p->num_outputs;
101 for (int n = 0; n < ARRAY_SIZE(i->stride); n++)
102 i->stride[n] = p->stride[n];
103
104 for (int n = 0; n < ARRAY_SIZE(i->output); n++) {
105 i->output[n].register_index = p->output[n].register_index;
106 i->output[n].start_component = p->output[n].start_component;
107 i->output[n].num_components = p->output[n].num_components;
108 i->output[n].output_buffer = p->output[n].output_buffer;
109 i->output[n].dst_offset = p->output[n].dst_offset;
110 i->output[n].stream = p->output[n].stream;
111 }
112 }
113
114 struct ir3_shader *
115 ir3_shader_create(struct ir3_compiler *compiler,
116 const struct pipe_shader_state *cso,
117 struct pipe_debug_callback *debug,
118 struct pipe_screen *screen)
119 {
120 nir_shader *nir;
121 if (cso->type == PIPE_SHADER_IR_NIR) {
122 /* we take ownership of the reference: */
123 nir = cso->ir.nir;
124 } else {
125 debug_assert(cso->type == PIPE_SHADER_IR_TGSI);
126 if (ir3_shader_debug & IR3_DBG_DISASM) {
127 tgsi_dump(cso->tokens, 0);
128 }
129 nir = tgsi_to_nir(cso->tokens, screen);
130 }
131
132 struct ir3_shader *shader = ir3_shader_from_nir(compiler, nir);
133
134 copy_stream_out(&shader->stream_output, &cso->stream_output);
135
136 if (fd_mesa_debug & FD_DBG_SHADERDB) {
137 /* if shader-db run, create a standard variant immediately
138 * (as otherwise nothing will trigger the shader to be
139 * actually compiled)
140 */
141 static struct ir3_shader_key key; /* static is implicitly zeroed */
142 ir3_shader_variant(shader, key, false, debug);
143
144 if (nir->info.stage != MESA_SHADER_FRAGMENT)
145 ir3_shader_variant(shader, key, true, debug);
146 }
147
148 return shader;
149 }
150
151 /* a bit annoying that compute-shader and normal shader state objects
152 * aren't a bit more aligned.
153 */
154 struct ir3_shader *
155 ir3_shader_create_compute(struct ir3_compiler *compiler,
156 const struct pipe_compute_state *cso,
157 struct pipe_debug_callback *debug,
158 struct pipe_screen *screen)
159 {
160 nir_shader *nir;
161 if (cso->ir_type == PIPE_SHADER_IR_NIR) {
162 /* we take ownership of the reference: */
163 nir = (nir_shader *)cso->prog;
164 } else {
165 debug_assert(cso->ir_type == PIPE_SHADER_IR_TGSI);
166 if (ir3_shader_debug & IR3_DBG_DISASM) {
167 tgsi_dump(cso->prog, 0);
168 }
169 nir = tgsi_to_nir(cso->prog, screen);
170 }
171
172 struct ir3_shader *shader = ir3_shader_from_nir(compiler, nir);
173
174 if (fd_mesa_debug & FD_DBG_SHADERDB) {
175 /* if shader-db run, create a standard variant immediately
176 * (as otherwise nothing will trigger the shader to be
177 * actually compiled)
178 */
179 static struct ir3_shader_key key; /* static is implicitly zeroed */
180 ir3_shader_variant(shader, key, false, debug);
181 }
182
183 return shader;
184 }
185
186 /* This has to reach into the fd_context a bit more than the rest of
187 * ir3, but it needs to be aligned with the compiler, so both agree
188 * on which const regs hold what. And the logic is identical between
189 * a3xx/a4xx, the only difference is small details in the actual
190 * CP_LOAD_STATE packets (which is handled inside the generation
191 * specific ctx->emit_const(_bo)() fxns)
192 */
193
194 #include "freedreno_resource.h"
195
196 static inline bool
197 is_stateobj(struct fd_ringbuffer *ring)
198 {
199 /* XXX this is an ugly way to differentiate.. */
200 return !!(ring->flags & FD_RINGBUFFER_STREAMING);
201 }
202
203 static inline void
204 ring_wfi(struct fd_batch *batch, struct fd_ringbuffer *ring)
205 {
206 /* when we emit const state via ring (IB2) we need a WFI, but when
207 * it is emit'd via stateobj, we don't
208 */
209 if (is_stateobj(ring))
210 return;
211
212 fd_wfi(batch, ring);
213 }
214
215 static void
216 emit_const(struct fd_screen *screen, struct fd_ringbuffer *ring,
217 const struct ir3_shader_variant *v, uint32_t dst_offset,
218 uint32_t offset, uint32_t size,
219 const void *user_buffer, struct pipe_resource *buffer)
220 {
221 assert(dst_offset + size <= v->constlen * 4);
222
223 screen->emit_const(ring, v->type, dst_offset,
224 offset, size, user_buffer, buffer);
225 }
226
227 /**
228 * Indirectly calculates size of cmdstream needed for ir3_emit_user_consts().
229 * Returns number of packets, and total size of all the payload.
230 *
231 * The value can be a worst-case, ie. some shader variants may not read all
232 * consts, etc.
233 *
234 * Returns size in dwords.
235 */
236 void
237 ir3_user_consts_size(struct ir3_ubo_analysis_state *state,
238 unsigned *packets, unsigned *size)
239 {
240 *packets = *size = 0;
241
242 for (uint32_t i = 0; i < ARRAY_SIZE(state->range); i++) {
243 if (state->range[i].start < state->range[i].end) {
244 *size += state->range[i].end - state->range[i].start;
245 (*packets)++;
246 }
247 }
248 }
249
250 /**
251 * Uploads sub-ranges of UBOs to the hardware's constant buffer (UBO access
252 * outside of these ranges will be done using full UBO accesses in the
253 * shader).
254 */
255 void
256 ir3_emit_user_consts(struct fd_screen *screen, const struct ir3_shader_variant *v,
257 struct fd_ringbuffer *ring, struct fd_constbuf_stateobj *constbuf)
258 {
259 struct ir3_ubo_analysis_state *state;
260 state = &v->shader->ubo_state;
261
262 for (unsigned i = 0; i < state->num_enabled; i++) {
263 assert(!state->range[i].bindless);
264 unsigned ubo = state->range[i].block;
265 if (!(constbuf->enabled_mask & (1 << ubo)))
266 continue;
267 struct pipe_constant_buffer *cb = &constbuf->cb[ubo];
268
269 uint32_t size = state->range[i].end - state->range[i].start;
270 uint32_t offset = cb->buffer_offset + state->range[i].start;
271
272 /* and even if the start of the const buffer is before
273 * first_immediate, the end may not be:
274 */
275 size = MIN2(size, (16 * v->constlen) - state->range[i].offset);
276
277 if (size == 0)
278 continue;
279
280 /* things should be aligned to vec4: */
281 debug_assert((state->range[i].offset % 16) == 0);
282 debug_assert((size % 16) == 0);
283 debug_assert((offset % 16) == 0);
284
285 emit_const(screen, ring, v, state->range[i].offset / 4,
286 offset, size / 4, cb->user_buffer, cb->buffer);
287 }
288 }
289
290 void
291 ir3_emit_ubos(struct fd_screen *screen, const struct ir3_shader_variant *v,
292 struct fd_ringbuffer *ring, struct fd_constbuf_stateobj *constbuf)
293 {
294 const struct ir3_const_state *const_state = &v->shader->const_state;
295 uint32_t offset = const_state->offsets.ubo;
296 if (v->constlen > offset) {
297 uint32_t params = const_state->num_ubos;
298 uint32_t offsets[params];
299 struct pipe_resource *prscs[params];
300
301 for (uint32_t i = 0; i < params; i++) {
302 const uint32_t index = i + 1; /* UBOs start at index 1 */
303 struct pipe_constant_buffer *cb = &constbuf->cb[index];
304 assert(!cb->user_buffer);
305
306 if ((constbuf->enabled_mask & (1 << index)) && cb->buffer) {
307 offsets[i] = cb->buffer_offset;
308 prscs[i] = cb->buffer;
309 } else {
310 offsets[i] = 0;
311 prscs[i] = NULL;
312 }
313 }
314
315 assert(offset * 4 + params < v->constlen * 4);
316
317 screen->emit_const_bo(ring, v->type, false, offset * 4, params, prscs, offsets);
318 }
319 }
320
321 void
322 ir3_emit_ssbo_sizes(struct fd_screen *screen, const struct ir3_shader_variant *v,
323 struct fd_ringbuffer *ring, struct fd_shaderbuf_stateobj *sb)
324 {
325 const struct ir3_const_state *const_state = &v->shader->const_state;
326 uint32_t offset = const_state->offsets.ssbo_sizes;
327 if (v->constlen > offset) {
328 uint32_t sizes[align(const_state->ssbo_size.count, 4)];
329 unsigned mask = const_state->ssbo_size.mask;
330
331 while (mask) {
332 unsigned index = u_bit_scan(&mask);
333 unsigned off = const_state->ssbo_size.off[index];
334 sizes[off] = sb->sb[index].buffer_size;
335 }
336
337 emit_const(screen, ring, v, offset * 4,
338 0, ARRAY_SIZE(sizes), sizes, NULL);
339 }
340 }
341
342 void
343 ir3_emit_image_dims(struct fd_screen *screen, const struct ir3_shader_variant *v,
344 struct fd_ringbuffer *ring, struct fd_shaderimg_stateobj *si)
345 {
346 const struct ir3_const_state *const_state = &v->shader->const_state;
347 uint32_t offset = const_state->offsets.image_dims;
348 if (v->constlen > offset) {
349 uint32_t dims[align(const_state->image_dims.count, 4)];
350 unsigned mask = const_state->image_dims.mask;
351
352 while (mask) {
353 struct pipe_image_view *img;
354 struct fd_resource *rsc;
355 unsigned index = u_bit_scan(&mask);
356 unsigned off = const_state->image_dims.off[index];
357
358 img = &si->si[index];
359 rsc = fd_resource(img->resource);
360
361 dims[off + 0] = util_format_get_blocksize(img->format);
362 if (img->resource->target != PIPE_BUFFER) {
363 struct fdl_slice *slice =
364 fd_resource_slice(rsc, img->u.tex.level);
365 /* note for 2d/cube/etc images, even if re-interpreted
366 * as a different color format, the pixel size should
367 * be the same, so use original dimensions for y and z
368 * stride:
369 */
370 dims[off + 1] = slice->pitch * rsc->layout.cpp;
371 /* see corresponding logic in fd_resource_offset(): */
372 if (rsc->layout.layer_first) {
373 dims[off + 2] = rsc->layout.layer_size;
374 } else {
375 dims[off + 2] = slice->size0;
376 }
377 } else {
378 /* For buffer-backed images, the log2 of the format's
379 * bytes-per-pixel is placed on the 2nd slot. This is useful
380 * when emitting image_size instructions, for which we need
381 * to divide by bpp for image buffers. Since the bpp
382 * can only be power-of-two, the division is implemented
383 * as a SHR, and for that it is handy to have the log2 of
384 * bpp as a constant. (log2 = first-set-bit - 1)
385 */
386 dims[off + 1] = ffs(dims[off + 0]) - 1;
387 }
388 }
389 uint32_t size = MIN2(ARRAY_SIZE(dims), v->constlen * 4 - offset * 4);
390
391 emit_const(screen, ring, v, offset * 4, 0, size, dims, NULL);
392 }
393 }
394
395 void
396 ir3_emit_immediates(struct fd_screen *screen, const struct ir3_shader_variant *v,
397 struct fd_ringbuffer *ring)
398 {
399 const struct ir3_const_state *const_state = &v->shader->const_state;
400 uint32_t base = const_state->offsets.immediate;
401 int size = const_state->immediates_count;
402
403 /* truncate size to avoid writing constants that shader
404 * does not use:
405 */
406 size = MIN2(size + base, v->constlen) - base;
407
408 /* convert out of vec4: */
409 base *= 4;
410 size *= 4;
411
412 if (size > 0) {
413 emit_const(screen, ring, v, base,
414 0, size, const_state->immediates[0].val, NULL);
415 }
416 }
417
418 void
419 ir3_emit_link_map(struct fd_screen *screen,
420 const struct ir3_shader_variant *producer,
421 const struct ir3_shader_variant *v, struct fd_ringbuffer *ring)
422 {
423 const struct ir3_const_state *const_state = &v->shader->const_state;
424 uint32_t base = const_state->offsets.primitive_map;
425 uint32_t patch_locs[MAX_VARYING] = { }, num_loc;
426
427 num_loc = ir3_link_geometry_stages(producer, v, patch_locs);
428
429 int size = DIV_ROUND_UP(num_loc, 4);
430
431 /* truncate size to avoid writing constants that shader
432 * does not use:
433 */
434 size = MIN2(size + base, v->constlen) - base;
435
436 /* convert out of vec4: */
437 base *= 4;
438 size *= 4;
439
440 if (size > 0)
441 emit_const(screen, ring, v, base, 0, size, patch_locs, NULL);
442 }
443
444 /* emit stream-out buffers: */
445 static void
446 emit_tfbos(struct fd_context *ctx, const struct ir3_shader_variant *v,
447 struct fd_ringbuffer *ring)
448 {
449 /* streamout addresses after driver-params: */
450 const struct ir3_const_state *const_state = &v->shader->const_state;
451 uint32_t offset = const_state->offsets.tfbo;
452 if (v->constlen > offset) {
453 struct fd_streamout_stateobj *so = &ctx->streamout;
454 struct ir3_stream_output_info *info = &v->shader->stream_output;
455 uint32_t params = 4;
456 uint32_t offsets[params];
457 struct pipe_resource *prscs[params];
458
459 for (uint32_t i = 0; i < params; i++) {
460 struct pipe_stream_output_target *target = so->targets[i];
461
462 if (target) {
463 offsets[i] = (so->offsets[i] * info->stride[i] * 4) +
464 target->buffer_offset;
465 prscs[i] = target->buffer;
466 } else {
467 offsets[i] = 0;
468 prscs[i] = NULL;
469 }
470 }
471
472 assert(offset * 4 + params < v->constlen * 4);
473
474 ctx->screen->emit_const_bo(ring, v->type, true, offset * 4, params, prscs, offsets);
475 }
476 }
477
478 static uint32_t
479 max_tf_vtx(struct fd_context *ctx, const struct ir3_shader_variant *v)
480 {
481 struct fd_streamout_stateobj *so = &ctx->streamout;
482 struct ir3_stream_output_info *info = &v->shader->stream_output;
483 uint32_t maxvtxcnt = 0x7fffffff;
484
485 if (ctx->screen->gpu_id >= 500)
486 return 0;
487 if (v->binning_pass)
488 return 0;
489 if (v->shader->stream_output.num_outputs == 0)
490 return 0;
491 if (so->num_targets == 0)
492 return 0;
493
494 /* offset to write to is:
495 *
496 * total_vtxcnt = vtxcnt + offsets[i]
497 * offset = total_vtxcnt * stride[i]
498 *
499 * offset = vtxcnt * stride[i] ; calculated in shader
500 * + offsets[i] * stride[i] ; calculated at emit_tfbos()
501 *
502 * assuming for each vtx, each target buffer will have data written
503 * up to 'offset + stride[i]', that leaves maxvtxcnt as:
504 *
505 * buffer_size = (maxvtxcnt * stride[i]) + stride[i]
506 * maxvtxcnt = (buffer_size - stride[i]) / stride[i]
507 *
508 * but shader is actually doing a less-than (rather than less-than-
509 * equal) check, so we can drop the -stride[i].
510 *
511 * TODO is assumption about `offset + stride[i]` legit?
512 */
513 for (unsigned i = 0; i < so->num_targets; i++) {
514 struct pipe_stream_output_target *target = so->targets[i];
515 unsigned stride = info->stride[i] * 4; /* convert dwords->bytes */
516 if (target) {
517 uint32_t max = target->buffer_size / stride;
518 maxvtxcnt = MIN2(maxvtxcnt, max);
519 }
520 }
521
522 return maxvtxcnt;
523 }
524
525 static void
526 emit_common_consts(const struct ir3_shader_variant *v, struct fd_ringbuffer *ring,
527 struct fd_context *ctx, enum pipe_shader_type t)
528 {
529 enum fd_dirty_shader_state dirty = ctx->dirty_shader[t];
530
531 /* When we use CP_SET_DRAW_STATE objects to emit constant state,
532 * if we emit any of it we need to emit all. This is because
533 * we are using the same state-group-id each time for uniform
534 * state, and if previous update is never evaluated (due to no
535 * visible primitives in the current tile) then the new stateobj
536 * completely replaces the old one.
537 *
538 * Possibly if we split up different parts of the const state to
539 * different state-objects we could avoid this.
540 */
541 if (dirty && is_stateobj(ring))
542 dirty = ~0;
543
544 if (dirty & (FD_DIRTY_SHADER_PROG | FD_DIRTY_SHADER_CONST)) {
545 struct fd_constbuf_stateobj *constbuf;
546 bool shader_dirty;
547
548 constbuf = &ctx->constbuf[t];
549 shader_dirty = !!(dirty & FD_DIRTY_SHADER_PROG);
550
551 ring_wfi(ctx->batch, ring);
552
553 ir3_emit_user_consts(ctx->screen, v, ring, constbuf);
554 ir3_emit_ubos(ctx->screen, v, ring, constbuf);
555 if (shader_dirty)
556 ir3_emit_immediates(ctx->screen, v, ring);
557 }
558
559 if (dirty & (FD_DIRTY_SHADER_PROG | FD_DIRTY_SHADER_SSBO)) {
560 struct fd_shaderbuf_stateobj *sb = &ctx->shaderbuf[t];
561 ring_wfi(ctx->batch, ring);
562 ir3_emit_ssbo_sizes(ctx->screen, v, ring, sb);
563 }
564
565 if (dirty & (FD_DIRTY_SHADER_PROG | FD_DIRTY_SHADER_IMAGE)) {
566 struct fd_shaderimg_stateobj *si = &ctx->shaderimg[t];
567 ring_wfi(ctx->batch, ring);
568 ir3_emit_image_dims(ctx->screen, v, ring, si);
569 }
570 }
571
572 void
573 ir3_emit_vs_driver_params(const struct ir3_shader_variant *v,
574 struct fd_ringbuffer *ring, struct fd_context *ctx,
575 const struct pipe_draw_info *info)
576 {
577 debug_assert(ir3_needs_vs_driver_params(v));
578
579 const struct ir3_const_state *const_state = &v->shader->const_state;
580 uint32_t offset = const_state->offsets.driver_param;
581 uint32_t vertex_params[IR3_DP_VS_COUNT] = {
582 [IR3_DP_VTXID_BASE] = info->index_size ?
583 info->index_bias : info->start,
584 [IR3_DP_VTXCNT_MAX] = max_tf_vtx(ctx, v),
585 };
586 /* if no user-clip-planes, we don't need to emit the
587 * entire thing:
588 */
589 uint32_t vertex_params_size = 4;
590
591 if (v->key.ucp_enables) {
592 struct pipe_clip_state *ucp = &ctx->ucp;
593 unsigned pos = IR3_DP_UCP0_X;
594 for (unsigned i = 0; pos <= IR3_DP_UCP7_W; i++) {
595 for (unsigned j = 0; j < 4; j++) {
596 vertex_params[pos] = fui(ucp->ucp[i][j]);
597 pos++;
598 }
599 }
600 vertex_params_size = ARRAY_SIZE(vertex_params);
601 }
602
603 vertex_params_size = MAX2(vertex_params_size, const_state->num_driver_params);
604
605 bool needs_vtxid_base =
606 ir3_find_sysval_regid(v, SYSTEM_VALUE_VERTEX_ID_ZERO_BASE) != regid(63, 0);
607
608 /* for indirect draw, we need to copy VTXID_BASE from
609 * indirect-draw parameters buffer.. which is annoying
610 * and means we can't easily emit these consts in cmd
611 * stream so need to copy them to bo.
612 */
613 if (info->indirect && needs_vtxid_base) {
614 struct pipe_draw_indirect_info *indirect = info->indirect;
615 struct pipe_resource *vertex_params_rsc =
616 pipe_buffer_create(&ctx->screen->base,
617 PIPE_BIND_CONSTANT_BUFFER, PIPE_USAGE_STREAM,
618 vertex_params_size * 4);
619 unsigned src_off = info->indirect->offset;;
620 void *ptr;
621
622 ptr = fd_bo_map(fd_resource(vertex_params_rsc)->bo);
623 memcpy(ptr, vertex_params, vertex_params_size * 4);
624
625 if (info->index_size) {
626 /* indexed draw, index_bias is 4th field: */
627 src_off += 3 * 4;
628 } else {
629 /* non-indexed draw, start is 3rd field: */
630 src_off += 2 * 4;
631 }
632
633 /* copy index_bias or start from draw params: */
634 ctx->screen->mem_to_mem(ring, vertex_params_rsc, 0,
635 indirect->buffer, src_off, 1);
636
637 emit_const(ctx->screen, ring, v, offset * 4, 0,
638 vertex_params_size, NULL, vertex_params_rsc);
639
640 pipe_resource_reference(&vertex_params_rsc, NULL);
641 } else {
642 emit_const(ctx->screen, ring, v, offset * 4, 0,
643 vertex_params_size, vertex_params, NULL);
644 }
645
646 /* if needed, emit stream-out buffer addresses: */
647 if (vertex_params[IR3_DP_VTXCNT_MAX] > 0) {
648 emit_tfbos(ctx, v, ring);
649 }
650 }
651
652 void
653 ir3_emit_vs_consts(const struct ir3_shader_variant *v, struct fd_ringbuffer *ring,
654 struct fd_context *ctx, const struct pipe_draw_info *info)
655 {
656 debug_assert(v->type == MESA_SHADER_VERTEX);
657
658 emit_common_consts(v, ring, ctx, PIPE_SHADER_VERTEX);
659
660 /* emit driver params every time: */
661 if (info && ir3_needs_vs_driver_params(v)) {
662 ring_wfi(ctx->batch, ring);
663 ir3_emit_vs_driver_params(v, ring, ctx, info);
664 }
665 }
666
667 void
668 ir3_emit_fs_consts(const struct ir3_shader_variant *v, struct fd_ringbuffer *ring,
669 struct fd_context *ctx)
670 {
671 debug_assert(v->type == MESA_SHADER_FRAGMENT);
672
673 emit_common_consts(v, ring, ctx, PIPE_SHADER_FRAGMENT);
674 }
675
676 /* emit compute-shader consts: */
677 void
678 ir3_emit_cs_consts(const struct ir3_shader_variant *v, struct fd_ringbuffer *ring,
679 struct fd_context *ctx, const struct pipe_grid_info *info)
680 {
681 debug_assert(gl_shader_stage_is_compute(v->type));
682
683 emit_common_consts(v, ring, ctx, PIPE_SHADER_COMPUTE);
684
685 /* emit compute-shader driver-params: */
686 const struct ir3_const_state *const_state = &v->shader->const_state;
687 uint32_t offset = const_state->offsets.driver_param;
688 if (v->constlen > offset) {
689 ring_wfi(ctx->batch, ring);
690
691 if (info->indirect) {
692 struct pipe_resource *indirect = NULL;
693 unsigned indirect_offset;
694
695 /* This is a bit awkward, but CP_LOAD_STATE.EXT_SRC_ADDR needs
696 * to be aligned more strongly than 4 bytes. So in this case
697 * we need a temporary buffer to copy NumWorkGroups.xyz to.
698 *
699 * TODO if previous compute job is writing to info->indirect,
700 * we might need a WFI.. but since we currently flush for each
701 * compute job, we are probably ok for now.
702 */
703 if (info->indirect_offset & 0xf) {
704 indirect = pipe_buffer_create(&ctx->screen->base,
705 PIPE_BIND_COMMAND_ARGS_BUFFER, PIPE_USAGE_STREAM,
706 0x1000);
707 indirect_offset = 0;
708
709 ctx->screen->mem_to_mem(ring, indirect, 0, info->indirect,
710 info->indirect_offset, 3);
711 } else {
712 pipe_resource_reference(&indirect, info->indirect);
713 indirect_offset = info->indirect_offset;
714 }
715
716 emit_const(ctx->screen, ring, v, offset * 4,
717 indirect_offset, 4, NULL, indirect);
718
719 pipe_resource_reference(&indirect, NULL);
720 } else {
721 uint32_t compute_params[IR3_DP_CS_COUNT] = {
722 [IR3_DP_NUM_WORK_GROUPS_X] = info->grid[0],
723 [IR3_DP_NUM_WORK_GROUPS_Y] = info->grid[1],
724 [IR3_DP_NUM_WORK_GROUPS_Z] = info->grid[2],
725 [IR3_DP_LOCAL_GROUP_SIZE_X] = info->block[0],
726 [IR3_DP_LOCAL_GROUP_SIZE_Y] = info->block[1],
727 [IR3_DP_LOCAL_GROUP_SIZE_Z] = info->block[2],
728 };
729 uint32_t size = MIN2(const_state->num_driver_params,
730 v->constlen * 4 - offset * 4);
731
732 emit_const(ctx->screen, ring, v, offset * 4, 0, size,
733 compute_params, NULL);
734 }
735 }
736 }
737
738 static void *
739 ir3_shader_state_create(struct pipe_context *pctx, const struct pipe_shader_state *cso)
740 {
741 struct fd_context *ctx = fd_context(pctx);
742 struct ir3_compiler *compiler = ctx->screen->compiler;
743 return ir3_shader_create(compiler, cso, &ctx->debug, pctx->screen);
744 }
745
746 static void
747 ir3_shader_state_delete(struct pipe_context *pctx, void *hwcso)
748 {
749 struct ir3_shader *so = hwcso;
750 ir3_shader_destroy(so);
751 }
752
753 void
754 ir3_prog_init(struct pipe_context *pctx)
755 {
756 pctx->create_vs_state = ir3_shader_state_create;
757 pctx->delete_vs_state = ir3_shader_state_delete;
758
759 pctx->create_tcs_state = ir3_shader_state_create;
760 pctx->delete_tcs_state = ir3_shader_state_delete;
761
762 pctx->create_tes_state = ir3_shader_state_create;
763 pctx->delete_tes_state = ir3_shader_state_delete;
764
765 pctx->create_gs_state = ir3_shader_state_create;
766 pctx->delete_gs_state = ir3_shader_state_delete;
767
768 pctx->create_fs_state = ir3_shader_state_create;
769 pctx->delete_fs_state = ir3_shader_state_delete;
770 }