iris: Fix framebuffer layer count
[mesa.git] / src / gallium / drivers / iris / iris_state.c
1 /*
2 * Copyright © 2017 Intel Corporation
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 shall be included
12 * in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 * DEALINGS IN THE SOFTWARE.
21 */
22
23 /**
24 * @file iris_state.c
25 *
26 * ============================= GENXML CODE =============================
27 * [This file is compiled once per generation.]
28 * =======================================================================
29 *
30 * This is the main state upload code.
31 *
32 * Gallium uses Constant State Objects, or CSOs, for most state. Large,
33 * complex, or highly reusable state can be created once, and bound and
34 * rebound multiple times. This is modeled with the pipe->create_*_state()
35 * and pipe->bind_*_state() hooks. Highly dynamic or inexpensive state is
36 * streamed out on the fly, via pipe->set_*_state() hooks.
37 *
38 * OpenGL involves frequently mutating context state, which is mirrored in
39 * core Mesa by highly mutable data structures. However, most applications
40 * typically draw the same things over and over - from frame to frame, most
41 * of the same objects are still visible and need to be redrawn. So, rather
42 * than inventing new state all the time, applications usually mutate to swap
43 * between known states that we've seen before.
44 *
45 * Gallium isolates us from this mutation by tracking API state, and
46 * distilling it into a set of Constant State Objects, or CSOs. Large,
47 * complex, or typically reusable state can be created once, then reused
48 * multiple times. Drivers can create and store their own associated data.
49 * This create/bind model corresponds to the pipe->create_*_state() and
50 * pipe->bind_*_state() driver hooks.
51 *
52 * Some state is cheap to create, or expected to be highly dynamic. Rather
53 * than creating and caching piles of CSOs for these, Gallium simply streams
54 * them out, via the pipe->set_*_state() driver hooks.
55 *
56 * To reduce draw time overhead, we try to compute as much state at create
57 * time as possible. Wherever possible, we translate the Gallium pipe state
58 * to 3DSTATE commands, and store those commands in the CSO. At draw time,
59 * we can simply memcpy them into a batch buffer.
60 *
61 * No hardware matches the abstraction perfectly, so some commands require
62 * information from multiple CSOs. In this case, we can store two copies
63 * of the packet (one in each CSO), and simply | together their DWords at
64 * draw time. Sometimes the second set is trivial (one or two fields), so
65 * we simply pack it at draw time.
66 *
67 * There are two main components in the file below. First, the CSO hooks
68 * create/bind/track state. The second are the draw-time upload functions,
69 * iris_upload_render_state() and iris_upload_compute_state(), which read
70 * the context state and emit the commands into the actual batch.
71 */
72
73 #include <stdio.h>
74 #include <errno.h>
75
76 #if HAVE_VALGRIND
77 #include <valgrind.h>
78 #include <memcheck.h>
79 #define VG(x) x
80 #ifndef NDEBUG
81 #define __gen_validate_value(x) VALGRIND_CHECK_MEM_IS_DEFINED(&(x), sizeof(x))
82 #endif
83 #else
84 #define VG(x)
85 #endif
86
87 #include "pipe/p_defines.h"
88 #include "pipe/p_state.h"
89 #include "pipe/p_context.h"
90 #include "pipe/p_screen.h"
91 #include "util/u_inlines.h"
92 #include "util/u_format.h"
93 #include "util/u_framebuffer.h"
94 #include "util/u_transfer.h"
95 #include "util/u_upload_mgr.h"
96 #include "util/u_viewport.h"
97 #include "i915_drm.h"
98 #include "nir.h"
99 #include "intel/compiler/brw_compiler.h"
100 #include "intel/common/gen_l3_config.h"
101 #include "intel/common/gen_sample_positions.h"
102 #include "iris_batch.h"
103 #include "iris_context.h"
104 #include "iris_defines.h"
105 #include "iris_pipe.h"
106 #include "iris_resource.h"
107
108 #define __gen_address_type struct iris_address
109 #define __gen_user_data struct iris_batch
110
111 #define ARRAY_BYTES(x) (sizeof(uint32_t) * ARRAY_SIZE(x))
112
113 static uint64_t
114 __gen_combine_address(struct iris_batch *batch, void *location,
115 struct iris_address addr, uint32_t delta)
116 {
117 uint64_t result = addr.offset + delta;
118
119 if (addr.bo) {
120 iris_use_pinned_bo(batch, addr.bo, addr.write);
121 /* Assume this is a general address, not relative to a base. */
122 result += addr.bo->gtt_offset;
123 }
124
125 return result;
126 }
127
128 #define __genxml_cmd_length(cmd) cmd ## _length
129 #define __genxml_cmd_length_bias(cmd) cmd ## _length_bias
130 #define __genxml_cmd_header(cmd) cmd ## _header
131 #define __genxml_cmd_pack(cmd) cmd ## _pack
132
133 #define _iris_pack_command(batch, cmd, dst, name) \
134 for (struct cmd name = { __genxml_cmd_header(cmd) }, \
135 *_dst = (void *)(dst); __builtin_expect(_dst != NULL, 1); \
136 ({ __genxml_cmd_pack(cmd)(batch, (void *)_dst, &name); \
137 _dst = NULL; \
138 }))
139
140 #define iris_pack_command(cmd, dst, name) \
141 _iris_pack_command(NULL, cmd, dst, name)
142
143 #define iris_pack_state(cmd, dst, name) \
144 for (struct cmd name = {}, \
145 *_dst = (void *)(dst); __builtin_expect(_dst != NULL, 1); \
146 __genxml_cmd_pack(cmd)(NULL, (void *)_dst, &name), \
147 _dst = NULL)
148
149 #define iris_emit_cmd(batch, cmd, name) \
150 _iris_pack_command(batch, cmd, iris_get_command_space(batch, 4 * __genxml_cmd_length(cmd)), name)
151
152 #define iris_emit_merge(batch, dwords0, dwords1, num_dwords) \
153 do { \
154 uint32_t *dw = iris_get_command_space(batch, 4 * num_dwords); \
155 for (uint32_t i = 0; i < num_dwords; i++) \
156 dw[i] = (dwords0)[i] | (dwords1)[i]; \
157 VG(VALGRIND_CHECK_MEM_IS_DEFINED(dw, num_dwords)); \
158 } while (0)
159
160 #include "genxml/genX_pack.h"
161 #include "genxml/gen_macros.h"
162 #include "genxml/genX_bits.h"
163
164 #if GEN_GEN == 8
165 #define MOCS_PTE 0x18
166 #define MOCS_WB 0x78
167 #else
168 #define MOCS_PTE (1 << 1)
169 #define MOCS_WB (2 << 1)
170 #endif
171
172 static uint32_t
173 mocs(struct iris_bo *bo)
174 {
175 return bo && bo->external ? MOCS_PTE : MOCS_WB;
176 }
177
178 /**
179 * Statically assert that PIPE_* enums match the hardware packets.
180 * (As long as they match, we don't need to translate them.)
181 */
182 UNUSED static void pipe_asserts()
183 {
184 #define PIPE_ASSERT(x) STATIC_ASSERT((int)x)
185
186 /* pipe_logicop happens to match the hardware. */
187 PIPE_ASSERT(PIPE_LOGICOP_CLEAR == LOGICOP_CLEAR);
188 PIPE_ASSERT(PIPE_LOGICOP_NOR == LOGICOP_NOR);
189 PIPE_ASSERT(PIPE_LOGICOP_AND_INVERTED == LOGICOP_AND_INVERTED);
190 PIPE_ASSERT(PIPE_LOGICOP_COPY_INVERTED == LOGICOP_COPY_INVERTED);
191 PIPE_ASSERT(PIPE_LOGICOP_AND_REVERSE == LOGICOP_AND_REVERSE);
192 PIPE_ASSERT(PIPE_LOGICOP_INVERT == LOGICOP_INVERT);
193 PIPE_ASSERT(PIPE_LOGICOP_XOR == LOGICOP_XOR);
194 PIPE_ASSERT(PIPE_LOGICOP_NAND == LOGICOP_NAND);
195 PIPE_ASSERT(PIPE_LOGICOP_AND == LOGICOP_AND);
196 PIPE_ASSERT(PIPE_LOGICOP_EQUIV == LOGICOP_EQUIV);
197 PIPE_ASSERT(PIPE_LOGICOP_NOOP == LOGICOP_NOOP);
198 PIPE_ASSERT(PIPE_LOGICOP_OR_INVERTED == LOGICOP_OR_INVERTED);
199 PIPE_ASSERT(PIPE_LOGICOP_COPY == LOGICOP_COPY);
200 PIPE_ASSERT(PIPE_LOGICOP_OR_REVERSE == LOGICOP_OR_REVERSE);
201 PIPE_ASSERT(PIPE_LOGICOP_OR == LOGICOP_OR);
202 PIPE_ASSERT(PIPE_LOGICOP_SET == LOGICOP_SET);
203
204 /* pipe_blend_func happens to match the hardware. */
205 PIPE_ASSERT(PIPE_BLENDFACTOR_ONE == BLENDFACTOR_ONE);
206 PIPE_ASSERT(PIPE_BLENDFACTOR_SRC_COLOR == BLENDFACTOR_SRC_COLOR);
207 PIPE_ASSERT(PIPE_BLENDFACTOR_SRC_ALPHA == BLENDFACTOR_SRC_ALPHA);
208 PIPE_ASSERT(PIPE_BLENDFACTOR_DST_ALPHA == BLENDFACTOR_DST_ALPHA);
209 PIPE_ASSERT(PIPE_BLENDFACTOR_DST_COLOR == BLENDFACTOR_DST_COLOR);
210 PIPE_ASSERT(PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE == BLENDFACTOR_SRC_ALPHA_SATURATE);
211 PIPE_ASSERT(PIPE_BLENDFACTOR_CONST_COLOR == BLENDFACTOR_CONST_COLOR);
212 PIPE_ASSERT(PIPE_BLENDFACTOR_CONST_ALPHA == BLENDFACTOR_CONST_ALPHA);
213 PIPE_ASSERT(PIPE_BLENDFACTOR_SRC1_COLOR == BLENDFACTOR_SRC1_COLOR);
214 PIPE_ASSERT(PIPE_BLENDFACTOR_SRC1_ALPHA == BLENDFACTOR_SRC1_ALPHA);
215 PIPE_ASSERT(PIPE_BLENDFACTOR_ZERO == BLENDFACTOR_ZERO);
216 PIPE_ASSERT(PIPE_BLENDFACTOR_INV_SRC_COLOR == BLENDFACTOR_INV_SRC_COLOR);
217 PIPE_ASSERT(PIPE_BLENDFACTOR_INV_SRC_ALPHA == BLENDFACTOR_INV_SRC_ALPHA);
218 PIPE_ASSERT(PIPE_BLENDFACTOR_INV_DST_ALPHA == BLENDFACTOR_INV_DST_ALPHA);
219 PIPE_ASSERT(PIPE_BLENDFACTOR_INV_DST_COLOR == BLENDFACTOR_INV_DST_COLOR);
220 PIPE_ASSERT(PIPE_BLENDFACTOR_INV_CONST_COLOR == BLENDFACTOR_INV_CONST_COLOR);
221 PIPE_ASSERT(PIPE_BLENDFACTOR_INV_CONST_ALPHA == BLENDFACTOR_INV_CONST_ALPHA);
222 PIPE_ASSERT(PIPE_BLENDFACTOR_INV_SRC1_COLOR == BLENDFACTOR_INV_SRC1_COLOR);
223 PIPE_ASSERT(PIPE_BLENDFACTOR_INV_SRC1_ALPHA == BLENDFACTOR_INV_SRC1_ALPHA);
224
225 /* pipe_blend_func happens to match the hardware. */
226 PIPE_ASSERT(PIPE_BLEND_ADD == BLENDFUNCTION_ADD);
227 PIPE_ASSERT(PIPE_BLEND_SUBTRACT == BLENDFUNCTION_SUBTRACT);
228 PIPE_ASSERT(PIPE_BLEND_REVERSE_SUBTRACT == BLENDFUNCTION_REVERSE_SUBTRACT);
229 PIPE_ASSERT(PIPE_BLEND_MIN == BLENDFUNCTION_MIN);
230 PIPE_ASSERT(PIPE_BLEND_MAX == BLENDFUNCTION_MAX);
231
232 /* pipe_stencil_op happens to match the hardware. */
233 PIPE_ASSERT(PIPE_STENCIL_OP_KEEP == STENCILOP_KEEP);
234 PIPE_ASSERT(PIPE_STENCIL_OP_ZERO == STENCILOP_ZERO);
235 PIPE_ASSERT(PIPE_STENCIL_OP_REPLACE == STENCILOP_REPLACE);
236 PIPE_ASSERT(PIPE_STENCIL_OP_INCR == STENCILOP_INCRSAT);
237 PIPE_ASSERT(PIPE_STENCIL_OP_DECR == STENCILOP_DECRSAT);
238 PIPE_ASSERT(PIPE_STENCIL_OP_INCR_WRAP == STENCILOP_INCR);
239 PIPE_ASSERT(PIPE_STENCIL_OP_DECR_WRAP == STENCILOP_DECR);
240 PIPE_ASSERT(PIPE_STENCIL_OP_INVERT == STENCILOP_INVERT);
241
242 /* pipe_sprite_coord_mode happens to match 3DSTATE_SBE */
243 PIPE_ASSERT(PIPE_SPRITE_COORD_UPPER_LEFT == UPPERLEFT);
244 PIPE_ASSERT(PIPE_SPRITE_COORD_LOWER_LEFT == LOWERLEFT);
245 #undef PIPE_ASSERT
246 }
247
248 static unsigned
249 translate_prim_type(enum pipe_prim_type prim, uint8_t verts_per_patch)
250 {
251 static const unsigned map[] = {
252 [PIPE_PRIM_POINTS] = _3DPRIM_POINTLIST,
253 [PIPE_PRIM_LINES] = _3DPRIM_LINELIST,
254 [PIPE_PRIM_LINE_LOOP] = _3DPRIM_LINELOOP,
255 [PIPE_PRIM_LINE_STRIP] = _3DPRIM_LINESTRIP,
256 [PIPE_PRIM_TRIANGLES] = _3DPRIM_TRILIST,
257 [PIPE_PRIM_TRIANGLE_STRIP] = _3DPRIM_TRISTRIP,
258 [PIPE_PRIM_TRIANGLE_FAN] = _3DPRIM_TRIFAN,
259 [PIPE_PRIM_QUADS] = _3DPRIM_QUADLIST,
260 [PIPE_PRIM_QUAD_STRIP] = _3DPRIM_QUADSTRIP,
261 [PIPE_PRIM_POLYGON] = _3DPRIM_POLYGON,
262 [PIPE_PRIM_LINES_ADJACENCY] = _3DPRIM_LINELIST_ADJ,
263 [PIPE_PRIM_LINE_STRIP_ADJACENCY] = _3DPRIM_LINESTRIP_ADJ,
264 [PIPE_PRIM_TRIANGLES_ADJACENCY] = _3DPRIM_TRILIST_ADJ,
265 [PIPE_PRIM_TRIANGLE_STRIP_ADJACENCY] = _3DPRIM_TRISTRIP_ADJ,
266 [PIPE_PRIM_PATCHES] = _3DPRIM_PATCHLIST_1 - 1,
267 };
268
269 return map[prim] + (prim == PIPE_PRIM_PATCHES ? verts_per_patch : 0);
270 }
271
272 static unsigned
273 translate_compare_func(enum pipe_compare_func pipe_func)
274 {
275 static const unsigned map[] = {
276 [PIPE_FUNC_NEVER] = COMPAREFUNCTION_NEVER,
277 [PIPE_FUNC_LESS] = COMPAREFUNCTION_LESS,
278 [PIPE_FUNC_EQUAL] = COMPAREFUNCTION_EQUAL,
279 [PIPE_FUNC_LEQUAL] = COMPAREFUNCTION_LEQUAL,
280 [PIPE_FUNC_GREATER] = COMPAREFUNCTION_GREATER,
281 [PIPE_FUNC_NOTEQUAL] = COMPAREFUNCTION_NOTEQUAL,
282 [PIPE_FUNC_GEQUAL] = COMPAREFUNCTION_GEQUAL,
283 [PIPE_FUNC_ALWAYS] = COMPAREFUNCTION_ALWAYS,
284 };
285 return map[pipe_func];
286 }
287
288 static unsigned
289 translate_shadow_func(enum pipe_compare_func pipe_func)
290 {
291 /* Gallium specifies the result of shadow comparisons as:
292 *
293 * 1 if ref <op> texel,
294 * 0 otherwise.
295 *
296 * The hardware does:
297 *
298 * 0 if texel <op> ref,
299 * 1 otherwise.
300 *
301 * So we need to flip the operator and also negate.
302 */
303 static const unsigned map[] = {
304 [PIPE_FUNC_NEVER] = PREFILTEROPALWAYS,
305 [PIPE_FUNC_LESS] = PREFILTEROPLEQUAL,
306 [PIPE_FUNC_EQUAL] = PREFILTEROPNOTEQUAL,
307 [PIPE_FUNC_LEQUAL] = PREFILTEROPLESS,
308 [PIPE_FUNC_GREATER] = PREFILTEROPGEQUAL,
309 [PIPE_FUNC_NOTEQUAL] = PREFILTEROPEQUAL,
310 [PIPE_FUNC_GEQUAL] = PREFILTEROPGREATER,
311 [PIPE_FUNC_ALWAYS] = PREFILTEROPNEVER,
312 };
313 return map[pipe_func];
314 }
315
316 static unsigned
317 translate_cull_mode(unsigned pipe_face)
318 {
319 static const unsigned map[4] = {
320 [PIPE_FACE_NONE] = CULLMODE_NONE,
321 [PIPE_FACE_FRONT] = CULLMODE_FRONT,
322 [PIPE_FACE_BACK] = CULLMODE_BACK,
323 [PIPE_FACE_FRONT_AND_BACK] = CULLMODE_BOTH,
324 };
325 return map[pipe_face];
326 }
327
328 static unsigned
329 translate_fill_mode(unsigned pipe_polymode)
330 {
331 static const unsigned map[4] = {
332 [PIPE_POLYGON_MODE_FILL] = FILL_MODE_SOLID,
333 [PIPE_POLYGON_MODE_LINE] = FILL_MODE_WIREFRAME,
334 [PIPE_POLYGON_MODE_POINT] = FILL_MODE_POINT,
335 [PIPE_POLYGON_MODE_FILL_RECTANGLE] = FILL_MODE_SOLID,
336 };
337 return map[pipe_polymode];
338 }
339
340 static unsigned
341 translate_mip_filter(enum pipe_tex_mipfilter pipe_mip)
342 {
343 static const unsigned map[] = {
344 [PIPE_TEX_MIPFILTER_NEAREST] = MIPFILTER_NEAREST,
345 [PIPE_TEX_MIPFILTER_LINEAR] = MIPFILTER_LINEAR,
346 [PIPE_TEX_MIPFILTER_NONE] = MIPFILTER_NONE,
347 };
348 return map[pipe_mip];
349 }
350
351 static uint32_t
352 translate_wrap(unsigned pipe_wrap)
353 {
354 static const unsigned map[] = {
355 [PIPE_TEX_WRAP_REPEAT] = TCM_WRAP,
356 [PIPE_TEX_WRAP_CLAMP] = TCM_HALF_BORDER,
357 [PIPE_TEX_WRAP_CLAMP_TO_EDGE] = TCM_CLAMP,
358 [PIPE_TEX_WRAP_CLAMP_TO_BORDER] = TCM_CLAMP_BORDER,
359 [PIPE_TEX_WRAP_MIRROR_REPEAT] = TCM_MIRROR,
360 [PIPE_TEX_WRAP_MIRROR_CLAMP_TO_EDGE] = TCM_MIRROR_ONCE,
361
362 /* These are unsupported. */
363 [PIPE_TEX_WRAP_MIRROR_CLAMP] = -1,
364 [PIPE_TEX_WRAP_MIRROR_CLAMP_TO_BORDER] = -1,
365 };
366 return map[pipe_wrap];
367 }
368
369 static struct iris_address
370 ro_bo(struct iris_bo *bo, uint64_t offset)
371 {
372 /* CSOs must pass NULL for bo! Otherwise it will add the BO to the
373 * validation list at CSO creation time, instead of draw time.
374 */
375 return (struct iris_address) { .bo = bo, .offset = offset };
376 }
377
378 static struct iris_address
379 rw_bo(struct iris_bo *bo, uint64_t offset)
380 {
381 /* CSOs must pass NULL for bo! Otherwise it will add the BO to the
382 * validation list at CSO creation time, instead of draw time.
383 */
384 return (struct iris_address) { .bo = bo, .offset = offset, .write = true };
385 }
386
387 /**
388 * Allocate space for some indirect state.
389 *
390 * Return a pointer to the map (to fill it out) and a state ref (for
391 * referring to the state in GPU commands).
392 */
393 static void *
394 upload_state(struct u_upload_mgr *uploader,
395 struct iris_state_ref *ref,
396 unsigned size,
397 unsigned alignment)
398 {
399 void *p = NULL;
400 u_upload_alloc(uploader, 0, size, alignment, &ref->offset, &ref->res, &p);
401 return p;
402 }
403
404 /**
405 * Stream out temporary/short-lived state.
406 *
407 * This allocates space, pins the BO, and includes the BO address in the
408 * returned offset (which works because all state lives in 32-bit memory
409 * zones).
410 */
411 static uint32_t *
412 stream_state(struct iris_batch *batch,
413 struct u_upload_mgr *uploader,
414 struct pipe_resource **out_res,
415 unsigned size,
416 unsigned alignment,
417 uint32_t *out_offset)
418 {
419 void *ptr = NULL;
420
421 u_upload_alloc(uploader, 0, size, alignment, out_offset, out_res, &ptr);
422
423 struct iris_bo *bo = iris_resource_bo(*out_res);
424 iris_use_pinned_bo(batch, bo, false);
425
426 *out_offset += iris_bo_offset_from_base_address(bo);
427
428 return ptr;
429 }
430
431 /**
432 * stream_state() + memcpy.
433 */
434 static uint32_t
435 emit_state(struct iris_batch *batch,
436 struct u_upload_mgr *uploader,
437 struct pipe_resource **out_res,
438 const void *data,
439 unsigned size,
440 unsigned alignment)
441 {
442 unsigned offset = 0;
443 uint32_t *map =
444 stream_state(batch, uploader, out_res, size, alignment, &offset);
445
446 if (map)
447 memcpy(map, data, size);
448
449 return offset;
450 }
451
452 /**
453 * Did field 'x' change between 'old_cso' and 'new_cso'?
454 *
455 * (If so, we may want to set some dirty flags.)
456 */
457 #define cso_changed(x) (!old_cso || (old_cso->x != new_cso->x))
458 #define cso_changed_memcmp(x) \
459 (!old_cso || memcmp(old_cso->x, new_cso->x, sizeof(old_cso->x)) != 0)
460
461 static void
462 flush_for_state_base_change(struct iris_batch *batch)
463 {
464 /* Flush before emitting STATE_BASE_ADDRESS.
465 *
466 * This isn't documented anywhere in the PRM. However, it seems to be
467 * necessary prior to changing the surface state base adress. We've
468 * seen issues in Vulkan where we get GPU hangs when using multi-level
469 * command buffers which clear depth, reset state base address, and then
470 * go render stuff.
471 *
472 * Normally, in GL, we would trust the kernel to do sufficient stalls
473 * and flushes prior to executing our batch. However, it doesn't seem
474 * as if the kernel's flushing is always sufficient and we don't want to
475 * rely on it.
476 *
477 * We make this an end-of-pipe sync instead of a normal flush because we
478 * do not know the current status of the GPU. On Haswell at least,
479 * having a fast-clear operation in flight at the same time as a normal
480 * rendering operation can cause hangs. Since the kernel's flushing is
481 * insufficient, we need to ensure that any rendering operations from
482 * other processes are definitely complete before we try to do our own
483 * rendering. It's a bit of a big hammer but it appears to work.
484 */
485 iris_emit_end_of_pipe_sync(batch,
486 PIPE_CONTROL_RENDER_TARGET_FLUSH |
487 PIPE_CONTROL_DEPTH_CACHE_FLUSH |
488 PIPE_CONTROL_DATA_CACHE_FLUSH);
489 }
490
491 static void
492 _iris_emit_lri(struct iris_batch *batch, uint32_t reg, uint32_t val)
493 {
494 iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_IMM), lri) {
495 lri.RegisterOffset = reg;
496 lri.DataDWord = val;
497 }
498 }
499 #define iris_emit_lri(b, r, v) _iris_emit_lri(b, GENX(r##_num), v)
500
501 static void
502 _iris_emit_lrr(struct iris_batch *batch, uint32_t dst, uint32_t src)
503 {
504 iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_REG), lrr) {
505 lrr.SourceRegisterAddress = src;
506 lrr.DestinationRegisterAddress = dst;
507 }
508 }
509
510 static void
511 emit_pipeline_select(struct iris_batch *batch, uint32_t pipeline)
512 {
513 #if GEN_GEN >= 8 && GEN_GEN < 10
514 /* From the Broadwell PRM, Volume 2a: Instructions, PIPELINE_SELECT:
515 *
516 * Software must clear the COLOR_CALC_STATE Valid field in
517 * 3DSTATE_CC_STATE_POINTERS command prior to send a PIPELINE_SELECT
518 * with Pipeline Select set to GPGPU.
519 *
520 * The internal hardware docs recommend the same workaround for Gen9
521 * hardware too.
522 */
523 if (pipeline == GPGPU)
524 iris_emit_cmd(batch, GENX(3DSTATE_CC_STATE_POINTERS), t);
525 #endif
526
527
528 /* From "BXML » GT » MI » vol1a GPU Overview » [Instruction]
529 * PIPELINE_SELECT [DevBWR+]":
530 *
531 * "Project: DEVSNB+
532 *
533 * Software must ensure all the write caches are flushed through a
534 * stalling PIPE_CONTROL command followed by another PIPE_CONTROL
535 * command to invalidate read only caches prior to programming
536 * MI_PIPELINE_SELECT command to change the Pipeline Select Mode."
537 */
538 iris_emit_pipe_control_flush(batch,
539 PIPE_CONTROL_RENDER_TARGET_FLUSH |
540 PIPE_CONTROL_DEPTH_CACHE_FLUSH |
541 PIPE_CONTROL_DATA_CACHE_FLUSH |
542 PIPE_CONTROL_CS_STALL);
543
544 iris_emit_pipe_control_flush(batch,
545 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
546 PIPE_CONTROL_CONST_CACHE_INVALIDATE |
547 PIPE_CONTROL_STATE_CACHE_INVALIDATE |
548 PIPE_CONTROL_INSTRUCTION_INVALIDATE);
549
550 iris_emit_cmd(batch, GENX(PIPELINE_SELECT), sel) {
551 #if GEN_GEN >= 9
552 sel.MaskBits = 3;
553 #endif
554 sel.PipelineSelection = pipeline;
555 }
556 }
557
558 UNUSED static void
559 init_glk_barrier_mode(struct iris_batch *batch, uint32_t value)
560 {
561 #if GEN_GEN == 9
562 /* Project: DevGLK
563 *
564 * "This chicken bit works around a hardware issue with barrier
565 * logic encountered when switching between GPGPU and 3D pipelines.
566 * To workaround the issue, this mode bit should be set after a
567 * pipeline is selected."
568 */
569 uint32_t reg_val;
570 iris_pack_state(GENX(SLICE_COMMON_ECO_CHICKEN1), &reg_val, reg) {
571 reg.GLKBarrierMode = value;
572 reg.GLKBarrierModeMask = 1;
573 }
574 iris_emit_lri(batch, SLICE_COMMON_ECO_CHICKEN1, reg_val);
575 #endif
576 }
577
578 static void
579 init_state_base_address(struct iris_batch *batch)
580 {
581 flush_for_state_base_change(batch);
582
583 /* We program most base addresses once at context initialization time.
584 * Each base address points at a 4GB memory zone, and never needs to
585 * change. See iris_bufmgr.h for a description of the memory zones.
586 *
587 * The one exception is Surface State Base Address, which needs to be
588 * updated occasionally. See iris_binder.c for the details there.
589 */
590 iris_emit_cmd(batch, GENX(STATE_BASE_ADDRESS), sba) {
591 sba.GeneralStateMOCS = MOCS_WB;
592 sba.StatelessDataPortAccessMOCS = MOCS_WB;
593 sba.DynamicStateMOCS = MOCS_WB;
594 sba.IndirectObjectMOCS = MOCS_WB;
595 sba.InstructionMOCS = MOCS_WB;
596
597 sba.GeneralStateBaseAddressModifyEnable = true;
598 sba.DynamicStateBaseAddressModifyEnable = true;
599 sba.IndirectObjectBaseAddressModifyEnable = true;
600 sba.InstructionBaseAddressModifyEnable = true;
601 sba.GeneralStateBufferSizeModifyEnable = true;
602 sba.DynamicStateBufferSizeModifyEnable = true;
603 #if (GEN_GEN >= 9)
604 sba.BindlessSurfaceStateBaseAddressModifyEnable = true;
605 sba.BindlessSurfaceStateMOCS = MOCS_WB;
606 #endif
607 sba.IndirectObjectBufferSizeModifyEnable = true;
608 sba.InstructionBuffersizeModifyEnable = true;
609
610 sba.InstructionBaseAddress = ro_bo(NULL, IRIS_MEMZONE_SHADER_START);
611 sba.DynamicStateBaseAddress = ro_bo(NULL, IRIS_MEMZONE_DYNAMIC_START);
612
613 sba.GeneralStateBufferSize = 0xfffff;
614 sba.IndirectObjectBufferSize = 0xfffff;
615 sba.InstructionBufferSize = 0xfffff;
616 sba.DynamicStateBufferSize = 0xfffff;
617 }
618 }
619
620 /**
621 * Upload the initial GPU state for a render context.
622 *
623 * This sets some invariant state that needs to be programmed a particular
624 * way, but we never actually change.
625 */
626 static void
627 iris_init_render_context(struct iris_screen *screen,
628 struct iris_batch *batch,
629 struct iris_vtable *vtbl,
630 struct pipe_debug_callback *dbg)
631 {
632 UNUSED const struct gen_device_info *devinfo = &screen->devinfo;
633 uint32_t reg_val;
634
635 emit_pipeline_select(batch, _3D);
636
637 init_state_base_address(batch);
638
639 #if GEN_GEN >= 9
640 // XXX: INSTPM on Gen8
641 iris_pack_state(GENX(CS_DEBUG_MODE2), &reg_val, reg) {
642 reg.CONSTANT_BUFFERAddressOffsetDisable = true;
643 reg.CONSTANT_BUFFERAddressOffsetDisableMask = true;
644 }
645 iris_emit_lri(batch, CS_DEBUG_MODE2, reg_val);
646 #else
647 iris_pack_state(GENX(INSTPM), &reg_val, reg) {
648 reg.CONSTANT_BUFFERAddressOffsetDisable = true;
649 reg.CONSTANT_BUFFERAddressOffsetDisableMask = true;
650 }
651 iris_emit_lri(batch, INSTPM, reg_val);
652 #endif
653
654 #if GEN_GEN == 9
655 iris_pack_state(GENX(CACHE_MODE_1), &reg_val, reg) {
656 reg.FloatBlendOptimizationEnable = true;
657 reg.FloatBlendOptimizationEnableMask = true;
658 reg.PartialResolveDisableInVC = true;
659 reg.PartialResolveDisableInVCMask = true;
660 }
661 iris_emit_lri(batch, CACHE_MODE_1, reg_val);
662
663 if (devinfo->is_geminilake)
664 init_glk_barrier_mode(batch, GLK_BARRIER_MODE_3D_HULL);
665 #endif
666
667 #if GEN_GEN == 11
668 iris_pack_state(GENX(SAMPLER_MODE), &reg_val, reg) {
669 reg.HeaderlessMessageforPreemptableContexts = 1;
670 reg.HeaderlessMessageforPreemptableContextsMask = 1;
671 }
672 iris_emit_lri(batch, SAMPLER_MODE, reg_val);
673
674 // XXX: 3D_MODE?
675 #endif
676
677 /* 3DSTATE_DRAWING_RECTANGLE is non-pipelined, so we want to avoid
678 * changing it dynamically. We set it to the maximum size here, and
679 * instead include the render target dimensions in the viewport, so
680 * viewport extents clipping takes care of pruning stray geometry.
681 */
682 iris_emit_cmd(batch, GENX(3DSTATE_DRAWING_RECTANGLE), rect) {
683 rect.ClippedDrawingRectangleXMax = UINT16_MAX;
684 rect.ClippedDrawingRectangleYMax = UINT16_MAX;
685 }
686
687 /* Set the initial MSAA sample positions. */
688 iris_emit_cmd(batch, GENX(3DSTATE_SAMPLE_PATTERN), pat) {
689 GEN_SAMPLE_POS_1X(pat._1xSample);
690 GEN_SAMPLE_POS_2X(pat._2xSample);
691 GEN_SAMPLE_POS_4X(pat._4xSample);
692 GEN_SAMPLE_POS_8X(pat._8xSample);
693 #if GEN_GEN >= 9
694 GEN_SAMPLE_POS_16X(pat._16xSample);
695 #endif
696 }
697
698 /* Use the legacy AA line coverage computation. */
699 iris_emit_cmd(batch, GENX(3DSTATE_AA_LINE_PARAMETERS), foo);
700
701 /* Disable chromakeying (it's for media) */
702 iris_emit_cmd(batch, GENX(3DSTATE_WM_CHROMAKEY), foo);
703
704 /* We want regular rendering, not special HiZ operations. */
705 iris_emit_cmd(batch, GENX(3DSTATE_WM_HZ_OP), foo);
706
707 /* No polygon stippling offsets are necessary. */
708 // XXX: may need to set an offset for origin-UL framebuffers
709 iris_emit_cmd(batch, GENX(3DSTATE_POLY_STIPPLE_OFFSET), foo);
710
711 /* Set a static partitioning of the push constant area. */
712 // XXX: this may be a bad idea...could starve the push ringbuffers...
713 for (int i = 0; i <= MESA_SHADER_FRAGMENT; i++) {
714 iris_emit_cmd(batch, GENX(3DSTATE_PUSH_CONSTANT_ALLOC_VS), alloc) {
715 alloc._3DCommandSubOpcode = 18 + i;
716 alloc.ConstantBufferOffset = 6 * i;
717 alloc.ConstantBufferSize = i == MESA_SHADER_FRAGMENT ? 8 : 6;
718 }
719 }
720 }
721
722 static void
723 iris_init_compute_context(struct iris_screen *screen,
724 struct iris_batch *batch,
725 struct iris_vtable *vtbl,
726 struct pipe_debug_callback *dbg)
727 {
728 UNUSED const struct gen_device_info *devinfo = &screen->devinfo;
729
730 emit_pipeline_select(batch, GPGPU);
731
732 const bool has_slm = true;
733 const bool wants_dc_cache = true;
734
735 const struct gen_l3_weights w =
736 gen_get_default_l3_weights(devinfo, wants_dc_cache, has_slm);
737 const struct gen_l3_config *cfg = gen_get_l3_config(devinfo, w);
738
739 uint32_t reg_val;
740 iris_pack_state(GENX(L3CNTLREG), &reg_val, reg) {
741 reg.SLMEnable = has_slm;
742 #if GEN_GEN == 11
743 /* WA_1406697149: Bit 9 "Error Detection Behavior Control" must be set
744 * in L3CNTLREG register. The default setting of the bit is not the
745 * desirable behavior.
746 */
747 reg.ErrorDetectionBehaviorControl = true;
748 #endif
749 reg.URBAllocation = cfg->n[GEN_L3P_URB];
750 reg.ROAllocation = cfg->n[GEN_L3P_RO];
751 reg.DCAllocation = cfg->n[GEN_L3P_DC];
752 reg.AllAllocation = cfg->n[GEN_L3P_ALL];
753 }
754 iris_emit_lri(batch, L3CNTLREG, reg_val);
755
756 init_state_base_address(batch);
757
758 #if GEN_GEN == 9
759 if (devinfo->is_geminilake)
760 init_glk_barrier_mode(batch, GLK_BARRIER_MODE_GPGPU);
761 #endif
762 }
763
764 struct iris_vertex_buffer_state {
765 /** The VERTEX_BUFFER_STATE hardware structure. */
766 uint32_t state[GENX(VERTEX_BUFFER_STATE_length)];
767
768 /** The resource to source vertex data from. */
769 struct pipe_resource *resource;
770 };
771
772 struct iris_depth_buffer_state {
773 /* Depth/HiZ/Stencil related hardware packets. */
774 uint32_t packets[GENX(3DSTATE_DEPTH_BUFFER_length) +
775 GENX(3DSTATE_STENCIL_BUFFER_length) +
776 GENX(3DSTATE_HIER_DEPTH_BUFFER_length) +
777 GENX(3DSTATE_CLEAR_PARAMS_length)];
778 };
779
780 /**
781 * Generation-specific context state (ice->state.genx->...).
782 *
783 * Most state can go in iris_context directly, but these encode hardware
784 * packets which vary by generation.
785 */
786 struct iris_genx_state {
787 struct iris_vertex_buffer_state vertex_buffers[33];
788
789 /** The number of bound vertex buffers. */
790 uint64_t bound_vertex_buffers;
791
792 struct iris_depth_buffer_state depth_buffer;
793
794 uint32_t so_buffers[4 * GENX(3DSTATE_SO_BUFFER_length)];
795 };
796
797 /**
798 * The pipe->set_blend_color() driver hook.
799 *
800 * This corresponds to our COLOR_CALC_STATE.
801 */
802 static void
803 iris_set_blend_color(struct pipe_context *ctx,
804 const struct pipe_blend_color *state)
805 {
806 struct iris_context *ice = (struct iris_context *) ctx;
807
808 /* Our COLOR_CALC_STATE is exactly pipe_blend_color, so just memcpy */
809 memcpy(&ice->state.blend_color, state, sizeof(struct pipe_blend_color));
810 ice->state.dirty |= IRIS_DIRTY_COLOR_CALC_STATE;
811 }
812
813 /**
814 * Gallium CSO for blend state (see pipe_blend_state).
815 */
816 struct iris_blend_state {
817 /** Partial 3DSTATE_PS_BLEND */
818 uint32_t ps_blend[GENX(3DSTATE_PS_BLEND_length)];
819
820 /** Partial BLEND_STATE */
821 uint32_t blend_state[GENX(BLEND_STATE_length) +
822 BRW_MAX_DRAW_BUFFERS * GENX(BLEND_STATE_ENTRY_length)];
823
824 bool alpha_to_coverage; /* for shader key */
825
826 /** Bitfield of whether blending is enabled for RT[i] - for aux resolves */
827 uint8_t blend_enables;
828 };
829
830 static enum pipe_blendfactor
831 fix_blendfactor(enum pipe_blendfactor f, bool alpha_to_one)
832 {
833 if (alpha_to_one) {
834 if (f == PIPE_BLENDFACTOR_SRC1_ALPHA)
835 return PIPE_BLENDFACTOR_ONE;
836
837 if (f == PIPE_BLENDFACTOR_INV_SRC1_ALPHA)
838 return PIPE_BLENDFACTOR_ZERO;
839 }
840
841 return f;
842 }
843
844 /**
845 * The pipe->create_blend_state() driver hook.
846 *
847 * Translates a pipe_blend_state into iris_blend_state.
848 */
849 static void *
850 iris_create_blend_state(struct pipe_context *ctx,
851 const struct pipe_blend_state *state)
852 {
853 struct iris_blend_state *cso = malloc(sizeof(struct iris_blend_state));
854 uint32_t *blend_entry = cso->blend_state + GENX(BLEND_STATE_length);
855
856 cso->blend_enables = 0;
857 STATIC_ASSERT(BRW_MAX_DRAW_BUFFERS <= 8);
858
859 cso->alpha_to_coverage = state->alpha_to_coverage;
860
861 bool indep_alpha_blend = false;
862
863 for (int i = 0; i < BRW_MAX_DRAW_BUFFERS; i++) {
864 const struct pipe_rt_blend_state *rt =
865 &state->rt[state->independent_blend_enable ? i : 0];
866
867 enum pipe_blendfactor src_rgb =
868 fix_blendfactor(rt->rgb_src_factor, state->alpha_to_one);
869 enum pipe_blendfactor src_alpha =
870 fix_blendfactor(rt->alpha_src_factor, state->alpha_to_one);
871 enum pipe_blendfactor dst_rgb =
872 fix_blendfactor(rt->rgb_dst_factor, state->alpha_to_one);
873 enum pipe_blendfactor dst_alpha =
874 fix_blendfactor(rt->alpha_dst_factor, state->alpha_to_one);
875
876 if (rt->rgb_func != rt->alpha_func ||
877 src_rgb != src_alpha || dst_rgb != dst_alpha)
878 indep_alpha_blend = true;
879
880 if (rt->blend_enable)
881 cso->blend_enables |= 1u << i;
882
883 iris_pack_state(GENX(BLEND_STATE_ENTRY), blend_entry, be) {
884 be.LogicOpEnable = state->logicop_enable;
885 be.LogicOpFunction = state->logicop_func;
886
887 be.PreBlendSourceOnlyClampEnable = false;
888 be.ColorClampRange = COLORCLAMP_RTFORMAT;
889 be.PreBlendColorClampEnable = true;
890 be.PostBlendColorClampEnable = true;
891
892 be.ColorBufferBlendEnable = rt->blend_enable;
893
894 be.ColorBlendFunction = rt->rgb_func;
895 be.AlphaBlendFunction = rt->alpha_func;
896 be.SourceBlendFactor = src_rgb;
897 be.SourceAlphaBlendFactor = src_alpha;
898 be.DestinationBlendFactor = dst_rgb;
899 be.DestinationAlphaBlendFactor = dst_alpha;
900
901 be.WriteDisableRed = !(rt->colormask & PIPE_MASK_R);
902 be.WriteDisableGreen = !(rt->colormask & PIPE_MASK_G);
903 be.WriteDisableBlue = !(rt->colormask & PIPE_MASK_B);
904 be.WriteDisableAlpha = !(rt->colormask & PIPE_MASK_A);
905 }
906 blend_entry += GENX(BLEND_STATE_ENTRY_length);
907 }
908
909 iris_pack_command(GENX(3DSTATE_PS_BLEND), cso->ps_blend, pb) {
910 /* pb.HasWriteableRT is filled in at draw time. */
911 /* pb.AlphaTestEnable is filled in at draw time. */
912 pb.AlphaToCoverageEnable = state->alpha_to_coverage;
913 pb.IndependentAlphaBlendEnable = indep_alpha_blend;
914
915 pb.ColorBufferBlendEnable = state->rt[0].blend_enable;
916
917 pb.SourceBlendFactor =
918 fix_blendfactor(state->rt[0].rgb_src_factor, state->alpha_to_one);
919 pb.SourceAlphaBlendFactor =
920 fix_blendfactor(state->rt[0].alpha_src_factor, state->alpha_to_one);
921 pb.DestinationBlendFactor =
922 fix_blendfactor(state->rt[0].rgb_dst_factor, state->alpha_to_one);
923 pb.DestinationAlphaBlendFactor =
924 fix_blendfactor(state->rt[0].alpha_dst_factor, state->alpha_to_one);
925 }
926
927 iris_pack_state(GENX(BLEND_STATE), cso->blend_state, bs) {
928 bs.AlphaToCoverageEnable = state->alpha_to_coverage;
929 bs.IndependentAlphaBlendEnable = indep_alpha_blend;
930 bs.AlphaToOneEnable = state->alpha_to_one;
931 bs.AlphaToCoverageDitherEnable = state->alpha_to_coverage;
932 bs.ColorDitherEnable = state->dither;
933 /* bl.AlphaTestEnable and bs.AlphaTestFunction are filled in later. */
934 }
935
936
937 return cso;
938 }
939
940 /**
941 * The pipe->bind_blend_state() driver hook.
942 *
943 * Bind a blending CSO and flag related dirty bits.
944 */
945 static void
946 iris_bind_blend_state(struct pipe_context *ctx, void *state)
947 {
948 struct iris_context *ice = (struct iris_context *) ctx;
949 struct iris_blend_state *cso = state;
950
951 ice->state.cso_blend = cso;
952 ice->state.blend_enables = cso ? cso->blend_enables : 0;
953
954 ice->state.dirty |= IRIS_DIRTY_PS_BLEND;
955 ice->state.dirty |= IRIS_DIRTY_BLEND_STATE;
956 ice->state.dirty |= ice->state.dirty_for_nos[IRIS_NOS_BLEND];
957 }
958
959 /**
960 * Gallium CSO for depth, stencil, and alpha testing state.
961 */
962 struct iris_depth_stencil_alpha_state {
963 /** Partial 3DSTATE_WM_DEPTH_STENCIL. */
964 uint32_t wmds[GENX(3DSTATE_WM_DEPTH_STENCIL_length)];
965
966 /** Outbound to BLEND_STATE, 3DSTATE_PS_BLEND, COLOR_CALC_STATE. */
967 struct pipe_alpha_state alpha;
968
969 /** Outbound to resolve and cache set tracking. */
970 bool depth_writes_enabled;
971 bool stencil_writes_enabled;
972 };
973
974 /**
975 * The pipe->create_depth_stencil_alpha_state() driver hook.
976 *
977 * We encode most of 3DSTATE_WM_DEPTH_STENCIL, and just save off the alpha
978 * testing state since we need pieces of it in a variety of places.
979 */
980 static void *
981 iris_create_zsa_state(struct pipe_context *ctx,
982 const struct pipe_depth_stencil_alpha_state *state)
983 {
984 struct iris_depth_stencil_alpha_state *cso =
985 malloc(sizeof(struct iris_depth_stencil_alpha_state));
986
987 bool two_sided_stencil = state->stencil[1].enabled;
988
989 cso->alpha = state->alpha;
990 cso->depth_writes_enabled = state->depth.writemask;
991 cso->stencil_writes_enabled =
992 state->stencil[0].writemask != 0 ||
993 (two_sided_stencil && state->stencil[1].writemask != 1);
994
995 /* The state tracker needs to optimize away EQUAL writes for us. */
996 assert(!(state->depth.func == PIPE_FUNC_EQUAL && state->depth.writemask));
997
998 iris_pack_command(GENX(3DSTATE_WM_DEPTH_STENCIL), cso->wmds, wmds) {
999 wmds.StencilFailOp = state->stencil[0].fail_op;
1000 wmds.StencilPassDepthFailOp = state->stencil[0].zfail_op;
1001 wmds.StencilPassDepthPassOp = state->stencil[0].zpass_op;
1002 wmds.StencilTestFunction =
1003 translate_compare_func(state->stencil[0].func);
1004 wmds.BackfaceStencilFailOp = state->stencil[1].fail_op;
1005 wmds.BackfaceStencilPassDepthFailOp = state->stencil[1].zfail_op;
1006 wmds.BackfaceStencilPassDepthPassOp = state->stencil[1].zpass_op;
1007 wmds.BackfaceStencilTestFunction =
1008 translate_compare_func(state->stencil[1].func);
1009 wmds.DepthTestFunction = translate_compare_func(state->depth.func);
1010 wmds.DoubleSidedStencilEnable = two_sided_stencil;
1011 wmds.StencilTestEnable = state->stencil[0].enabled;
1012 wmds.StencilBufferWriteEnable =
1013 state->stencil[0].writemask != 0 ||
1014 (two_sided_stencil && state->stencil[1].writemask != 0);
1015 wmds.DepthTestEnable = state->depth.enabled;
1016 wmds.DepthBufferWriteEnable = state->depth.writemask;
1017 wmds.StencilTestMask = state->stencil[0].valuemask;
1018 wmds.StencilWriteMask = state->stencil[0].writemask;
1019 wmds.BackfaceStencilTestMask = state->stencil[1].valuemask;
1020 wmds.BackfaceStencilWriteMask = state->stencil[1].writemask;
1021 /* wmds.[Backface]StencilReferenceValue are merged later */
1022 }
1023
1024 return cso;
1025 }
1026
1027 /**
1028 * The pipe->bind_depth_stencil_alpha_state() driver hook.
1029 *
1030 * Bind a depth/stencil/alpha CSO and flag related dirty bits.
1031 */
1032 static void
1033 iris_bind_zsa_state(struct pipe_context *ctx, void *state)
1034 {
1035 struct iris_context *ice = (struct iris_context *) ctx;
1036 struct iris_depth_stencil_alpha_state *old_cso = ice->state.cso_zsa;
1037 struct iris_depth_stencil_alpha_state *new_cso = state;
1038
1039 if (new_cso) {
1040 if (cso_changed(alpha.ref_value))
1041 ice->state.dirty |= IRIS_DIRTY_COLOR_CALC_STATE;
1042
1043 if (cso_changed(alpha.enabled))
1044 ice->state.dirty |= IRIS_DIRTY_PS_BLEND | IRIS_DIRTY_BLEND_STATE;
1045
1046 if (cso_changed(alpha.func))
1047 ice->state.dirty |= IRIS_DIRTY_BLEND_STATE;
1048
1049 ice->state.depth_writes_enabled = new_cso->depth_writes_enabled;
1050 ice->state.stencil_writes_enabled = new_cso->stencil_writes_enabled;
1051 }
1052
1053 ice->state.cso_zsa = new_cso;
1054 ice->state.dirty |= IRIS_DIRTY_CC_VIEWPORT;
1055 ice->state.dirty |= IRIS_DIRTY_WM_DEPTH_STENCIL;
1056 ice->state.dirty |= ice->state.dirty_for_nos[IRIS_NOS_DEPTH_STENCIL_ALPHA];
1057 }
1058
1059 /**
1060 * Gallium CSO for rasterizer state.
1061 */
1062 struct iris_rasterizer_state {
1063 uint32_t sf[GENX(3DSTATE_SF_length)];
1064 uint32_t clip[GENX(3DSTATE_CLIP_length)];
1065 uint32_t raster[GENX(3DSTATE_RASTER_length)];
1066 uint32_t wm[GENX(3DSTATE_WM_length)];
1067 uint32_t line_stipple[GENX(3DSTATE_LINE_STIPPLE_length)];
1068
1069 uint8_t num_clip_plane_consts;
1070 bool clip_halfz; /* for CC_VIEWPORT */
1071 bool depth_clip_near; /* for CC_VIEWPORT */
1072 bool depth_clip_far; /* for CC_VIEWPORT */
1073 bool flatshade; /* for shader state */
1074 bool flatshade_first; /* for stream output */
1075 bool clamp_fragment_color; /* for shader state */
1076 bool light_twoside; /* for shader state */
1077 bool rasterizer_discard; /* for 3DSTATE_STREAMOUT and 3DSTATE_CLIP */
1078 bool half_pixel_center; /* for 3DSTATE_MULTISAMPLE */
1079 bool line_stipple_enable;
1080 bool poly_stipple_enable;
1081 bool multisample;
1082 bool force_persample_interp;
1083 enum pipe_sprite_coord_mode sprite_coord_mode; /* PIPE_SPRITE_* */
1084 uint16_t sprite_coord_enable;
1085 };
1086
1087 static float
1088 get_line_width(const struct pipe_rasterizer_state *state)
1089 {
1090 float line_width = state->line_width;
1091
1092 /* From the OpenGL 4.4 spec:
1093 *
1094 * "The actual width of non-antialiased lines is determined by rounding
1095 * the supplied width to the nearest integer, then clamping it to the
1096 * implementation-dependent maximum non-antialiased line width."
1097 */
1098 if (!state->multisample && !state->line_smooth)
1099 line_width = roundf(state->line_width);
1100
1101 if (!state->multisample && state->line_smooth && line_width < 1.5f) {
1102 /* For 1 pixel line thickness or less, the general anti-aliasing
1103 * algorithm gives up, and a garbage line is generated. Setting a
1104 * Line Width of 0.0 specifies the rasterization of the "thinnest"
1105 * (one-pixel-wide), non-antialiased lines.
1106 *
1107 * Lines rendered with zero Line Width are rasterized using the
1108 * "Grid Intersection Quantization" rules as specified by the
1109 * "Zero-Width (Cosmetic) Line Rasterization" section of the docs.
1110 */
1111 line_width = 0.0f;
1112 }
1113
1114 return line_width;
1115 }
1116
1117 /**
1118 * The pipe->create_rasterizer_state() driver hook.
1119 */
1120 static void *
1121 iris_create_rasterizer_state(struct pipe_context *ctx,
1122 const struct pipe_rasterizer_state *state)
1123 {
1124 struct iris_rasterizer_state *cso =
1125 malloc(sizeof(struct iris_rasterizer_state));
1126
1127 #if 0
1128 point_quad_rasterization -> SBE?
1129
1130 not necessary?
1131 {
1132 poly_smooth
1133 bottom_edge_rule
1134
1135 offset_units_unscaled - cap not exposed
1136 }
1137 #endif
1138
1139 // XXX: it may make more sense just to store the pipe_rasterizer_state,
1140 // we're copying a lot of booleans here. But we don't need all of them...
1141
1142 cso->multisample = state->multisample;
1143 cso->force_persample_interp = state->force_persample_interp;
1144 cso->clip_halfz = state->clip_halfz;
1145 cso->depth_clip_near = state->depth_clip_near;
1146 cso->depth_clip_far = state->depth_clip_far;
1147 cso->flatshade = state->flatshade;
1148 cso->flatshade_first = state->flatshade_first;
1149 cso->clamp_fragment_color = state->clamp_fragment_color;
1150 cso->light_twoside = state->light_twoside;
1151 cso->rasterizer_discard = state->rasterizer_discard;
1152 cso->half_pixel_center = state->half_pixel_center;
1153 cso->sprite_coord_mode = state->sprite_coord_mode;
1154 cso->sprite_coord_enable = state->sprite_coord_enable;
1155 cso->line_stipple_enable = state->line_stipple_enable;
1156 cso->poly_stipple_enable = state->poly_stipple_enable;
1157
1158 if (state->clip_plane_enable != 0)
1159 cso->num_clip_plane_consts = util_logbase2(state->clip_plane_enable) + 1;
1160 else
1161 cso->num_clip_plane_consts = 0;
1162
1163 float line_width = get_line_width(state);
1164
1165 iris_pack_command(GENX(3DSTATE_SF), cso->sf, sf) {
1166 sf.StatisticsEnable = true;
1167 sf.ViewportTransformEnable = true;
1168 sf.AALineDistanceMode = AALINEDISTANCE_TRUE;
1169 sf.LineEndCapAntialiasingRegionWidth =
1170 state->line_smooth ? _10pixels : _05pixels;
1171 sf.LastPixelEnable = state->line_last_pixel;
1172 sf.LineWidth = line_width;
1173 sf.SmoothPointEnable = state->point_smooth || state->multisample;
1174 sf.PointWidthSource = state->point_size_per_vertex ? Vertex : State;
1175 sf.PointWidth = state->point_size;
1176
1177 if (state->flatshade_first) {
1178 sf.TriangleFanProvokingVertexSelect = 1;
1179 } else {
1180 sf.TriangleStripListProvokingVertexSelect = 2;
1181 sf.TriangleFanProvokingVertexSelect = 2;
1182 sf.LineStripListProvokingVertexSelect = 1;
1183 }
1184 }
1185
1186 iris_pack_command(GENX(3DSTATE_RASTER), cso->raster, rr) {
1187 rr.FrontWinding = state->front_ccw ? CounterClockwise : Clockwise;
1188 rr.CullMode = translate_cull_mode(state->cull_face);
1189 rr.FrontFaceFillMode = translate_fill_mode(state->fill_front);
1190 rr.BackFaceFillMode = translate_fill_mode(state->fill_back);
1191 rr.DXMultisampleRasterizationEnable = state->multisample;
1192 rr.GlobalDepthOffsetEnableSolid = state->offset_tri;
1193 rr.GlobalDepthOffsetEnableWireframe = state->offset_line;
1194 rr.GlobalDepthOffsetEnablePoint = state->offset_point;
1195 rr.GlobalDepthOffsetConstant = state->offset_units * 2;
1196 rr.GlobalDepthOffsetScale = state->offset_scale;
1197 rr.GlobalDepthOffsetClamp = state->offset_clamp;
1198 rr.SmoothPointEnable = state->point_smooth || state->multisample;
1199 rr.AntialiasingEnable = state->line_smooth;
1200 rr.ScissorRectangleEnable = state->scissor;
1201 #if GEN_GEN >= 9
1202 rr.ViewportZNearClipTestEnable = state->depth_clip_near;
1203 rr.ViewportZFarClipTestEnable = state->depth_clip_far;
1204 #else
1205 rr.ViewportZClipTestEnable = (state->depth_clip_near || state->depth_clip_far);
1206 #endif
1207 //rr.ConservativeRasterizationEnable = not yet supported by Gallium...
1208 }
1209
1210 iris_pack_command(GENX(3DSTATE_CLIP), cso->clip, cl) {
1211 /* cl.NonPerspectiveBarycentricEnable is filled in at draw time from
1212 * the FS program; cl.ForceZeroRTAIndexEnable is filled in from the FB.
1213 */
1214 cl.EarlyCullEnable = true;
1215 cl.UserClipDistanceClipTestEnableBitmask = state->clip_plane_enable;
1216 cl.ForceUserClipDistanceClipTestEnableBitmask = true;
1217 cl.APIMode = state->clip_halfz ? APIMODE_D3D : APIMODE_OGL;
1218 cl.GuardbandClipTestEnable = true;
1219 cl.ClipEnable = true;
1220 cl.ViewportXYClipTestEnable = state->point_tri_clip;
1221 cl.MinimumPointWidth = 0.125;
1222 cl.MaximumPointWidth = 255.875;
1223
1224 if (state->flatshade_first) {
1225 cl.TriangleFanProvokingVertexSelect = 1;
1226 } else {
1227 cl.TriangleStripListProvokingVertexSelect = 2;
1228 cl.TriangleFanProvokingVertexSelect = 2;
1229 cl.LineStripListProvokingVertexSelect = 1;
1230 }
1231 }
1232
1233 iris_pack_command(GENX(3DSTATE_WM), cso->wm, wm) {
1234 /* wm.BarycentricInterpolationMode and wm.EarlyDepthStencilControl are
1235 * filled in at draw time from the FS program.
1236 */
1237 wm.LineAntialiasingRegionWidth = _10pixels;
1238 wm.LineEndCapAntialiasingRegionWidth = _05pixels;
1239 wm.PointRasterizationRule = RASTRULE_UPPER_RIGHT;
1240 wm.LineStippleEnable = state->line_stipple_enable;
1241 wm.PolygonStippleEnable = state->poly_stipple_enable;
1242 }
1243
1244 /* Remap from 0..255 back to 1..256 */
1245 const unsigned line_stipple_factor = state->line_stipple_factor + 1;
1246
1247 iris_pack_command(GENX(3DSTATE_LINE_STIPPLE), cso->line_stipple, line) {
1248 line.LineStipplePattern = state->line_stipple_pattern;
1249 line.LineStippleInverseRepeatCount = 1.0f / line_stipple_factor;
1250 line.LineStippleRepeatCount = line_stipple_factor;
1251 }
1252
1253 return cso;
1254 }
1255
1256 /**
1257 * The pipe->bind_rasterizer_state() driver hook.
1258 *
1259 * Bind a rasterizer CSO and flag related dirty bits.
1260 */
1261 static void
1262 iris_bind_rasterizer_state(struct pipe_context *ctx, void *state)
1263 {
1264 struct iris_context *ice = (struct iris_context *) ctx;
1265 struct iris_rasterizer_state *old_cso = ice->state.cso_rast;
1266 struct iris_rasterizer_state *new_cso = state;
1267
1268 if (new_cso) {
1269 /* Try to avoid re-emitting 3DSTATE_LINE_STIPPLE, it's non-pipelined */
1270 if (cso_changed_memcmp(line_stipple))
1271 ice->state.dirty |= IRIS_DIRTY_LINE_STIPPLE;
1272
1273 if (cso_changed(half_pixel_center))
1274 ice->state.dirty |= IRIS_DIRTY_MULTISAMPLE;
1275
1276 if (cso_changed(line_stipple_enable) || cso_changed(poly_stipple_enable))
1277 ice->state.dirty |= IRIS_DIRTY_WM;
1278
1279 if (cso_changed(rasterizer_discard))
1280 ice->state.dirty |= IRIS_DIRTY_STREAMOUT | IRIS_DIRTY_CLIP;
1281
1282 if (cso_changed(flatshade_first))
1283 ice->state.dirty |= IRIS_DIRTY_STREAMOUT;
1284
1285 if (cso_changed(depth_clip_near) || cso_changed(depth_clip_far) ||
1286 cso_changed(clip_halfz))
1287 ice->state.dirty |= IRIS_DIRTY_CC_VIEWPORT;
1288
1289 if (cso_changed(sprite_coord_enable) ||
1290 cso_changed(sprite_coord_mode) ||
1291 cso_changed(light_twoside))
1292 ice->state.dirty |= IRIS_DIRTY_SBE;
1293 }
1294
1295 ice->state.cso_rast = new_cso;
1296 ice->state.dirty |= IRIS_DIRTY_RASTER;
1297 ice->state.dirty |= IRIS_DIRTY_CLIP;
1298 ice->state.dirty |= ice->state.dirty_for_nos[IRIS_NOS_RASTERIZER];
1299 }
1300
1301 /**
1302 * Return true if the given wrap mode requires the border color to exist.
1303 *
1304 * (We can skip uploading it if the sampler isn't going to use it.)
1305 */
1306 static bool
1307 wrap_mode_needs_border_color(unsigned wrap_mode)
1308 {
1309 return wrap_mode == TCM_CLAMP_BORDER || wrap_mode == TCM_HALF_BORDER;
1310 }
1311
1312 /**
1313 * Gallium CSO for sampler state.
1314 */
1315 struct iris_sampler_state {
1316 union pipe_color_union border_color;
1317 bool needs_border_color;
1318
1319 uint32_t sampler_state[GENX(SAMPLER_STATE_length)];
1320 };
1321
1322 /**
1323 * The pipe->create_sampler_state() driver hook.
1324 *
1325 * We fill out SAMPLER_STATE (except for the border color pointer), and
1326 * store that on the CPU. It doesn't make sense to upload it to a GPU
1327 * buffer object yet, because 3DSTATE_SAMPLER_STATE_POINTERS requires
1328 * all bound sampler states to be in contiguous memor.
1329 */
1330 static void *
1331 iris_create_sampler_state(struct pipe_context *ctx,
1332 const struct pipe_sampler_state *state)
1333 {
1334 struct iris_sampler_state *cso = CALLOC_STRUCT(iris_sampler_state);
1335
1336 if (!cso)
1337 return NULL;
1338
1339 STATIC_ASSERT(PIPE_TEX_FILTER_NEAREST == MAPFILTER_NEAREST);
1340 STATIC_ASSERT(PIPE_TEX_FILTER_LINEAR == MAPFILTER_LINEAR);
1341
1342 unsigned wrap_s = translate_wrap(state->wrap_s);
1343 unsigned wrap_t = translate_wrap(state->wrap_t);
1344 unsigned wrap_r = translate_wrap(state->wrap_r);
1345
1346 memcpy(&cso->border_color, &state->border_color, sizeof(cso->border_color));
1347
1348 cso->needs_border_color = wrap_mode_needs_border_color(wrap_s) ||
1349 wrap_mode_needs_border_color(wrap_t) ||
1350 wrap_mode_needs_border_color(wrap_r);
1351
1352 float min_lod = state->min_lod;
1353 unsigned mag_img_filter = state->mag_img_filter;
1354
1355 // XXX: explain this code ported from ilo...I don't get it at all...
1356 if (state->min_mip_filter == PIPE_TEX_MIPFILTER_NONE &&
1357 state->min_lod > 0.0f) {
1358 min_lod = 0.0f;
1359 mag_img_filter = state->min_img_filter;
1360 }
1361
1362 iris_pack_state(GENX(SAMPLER_STATE), cso->sampler_state, samp) {
1363 samp.TCXAddressControlMode = wrap_s;
1364 samp.TCYAddressControlMode = wrap_t;
1365 samp.TCZAddressControlMode = wrap_r;
1366 samp.CubeSurfaceControlMode = state->seamless_cube_map;
1367 samp.NonnormalizedCoordinateEnable = !state->normalized_coords;
1368 samp.MinModeFilter = state->min_img_filter;
1369 samp.MagModeFilter = mag_img_filter;
1370 samp.MipModeFilter = translate_mip_filter(state->min_mip_filter);
1371 samp.MaximumAnisotropy = RATIO21;
1372
1373 if (state->max_anisotropy >= 2) {
1374 if (state->min_img_filter == PIPE_TEX_FILTER_LINEAR) {
1375 samp.MinModeFilter = MAPFILTER_ANISOTROPIC;
1376 samp.AnisotropicAlgorithm = EWAApproximation;
1377 }
1378
1379 if (state->mag_img_filter == PIPE_TEX_FILTER_LINEAR)
1380 samp.MagModeFilter = MAPFILTER_ANISOTROPIC;
1381
1382 samp.MaximumAnisotropy =
1383 MIN2((state->max_anisotropy - 2) / 2, RATIO161);
1384 }
1385
1386 /* Set address rounding bits if not using nearest filtering. */
1387 if (state->min_img_filter != PIPE_TEX_FILTER_NEAREST) {
1388 samp.UAddressMinFilterRoundingEnable = true;
1389 samp.VAddressMinFilterRoundingEnable = true;
1390 samp.RAddressMinFilterRoundingEnable = true;
1391 }
1392
1393 if (state->mag_img_filter != PIPE_TEX_FILTER_NEAREST) {
1394 samp.UAddressMagFilterRoundingEnable = true;
1395 samp.VAddressMagFilterRoundingEnable = true;
1396 samp.RAddressMagFilterRoundingEnable = true;
1397 }
1398
1399 if (state->compare_mode == PIPE_TEX_COMPARE_R_TO_TEXTURE)
1400 samp.ShadowFunction = translate_shadow_func(state->compare_func);
1401
1402 const float hw_max_lod = GEN_GEN >= 7 ? 14 : 13;
1403
1404 samp.LODPreClampMode = CLAMP_MODE_OGL;
1405 samp.MinLOD = CLAMP(min_lod, 0, hw_max_lod);
1406 samp.MaxLOD = CLAMP(state->max_lod, 0, hw_max_lod);
1407 samp.TextureLODBias = CLAMP(state->lod_bias, -16, 15);
1408
1409 /* .BorderColorPointer is filled in by iris_bind_sampler_states. */
1410 }
1411
1412 return cso;
1413 }
1414
1415 /**
1416 * The pipe->bind_sampler_states() driver hook.
1417 *
1418 * Now that we know all the sampler states, we upload them all into a
1419 * contiguous area of GPU memory, for 3DSTATE_SAMPLER_STATE_POINTERS_*.
1420 * We also fill out the border color state pointers at this point.
1421 *
1422 * We could defer this work to draw time, but we assume that binding
1423 * will be less frequent than drawing.
1424 */
1425 // XXX: this may be a bad idea, need to make sure that st/mesa calls us
1426 // XXX: with the complete set of shaders. If it makes multiple calls to
1427 // XXX: things one at a time, we could waste a lot of time assembling things.
1428 // XXX: it doesn't even BUY us anything to do it here, because we only flag
1429 // XXX: IRIS_DIRTY_SAMPLER_STATE when this is called...
1430 static void
1431 iris_bind_sampler_states(struct pipe_context *ctx,
1432 enum pipe_shader_type p_stage,
1433 unsigned start, unsigned count,
1434 void **states)
1435 {
1436 struct iris_context *ice = (struct iris_context *) ctx;
1437 gl_shader_stage stage = stage_from_pipe(p_stage);
1438 struct iris_shader_state *shs = &ice->state.shaders[stage];
1439
1440 assert(start + count <= IRIS_MAX_TEXTURE_SAMPLERS);
1441
1442 for (int i = 0; i < count; i++) {
1443 shs->samplers[start + i] = states[i];
1444 }
1445
1446 /* Assemble the SAMPLER_STATEs into a contiguous table that lives
1447 * in the dynamic state memory zone, so we can point to it via the
1448 * 3DSTATE_SAMPLER_STATE_POINTERS_* commands.
1449 */
1450 uint32_t *map =
1451 upload_state(ice->state.dynamic_uploader, &shs->sampler_table,
1452 count * 4 * GENX(SAMPLER_STATE_length), 32);
1453 if (unlikely(!map))
1454 return;
1455
1456 struct pipe_resource *res = shs->sampler_table.res;
1457 shs->sampler_table.offset +=
1458 iris_bo_offset_from_base_address(iris_resource_bo(res));
1459
1460 /* Make sure all land in the same BO */
1461 iris_border_color_pool_reserve(ice, IRIS_MAX_TEXTURE_SAMPLERS);
1462
1463 for (int i = 0; i < count; i++) {
1464 struct iris_sampler_state *state = shs->samplers[i];
1465
1466 if (!state) {
1467 memset(map, 0, 4 * GENX(SAMPLER_STATE_length));
1468 } else if (!state->needs_border_color) {
1469 memcpy(map, state->sampler_state, 4 * GENX(SAMPLER_STATE_length));
1470 } else {
1471 ice->state.need_border_colors = true;
1472
1473 /* Stream out the border color and merge the pointer. */
1474 uint32_t offset =
1475 iris_upload_border_color(ice, &state->border_color);
1476
1477 uint32_t dynamic[GENX(SAMPLER_STATE_length)];
1478 iris_pack_state(GENX(SAMPLER_STATE), dynamic, dyns) {
1479 dyns.BorderColorPointer = offset;
1480 }
1481
1482 for (uint32_t j = 0; j < GENX(SAMPLER_STATE_length); j++)
1483 map[j] = state->sampler_state[j] | dynamic[j];
1484 }
1485
1486 map += GENX(SAMPLER_STATE_length);
1487 }
1488
1489 ice->state.dirty |= IRIS_DIRTY_SAMPLER_STATES_VS << stage;
1490 }
1491
1492 static enum isl_channel_select
1493 fmt_swizzle(const struct iris_format_info *fmt, enum pipe_swizzle swz)
1494 {
1495 switch (swz) {
1496 case PIPE_SWIZZLE_X: return fmt->swizzle.r;
1497 case PIPE_SWIZZLE_Y: return fmt->swizzle.g;
1498 case PIPE_SWIZZLE_Z: return fmt->swizzle.b;
1499 case PIPE_SWIZZLE_W: return fmt->swizzle.a;
1500 case PIPE_SWIZZLE_1: return SCS_ONE;
1501 case PIPE_SWIZZLE_0: return SCS_ZERO;
1502 default: unreachable("invalid swizzle");
1503 }
1504 }
1505
1506 static void
1507 fill_buffer_surface_state(struct isl_device *isl_dev,
1508 struct iris_bo *bo,
1509 void *map,
1510 enum isl_format format,
1511 unsigned offset,
1512 unsigned size)
1513 {
1514 const struct isl_format_layout *fmtl = isl_format_get_layout(format);
1515 const unsigned cpp = fmtl->bpb / 8;
1516
1517 /* The ARB_texture_buffer_specification says:
1518 *
1519 * "The number of texels in the buffer texture's texel array is given by
1520 *
1521 * floor(<buffer_size> / (<components> * sizeof(<base_type>)),
1522 *
1523 * where <buffer_size> is the size of the buffer object, in basic
1524 * machine units and <components> and <base_type> are the element count
1525 * and base data type for elements, as specified in Table X.1. The
1526 * number of texels in the texel array is then clamped to the
1527 * implementation-dependent limit MAX_TEXTURE_BUFFER_SIZE_ARB."
1528 *
1529 * We need to clamp the size in bytes to MAX_TEXTURE_BUFFER_SIZE * stride,
1530 * so that when ISL divides by stride to obtain the number of texels, that
1531 * texel count is clamped to MAX_TEXTURE_BUFFER_SIZE.
1532 */
1533 unsigned final_size =
1534 MIN3(size, bo->size - offset, IRIS_MAX_TEXTURE_BUFFER_SIZE * cpp);
1535
1536 isl_buffer_fill_state(isl_dev, map,
1537 .address = bo->gtt_offset + offset,
1538 .size_B = final_size,
1539 .format = format,
1540 .stride_B = cpp,
1541 .mocs = mocs(bo));
1542 }
1543
1544 /**
1545 * Allocate a SURFACE_STATE structure.
1546 */
1547 static void *
1548 alloc_surface_states(struct u_upload_mgr *mgr,
1549 struct iris_state_ref *ref)
1550 {
1551 const unsigned surf_size = 4 * GENX(RENDER_SURFACE_STATE_length);
1552
1553 void *map = upload_state(mgr, ref, surf_size, 64);
1554
1555 ref->offset += iris_bo_offset_from_base_address(iris_resource_bo(ref->res));
1556
1557 return map;
1558 }
1559
1560 static void
1561 fill_surface_state(struct isl_device *isl_dev,
1562 void *map,
1563 struct iris_resource *res,
1564 struct isl_view *view)
1565 {
1566 struct isl_surf_fill_state_info f = {
1567 .surf = &res->surf,
1568 .view = view,
1569 .mocs = mocs(res->bo),
1570 .address = res->bo->gtt_offset,
1571 };
1572
1573 isl_surf_fill_state_s(isl_dev, map, &f);
1574 }
1575
1576 /**
1577 * The pipe->create_sampler_view() driver hook.
1578 */
1579 static struct pipe_sampler_view *
1580 iris_create_sampler_view(struct pipe_context *ctx,
1581 struct pipe_resource *tex,
1582 const struct pipe_sampler_view *tmpl)
1583 {
1584 struct iris_context *ice = (struct iris_context *) ctx;
1585 struct iris_screen *screen = (struct iris_screen *)ctx->screen;
1586 const struct gen_device_info *devinfo = &screen->devinfo;
1587 struct iris_sampler_view *isv = calloc(1, sizeof(struct iris_sampler_view));
1588
1589 if (!isv)
1590 return NULL;
1591
1592 /* initialize base object */
1593 isv->base = *tmpl;
1594 isv->base.context = ctx;
1595 isv->base.texture = NULL;
1596 pipe_reference_init(&isv->base.reference, 1);
1597 pipe_resource_reference(&isv->base.texture, tex);
1598
1599 void *map = alloc_surface_states(ice->state.surface_uploader,
1600 &isv->surface_state);
1601 if (!unlikely(map))
1602 return NULL;
1603
1604 if (util_format_is_depth_or_stencil(tmpl->format)) {
1605 struct iris_resource *zres, *sres;
1606 const struct util_format_description *desc =
1607 util_format_description(tmpl->format);
1608
1609 iris_get_depth_stencil_resources(tex, &zres, &sres);
1610
1611 tex = util_format_has_depth(desc) ? &zres->base : &sres->base;
1612 }
1613
1614 isv->res = (struct iris_resource *) tex;
1615
1616 isl_surf_usage_flags_t usage = ISL_SURF_USAGE_TEXTURE_BIT;
1617
1618 if (isv->base.target == PIPE_TEXTURE_CUBE ||
1619 isv->base.target == PIPE_TEXTURE_CUBE_ARRAY)
1620 usage |= ISL_SURF_USAGE_CUBE_BIT;
1621
1622 const struct iris_format_info fmt =
1623 iris_format_for_usage(devinfo, tmpl->format, usage);
1624
1625 isv->view = (struct isl_view) {
1626 .format = fmt.fmt,
1627 .swizzle = (struct isl_swizzle) {
1628 .r = fmt_swizzle(&fmt, tmpl->swizzle_r),
1629 .g = fmt_swizzle(&fmt, tmpl->swizzle_g),
1630 .b = fmt_swizzle(&fmt, tmpl->swizzle_b),
1631 .a = fmt_swizzle(&fmt, tmpl->swizzle_a),
1632 },
1633 .usage = usage,
1634 };
1635
1636 /* Fill out SURFACE_STATE for this view. */
1637 if (tmpl->target != PIPE_BUFFER) {
1638 isv->view.base_level = tmpl->u.tex.first_level;
1639 isv->view.levels = tmpl->u.tex.last_level - tmpl->u.tex.first_level + 1;
1640 // XXX: do I need to port f9fd0cf4790cb2a530e75d1a2206dbb9d8af7cb2?
1641 isv->view.base_array_layer = tmpl->u.tex.first_layer;
1642 isv->view.array_len =
1643 tmpl->u.tex.last_layer - tmpl->u.tex.first_layer + 1;
1644
1645 fill_surface_state(&screen->isl_dev, map, isv->res, &isv->view);
1646 } else {
1647 fill_buffer_surface_state(&screen->isl_dev, isv->res->bo, map,
1648 isv->view.format, tmpl->u.buf.offset,
1649 tmpl->u.buf.size);
1650 }
1651
1652 return &isv->base;
1653 }
1654
1655 static void
1656 iris_sampler_view_destroy(struct pipe_context *ctx,
1657 struct pipe_sampler_view *state)
1658 {
1659 struct iris_sampler_view *isv = (void *) state;
1660 pipe_resource_reference(&state->texture, NULL);
1661 pipe_resource_reference(&isv->surface_state.res, NULL);
1662 free(isv);
1663 }
1664
1665 /**
1666 * The pipe->create_surface() driver hook.
1667 *
1668 * In Gallium nomenclature, "surfaces" are a view of a resource that
1669 * can be bound as a render target or depth/stencil buffer.
1670 */
1671 static struct pipe_surface *
1672 iris_create_surface(struct pipe_context *ctx,
1673 struct pipe_resource *tex,
1674 const struct pipe_surface *tmpl)
1675 {
1676 struct iris_context *ice = (struct iris_context *) ctx;
1677 struct iris_screen *screen = (struct iris_screen *)ctx->screen;
1678 const struct gen_device_info *devinfo = &screen->devinfo;
1679 struct iris_surface *surf = calloc(1, sizeof(struct iris_surface));
1680 struct pipe_surface *psurf = &surf->base;
1681 struct iris_resource *res = (struct iris_resource *) tex;
1682
1683 if (!surf)
1684 return NULL;
1685
1686 pipe_reference_init(&psurf->reference, 1);
1687 pipe_resource_reference(&psurf->texture, tex);
1688 psurf->context = ctx;
1689 psurf->format = tmpl->format;
1690 psurf->width = tex->width0;
1691 psurf->height = tex->height0;
1692 psurf->texture = tex;
1693 psurf->u.tex.first_layer = tmpl->u.tex.first_layer;
1694 psurf->u.tex.last_layer = tmpl->u.tex.last_layer;
1695 psurf->u.tex.level = tmpl->u.tex.level;
1696
1697 isl_surf_usage_flags_t usage = 0;
1698 if (tmpl->writable)
1699 usage = ISL_SURF_USAGE_STORAGE_BIT;
1700 else if (util_format_is_depth_or_stencil(tmpl->format))
1701 usage = ISL_SURF_USAGE_DEPTH_BIT;
1702 else
1703 usage = ISL_SURF_USAGE_RENDER_TARGET_BIT;
1704
1705 const struct iris_format_info fmt =
1706 iris_format_for_usage(devinfo, psurf->format, usage);
1707
1708 if ((usage & ISL_SURF_USAGE_RENDER_TARGET_BIT) &&
1709 !isl_format_supports_rendering(devinfo, fmt.fmt)) {
1710 /* Framebuffer validation will reject this invalid case, but it
1711 * hasn't had the opportunity yet. In the meantime, we need to
1712 * avoid hitting ISL asserts about unsupported formats below.
1713 */
1714 free(surf);
1715 return NULL;
1716 }
1717
1718 surf->view = (struct isl_view) {
1719 .format = fmt.fmt,
1720 .base_level = tmpl->u.tex.level,
1721 .levels = 1,
1722 .base_array_layer = tmpl->u.tex.first_layer,
1723 .array_len = tmpl->u.tex.last_layer - tmpl->u.tex.first_layer + 1,
1724 .swizzle = ISL_SWIZZLE_IDENTITY,
1725 .usage = usage,
1726 };
1727
1728 /* Bail early for depth/stencil - we don't want SURFACE_STATE for them. */
1729 if (res->surf.usage & (ISL_SURF_USAGE_DEPTH_BIT |
1730 ISL_SURF_USAGE_STENCIL_BIT))
1731 return psurf;
1732
1733
1734 void *map = alloc_surface_states(ice->state.surface_uploader,
1735 &surf->surface_state);
1736 if (!unlikely(map))
1737 return NULL;
1738
1739 fill_surface_state(&screen->isl_dev, map, res, &surf->view);
1740
1741 return psurf;
1742 }
1743
1744 /**
1745 * The pipe->set_shader_images() driver hook.
1746 */
1747 static void
1748 iris_set_shader_images(struct pipe_context *ctx,
1749 enum pipe_shader_type p_stage,
1750 unsigned start_slot, unsigned count,
1751 const struct pipe_image_view *p_images)
1752 {
1753 struct iris_context *ice = (struct iris_context *) ctx;
1754 struct iris_screen *screen = (struct iris_screen *)ctx->screen;
1755 const struct gen_device_info *devinfo = &screen->devinfo;
1756 gl_shader_stage stage = stage_from_pipe(p_stage);
1757 struct iris_shader_state *shs = &ice->state.shaders[stage];
1758
1759 shs->bound_image_views &= ~u_bit_consecutive(start_slot, count);
1760
1761 for (unsigned i = 0; i < count; i++) {
1762 if (p_images && p_images[i].resource) {
1763 const struct pipe_image_view *img = &p_images[i];
1764 struct iris_resource *res = (void *) img->resource;
1765 pipe_resource_reference(&shs->image[start_slot + i].res, &res->base);
1766
1767 shs->bound_image_views |= 1 << (start_slot + i);
1768
1769 res->bind_history |= PIPE_BIND_SHADER_IMAGE;
1770
1771 // XXX: these are not retained forever, use a separate uploader?
1772 void *map =
1773 alloc_surface_states(ice->state.surface_uploader,
1774 &shs->image[start_slot + i].surface_state);
1775 if (!unlikely(map)) {
1776 pipe_resource_reference(&shs->image[start_slot + i].res, NULL);
1777 return;
1778 }
1779
1780 isl_surf_usage_flags_t usage = ISL_SURF_USAGE_STORAGE_BIT;
1781 enum isl_format isl_format =
1782 iris_format_for_usage(devinfo, img->format, usage).fmt;
1783
1784 if (img->shader_access & PIPE_IMAGE_ACCESS_READ)
1785 isl_format = isl_lower_storage_image_format(devinfo, isl_format);
1786
1787 shs->image[start_slot + i].access = img->shader_access;
1788
1789 if (res->base.target != PIPE_BUFFER) {
1790 struct isl_view view = {
1791 .format = isl_format,
1792 .base_level = img->u.tex.level,
1793 .levels = 1,
1794 .base_array_layer = img->u.tex.first_layer,
1795 .array_len = img->u.tex.last_layer - img->u.tex.first_layer + 1,
1796 .swizzle = ISL_SWIZZLE_IDENTITY,
1797 .usage = usage,
1798 };
1799
1800 fill_surface_state(&screen->isl_dev, map, res, &view);
1801 } else {
1802 fill_buffer_surface_state(&screen->isl_dev, res->bo, map,
1803 isl_format, img->u.buf.offset,
1804 img->u.buf.size);
1805 }
1806 } else {
1807 pipe_resource_reference(&shs->image[start_slot + i].res, NULL);
1808 pipe_resource_reference(&shs->image[start_slot + i].surface_state.res,
1809 NULL);
1810 }
1811 }
1812
1813 ice->state.dirty |= IRIS_DIRTY_BINDINGS_VS << stage;
1814 }
1815
1816
1817 /**
1818 * The pipe->set_sampler_views() driver hook.
1819 */
1820 static void
1821 iris_set_sampler_views(struct pipe_context *ctx,
1822 enum pipe_shader_type p_stage,
1823 unsigned start, unsigned count,
1824 struct pipe_sampler_view **views)
1825 {
1826 struct iris_context *ice = (struct iris_context *) ctx;
1827 gl_shader_stage stage = stage_from_pipe(p_stage);
1828 struct iris_shader_state *shs = &ice->state.shaders[stage];
1829
1830 shs->bound_sampler_views &= ~u_bit_consecutive(start, count);
1831
1832 for (unsigned i = 0; i < count; i++) {
1833 pipe_sampler_view_reference((struct pipe_sampler_view **)
1834 &shs->textures[start + i], views[i]);
1835 struct iris_sampler_view *view = (void *) views[i];
1836 if (view) {
1837 view->res->bind_history |= PIPE_BIND_SAMPLER_VIEW;
1838 shs->bound_sampler_views |= 1 << (start + i);
1839 }
1840 }
1841
1842 ice->state.dirty |= (IRIS_DIRTY_BINDINGS_VS << stage);
1843 }
1844
1845 /**
1846 * The pipe->set_tess_state() driver hook.
1847 */
1848 static void
1849 iris_set_tess_state(struct pipe_context *ctx,
1850 const float default_outer_level[4],
1851 const float default_inner_level[2])
1852 {
1853 struct iris_context *ice = (struct iris_context *) ctx;
1854
1855 memcpy(&ice->state.default_outer_level[0], &default_outer_level[0], 4 * sizeof(float));
1856 memcpy(&ice->state.default_inner_level[0], &default_inner_level[0], 2 * sizeof(float));
1857
1858 ice->state.dirty |= IRIS_DIRTY_CONSTANTS_TCS;
1859 }
1860
1861 static void
1862 iris_surface_destroy(struct pipe_context *ctx, struct pipe_surface *p_surf)
1863 {
1864 struct iris_surface *surf = (void *) p_surf;
1865 pipe_resource_reference(&p_surf->texture, NULL);
1866 pipe_resource_reference(&surf->surface_state.res, NULL);
1867 free(surf);
1868 }
1869
1870 static void
1871 iris_set_clip_state(struct pipe_context *ctx,
1872 const struct pipe_clip_state *state)
1873 {
1874 struct iris_context *ice = (struct iris_context *) ctx;
1875 struct iris_shader_state *shs = &ice->state.shaders[MESA_SHADER_VERTEX];
1876
1877 memcpy(&ice->state.clip_planes, state, sizeof(*state));
1878
1879 ice->state.dirty |= IRIS_DIRTY_CONSTANTS_VS;
1880 shs->cbuf0_needs_upload = true;
1881 }
1882
1883 /**
1884 * The pipe->set_polygon_stipple() driver hook.
1885 */
1886 static void
1887 iris_set_polygon_stipple(struct pipe_context *ctx,
1888 const struct pipe_poly_stipple *state)
1889 {
1890 struct iris_context *ice = (struct iris_context *) ctx;
1891 memcpy(&ice->state.poly_stipple, state, sizeof(*state));
1892 ice->state.dirty |= IRIS_DIRTY_POLYGON_STIPPLE;
1893 }
1894
1895 /**
1896 * The pipe->set_sample_mask() driver hook.
1897 */
1898 static void
1899 iris_set_sample_mask(struct pipe_context *ctx, unsigned sample_mask)
1900 {
1901 struct iris_context *ice = (struct iris_context *) ctx;
1902
1903 /* We only support 16x MSAA, so we have 16 bits of sample maks.
1904 * st/mesa may pass us 0xffffffff though, meaning "enable all samples".
1905 */
1906 ice->state.sample_mask = sample_mask & 0xffff;
1907 ice->state.dirty |= IRIS_DIRTY_SAMPLE_MASK;
1908 }
1909
1910 /**
1911 * The pipe->set_scissor_states() driver hook.
1912 *
1913 * This corresponds to our SCISSOR_RECT state structures. It's an
1914 * exact match, so we just store them, and memcpy them out later.
1915 */
1916 static void
1917 iris_set_scissor_states(struct pipe_context *ctx,
1918 unsigned start_slot,
1919 unsigned num_scissors,
1920 const struct pipe_scissor_state *rects)
1921 {
1922 struct iris_context *ice = (struct iris_context *) ctx;
1923
1924 for (unsigned i = 0; i < num_scissors; i++) {
1925 if (rects[i].minx == rects[i].maxx || rects[i].miny == rects[i].maxy) {
1926 /* If the scissor was out of bounds and got clamped to 0 width/height
1927 * at the bounds, the subtraction of 1 from maximums could produce a
1928 * negative number and thus not clip anything. Instead, just provide
1929 * a min > max scissor inside the bounds, which produces the expected
1930 * no rendering.
1931 */
1932 ice->state.scissors[start_slot + i] = (struct pipe_scissor_state) {
1933 .minx = 1, .maxx = 0, .miny = 1, .maxy = 0,
1934 };
1935 } else {
1936 ice->state.scissors[start_slot + i] = (struct pipe_scissor_state) {
1937 .minx = rects[i].minx, .miny = rects[i].miny,
1938 .maxx = rects[i].maxx - 1, .maxy = rects[i].maxy - 1,
1939 };
1940 }
1941 }
1942
1943 ice->state.dirty |= IRIS_DIRTY_SCISSOR_RECT;
1944 }
1945
1946 /**
1947 * The pipe->set_stencil_ref() driver hook.
1948 *
1949 * This is added to 3DSTATE_WM_DEPTH_STENCIL dynamically at draw time.
1950 */
1951 static void
1952 iris_set_stencil_ref(struct pipe_context *ctx,
1953 const struct pipe_stencil_ref *state)
1954 {
1955 struct iris_context *ice = (struct iris_context *) ctx;
1956 memcpy(&ice->state.stencil_ref, state, sizeof(*state));
1957 if (GEN_GEN == 8)
1958 ice->state.dirty |= IRIS_DIRTY_COLOR_CALC_STATE;
1959 else
1960 ice->state.dirty |= IRIS_DIRTY_WM_DEPTH_STENCIL;
1961 }
1962
1963 static float
1964 viewport_extent(const struct pipe_viewport_state *state, int axis, float sign)
1965 {
1966 return copysignf(state->scale[axis], sign) + state->translate[axis];
1967 }
1968
1969 static void
1970 calculate_guardband_size(uint32_t fb_width, uint32_t fb_height,
1971 float m00, float m11, float m30, float m31,
1972 float *xmin, float *xmax,
1973 float *ymin, float *ymax)
1974 {
1975 /* According to the "Vertex X,Y Clamping and Quantization" section of the
1976 * Strips and Fans documentation:
1977 *
1978 * "The vertex X and Y screen-space coordinates are also /clamped/ to the
1979 * fixed-point "guardband" range supported by the rasterization hardware"
1980 *
1981 * and
1982 *
1983 * "In almost all circumstances, if an object’s vertices are actually
1984 * modified by this clamping (i.e., had X or Y coordinates outside of
1985 * the guardband extent the rendered object will not match the intended
1986 * result. Therefore software should take steps to ensure that this does
1987 * not happen - e.g., by clipping objects such that they do not exceed
1988 * these limits after the Drawing Rectangle is applied."
1989 *
1990 * I believe the fundamental restriction is that the rasterizer (in
1991 * the SF/WM stages) have a limit on the number of pixels that can be
1992 * rasterized. We need to ensure any coordinates beyond the rasterizer
1993 * limit are handled by the clipper. So effectively that limit becomes
1994 * the clipper's guardband size.
1995 *
1996 * It goes on to say:
1997 *
1998 * "In addition, in order to be correctly rendered, objects must have a
1999 * screenspace bounding box not exceeding 8K in the X or Y direction.
2000 * This additional restriction must also be comprehended by software,
2001 * i.e., enforced by use of clipping."
2002 *
2003 * This makes no sense. Gen7+ hardware supports 16K render targets,
2004 * and you definitely need to be able to draw polygons that fill the
2005 * surface. Our assumption is that the rasterizer was limited to 8K
2006 * on Sandybridge, which only supports 8K surfaces, and it was actually
2007 * increased to 16K on Ivybridge and later.
2008 *
2009 * So, limit the guardband to 16K on Gen7+ and 8K on Sandybridge.
2010 */
2011 const float gb_size = GEN_GEN >= 7 ? 16384.0f : 8192.0f;
2012
2013 if (m00 != 0 && m11 != 0) {
2014 /* First, we compute the screen-space render area */
2015 const float ss_ra_xmin = MIN3( 0, m30 + m00, m30 - m00);
2016 const float ss_ra_xmax = MAX3( fb_width, m30 + m00, m30 - m00);
2017 const float ss_ra_ymin = MIN3( 0, m31 + m11, m31 - m11);
2018 const float ss_ra_ymax = MAX3(fb_height, m31 + m11, m31 - m11);
2019
2020 /* We want the guardband to be centered on that */
2021 const float ss_gb_xmin = (ss_ra_xmin + ss_ra_xmax) / 2 - gb_size;
2022 const float ss_gb_xmax = (ss_ra_xmin + ss_ra_xmax) / 2 + gb_size;
2023 const float ss_gb_ymin = (ss_ra_ymin + ss_ra_ymax) / 2 - gb_size;
2024 const float ss_gb_ymax = (ss_ra_ymin + ss_ra_ymax) / 2 + gb_size;
2025
2026 /* Now we need it in native device coordinates */
2027 const float ndc_gb_xmin = (ss_gb_xmin - m30) / m00;
2028 const float ndc_gb_xmax = (ss_gb_xmax - m30) / m00;
2029 const float ndc_gb_ymin = (ss_gb_ymin - m31) / m11;
2030 const float ndc_gb_ymax = (ss_gb_ymax - m31) / m11;
2031
2032 /* Thanks to Y-flipping and ORIGIN_UPPER_LEFT, the Y coordinates may be
2033 * flipped upside-down. X should be fine though.
2034 */
2035 assert(ndc_gb_xmin <= ndc_gb_xmax);
2036 *xmin = ndc_gb_xmin;
2037 *xmax = ndc_gb_xmax;
2038 *ymin = MIN2(ndc_gb_ymin, ndc_gb_ymax);
2039 *ymax = MAX2(ndc_gb_ymin, ndc_gb_ymax);
2040 } else {
2041 /* The viewport scales to 0, so nothing will be rendered. */
2042 *xmin = 0.0f;
2043 *xmax = 0.0f;
2044 *ymin = 0.0f;
2045 *ymax = 0.0f;
2046 }
2047 }
2048
2049 /**
2050 * The pipe->set_viewport_states() driver hook.
2051 *
2052 * This corresponds to our SF_CLIP_VIEWPORT states. We can't calculate
2053 * the guardband yet, as we need the framebuffer dimensions, but we can
2054 * at least fill out the rest.
2055 */
2056 static void
2057 iris_set_viewport_states(struct pipe_context *ctx,
2058 unsigned start_slot,
2059 unsigned count,
2060 const struct pipe_viewport_state *states)
2061 {
2062 struct iris_context *ice = (struct iris_context *) ctx;
2063
2064 memcpy(&ice->state.viewports[start_slot], states, sizeof(*states) * count);
2065
2066 ice->state.dirty |= IRIS_DIRTY_SF_CL_VIEWPORT;
2067
2068 if (ice->state.cso_rast && (!ice->state.cso_rast->depth_clip_near ||
2069 !ice->state.cso_rast->depth_clip_far))
2070 ice->state.dirty |= IRIS_DIRTY_CC_VIEWPORT;
2071 }
2072
2073 /**
2074 * The pipe->set_framebuffer_state() driver hook.
2075 *
2076 * Sets the current draw FBO, including color render targets, depth,
2077 * and stencil buffers.
2078 */
2079 static void
2080 iris_set_framebuffer_state(struct pipe_context *ctx,
2081 const struct pipe_framebuffer_state *state)
2082 {
2083 struct iris_context *ice = (struct iris_context *) ctx;
2084 struct iris_screen *screen = (struct iris_screen *)ctx->screen;
2085 struct isl_device *isl_dev = &screen->isl_dev;
2086 struct pipe_framebuffer_state *cso = &ice->state.framebuffer;
2087 struct iris_resource *zres;
2088 struct iris_resource *stencil_res;
2089
2090 unsigned samples = util_framebuffer_get_num_samples(state);
2091 unsigned layers = util_framebuffer_get_num_layers(state);
2092
2093 if (cso->samples != samples) {
2094 ice->state.dirty |= IRIS_DIRTY_MULTISAMPLE;
2095 }
2096
2097 if (cso->nr_cbufs != state->nr_cbufs) {
2098 ice->state.dirty |= IRIS_DIRTY_BLEND_STATE;
2099 }
2100
2101 if ((cso->layers == 0) != (layers == 0)) {
2102 ice->state.dirty |= IRIS_DIRTY_CLIP;
2103 }
2104
2105 if (cso->width != state->width || cso->height != state->height) {
2106 ice->state.dirty |= IRIS_DIRTY_SF_CL_VIEWPORT;
2107 }
2108
2109 util_copy_framebuffer_state(cso, state);
2110 cso->samples = samples;
2111 cso->layers = layers;
2112
2113 struct iris_depth_buffer_state *cso_z = &ice->state.genx->depth_buffer;
2114
2115 struct isl_view view = {
2116 .base_level = 0,
2117 .levels = 1,
2118 .base_array_layer = 0,
2119 .array_len = 1,
2120 .swizzle = ISL_SWIZZLE_IDENTITY,
2121 };
2122
2123 struct isl_depth_stencil_hiz_emit_info info = { .view = &view };
2124
2125 if (cso->zsbuf) {
2126 iris_get_depth_stencil_resources(cso->zsbuf->texture, &zres,
2127 &stencil_res);
2128
2129 view.base_level = cso->zsbuf->u.tex.level;
2130 view.base_array_layer = cso->zsbuf->u.tex.first_layer;
2131 view.array_len =
2132 cso->zsbuf->u.tex.last_layer - cso->zsbuf->u.tex.first_layer + 1;
2133
2134 if (zres) {
2135 view.usage |= ISL_SURF_USAGE_DEPTH_BIT;
2136
2137 info.depth_surf = &zres->surf;
2138 info.depth_address = zres->bo->gtt_offset;
2139 info.mocs = mocs(zres->bo);
2140
2141 view.format = zres->surf.format;
2142 }
2143
2144 if (stencil_res) {
2145 view.usage |= ISL_SURF_USAGE_STENCIL_BIT;
2146 info.stencil_surf = &stencil_res->surf;
2147 info.stencil_address = stencil_res->bo->gtt_offset;
2148 if (!zres) {
2149 view.format = stencil_res->surf.format;
2150 info.mocs = mocs(stencil_res->bo);
2151 }
2152 }
2153 }
2154
2155 isl_emit_depth_stencil_hiz_s(isl_dev, cso_z->packets, &info);
2156
2157 /* Make a null surface for unbound buffers */
2158 void *null_surf_map =
2159 upload_state(ice->state.surface_uploader, &ice->state.null_fb,
2160 4 * GENX(RENDER_SURFACE_STATE_length), 64);
2161 isl_null_fill_state(&screen->isl_dev, null_surf_map,
2162 isl_extent3d(MAX2(cso->width, 1),
2163 MAX2(cso->height, 1),
2164 cso->layers ? cso->layers : 1));
2165 ice->state.null_fb.offset +=
2166 iris_bo_offset_from_base_address(iris_resource_bo(ice->state.null_fb.res));
2167
2168 ice->state.dirty |= IRIS_DIRTY_DEPTH_BUFFER;
2169
2170 /* Render target change */
2171 ice->state.dirty |= IRIS_DIRTY_BINDINGS_FS;
2172
2173 ice->state.dirty |= ice->state.dirty_for_nos[IRIS_NOS_FRAMEBUFFER];
2174
2175 #if GEN_GEN == 11
2176 // XXX: we may want to flag IRIS_DIRTY_MULTISAMPLE (or SAMPLE_MASK?)
2177 // XXX: see commit 979fc1bc9bcc64027ff2cfafd285676f31b930a6
2178
2179 /* The PIPE_CONTROL command description says:
2180 *
2181 * "Whenever a Binding Table Index (BTI) used by a Render Target Message
2182 * points to a different RENDER_SURFACE_STATE, SW must issue a Render
2183 * Target Cache Flush by enabling this bit. When render target flush
2184 * is set due to new association of BTI, PS Scoreboard Stall bit must
2185 * be set in this packet."
2186 */
2187 // XXX: does this need to happen at 3DSTATE_BTP_PS time?
2188 iris_emit_pipe_control_flush(&ice->batches[IRIS_BATCH_RENDER],
2189 PIPE_CONTROL_RENDER_TARGET_FLUSH |
2190 PIPE_CONTROL_STALL_AT_SCOREBOARD);
2191 #endif
2192 }
2193
2194 static void
2195 upload_ubo_surf_state(struct iris_context *ice,
2196 struct iris_const_buffer *cbuf,
2197 unsigned buffer_size)
2198 {
2199 struct pipe_context *ctx = &ice->ctx;
2200 struct iris_screen *screen = (struct iris_screen *) ctx->screen;
2201
2202 // XXX: these are not retained forever, use a separate uploader?
2203 void *map =
2204 upload_state(ice->state.surface_uploader, &cbuf->surface_state,
2205 4 * GENX(RENDER_SURFACE_STATE_length), 64);
2206 if (!unlikely(map)) {
2207 pipe_resource_reference(&cbuf->data.res, NULL);
2208 return;
2209 }
2210
2211 struct iris_resource *res = (void *) cbuf->data.res;
2212 struct iris_bo *surf_bo = iris_resource_bo(cbuf->surface_state.res);
2213 cbuf->surface_state.offset += iris_bo_offset_from_base_address(surf_bo);
2214
2215 isl_buffer_fill_state(&screen->isl_dev, map,
2216 .address = res->bo->gtt_offset + cbuf->data.offset,
2217 .size_B = MIN2(buffer_size,
2218 res->bo->size - cbuf->data.offset),
2219 .format = ISL_FORMAT_R32G32B32A32_FLOAT,
2220 .stride_B = 1,
2221 .mocs = mocs(res->bo))
2222 }
2223
2224 /**
2225 * The pipe->set_constant_buffer() driver hook.
2226 *
2227 * This uploads any constant data in user buffers, and references
2228 * any UBO resources containing constant data.
2229 */
2230 static void
2231 iris_set_constant_buffer(struct pipe_context *ctx,
2232 enum pipe_shader_type p_stage, unsigned index,
2233 const struct pipe_constant_buffer *input)
2234 {
2235 struct iris_context *ice = (struct iris_context *) ctx;
2236 gl_shader_stage stage = stage_from_pipe(p_stage);
2237 struct iris_shader_state *shs = &ice->state.shaders[stage];
2238 struct iris_const_buffer *cbuf = &shs->constbuf[index];
2239
2240 if (input && input->buffer) {
2241 assert(index > 0);
2242
2243 pipe_resource_reference(&cbuf->data.res, input->buffer);
2244 cbuf->data.offset = input->buffer_offset;
2245
2246 struct iris_resource *res = (void *) cbuf->data.res;
2247 res->bind_history |= PIPE_BIND_CONSTANT_BUFFER;
2248
2249 upload_ubo_surf_state(ice, cbuf, input->buffer_size);
2250 } else {
2251 pipe_resource_reference(&cbuf->data.res, NULL);
2252 pipe_resource_reference(&cbuf->surface_state.res, NULL);
2253 }
2254
2255 if (index == 0) {
2256 if (input)
2257 memcpy(&shs->cbuf0, input, sizeof(shs->cbuf0));
2258 else
2259 memset(&shs->cbuf0, 0, sizeof(shs->cbuf0));
2260
2261 shs->cbuf0_needs_upload = true;
2262 }
2263
2264 ice->state.dirty |= IRIS_DIRTY_CONSTANTS_VS << stage;
2265 // XXX: maybe not necessary all the time...?
2266 // XXX: we need 3DS_BTP to commit these changes, and if we fell back to
2267 // XXX: pull model we may need actual new bindings...
2268 ice->state.dirty |= IRIS_DIRTY_BINDINGS_VS << stage;
2269 }
2270
2271 static void
2272 upload_uniforms(struct iris_context *ice,
2273 gl_shader_stage stage)
2274 {
2275 struct iris_shader_state *shs = &ice->state.shaders[stage];
2276 struct iris_const_buffer *cbuf = &shs->constbuf[0];
2277 struct iris_compiled_shader *shader = ice->shaders.prog[stage];
2278
2279 unsigned upload_size = shader->num_system_values * sizeof(uint32_t) +
2280 shs->cbuf0.buffer_size;
2281
2282 if (upload_size == 0)
2283 return;
2284
2285 uint32_t *map =
2286 upload_state(ice->ctx.const_uploader, &cbuf->data, upload_size, 64);
2287
2288 for (int i = 0; i < shader->num_system_values; i++) {
2289 uint32_t sysval = shader->system_values[i];
2290 uint32_t value = 0;
2291
2292 if (BRW_PARAM_BUILTIN_IS_CLIP_PLANE(sysval)) {
2293 int plane = BRW_PARAM_BUILTIN_CLIP_PLANE_IDX(sysval);
2294 int comp = BRW_PARAM_BUILTIN_CLIP_PLANE_COMP(sysval);
2295 value = fui(ice->state.clip_planes.ucp[plane][comp]);
2296 } else if (sysval == BRW_PARAM_BUILTIN_PATCH_VERTICES_IN) {
2297 if (stage == MESA_SHADER_TESS_CTRL) {
2298 value = ice->state.vertices_per_patch;
2299 } else {
2300 assert(stage == MESA_SHADER_TESS_EVAL);
2301 const struct shader_info *tcs_info =
2302 iris_get_shader_info(ice, MESA_SHADER_TESS_CTRL);
2303 assert(tcs_info);
2304
2305 value = tcs_info->tess.tcs_vertices_out;
2306 }
2307 } else {
2308 assert(!"unhandled system value");
2309 }
2310
2311 *map++ = value;
2312 }
2313
2314 if (shs->cbuf0.user_buffer) {
2315 memcpy(map, shs->cbuf0.user_buffer, shs->cbuf0.buffer_size);
2316 }
2317
2318 upload_ubo_surf_state(ice, cbuf, upload_size);
2319 }
2320
2321 /**
2322 * The pipe->set_shader_buffers() driver hook.
2323 *
2324 * This binds SSBOs and ABOs. Unfortunately, we need to stream out
2325 * SURFACE_STATE here, as the buffer offset may change each time.
2326 */
2327 static void
2328 iris_set_shader_buffers(struct pipe_context *ctx,
2329 enum pipe_shader_type p_stage,
2330 unsigned start_slot, unsigned count,
2331 const struct pipe_shader_buffer *buffers)
2332 {
2333 struct iris_context *ice = (struct iris_context *) ctx;
2334 struct iris_screen *screen = (struct iris_screen *)ctx->screen;
2335 gl_shader_stage stage = stage_from_pipe(p_stage);
2336 struct iris_shader_state *shs = &ice->state.shaders[stage];
2337
2338 for (unsigned i = 0; i < count; i++) {
2339 if (buffers && buffers[i].buffer) {
2340 const struct pipe_shader_buffer *buffer = &buffers[i];
2341 struct iris_resource *res = (void *) buffer->buffer;
2342 pipe_resource_reference(&shs->ssbo[start_slot + i], &res->base);
2343
2344 res->bind_history |= PIPE_BIND_SHADER_BUFFER;
2345
2346 // XXX: these are not retained forever, use a separate uploader?
2347 void *map =
2348 upload_state(ice->state.surface_uploader,
2349 &shs->ssbo_surface_state[start_slot + i],
2350 4 * GENX(RENDER_SURFACE_STATE_length), 64);
2351 if (!unlikely(map)) {
2352 pipe_resource_reference(&shs->ssbo[start_slot + i], NULL);
2353 return;
2354 }
2355
2356 struct iris_bo *surf_state_bo =
2357 iris_resource_bo(shs->ssbo_surface_state[start_slot + i].res);
2358 shs->ssbo_surface_state[start_slot + i].offset +=
2359 iris_bo_offset_from_base_address(surf_state_bo);
2360
2361 isl_buffer_fill_state(&screen->isl_dev, map,
2362 .address =
2363 res->bo->gtt_offset + buffer->buffer_offset,
2364 .size_B =
2365 MIN2(buffer->buffer_size,
2366 res->bo->size - buffer->buffer_offset),
2367 .format = ISL_FORMAT_RAW,
2368 .stride_B = 1,
2369 .mocs = mocs(res->bo));
2370 } else {
2371 pipe_resource_reference(&shs->ssbo[start_slot + i], NULL);
2372 pipe_resource_reference(&shs->ssbo_surface_state[start_slot + i].res,
2373 NULL);
2374 }
2375 }
2376
2377 ice->state.dirty |= IRIS_DIRTY_BINDINGS_VS << stage;
2378 }
2379
2380 static void
2381 iris_delete_state(struct pipe_context *ctx, void *state)
2382 {
2383 free(state);
2384 }
2385
2386 /**
2387 * The pipe->set_vertex_buffers() driver hook.
2388 *
2389 * This translates pipe_vertex_buffer to our 3DSTATE_VERTEX_BUFFERS packet.
2390 */
2391 static void
2392 iris_set_vertex_buffers(struct pipe_context *ctx,
2393 unsigned start_slot, unsigned count,
2394 const struct pipe_vertex_buffer *buffers)
2395 {
2396 struct iris_context *ice = (struct iris_context *) ctx;
2397 struct iris_genx_state *genx = ice->state.genx;
2398
2399 ice->state.bound_vertex_buffers &= ~u_bit_consecutive64(start_slot, count);
2400
2401 for (unsigned i = 0; i < count; i++) {
2402 const struct pipe_vertex_buffer *buffer = buffers ? &buffers[i] : NULL;
2403 struct iris_vertex_buffer_state *state =
2404 &genx->vertex_buffers[start_slot + i];
2405
2406 if (!buffer) {
2407 pipe_resource_reference(&state->resource, NULL);
2408 continue;
2409 }
2410
2411 assert(!buffer->is_user_buffer);
2412
2413 ice->state.bound_vertex_buffers |= 1ull << (start_slot + i);
2414
2415 pipe_resource_reference(&state->resource, buffer->buffer.resource);
2416 struct iris_resource *res = (void *) state->resource;
2417
2418 if (res)
2419 res->bind_history |= PIPE_BIND_VERTEX_BUFFER;
2420
2421 iris_pack_state(GENX(VERTEX_BUFFER_STATE), state->state, vb) {
2422 vb.VertexBufferIndex = start_slot + i;
2423 vb.AddressModifyEnable = true;
2424 vb.BufferPitch = buffer->stride;
2425 if (res) {
2426 vb.BufferSize = res->bo->size;
2427 vb.BufferStartingAddress =
2428 ro_bo(NULL, res->bo->gtt_offset + (int) buffer->buffer_offset);
2429 vb.MOCS = mocs(res->bo);
2430 } else {
2431 vb.NullVertexBuffer = true;
2432 }
2433 }
2434 }
2435
2436 ice->state.dirty |= IRIS_DIRTY_VERTEX_BUFFERS;
2437 }
2438
2439 /**
2440 * Gallium CSO for vertex elements.
2441 */
2442 struct iris_vertex_element_state {
2443 uint32_t vertex_elements[1 + 33 * GENX(VERTEX_ELEMENT_STATE_length)];
2444 uint32_t vf_instancing[33 * GENX(3DSTATE_VF_INSTANCING_length)];
2445 unsigned count;
2446 };
2447
2448 /**
2449 * The pipe->create_vertex_elements() driver hook.
2450 *
2451 * This translates pipe_vertex_element to our 3DSTATE_VERTEX_ELEMENTS
2452 * and 3DSTATE_VF_INSTANCING commands. SGVs are handled at draw time.
2453 */
2454 static void *
2455 iris_create_vertex_elements(struct pipe_context *ctx,
2456 unsigned count,
2457 const struct pipe_vertex_element *state)
2458 {
2459 struct iris_screen *screen = (struct iris_screen *)ctx->screen;
2460 const struct gen_device_info *devinfo = &screen->devinfo;
2461 struct iris_vertex_element_state *cso =
2462 malloc(sizeof(struct iris_vertex_element_state));
2463
2464 cso->count = count;
2465
2466 /* TODO:
2467 * - create edge flag one
2468 * - create SGV ones
2469 * - if those are necessary, use count + 1/2/3... OR in the length
2470 */
2471 iris_pack_command(GENX(3DSTATE_VERTEX_ELEMENTS), cso->vertex_elements, ve) {
2472 ve.DWordLength =
2473 1 + GENX(VERTEX_ELEMENT_STATE_length) * MAX2(count, 1) - 2;
2474 }
2475
2476 uint32_t *ve_pack_dest = &cso->vertex_elements[1];
2477 uint32_t *vfi_pack_dest = cso->vf_instancing;
2478
2479 if (count == 0) {
2480 iris_pack_state(GENX(VERTEX_ELEMENT_STATE), ve_pack_dest, ve) {
2481 ve.Valid = true;
2482 ve.SourceElementFormat = ISL_FORMAT_R32G32B32A32_FLOAT;
2483 ve.Component0Control = VFCOMP_STORE_0;
2484 ve.Component1Control = VFCOMP_STORE_0;
2485 ve.Component2Control = VFCOMP_STORE_0;
2486 ve.Component3Control = VFCOMP_STORE_1_FP;
2487 }
2488
2489 iris_pack_command(GENX(3DSTATE_VF_INSTANCING), vfi_pack_dest, vi) {
2490 }
2491 }
2492
2493 for (int i = 0; i < count; i++) {
2494 const struct iris_format_info fmt =
2495 iris_format_for_usage(devinfo, state[i].src_format, 0);
2496 unsigned comp[4] = { VFCOMP_STORE_SRC, VFCOMP_STORE_SRC,
2497 VFCOMP_STORE_SRC, VFCOMP_STORE_SRC };
2498
2499 switch (isl_format_get_num_channels(fmt.fmt)) {
2500 case 0: comp[0] = VFCOMP_STORE_0;
2501 case 1: comp[1] = VFCOMP_STORE_0;
2502 case 2: comp[2] = VFCOMP_STORE_0;
2503 case 3:
2504 comp[3] = isl_format_has_int_channel(fmt.fmt) ? VFCOMP_STORE_1_INT
2505 : VFCOMP_STORE_1_FP;
2506 break;
2507 }
2508 iris_pack_state(GENX(VERTEX_ELEMENT_STATE), ve_pack_dest, ve) {
2509 ve.VertexBufferIndex = state[i].vertex_buffer_index;
2510 ve.Valid = true;
2511 ve.SourceElementOffset = state[i].src_offset;
2512 ve.SourceElementFormat = fmt.fmt;
2513 ve.Component0Control = comp[0];
2514 ve.Component1Control = comp[1];
2515 ve.Component2Control = comp[2];
2516 ve.Component3Control = comp[3];
2517 }
2518
2519 iris_pack_command(GENX(3DSTATE_VF_INSTANCING), vfi_pack_dest, vi) {
2520 vi.VertexElementIndex = i;
2521 vi.InstancingEnable = state[i].instance_divisor > 0;
2522 vi.InstanceDataStepRate = state[i].instance_divisor;
2523 }
2524
2525 ve_pack_dest += GENX(VERTEX_ELEMENT_STATE_length);
2526 vfi_pack_dest += GENX(3DSTATE_VF_INSTANCING_length);
2527 }
2528
2529 return cso;
2530 }
2531
2532 /**
2533 * The pipe->bind_vertex_elements_state() driver hook.
2534 */
2535 static void
2536 iris_bind_vertex_elements_state(struct pipe_context *ctx, void *state)
2537 {
2538 struct iris_context *ice = (struct iris_context *) ctx;
2539 struct iris_vertex_element_state *old_cso = ice->state.cso_vertex_elements;
2540 struct iris_vertex_element_state *new_cso = state;
2541
2542 /* 3DSTATE_VF_SGVs overrides the last VE, so if the count is changing,
2543 * we need to re-emit it to ensure we're overriding the right one.
2544 */
2545 if (new_cso && cso_changed(count))
2546 ice->state.dirty |= IRIS_DIRTY_VF_SGVS;
2547
2548 ice->state.cso_vertex_elements = state;
2549 ice->state.dirty |= IRIS_DIRTY_VERTEX_ELEMENTS;
2550 }
2551
2552 /**
2553 * The pipe->create_stream_output_target() driver hook.
2554 *
2555 * "Target" here refers to a destination buffer. We translate this into
2556 * a 3DSTATE_SO_BUFFER packet. We can handle most fields, but don't yet
2557 * know which buffer this represents, or whether we ought to zero the
2558 * write-offsets, or append. Those are handled in the set() hook.
2559 */
2560 static struct pipe_stream_output_target *
2561 iris_create_stream_output_target(struct pipe_context *ctx,
2562 struct pipe_resource *p_res,
2563 unsigned buffer_offset,
2564 unsigned buffer_size)
2565 {
2566 struct iris_resource *res = (void *) p_res;
2567 struct iris_stream_output_target *cso = calloc(1, sizeof(*cso));
2568 if (!cso)
2569 return NULL;
2570
2571 res->bind_history |= PIPE_BIND_STREAM_OUTPUT;
2572
2573 pipe_reference_init(&cso->base.reference, 1);
2574 pipe_resource_reference(&cso->base.buffer, p_res);
2575 cso->base.buffer_offset = buffer_offset;
2576 cso->base.buffer_size = buffer_size;
2577 cso->base.context = ctx;
2578
2579 upload_state(ctx->stream_uploader, &cso->offset, sizeof(uint32_t), 4);
2580
2581 return &cso->base;
2582 }
2583
2584 static void
2585 iris_stream_output_target_destroy(struct pipe_context *ctx,
2586 struct pipe_stream_output_target *state)
2587 {
2588 struct iris_stream_output_target *cso = (void *) state;
2589
2590 pipe_resource_reference(&cso->base.buffer, NULL);
2591 pipe_resource_reference(&cso->offset.res, NULL);
2592
2593 free(cso);
2594 }
2595
2596 /**
2597 * The pipe->set_stream_output_targets() driver hook.
2598 *
2599 * At this point, we know which targets are bound to a particular index,
2600 * and also whether we want to append or start over. We can finish the
2601 * 3DSTATE_SO_BUFFER packets we started earlier.
2602 */
2603 static void
2604 iris_set_stream_output_targets(struct pipe_context *ctx,
2605 unsigned num_targets,
2606 struct pipe_stream_output_target **targets,
2607 const unsigned *offsets)
2608 {
2609 struct iris_context *ice = (struct iris_context *) ctx;
2610 struct iris_genx_state *genx = ice->state.genx;
2611 uint32_t *so_buffers = genx->so_buffers;
2612
2613 const bool active = num_targets > 0;
2614 if (ice->state.streamout_active != active) {
2615 ice->state.streamout_active = active;
2616 ice->state.dirty |= IRIS_DIRTY_STREAMOUT;
2617
2618 /* We only emit 3DSTATE_SO_DECL_LIST when streamout is active, because
2619 * it's a non-pipelined command. If we're switching streamout on, we
2620 * may have missed emitting it earlier, so do so now. (We're already
2621 * taking a stall to update 3DSTATE_SO_BUFFERS anyway...)
2622 */
2623 if (active)
2624 ice->state.dirty |= IRIS_DIRTY_SO_DECL_LIST;
2625 }
2626
2627 for (int i = 0; i < 4; i++) {
2628 pipe_so_target_reference(&ice->state.so_target[i],
2629 i < num_targets ? targets[i] : NULL);
2630 }
2631
2632 /* No need to update 3DSTATE_SO_BUFFER unless SOL is active. */
2633 if (!active)
2634 return;
2635
2636 for (unsigned i = 0; i < 4; i++,
2637 so_buffers += GENX(3DSTATE_SO_BUFFER_length)) {
2638
2639 if (i >= num_targets || !targets[i]) {
2640 iris_pack_command(GENX(3DSTATE_SO_BUFFER), so_buffers, sob)
2641 sob.SOBufferIndex = i;
2642 continue;
2643 }
2644
2645 struct iris_stream_output_target *tgt = (void *) targets[i];
2646 struct iris_resource *res = (void *) tgt->base.buffer;
2647
2648 /* Note that offsets[i] will either be 0, causing us to zero
2649 * the value in the buffer, or 0xFFFFFFFF, which happens to mean
2650 * "continue appending at the existing offset."
2651 */
2652 assert(offsets[i] == 0 || offsets[i] == 0xFFFFFFFF);
2653
2654 iris_pack_command(GENX(3DSTATE_SO_BUFFER), so_buffers, sob) {
2655 sob.SurfaceBaseAddress =
2656 rw_bo(NULL, res->bo->gtt_offset + tgt->base.buffer_offset);
2657 sob.SOBufferEnable = true;
2658 sob.StreamOffsetWriteEnable = true;
2659 sob.StreamOutputBufferOffsetAddressEnable = true;
2660 sob.MOCS = mocs(res->bo);
2661
2662 sob.SurfaceSize = MAX2(tgt->base.buffer_size / 4, 1) - 1;
2663
2664 sob.SOBufferIndex = i;
2665 sob.StreamOffset = offsets[i];
2666 sob.StreamOutputBufferOffsetAddress =
2667 rw_bo(NULL, iris_resource_bo(tgt->offset.res)->gtt_offset +
2668 tgt->offset.offset);
2669 }
2670 }
2671
2672 ice->state.dirty |= IRIS_DIRTY_SO_BUFFERS;
2673 }
2674
2675 /**
2676 * An iris-vtable helper for encoding the 3DSTATE_SO_DECL_LIST and
2677 * 3DSTATE_STREAMOUT packets.
2678 *
2679 * 3DSTATE_SO_DECL_LIST is a list of shader outputs we want the streamout
2680 * hardware to record. We can create it entirely based on the shader, with
2681 * no dynamic state dependencies.
2682 *
2683 * 3DSTATE_STREAMOUT is an annoying mix of shader-based information and
2684 * state-based settings. We capture the shader-related ones here, and merge
2685 * the rest in at draw time.
2686 */
2687 static uint32_t *
2688 iris_create_so_decl_list(const struct pipe_stream_output_info *info,
2689 const struct brw_vue_map *vue_map)
2690 {
2691 struct GENX(SO_DECL) so_decl[MAX_VERTEX_STREAMS][128];
2692 int buffer_mask[MAX_VERTEX_STREAMS] = {0, 0, 0, 0};
2693 int next_offset[MAX_VERTEX_STREAMS] = {0, 0, 0, 0};
2694 int decls[MAX_VERTEX_STREAMS] = {0, 0, 0, 0};
2695 int max_decls = 0;
2696 STATIC_ASSERT(ARRAY_SIZE(so_decl[0]) >= MAX_PROGRAM_OUTPUTS);
2697
2698 memset(so_decl, 0, sizeof(so_decl));
2699
2700 /* Construct the list of SO_DECLs to be emitted. The formatting of the
2701 * command feels strange -- each dword pair contains a SO_DECL per stream.
2702 */
2703 for (unsigned i = 0; i < info->num_outputs; i++) {
2704 const struct pipe_stream_output *output = &info->output[i];
2705 const int buffer = output->output_buffer;
2706 const int varying = output->register_index;
2707 const unsigned stream_id = output->stream;
2708 assert(stream_id < MAX_VERTEX_STREAMS);
2709
2710 buffer_mask[stream_id] |= 1 << buffer;
2711
2712 assert(vue_map->varying_to_slot[varying] >= 0);
2713
2714 /* Mesa doesn't store entries for gl_SkipComponents in the Outputs[]
2715 * array. Instead, it simply increments DstOffset for the following
2716 * input by the number of components that should be skipped.
2717 *
2718 * Our hardware is unusual in that it requires us to program SO_DECLs
2719 * for fake "hole" components, rather than simply taking the offset
2720 * for each real varying. Each hole can have size 1, 2, 3, or 4; we
2721 * program as many size = 4 holes as we can, then a final hole to
2722 * accommodate the final 1, 2, or 3 remaining.
2723 */
2724 int skip_components = output->dst_offset - next_offset[buffer];
2725
2726 while (skip_components > 0) {
2727 so_decl[stream_id][decls[stream_id]++] = (struct GENX(SO_DECL)) {
2728 .HoleFlag = 1,
2729 .OutputBufferSlot = output->output_buffer,
2730 .ComponentMask = (1 << MIN2(skip_components, 4)) - 1,
2731 };
2732 skip_components -= 4;
2733 }
2734
2735 next_offset[buffer] = output->dst_offset + output->num_components;
2736
2737 so_decl[stream_id][decls[stream_id]++] = (struct GENX(SO_DECL)) {
2738 .OutputBufferSlot = output->output_buffer,
2739 .RegisterIndex = vue_map->varying_to_slot[varying],
2740 .ComponentMask =
2741 ((1 << output->num_components) - 1) << output->start_component,
2742 };
2743
2744 if (decls[stream_id] > max_decls)
2745 max_decls = decls[stream_id];
2746 }
2747
2748 unsigned dwords = GENX(3DSTATE_STREAMOUT_length) + (3 + 2 * max_decls);
2749 uint32_t *map = ralloc_size(NULL, sizeof(uint32_t) * dwords);
2750 uint32_t *so_decl_map = map + GENX(3DSTATE_STREAMOUT_length);
2751
2752 iris_pack_command(GENX(3DSTATE_STREAMOUT), map, sol) {
2753 int urb_entry_read_offset = 0;
2754 int urb_entry_read_length = (vue_map->num_slots + 1) / 2 -
2755 urb_entry_read_offset;
2756
2757 /* We always read the whole vertex. This could be reduced at some
2758 * point by reading less and offsetting the register index in the
2759 * SO_DECLs.
2760 */
2761 sol.Stream0VertexReadOffset = urb_entry_read_offset;
2762 sol.Stream0VertexReadLength = urb_entry_read_length - 1;
2763 sol.Stream1VertexReadOffset = urb_entry_read_offset;
2764 sol.Stream1VertexReadLength = urb_entry_read_length - 1;
2765 sol.Stream2VertexReadOffset = urb_entry_read_offset;
2766 sol.Stream2VertexReadLength = urb_entry_read_length - 1;
2767 sol.Stream3VertexReadOffset = urb_entry_read_offset;
2768 sol.Stream3VertexReadLength = urb_entry_read_length - 1;
2769
2770 /* Set buffer pitches; 0 means unbound. */
2771 sol.Buffer0SurfacePitch = 4 * info->stride[0];
2772 sol.Buffer1SurfacePitch = 4 * info->stride[1];
2773 sol.Buffer2SurfacePitch = 4 * info->stride[2];
2774 sol.Buffer3SurfacePitch = 4 * info->stride[3];
2775 }
2776
2777 iris_pack_command(GENX(3DSTATE_SO_DECL_LIST), so_decl_map, list) {
2778 list.DWordLength = 3 + 2 * max_decls - 2;
2779 list.StreamtoBufferSelects0 = buffer_mask[0];
2780 list.StreamtoBufferSelects1 = buffer_mask[1];
2781 list.StreamtoBufferSelects2 = buffer_mask[2];
2782 list.StreamtoBufferSelects3 = buffer_mask[3];
2783 list.NumEntries0 = decls[0];
2784 list.NumEntries1 = decls[1];
2785 list.NumEntries2 = decls[2];
2786 list.NumEntries3 = decls[3];
2787 }
2788
2789 for (int i = 0; i < max_decls; i++) {
2790 iris_pack_state(GENX(SO_DECL_ENTRY), so_decl_map + 3 + i * 2, entry) {
2791 entry.Stream0Decl = so_decl[0][i];
2792 entry.Stream1Decl = so_decl[1][i];
2793 entry.Stream2Decl = so_decl[2][i];
2794 entry.Stream3Decl = so_decl[3][i];
2795 }
2796 }
2797
2798 return map;
2799 }
2800
2801 static void
2802 iris_compute_sbe_urb_read_interval(uint64_t fs_input_slots,
2803 const struct brw_vue_map *last_vue_map,
2804 bool two_sided_color,
2805 unsigned *out_offset,
2806 unsigned *out_length)
2807 {
2808 /* The compiler computes the first URB slot without considering COL/BFC
2809 * swizzling (because it doesn't know whether it's enabled), so we need
2810 * to do that here too. This may result in a smaller offset, which
2811 * should be safe.
2812 */
2813 const unsigned first_slot =
2814 brw_compute_first_urb_slot_required(fs_input_slots, last_vue_map);
2815
2816 /* This becomes the URB read offset (counted in pairs of slots). */
2817 assert(first_slot % 2 == 0);
2818 *out_offset = first_slot / 2;
2819
2820 /* We need to adjust the inputs read to account for front/back color
2821 * swizzling, as it can make the URB length longer.
2822 */
2823 for (int c = 0; c <= 1; c++) {
2824 if (fs_input_slots & (VARYING_BIT_COL0 << c)) {
2825 /* If two sided color is enabled, the fragment shader's gl_Color
2826 * (COL0) input comes from either the gl_FrontColor (COL0) or
2827 * gl_BackColor (BFC0) input varyings. Mark BFC as used, too.
2828 */
2829 if (two_sided_color)
2830 fs_input_slots |= (VARYING_BIT_BFC0 << c);
2831
2832 /* If front color isn't written, we opt to give them back color
2833 * instead of an undefined value. Switch from COL to BFC.
2834 */
2835 if (last_vue_map->varying_to_slot[VARYING_SLOT_COL0 + c] == -1) {
2836 fs_input_slots &= ~(VARYING_BIT_COL0 << c);
2837 fs_input_slots |= (VARYING_BIT_BFC0 << c);
2838 }
2839 }
2840 }
2841
2842 /* Compute the minimum URB Read Length necessary for the FS inputs.
2843 *
2844 * From the Sandy Bridge PRM, Volume 2, Part 1, documentation for
2845 * 3DSTATE_SF DWord 1 bits 15:11, "Vertex URB Entry Read Length":
2846 *
2847 * "This field should be set to the minimum length required to read the
2848 * maximum source attribute. The maximum source attribute is indicated
2849 * by the maximum value of the enabled Attribute # Source Attribute if
2850 * Attribute Swizzle Enable is set, Number of Output Attributes-1 if
2851 * enable is not set.
2852 * read_length = ceiling((max_source_attr + 1) / 2)
2853 *
2854 * [errata] Corruption/Hang possible if length programmed larger than
2855 * recommended"
2856 *
2857 * Similar text exists for Ivy Bridge.
2858 *
2859 * We find the last URB slot that's actually read by the FS.
2860 */
2861 unsigned last_read_slot = last_vue_map->num_slots - 1;
2862 while (last_read_slot > first_slot && !(fs_input_slots &
2863 (1ull << last_vue_map->slot_to_varying[last_read_slot])))
2864 --last_read_slot;
2865
2866 /* The URB read length is the difference of the two, counted in pairs. */
2867 *out_length = DIV_ROUND_UP(last_read_slot - first_slot + 1, 2);
2868 }
2869
2870 static void
2871 iris_emit_sbe_swiz(struct iris_batch *batch,
2872 const struct iris_context *ice,
2873 unsigned urb_read_offset,
2874 unsigned sprite_coord_enables)
2875 {
2876 struct GENX(SF_OUTPUT_ATTRIBUTE_DETAIL) attr_overrides[16] = {};
2877 const struct brw_wm_prog_data *wm_prog_data = (void *)
2878 ice->shaders.prog[MESA_SHADER_FRAGMENT]->prog_data;
2879 const struct brw_vue_map *vue_map = ice->shaders.last_vue_map;
2880 const struct iris_rasterizer_state *cso_rast = ice->state.cso_rast;
2881
2882 /* XXX: this should be generated when putting programs in place */
2883
2884 for (int fs_attr = 0; fs_attr < VARYING_SLOT_MAX; fs_attr++) {
2885 const int input_index = wm_prog_data->urb_setup[fs_attr];
2886 if (input_index < 0 || input_index >= 16)
2887 continue;
2888
2889 struct GENX(SF_OUTPUT_ATTRIBUTE_DETAIL) *attr =
2890 &attr_overrides[input_index];
2891 int slot = vue_map->varying_to_slot[fs_attr];
2892
2893 /* Viewport and Layer are stored in the VUE header. We need to override
2894 * them to zero if earlier stages didn't write them, as GL requires that
2895 * they read back as zero when not explicitly set.
2896 */
2897 switch (fs_attr) {
2898 case VARYING_SLOT_VIEWPORT:
2899 case VARYING_SLOT_LAYER:
2900 attr->ComponentOverrideX = true;
2901 attr->ComponentOverrideW = true;
2902 attr->ConstantSource = CONST_0000;
2903
2904 if (!(vue_map->slots_valid & VARYING_BIT_LAYER))
2905 attr->ComponentOverrideY = true;
2906 if (!(vue_map->slots_valid & VARYING_BIT_VIEWPORT))
2907 attr->ComponentOverrideZ = true;
2908 continue;
2909
2910 case VARYING_SLOT_PRIMITIVE_ID:
2911 /* Override if the previous shader stage didn't write gl_PrimitiveID. */
2912 if (slot == -1) {
2913 attr->ComponentOverrideX = true;
2914 attr->ComponentOverrideY = true;
2915 attr->ComponentOverrideZ = true;
2916 attr->ComponentOverrideW = true;
2917 attr->ConstantSource = PRIM_ID;
2918 continue;
2919 }
2920
2921 default:
2922 break;
2923 }
2924
2925 if (sprite_coord_enables & (1 << input_index))
2926 continue;
2927
2928 /* If there was only a back color written but not front, use back
2929 * as the color instead of undefined.
2930 */
2931 if (slot == -1 && fs_attr == VARYING_SLOT_COL0)
2932 slot = vue_map->varying_to_slot[VARYING_SLOT_BFC0];
2933 if (slot == -1 && fs_attr == VARYING_SLOT_COL1)
2934 slot = vue_map->varying_to_slot[VARYING_SLOT_BFC1];
2935
2936 /* Not written by the previous stage - undefined. */
2937 if (slot == -1) {
2938 attr->ComponentOverrideX = true;
2939 attr->ComponentOverrideY = true;
2940 attr->ComponentOverrideZ = true;
2941 attr->ComponentOverrideW = true;
2942 attr->ConstantSource = CONST_0001_FLOAT;
2943 continue;
2944 }
2945
2946 /* Compute the location of the attribute relative to the read offset,
2947 * which is counted in 256-bit increments (two 128-bit VUE slots).
2948 */
2949 const int source_attr = slot - 2 * urb_read_offset;
2950 assert(source_attr >= 0 && source_attr <= 32);
2951 attr->SourceAttribute = source_attr;
2952
2953 /* If we are doing two-sided color, and the VUE slot following this one
2954 * represents a back-facing color, then we need to instruct the SF unit
2955 * to do back-facing swizzling.
2956 */
2957 if (cso_rast->light_twoside &&
2958 ((vue_map->slot_to_varying[slot] == VARYING_SLOT_COL0 &&
2959 vue_map->slot_to_varying[slot+1] == VARYING_SLOT_BFC0) ||
2960 (vue_map->slot_to_varying[slot] == VARYING_SLOT_COL1 &&
2961 vue_map->slot_to_varying[slot+1] == VARYING_SLOT_BFC1)))
2962 attr->SwizzleSelect = INPUTATTR_FACING;
2963 }
2964
2965 iris_emit_cmd(batch, GENX(3DSTATE_SBE_SWIZ), sbes) {
2966 for (int i = 0; i < 16; i++)
2967 sbes.Attribute[i] = attr_overrides[i];
2968 }
2969 }
2970
2971 static unsigned
2972 iris_calculate_point_sprite_overrides(const struct brw_wm_prog_data *prog_data,
2973 const struct iris_rasterizer_state *cso)
2974 {
2975 unsigned overrides = 0;
2976
2977 if (prog_data->urb_setup[VARYING_SLOT_PNTC] != -1)
2978 overrides |= 1 << prog_data->urb_setup[VARYING_SLOT_PNTC];
2979
2980 for (int i = 0; i < 8; i++) {
2981 if ((cso->sprite_coord_enable & (1 << i)) &&
2982 prog_data->urb_setup[VARYING_SLOT_TEX0 + i] != -1)
2983 overrides |= 1 << prog_data->urb_setup[VARYING_SLOT_TEX0 + i];
2984 }
2985
2986 return overrides;
2987 }
2988
2989 static void
2990 iris_emit_sbe(struct iris_batch *batch, const struct iris_context *ice)
2991 {
2992 const struct iris_rasterizer_state *cso_rast = ice->state.cso_rast;
2993 const struct brw_wm_prog_data *wm_prog_data = (void *)
2994 ice->shaders.prog[MESA_SHADER_FRAGMENT]->prog_data;
2995 const struct shader_info *fs_info =
2996 iris_get_shader_info(ice, MESA_SHADER_FRAGMENT);
2997
2998 unsigned urb_read_offset, urb_read_length;
2999 iris_compute_sbe_urb_read_interval(fs_info->inputs_read,
3000 ice->shaders.last_vue_map,
3001 cso_rast->light_twoside,
3002 &urb_read_offset, &urb_read_length);
3003
3004 unsigned sprite_coord_overrides =
3005 iris_calculate_point_sprite_overrides(wm_prog_data, cso_rast);
3006
3007 iris_emit_cmd(batch, GENX(3DSTATE_SBE), sbe) {
3008 sbe.AttributeSwizzleEnable = true;
3009 sbe.NumberofSFOutputAttributes = wm_prog_data->num_varying_inputs;
3010 sbe.PointSpriteTextureCoordinateOrigin = cso_rast->sprite_coord_mode;
3011 sbe.VertexURBEntryReadOffset = urb_read_offset;
3012 sbe.VertexURBEntryReadLength = urb_read_length;
3013 sbe.ForceVertexURBEntryReadOffset = true;
3014 sbe.ForceVertexURBEntryReadLength = true;
3015 sbe.ConstantInterpolationEnable = wm_prog_data->flat_inputs;
3016 sbe.PointSpriteTextureCoordinateEnable = sprite_coord_overrides;
3017 #if GEN_GEN >= 9
3018 for (int i = 0; i < 32; i++) {
3019 sbe.AttributeActiveComponentFormat[i] = ACTIVE_COMPONENT_XYZW;
3020 }
3021 #endif
3022 }
3023
3024 iris_emit_sbe_swiz(batch, ice, urb_read_offset, sprite_coord_overrides);
3025 }
3026
3027 /* ------------------------------------------------------------------- */
3028
3029 /**
3030 * Populate VS program key fields based on the current state.
3031 */
3032 static void
3033 iris_populate_vs_key(const struct iris_context *ice,
3034 const struct shader_info *info,
3035 struct brw_vs_prog_key *key)
3036 {
3037 const struct iris_rasterizer_state *cso_rast = ice->state.cso_rast;
3038
3039 if (info->clip_distance_array_size == 0 &&
3040 (info->outputs_written & (VARYING_BIT_POS | VARYING_BIT_CLIP_VERTEX)))
3041 key->nr_userclip_plane_consts = cso_rast->num_clip_plane_consts;
3042 }
3043
3044 /**
3045 * Populate TCS program key fields based on the current state.
3046 */
3047 static void
3048 iris_populate_tcs_key(const struct iris_context *ice,
3049 struct brw_tcs_prog_key *key)
3050 {
3051 }
3052
3053 /**
3054 * Populate TES program key fields based on the current state.
3055 */
3056 static void
3057 iris_populate_tes_key(const struct iris_context *ice,
3058 struct brw_tes_prog_key *key)
3059 {
3060 }
3061
3062 /**
3063 * Populate GS program key fields based on the current state.
3064 */
3065 static void
3066 iris_populate_gs_key(const struct iris_context *ice,
3067 struct brw_gs_prog_key *key)
3068 {
3069 }
3070
3071 /**
3072 * Populate FS program key fields based on the current state.
3073 */
3074 static void
3075 iris_populate_fs_key(const struct iris_context *ice,
3076 struct brw_wm_prog_key *key)
3077 {
3078 const struct pipe_framebuffer_state *fb = &ice->state.framebuffer;
3079 const struct iris_depth_stencil_alpha_state *zsa = ice->state.cso_zsa;
3080 const struct iris_rasterizer_state *rast = ice->state.cso_rast;
3081 const struct iris_blend_state *blend = ice->state.cso_blend;
3082
3083 key->nr_color_regions = fb->nr_cbufs;
3084
3085 key->clamp_fragment_color = rast->clamp_fragment_color;
3086
3087 key->replicate_alpha = fb->nr_cbufs > 1 &&
3088 (zsa->alpha.enabled || blend->alpha_to_coverage);
3089
3090 /* XXX: only bother if COL0/1 are read */
3091 key->flat_shade = rast->flatshade;
3092
3093 key->persample_interp = rast->force_persample_interp;
3094 key->multisample_fbo = rast->multisample && fb->samples > 1;
3095
3096 key->coherent_fb_fetch = true;
3097
3098 // XXX: key->force_dual_color_blend for unigine
3099 // XXX: respect hint for high_quality_derivatives:1;
3100 }
3101
3102 static void
3103 iris_populate_cs_key(const struct iris_context *ice,
3104 struct brw_cs_prog_key *key)
3105 {
3106 }
3107
3108 #if 0
3109 // XXX: these need to go in INIT_THREAD_DISPATCH_FIELDS
3110 pkt.SamplerCount = \
3111 DIV_ROUND_UP(CLAMP(stage_state->sampler_count, 0, 16), 4); \
3112
3113 #endif
3114
3115 static uint64_t
3116 KSP(const struct iris_compiled_shader *shader)
3117 {
3118 struct iris_resource *res = (void *) shader->assembly.res;
3119 return iris_bo_offset_from_base_address(res->bo) + shader->assembly.offset;
3120 }
3121
3122 // Gen11 workaround table #2056 WABTPPrefetchDisable suggests to disable
3123 // prefetching of binding tables in A0 and B0 steppings. XXX: Revisit
3124 // this WA on C0 stepping.
3125
3126 #define INIT_THREAD_DISPATCH_FIELDS(pkt, prefix, stage) \
3127 pkt.KernelStartPointer = KSP(shader); \
3128 pkt.BindingTableEntryCount = GEN_GEN == 11 ? 0 : \
3129 prog_data->binding_table.size_bytes / 4; \
3130 pkt.FloatingPointMode = prog_data->use_alt_mode; \
3131 \
3132 pkt.DispatchGRFStartRegisterForURBData = \
3133 prog_data->dispatch_grf_start_reg; \
3134 pkt.prefix##URBEntryReadLength = vue_prog_data->urb_read_length; \
3135 pkt.prefix##URBEntryReadOffset = 0; \
3136 \
3137 pkt.StatisticsEnable = true; \
3138 pkt.Enable = true; \
3139 \
3140 if (prog_data->total_scratch) { \
3141 struct iris_bo *bo = \
3142 iris_get_scratch_space(ice, prog_data->total_scratch, stage); \
3143 uint32_t scratch_addr = bo->gtt_offset; \
3144 pkt.PerThreadScratchSpace = ffs(prog_data->total_scratch) - 11; \
3145 pkt.ScratchSpaceBasePointer = rw_bo(NULL, scratch_addr); \
3146 }
3147
3148 /**
3149 * Encode most of 3DSTATE_VS based on the compiled shader.
3150 */
3151 static void
3152 iris_store_vs_state(struct iris_context *ice,
3153 const struct gen_device_info *devinfo,
3154 struct iris_compiled_shader *shader)
3155 {
3156 struct brw_stage_prog_data *prog_data = shader->prog_data;
3157 struct brw_vue_prog_data *vue_prog_data = (void *) prog_data;
3158
3159 iris_pack_command(GENX(3DSTATE_VS), shader->derived_data, vs) {
3160 INIT_THREAD_DISPATCH_FIELDS(vs, Vertex, MESA_SHADER_VERTEX);
3161 vs.MaximumNumberofThreads = devinfo->max_vs_threads - 1;
3162 vs.SIMD8DispatchEnable = true;
3163 vs.UserClipDistanceCullTestEnableBitmask =
3164 vue_prog_data->cull_distance_mask;
3165 }
3166 }
3167
3168 /**
3169 * Encode most of 3DSTATE_HS based on the compiled shader.
3170 */
3171 static void
3172 iris_store_tcs_state(struct iris_context *ice,
3173 const struct gen_device_info *devinfo,
3174 struct iris_compiled_shader *shader)
3175 {
3176 struct brw_stage_prog_data *prog_data = shader->prog_data;
3177 struct brw_vue_prog_data *vue_prog_data = (void *) prog_data;
3178 struct brw_tcs_prog_data *tcs_prog_data = (void *) prog_data;
3179
3180 iris_pack_command(GENX(3DSTATE_HS), shader->derived_data, hs) {
3181 INIT_THREAD_DISPATCH_FIELDS(hs, Vertex, MESA_SHADER_TESS_CTRL);
3182
3183 hs.InstanceCount = tcs_prog_data->instances - 1;
3184 hs.MaximumNumberofThreads = devinfo->max_tcs_threads - 1;
3185 hs.IncludeVertexHandles = true;
3186 }
3187 }
3188
3189 /**
3190 * Encode 3DSTATE_TE and most of 3DSTATE_DS based on the compiled shader.
3191 */
3192 static void
3193 iris_store_tes_state(struct iris_context *ice,
3194 const struct gen_device_info *devinfo,
3195 struct iris_compiled_shader *shader)
3196 {
3197 struct brw_stage_prog_data *prog_data = shader->prog_data;
3198 struct brw_vue_prog_data *vue_prog_data = (void *) prog_data;
3199 struct brw_tes_prog_data *tes_prog_data = (void *) prog_data;
3200
3201 uint32_t *te_state = (void *) shader->derived_data;
3202 uint32_t *ds_state = te_state + GENX(3DSTATE_TE_length);
3203
3204 iris_pack_command(GENX(3DSTATE_TE), te_state, te) {
3205 te.Partitioning = tes_prog_data->partitioning;
3206 te.OutputTopology = tes_prog_data->output_topology;
3207 te.TEDomain = tes_prog_data->domain;
3208 te.TEEnable = true;
3209 te.MaximumTessellationFactorOdd = 63.0;
3210 te.MaximumTessellationFactorNotOdd = 64.0;
3211 }
3212
3213 iris_pack_command(GENX(3DSTATE_DS), ds_state, ds) {
3214 INIT_THREAD_DISPATCH_FIELDS(ds, Patch, MESA_SHADER_TESS_EVAL);
3215
3216 ds.DispatchMode = DISPATCH_MODE_SIMD8_SINGLE_PATCH;
3217 ds.MaximumNumberofThreads = devinfo->max_tes_threads - 1;
3218 ds.ComputeWCoordinateEnable =
3219 tes_prog_data->domain == BRW_TESS_DOMAIN_TRI;
3220
3221 ds.UserClipDistanceCullTestEnableBitmask =
3222 vue_prog_data->cull_distance_mask;
3223 }
3224
3225 }
3226
3227 /**
3228 * Encode most of 3DSTATE_GS based on the compiled shader.
3229 */
3230 static void
3231 iris_store_gs_state(struct iris_context *ice,
3232 const struct gen_device_info *devinfo,
3233 struct iris_compiled_shader *shader)
3234 {
3235 struct brw_stage_prog_data *prog_data = shader->prog_data;
3236 struct brw_vue_prog_data *vue_prog_data = (void *) prog_data;
3237 struct brw_gs_prog_data *gs_prog_data = (void *) prog_data;
3238
3239 iris_pack_command(GENX(3DSTATE_GS), shader->derived_data, gs) {
3240 INIT_THREAD_DISPATCH_FIELDS(gs, Vertex, MESA_SHADER_GEOMETRY);
3241
3242 gs.OutputVertexSize = gs_prog_data->output_vertex_size_hwords * 2 - 1;
3243 gs.OutputTopology = gs_prog_data->output_topology;
3244 gs.ControlDataHeaderSize =
3245 gs_prog_data->control_data_header_size_hwords;
3246 gs.InstanceControl = gs_prog_data->invocations - 1;
3247 gs.DispatchMode = DISPATCH_MODE_SIMD8;
3248 gs.IncludePrimitiveID = gs_prog_data->include_primitive_id;
3249 gs.ControlDataFormat = gs_prog_data->control_data_format;
3250 gs.ReorderMode = TRAILING;
3251 gs.ExpectedVertexCount = gs_prog_data->vertices_in;
3252 gs.MaximumNumberofThreads =
3253 GEN_GEN == 8 ? (devinfo->max_gs_threads / 2 - 1)
3254 : (devinfo->max_gs_threads - 1);
3255
3256 if (gs_prog_data->static_vertex_count != -1) {
3257 gs.StaticOutput = true;
3258 gs.StaticOutputVertexCount = gs_prog_data->static_vertex_count;
3259 }
3260 gs.IncludeVertexHandles = vue_prog_data->include_vue_handles;
3261
3262 gs.UserClipDistanceCullTestEnableBitmask =
3263 vue_prog_data->cull_distance_mask;
3264
3265 const int urb_entry_write_offset = 1;
3266 const uint32_t urb_entry_output_length =
3267 DIV_ROUND_UP(vue_prog_data->vue_map.num_slots, 2) -
3268 urb_entry_write_offset;
3269
3270 gs.VertexURBEntryOutputReadOffset = urb_entry_write_offset;
3271 gs.VertexURBEntryOutputLength = MAX2(urb_entry_output_length, 1);
3272 }
3273 }
3274
3275 /**
3276 * Encode most of 3DSTATE_PS and 3DSTATE_PS_EXTRA based on the shader.
3277 */
3278 static void
3279 iris_store_fs_state(struct iris_context *ice,
3280 const struct gen_device_info *devinfo,
3281 struct iris_compiled_shader *shader)
3282 {
3283 struct brw_stage_prog_data *prog_data = shader->prog_data;
3284 struct brw_wm_prog_data *wm_prog_data = (void *) shader->prog_data;
3285
3286 uint32_t *ps_state = (void *) shader->derived_data;
3287 uint32_t *psx_state = ps_state + GENX(3DSTATE_PS_length);
3288
3289 iris_pack_command(GENX(3DSTATE_PS), ps_state, ps) {
3290 ps.VectorMaskEnable = true;
3291 //ps.SamplerCount = ...
3292 // XXX: WABTPPrefetchDisable, see above, drop at C0
3293 ps.BindingTableEntryCount = GEN_GEN == 11 ? 0 :
3294 prog_data->binding_table.size_bytes / 4;
3295 ps.FloatingPointMode = prog_data->use_alt_mode;
3296 ps.MaximumNumberofThreadsPerPSD = 64 - (GEN_GEN == 8 ? 2 : 1);
3297
3298 ps.PushConstantEnable = shader->num_system_values > 0 ||
3299 prog_data->ubo_ranges[0].length > 0;
3300
3301 /* From the documentation for this packet:
3302 * "If the PS kernel does not need the Position XY Offsets to
3303 * compute a Position Value, then this field should be programmed
3304 * to POSOFFSET_NONE."
3305 *
3306 * "SW Recommendation: If the PS kernel needs the Position Offsets
3307 * to compute a Position XY value, this field should match Position
3308 * ZW Interpolation Mode to ensure a consistent position.xyzw
3309 * computation."
3310 *
3311 * We only require XY sample offsets. So, this recommendation doesn't
3312 * look useful at the moment. We might need this in future.
3313 */
3314 ps.PositionXYOffsetSelect =
3315 wm_prog_data->uses_pos_offset ? POSOFFSET_SAMPLE : POSOFFSET_NONE;
3316 ps._8PixelDispatchEnable = wm_prog_data->dispatch_8;
3317 ps._16PixelDispatchEnable = wm_prog_data->dispatch_16;
3318 ps._32PixelDispatchEnable = wm_prog_data->dispatch_32;
3319
3320 // XXX: Disable SIMD32 with 16x MSAA
3321
3322 ps.DispatchGRFStartRegisterForConstantSetupData0 =
3323 brw_wm_prog_data_dispatch_grf_start_reg(wm_prog_data, ps, 0);
3324 ps.DispatchGRFStartRegisterForConstantSetupData1 =
3325 brw_wm_prog_data_dispatch_grf_start_reg(wm_prog_data, ps, 1);
3326 ps.DispatchGRFStartRegisterForConstantSetupData2 =
3327 brw_wm_prog_data_dispatch_grf_start_reg(wm_prog_data, ps, 2);
3328
3329 ps.KernelStartPointer0 =
3330 KSP(shader) + brw_wm_prog_data_prog_offset(wm_prog_data, ps, 0);
3331 ps.KernelStartPointer1 =
3332 KSP(shader) + brw_wm_prog_data_prog_offset(wm_prog_data, ps, 1);
3333 ps.KernelStartPointer2 =
3334 KSP(shader) + brw_wm_prog_data_prog_offset(wm_prog_data, ps, 2);
3335
3336 if (prog_data->total_scratch) {
3337 struct iris_bo *bo =
3338 iris_get_scratch_space(ice, prog_data->total_scratch,
3339 MESA_SHADER_FRAGMENT);
3340 uint32_t scratch_addr = bo->gtt_offset;
3341 ps.PerThreadScratchSpace = ffs(prog_data->total_scratch) - 11;
3342 ps.ScratchSpaceBasePointer = rw_bo(NULL, scratch_addr);
3343 }
3344 }
3345
3346 iris_pack_command(GENX(3DSTATE_PS_EXTRA), psx_state, psx) {
3347 psx.PixelShaderValid = true;
3348 psx.PixelShaderComputedDepthMode = wm_prog_data->computed_depth_mode;
3349 // XXX: alpha test / alpha to coverage :/
3350 psx.PixelShaderKillsPixel = wm_prog_data->uses_kill ||
3351 wm_prog_data->uses_omask;
3352 psx.AttributeEnable = wm_prog_data->num_varying_inputs != 0;
3353 psx.PixelShaderUsesSourceDepth = wm_prog_data->uses_src_depth;
3354 psx.PixelShaderUsesSourceW = wm_prog_data->uses_src_w;
3355 psx.PixelShaderIsPerSample = wm_prog_data->persample_dispatch;
3356 psx.oMaskPresenttoRenderTarget = wm_prog_data->uses_omask;
3357
3358 #if GEN_GEN >= 9
3359 if (wm_prog_data->uses_sample_mask) {
3360 /* TODO: conservative rasterization */
3361 if (wm_prog_data->post_depth_coverage)
3362 psx.InputCoverageMaskState = ICMS_DEPTH_COVERAGE;
3363 else
3364 psx.InputCoverageMaskState = ICMS_NORMAL;
3365 }
3366
3367 psx.PixelShaderPullsBary = wm_prog_data->pulls_bary;
3368 psx.PixelShaderComputesStencil = wm_prog_data->computed_stencil;
3369 #else
3370 psx.PixelShaderUsesInputCoverageMask = wm_prog_data->uses_sample_mask;
3371 #endif
3372 // XXX: UAV bit
3373 }
3374 }
3375
3376 /**
3377 * Compute the size of the derived data (shader command packets).
3378 *
3379 * This must match the data written by the iris_store_xs_state() functions.
3380 */
3381 static void
3382 iris_store_cs_state(struct iris_context *ice,
3383 const struct gen_device_info *devinfo,
3384 struct iris_compiled_shader *shader)
3385 {
3386 struct brw_stage_prog_data *prog_data = shader->prog_data;
3387 struct brw_cs_prog_data *cs_prog_data = (void *) shader->prog_data;
3388 void *map = shader->derived_data;
3389
3390 iris_pack_state(GENX(INTERFACE_DESCRIPTOR_DATA), map, desc) {
3391 desc.KernelStartPointer = KSP(shader);
3392 desc.ConstantURBEntryReadLength = cs_prog_data->push.per_thread.regs;
3393 desc.NumberofThreadsinGPGPUThreadGroup = cs_prog_data->threads;
3394 desc.SharedLocalMemorySize =
3395 encode_slm_size(GEN_GEN, prog_data->total_shared);
3396 desc.BarrierEnable = cs_prog_data->uses_barrier;
3397 desc.CrossThreadConstantDataReadLength =
3398 cs_prog_data->push.cross_thread.regs;
3399 }
3400 }
3401
3402 static unsigned
3403 iris_derived_program_state_size(enum iris_program_cache_id cache_id)
3404 {
3405 assert(cache_id <= IRIS_CACHE_BLORP);
3406
3407 static const unsigned dwords[] = {
3408 [IRIS_CACHE_VS] = GENX(3DSTATE_VS_length),
3409 [IRIS_CACHE_TCS] = GENX(3DSTATE_HS_length),
3410 [IRIS_CACHE_TES] = GENX(3DSTATE_TE_length) + GENX(3DSTATE_DS_length),
3411 [IRIS_CACHE_GS] = GENX(3DSTATE_GS_length),
3412 [IRIS_CACHE_FS] =
3413 GENX(3DSTATE_PS_length) + GENX(3DSTATE_PS_EXTRA_length),
3414 [IRIS_CACHE_CS] = GENX(INTERFACE_DESCRIPTOR_DATA_length),
3415 [IRIS_CACHE_BLORP] = 0,
3416 };
3417
3418 return sizeof(uint32_t) * dwords[cache_id];
3419 }
3420
3421 /**
3422 * Create any state packets corresponding to the given shader stage
3423 * (i.e. 3DSTATE_VS) and save them as "derived data" in the shader variant.
3424 * This means that we can look up a program in the in-memory cache and
3425 * get most of the state packet without having to reconstruct it.
3426 */
3427 static void
3428 iris_store_derived_program_state(struct iris_context *ice,
3429 enum iris_program_cache_id cache_id,
3430 struct iris_compiled_shader *shader)
3431 {
3432 struct iris_screen *screen = (void *) ice->ctx.screen;
3433 const struct gen_device_info *devinfo = &screen->devinfo;
3434
3435 switch (cache_id) {
3436 case IRIS_CACHE_VS:
3437 iris_store_vs_state(ice, devinfo, shader);
3438 break;
3439 case IRIS_CACHE_TCS:
3440 iris_store_tcs_state(ice, devinfo, shader);
3441 break;
3442 case IRIS_CACHE_TES:
3443 iris_store_tes_state(ice, devinfo, shader);
3444 break;
3445 case IRIS_CACHE_GS:
3446 iris_store_gs_state(ice, devinfo, shader);
3447 break;
3448 case IRIS_CACHE_FS:
3449 iris_store_fs_state(ice, devinfo, shader);
3450 break;
3451 case IRIS_CACHE_CS:
3452 iris_store_cs_state(ice, devinfo, shader);
3453 case IRIS_CACHE_BLORP:
3454 break;
3455 default:
3456 break;
3457 }
3458 }
3459
3460 /* ------------------------------------------------------------------- */
3461
3462 /**
3463 * Configure the URB.
3464 *
3465 * XXX: write a real comment.
3466 */
3467 static void
3468 iris_upload_urb_config(struct iris_context *ice, struct iris_batch *batch)
3469 {
3470 const struct gen_device_info *devinfo = &batch->screen->devinfo;
3471 const unsigned push_size_kB = 32;
3472 unsigned entries[4];
3473 unsigned start[4];
3474 unsigned size[4];
3475
3476 for (int i = MESA_SHADER_VERTEX; i <= MESA_SHADER_GEOMETRY; i++) {
3477 if (!ice->shaders.prog[i]) {
3478 size[i] = 1;
3479 } else {
3480 struct brw_vue_prog_data *vue_prog_data =
3481 (void *) ice->shaders.prog[i]->prog_data;
3482 size[i] = vue_prog_data->urb_entry_size;
3483 }
3484 assert(size[i] != 0);
3485 }
3486
3487 gen_get_urb_config(devinfo, 1024 * push_size_kB,
3488 1024 * ice->shaders.urb_size,
3489 ice->shaders.prog[MESA_SHADER_TESS_EVAL] != NULL,
3490 ice->shaders.prog[MESA_SHADER_GEOMETRY] != NULL,
3491 size, entries, start);
3492
3493 for (int i = MESA_SHADER_VERTEX; i <= MESA_SHADER_GEOMETRY; i++) {
3494 iris_emit_cmd(batch, GENX(3DSTATE_URB_VS), urb) {
3495 urb._3DCommandSubOpcode += i;
3496 urb.VSURBStartingAddress = start[i];
3497 urb.VSURBEntryAllocationSize = size[i] - 1;
3498 urb.VSNumberofURBEntries = entries[i];
3499 }
3500 }
3501 }
3502
3503 static const uint32_t push_constant_opcodes[] = {
3504 [MESA_SHADER_VERTEX] = 21,
3505 [MESA_SHADER_TESS_CTRL] = 25, /* HS */
3506 [MESA_SHADER_TESS_EVAL] = 26, /* DS */
3507 [MESA_SHADER_GEOMETRY] = 22,
3508 [MESA_SHADER_FRAGMENT] = 23,
3509 [MESA_SHADER_COMPUTE] = 0,
3510 };
3511
3512 static uint32_t
3513 use_null_surface(struct iris_batch *batch, struct iris_context *ice)
3514 {
3515 struct iris_bo *state_bo = iris_resource_bo(ice->state.unbound_tex.res);
3516
3517 iris_use_pinned_bo(batch, state_bo, false);
3518
3519 return ice->state.unbound_tex.offset;
3520 }
3521
3522 static uint32_t
3523 use_null_fb_surface(struct iris_batch *batch, struct iris_context *ice)
3524 {
3525 /* If set_framebuffer_state() was never called, fall back to 1x1x1 */
3526 if (!ice->state.null_fb.res)
3527 return use_null_surface(batch, ice);
3528
3529 struct iris_bo *state_bo = iris_resource_bo(ice->state.null_fb.res);
3530
3531 iris_use_pinned_bo(batch, state_bo, false);
3532
3533 return ice->state.null_fb.offset;
3534 }
3535
3536 /**
3537 * Add a surface to the validation list, as well as the buffer containing
3538 * the corresponding SURFACE_STATE.
3539 *
3540 * Returns the binding table entry (offset to SURFACE_STATE).
3541 */
3542 static uint32_t
3543 use_surface(struct iris_batch *batch,
3544 struct pipe_surface *p_surf,
3545 bool writeable)
3546 {
3547 struct iris_surface *surf = (void *) p_surf;
3548
3549 iris_use_pinned_bo(batch, iris_resource_bo(p_surf->texture), writeable);
3550 iris_use_pinned_bo(batch, iris_resource_bo(surf->surface_state.res), false);
3551
3552 return surf->surface_state.offset;
3553 }
3554
3555 static uint32_t
3556 use_sampler_view(struct iris_batch *batch, struct iris_sampler_view *isv)
3557 {
3558 iris_use_pinned_bo(batch, isv->res->bo, false);
3559 iris_use_pinned_bo(batch, iris_resource_bo(isv->surface_state.res), false);
3560
3561 return isv->surface_state.offset;
3562 }
3563
3564 static uint32_t
3565 use_const_buffer(struct iris_batch *batch,
3566 struct iris_context *ice,
3567 struct iris_const_buffer *cbuf)
3568 {
3569 if (!cbuf->surface_state.res)
3570 return use_null_surface(batch, ice);
3571
3572 iris_use_pinned_bo(batch, iris_resource_bo(cbuf->data.res), false);
3573 iris_use_pinned_bo(batch, iris_resource_bo(cbuf->surface_state.res), false);
3574
3575 return cbuf->surface_state.offset;
3576 }
3577
3578 static uint32_t
3579 use_ssbo(struct iris_batch *batch, struct iris_context *ice,
3580 struct iris_shader_state *shs, int i)
3581 {
3582 if (!shs->ssbo[i])
3583 return use_null_surface(batch, ice);
3584
3585 struct iris_state_ref *surf_state = &shs->ssbo_surface_state[i];
3586
3587 iris_use_pinned_bo(batch, iris_resource_bo(shs->ssbo[i]), true);
3588 iris_use_pinned_bo(batch, iris_resource_bo(surf_state->res), false);
3589
3590 return surf_state->offset;
3591 }
3592
3593 static uint32_t
3594 use_image(struct iris_batch *batch, struct iris_context *ice,
3595 struct iris_shader_state *shs, int i)
3596 {
3597 if (!shs->image[i].res)
3598 return use_null_surface(batch, ice);
3599
3600 struct iris_state_ref *surf_state = &shs->image[i].surface_state;
3601
3602 iris_use_pinned_bo(batch, iris_resource_bo(shs->image[i].res),
3603 shs->image[i].access & PIPE_IMAGE_ACCESS_WRITE);
3604 iris_use_pinned_bo(batch, iris_resource_bo(surf_state->res), false);
3605
3606 return surf_state->offset;
3607 }
3608
3609 #define push_bt_entry(addr) \
3610 assert(addr >= binder_addr); \
3611 assert(s < prog_data->binding_table.size_bytes / sizeof(uint32_t)); \
3612 if (!pin_only) bt_map[s++] = (addr) - binder_addr;
3613
3614 #define bt_assert(section, exists) \
3615 if (!pin_only) assert(prog_data->binding_table.section == \
3616 (exists) ? s : 0xd0d0d0d0)
3617
3618 /**
3619 * Populate the binding table for a given shader stage.
3620 *
3621 * This fills out the table of pointers to surfaces required by the shader,
3622 * and also adds those buffers to the validation list so the kernel can make
3623 * resident before running our batch.
3624 */
3625 static void
3626 iris_populate_binding_table(struct iris_context *ice,
3627 struct iris_batch *batch,
3628 gl_shader_stage stage,
3629 bool pin_only)
3630 {
3631 const struct iris_binder *binder = &ice->state.binder;
3632 struct iris_compiled_shader *shader = ice->shaders.prog[stage];
3633 if (!shader)
3634 return;
3635
3636 UNUSED struct brw_stage_prog_data *prog_data = shader->prog_data;
3637 struct iris_shader_state *shs = &ice->state.shaders[stage];
3638 uint32_t binder_addr = binder->bo->gtt_offset;
3639
3640 //struct brw_stage_prog_data *prog_data = (void *) shader->prog_data;
3641 uint32_t *bt_map = binder->map + binder->bt_offset[stage];
3642 int s = 0;
3643
3644 const struct shader_info *info = iris_get_shader_info(ice, stage);
3645 if (!info) {
3646 /* TCS passthrough doesn't need a binding table. */
3647 assert(stage == MESA_SHADER_TESS_CTRL);
3648 return;
3649 }
3650
3651 if (stage == MESA_SHADER_COMPUTE) {
3652 /* surface for gl_NumWorkGroups */
3653 struct iris_state_ref *grid_data = &ice->state.grid_size;
3654 struct iris_state_ref *grid_state = &ice->state.grid_surf_state;
3655 iris_use_pinned_bo(batch, iris_resource_bo(grid_data->res), false);
3656 iris_use_pinned_bo(batch, iris_resource_bo(grid_state->res), false);
3657 push_bt_entry(grid_state->offset);
3658 }
3659
3660 if (stage == MESA_SHADER_FRAGMENT) {
3661 struct pipe_framebuffer_state *cso_fb = &ice->state.framebuffer;
3662 /* Note that cso_fb->nr_cbufs == fs_key->nr_color_regions. */
3663 if (cso_fb->nr_cbufs) {
3664 for (unsigned i = 0; i < cso_fb->nr_cbufs; i++) {
3665 uint32_t addr =
3666 cso_fb->cbufs[i] ? use_surface(batch, cso_fb->cbufs[i], true)
3667 : use_null_fb_surface(batch, ice);
3668 push_bt_entry(addr);
3669 }
3670 } else {
3671 uint32_t addr = use_null_fb_surface(batch, ice);
3672 push_bt_entry(addr);
3673 }
3674 }
3675
3676 bt_assert(texture_start, info->num_textures > 0);
3677
3678 for (int i = 0; i < info->num_textures; i++) {
3679 struct iris_sampler_view *view = shs->textures[i];
3680 uint32_t addr = view ? use_sampler_view(batch, view)
3681 : use_null_surface(batch, ice);
3682 push_bt_entry(addr);
3683 }
3684
3685 bt_assert(image_start, info->num_images > 0);
3686
3687 for (int i = 0; i < info->num_images; i++) {
3688 uint32_t addr = use_image(batch, ice, shs, i);
3689 push_bt_entry(addr);
3690 }
3691
3692 const int num_ubos = iris_get_shader_num_ubos(ice, stage);
3693
3694 bt_assert(ubo_start, num_ubos > 0);
3695
3696 for (int i = 0; i < num_ubos; i++) {
3697 uint32_t addr = use_const_buffer(batch, ice, &shs->constbuf[i]);
3698 push_bt_entry(addr);
3699 }
3700
3701 bt_assert(ssbo_start, info->num_abos + info->num_ssbos > 0);
3702
3703 /* XXX: st is wasting 16 binding table slots for ABOs. Should add a cap
3704 * for changing nir_lower_atomics_to_ssbos setting and buffer_base offset
3705 * in st_atom_storagebuf.c so it'll compact them into one range, with
3706 * SSBOs starting at info->num_abos. Ideally it'd reset num_abos to 0 too
3707 */
3708 if (info->num_abos + info->num_ssbos > 0) {
3709 for (int i = 0; i < IRIS_MAX_ABOS + info->num_ssbos; i++) {
3710 uint32_t addr = use_ssbo(batch, ice, shs, i);
3711 push_bt_entry(addr);
3712 }
3713 }
3714
3715 #if 0
3716 // XXX: not implemented yet
3717 bt_assert(plane_start[1], ...);
3718 bt_assert(plane_start[2], ...);
3719 #endif
3720 }
3721
3722 static void
3723 iris_use_optional_res(struct iris_batch *batch,
3724 struct pipe_resource *res,
3725 bool writeable)
3726 {
3727 if (res) {
3728 struct iris_bo *bo = iris_resource_bo(res);
3729 iris_use_pinned_bo(batch, bo, writeable);
3730 }
3731 }
3732
3733 /* ------------------------------------------------------------------- */
3734
3735 /**
3736 * Pin any BOs which were installed by a previous batch, and restored
3737 * via the hardware logical context mechanism.
3738 *
3739 * We don't need to re-emit all state every batch - the hardware context
3740 * mechanism will save and restore it for us. This includes pointers to
3741 * various BOs...which won't exist unless we ask the kernel to pin them
3742 * by adding them to the validation list.
3743 *
3744 * We can skip buffers if we've re-emitted those packets, as we're
3745 * overwriting those stale pointers with new ones, and don't actually
3746 * refer to the old BOs.
3747 */
3748 static void
3749 iris_restore_render_saved_bos(struct iris_context *ice,
3750 struct iris_batch *batch,
3751 const struct pipe_draw_info *draw)
3752 {
3753 struct iris_genx_state *genx = ice->state.genx;
3754
3755 const uint64_t clean = ~ice->state.dirty;
3756
3757 if (clean & IRIS_DIRTY_CC_VIEWPORT) {
3758 iris_use_optional_res(batch, ice->state.last_res.cc_vp, false);
3759 }
3760
3761 if (clean & IRIS_DIRTY_SF_CL_VIEWPORT) {
3762 iris_use_optional_res(batch, ice->state.last_res.sf_cl_vp, false);
3763 }
3764
3765 if (clean & IRIS_DIRTY_BLEND_STATE) {
3766 iris_use_optional_res(batch, ice->state.last_res.blend, false);
3767 }
3768
3769 if (clean & IRIS_DIRTY_COLOR_CALC_STATE) {
3770 iris_use_optional_res(batch, ice->state.last_res.color_calc, false);
3771 }
3772
3773 if (clean & IRIS_DIRTY_SCISSOR_RECT) {
3774 iris_use_optional_res(batch, ice->state.last_res.scissor, false);
3775 }
3776
3777 if (ice->state.streamout_active && (clean & IRIS_DIRTY_SO_BUFFERS)) {
3778 for (int i = 0; i < 4; i++) {
3779 struct iris_stream_output_target *tgt =
3780 (void *) ice->state.so_target[i];
3781 if (tgt) {
3782 iris_use_pinned_bo(batch, iris_resource_bo(tgt->base.buffer),
3783 true);
3784 iris_use_pinned_bo(batch, iris_resource_bo(tgt->offset.res),
3785 true);
3786 }
3787 }
3788 }
3789
3790 for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
3791 if (!(clean & (IRIS_DIRTY_CONSTANTS_VS << stage)))
3792 continue;
3793
3794 struct iris_shader_state *shs = &ice->state.shaders[stage];
3795 struct iris_compiled_shader *shader = ice->shaders.prog[stage];
3796
3797 if (!shader)
3798 continue;
3799
3800 struct brw_stage_prog_data *prog_data = (void *) shader->prog_data;
3801
3802 for (int i = 0; i < 4; i++) {
3803 const struct brw_ubo_range *range = &prog_data->ubo_ranges[i];
3804
3805 if (range->length == 0)
3806 continue;
3807
3808 struct iris_const_buffer *cbuf = &shs->constbuf[range->block];
3809 struct iris_resource *res = (void *) cbuf->data.res;
3810
3811 if (res)
3812 iris_use_pinned_bo(batch, res->bo, false);
3813 else
3814 iris_use_pinned_bo(batch, batch->screen->workaround_bo, false);
3815 }
3816 }
3817
3818 for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
3819 if (clean & (IRIS_DIRTY_BINDINGS_VS << stage)) {
3820 /* Re-pin any buffers referred to by the binding table. */
3821 iris_populate_binding_table(ice, batch, stage, true);
3822 }
3823 }
3824
3825 for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
3826 struct iris_shader_state *shs = &ice->state.shaders[stage];
3827 struct pipe_resource *res = shs->sampler_table.res;
3828 if (res)
3829 iris_use_pinned_bo(batch, iris_resource_bo(res), false);
3830 }
3831
3832 for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
3833 if (clean & (IRIS_DIRTY_VS << stage)) {
3834 struct iris_compiled_shader *shader = ice->shaders.prog[stage];
3835
3836 if (shader) {
3837 struct iris_bo *bo = iris_resource_bo(shader->assembly.res);
3838 iris_use_pinned_bo(batch, bo, false);
3839
3840 struct brw_stage_prog_data *prog_data = shader->prog_data;
3841
3842 if (prog_data->total_scratch > 0) {
3843 struct iris_bo *bo =
3844 iris_get_scratch_space(ice, prog_data->total_scratch, stage);
3845 iris_use_pinned_bo(batch, bo, true);
3846 }
3847 }
3848 }
3849 }
3850
3851 if (clean & IRIS_DIRTY_DEPTH_BUFFER) {
3852 struct pipe_framebuffer_state *cso_fb = &ice->state.framebuffer;
3853
3854 if (cso_fb->zsbuf) {
3855 struct iris_resource *zres, *sres;
3856 iris_get_depth_stencil_resources(cso_fb->zsbuf->texture,
3857 &zres, &sres);
3858 if (zres) {
3859 iris_use_pinned_bo(batch, zres->bo,
3860 ice->state.depth_writes_enabled);
3861 }
3862 if (sres) {
3863 iris_use_pinned_bo(batch, sres->bo,
3864 ice->state.stencil_writes_enabled);
3865 }
3866 }
3867 }
3868
3869 if (draw->index_size == 0 && ice->state.last_res.index_buffer) {
3870 /* This draw didn't emit a new index buffer, so we are inheriting the
3871 * older index buffer. This draw didn't need it, but future ones may.
3872 */
3873 struct iris_bo *bo = iris_resource_bo(ice->state.last_res.index_buffer);
3874 iris_use_pinned_bo(batch, bo, false);
3875 }
3876
3877 if (clean & IRIS_DIRTY_VERTEX_BUFFERS) {
3878 uint64_t bound = ice->state.bound_vertex_buffers;
3879 while (bound) {
3880 const int i = u_bit_scan64(&bound);
3881 struct pipe_resource *res = genx->vertex_buffers[i].resource;
3882 iris_use_pinned_bo(batch, iris_resource_bo(res), false);
3883 }
3884 }
3885 }
3886
3887 static void
3888 iris_restore_compute_saved_bos(struct iris_context *ice,
3889 struct iris_batch *batch,
3890 const struct pipe_grid_info *grid)
3891 {
3892 const uint64_t clean = ~ice->state.dirty;
3893
3894 const int stage = MESA_SHADER_COMPUTE;
3895 struct iris_shader_state *shs = &ice->state.shaders[stage];
3896
3897 if (clean & IRIS_DIRTY_CONSTANTS_CS) {
3898 struct iris_compiled_shader *shader = ice->shaders.prog[stage];
3899
3900 if (shader) {
3901 struct brw_stage_prog_data *prog_data = (void *) shader->prog_data;
3902 const struct brw_ubo_range *range = &prog_data->ubo_ranges[0];
3903
3904 if (range->length > 0) {
3905 struct iris_const_buffer *cbuf = &shs->constbuf[range->block];
3906 struct iris_resource *res = (void *) cbuf->data.res;
3907
3908 if (res)
3909 iris_use_pinned_bo(batch, res->bo, false);
3910 else
3911 iris_use_pinned_bo(batch, batch->screen->workaround_bo, false);
3912 }
3913 }
3914 }
3915
3916 if (clean & IRIS_DIRTY_BINDINGS_CS) {
3917 /* Re-pin any buffers referred to by the binding table. */
3918 iris_populate_binding_table(ice, batch, stage, true);
3919 }
3920
3921 struct pipe_resource *sampler_res = shs->sampler_table.res;
3922 if (sampler_res)
3923 iris_use_pinned_bo(batch, iris_resource_bo(sampler_res), false);
3924
3925 if (clean & IRIS_DIRTY_CS) {
3926 struct iris_compiled_shader *shader = ice->shaders.prog[stage];
3927
3928 if (shader) {
3929 struct iris_bo *bo = iris_resource_bo(shader->assembly.res);
3930 iris_use_pinned_bo(batch, bo, false);
3931
3932 struct brw_stage_prog_data *prog_data = shader->prog_data;
3933
3934 if (prog_data->total_scratch > 0) {
3935 struct iris_bo *bo =
3936 iris_get_scratch_space(ice, prog_data->total_scratch, stage);
3937 iris_use_pinned_bo(batch, bo, true);
3938 }
3939 }
3940 }
3941 }
3942
3943 /**
3944 * Possibly emit STATE_BASE_ADDRESS to update Surface State Base Address.
3945 */
3946 static void
3947 iris_update_surface_base_address(struct iris_batch *batch,
3948 struct iris_binder *binder)
3949 {
3950 if (batch->last_surface_base_address == binder->bo->gtt_offset)
3951 return;
3952
3953 flush_for_state_base_change(batch);
3954
3955 iris_emit_cmd(batch, GENX(STATE_BASE_ADDRESS), sba) {
3956 sba.SurfaceStateMOCS = MOCS_WB;
3957 sba.SurfaceStateBaseAddressModifyEnable = true;
3958 sba.SurfaceStateBaseAddress = ro_bo(binder->bo, 0);
3959 }
3960
3961 batch->last_surface_base_address = binder->bo->gtt_offset;
3962 }
3963
3964 static void
3965 iris_upload_dirty_render_state(struct iris_context *ice,
3966 struct iris_batch *batch,
3967 const struct pipe_draw_info *draw)
3968 {
3969 const uint64_t dirty = ice->state.dirty;
3970
3971 if (!(dirty & IRIS_ALL_DIRTY_FOR_RENDER))
3972 return;
3973
3974 struct iris_genx_state *genx = ice->state.genx;
3975 struct iris_binder *binder = &ice->state.binder;
3976 struct brw_wm_prog_data *wm_prog_data = (void *)
3977 ice->shaders.prog[MESA_SHADER_FRAGMENT]->prog_data;
3978
3979 if (dirty & IRIS_DIRTY_CC_VIEWPORT) {
3980 const struct iris_rasterizer_state *cso_rast = ice->state.cso_rast;
3981 uint32_t cc_vp_address;
3982
3983 /* XXX: could avoid streaming for depth_clip [0,1] case. */
3984 uint32_t *cc_vp_map =
3985 stream_state(batch, ice->state.dynamic_uploader,
3986 &ice->state.last_res.cc_vp,
3987 4 * ice->state.num_viewports *
3988 GENX(CC_VIEWPORT_length), 32, &cc_vp_address);
3989 for (int i = 0; i < ice->state.num_viewports; i++) {
3990 float zmin, zmax;
3991 util_viewport_zmin_zmax(&ice->state.viewports[i],
3992 cso_rast->clip_halfz, &zmin, &zmax);
3993 if (cso_rast->depth_clip_near)
3994 zmin = 0.0;
3995 if (cso_rast->depth_clip_far)
3996 zmax = 1.0;
3997
3998 iris_pack_state(GENX(CC_VIEWPORT), cc_vp_map, ccv) {
3999 ccv.MinimumDepth = zmin;
4000 ccv.MaximumDepth = zmax;
4001 }
4002
4003 cc_vp_map += GENX(CC_VIEWPORT_length);
4004 }
4005
4006 iris_emit_cmd(batch, GENX(3DSTATE_VIEWPORT_STATE_POINTERS_CC), ptr) {
4007 ptr.CCViewportPointer = cc_vp_address;
4008 }
4009 }
4010
4011 if (dirty & IRIS_DIRTY_SF_CL_VIEWPORT) {
4012 struct pipe_framebuffer_state *cso_fb = &ice->state.framebuffer;
4013 uint32_t sf_cl_vp_address;
4014 uint32_t *vp_map =
4015 stream_state(batch, ice->state.dynamic_uploader,
4016 &ice->state.last_res.sf_cl_vp,
4017 4 * ice->state.num_viewports *
4018 GENX(SF_CLIP_VIEWPORT_length), 64, &sf_cl_vp_address);
4019
4020 for (unsigned i = 0; i < ice->state.num_viewports; i++) {
4021 const struct pipe_viewport_state *state = &ice->state.viewports[i];
4022 float gb_xmin, gb_xmax, gb_ymin, gb_ymax;
4023
4024 float vp_xmin = viewport_extent(state, 0, -1.0f);
4025 float vp_xmax = viewport_extent(state, 0, 1.0f);
4026 float vp_ymin = viewport_extent(state, 1, -1.0f);
4027 float vp_ymax = viewport_extent(state, 1, 1.0f);
4028
4029 calculate_guardband_size(cso_fb->width, cso_fb->height,
4030 state->scale[0], state->scale[1],
4031 state->translate[0], state->translate[1],
4032 &gb_xmin, &gb_xmax, &gb_ymin, &gb_ymax);
4033
4034 iris_pack_state(GENX(SF_CLIP_VIEWPORT), vp_map, vp) {
4035 vp.ViewportMatrixElementm00 = state->scale[0];
4036 vp.ViewportMatrixElementm11 = state->scale[1];
4037 vp.ViewportMatrixElementm22 = state->scale[2];
4038 vp.ViewportMatrixElementm30 = state->translate[0];
4039 vp.ViewportMatrixElementm31 = state->translate[1];
4040 vp.ViewportMatrixElementm32 = state->translate[2];
4041 vp.XMinClipGuardband = gb_xmin;
4042 vp.XMaxClipGuardband = gb_xmax;
4043 vp.YMinClipGuardband = gb_ymin;
4044 vp.YMaxClipGuardband = gb_ymax;
4045 vp.XMinViewPort = MAX2(vp_xmin, 0);
4046 vp.XMaxViewPort = MIN2(vp_xmax, cso_fb->width) - 1;
4047 vp.YMinViewPort = MAX2(vp_ymin, 0);
4048 vp.YMaxViewPort = MIN2(vp_ymax, cso_fb->height) - 1;
4049 }
4050
4051 vp_map += GENX(SF_CLIP_VIEWPORT_length);
4052 }
4053
4054 iris_emit_cmd(batch, GENX(3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP), ptr) {
4055 ptr.SFClipViewportPointer = sf_cl_vp_address;
4056 }
4057 }
4058
4059 if (dirty & IRIS_DIRTY_URB) {
4060 iris_upload_urb_config(ice, batch);
4061 }
4062
4063 if (dirty & IRIS_DIRTY_BLEND_STATE) {
4064 struct iris_blend_state *cso_blend = ice->state.cso_blend;
4065 struct pipe_framebuffer_state *cso_fb = &ice->state.framebuffer;
4066 struct iris_depth_stencil_alpha_state *cso_zsa = ice->state.cso_zsa;
4067 const int header_dwords = GENX(BLEND_STATE_length);
4068 const int rt_dwords = cso_fb->nr_cbufs * GENX(BLEND_STATE_ENTRY_length);
4069 uint32_t blend_offset;
4070 uint32_t *blend_map =
4071 stream_state(batch, ice->state.dynamic_uploader,
4072 &ice->state.last_res.blend,
4073 4 * (header_dwords + rt_dwords), 64, &blend_offset);
4074
4075 uint32_t blend_state_header;
4076 iris_pack_state(GENX(BLEND_STATE), &blend_state_header, bs) {
4077 bs.AlphaTestEnable = cso_zsa->alpha.enabled;
4078 bs.AlphaTestFunction = translate_compare_func(cso_zsa->alpha.func);
4079 }
4080
4081 blend_map[0] = blend_state_header | cso_blend->blend_state[0];
4082 memcpy(&blend_map[1], &cso_blend->blend_state[1], 4 * rt_dwords);
4083
4084 iris_emit_cmd(batch, GENX(3DSTATE_BLEND_STATE_POINTERS), ptr) {
4085 ptr.BlendStatePointer = blend_offset;
4086 ptr.BlendStatePointerValid = true;
4087 }
4088 }
4089
4090 if (dirty & IRIS_DIRTY_COLOR_CALC_STATE) {
4091 struct iris_depth_stencil_alpha_state *cso = ice->state.cso_zsa;
4092 #if GEN_GEN == 8
4093 struct pipe_stencil_ref *p_stencil_refs = &ice->state.stencil_ref;
4094 #endif
4095 uint32_t cc_offset;
4096 void *cc_map =
4097 stream_state(batch, ice->state.dynamic_uploader,
4098 &ice->state.last_res.color_calc,
4099 sizeof(uint32_t) * GENX(COLOR_CALC_STATE_length),
4100 64, &cc_offset);
4101 iris_pack_state(GENX(COLOR_CALC_STATE), cc_map, cc) {
4102 cc.AlphaTestFormat = ALPHATEST_FLOAT32;
4103 cc.AlphaReferenceValueAsFLOAT32 = cso->alpha.ref_value;
4104 cc.BlendConstantColorRed = ice->state.blend_color.color[0];
4105 cc.BlendConstantColorGreen = ice->state.blend_color.color[1];
4106 cc.BlendConstantColorBlue = ice->state.blend_color.color[2];
4107 cc.BlendConstantColorAlpha = ice->state.blend_color.color[3];
4108 #if GEN_GEN == 8
4109 cc.StencilReferenceValue = p_stencil_refs->ref_value[0];
4110 cc.BackfaceStencilReferenceValue = p_stencil_refs->ref_value[1];
4111 #endif
4112 }
4113 iris_emit_cmd(batch, GENX(3DSTATE_CC_STATE_POINTERS), ptr) {
4114 ptr.ColorCalcStatePointer = cc_offset;
4115 ptr.ColorCalcStatePointerValid = true;
4116 }
4117 }
4118
4119 /* Upload constants for TCS passthrough. */
4120 if ((dirty & IRIS_DIRTY_CONSTANTS_TCS) &&
4121 ice->shaders.prog[MESA_SHADER_TESS_CTRL] &&
4122 !ice->shaders.uncompiled[MESA_SHADER_TESS_CTRL]) {
4123 struct iris_compiled_shader *tes_shader = ice->shaders.prog[MESA_SHADER_TESS_EVAL];
4124 assert(tes_shader);
4125
4126 /* Passthrough always copies 2 vec4s, so when uploading data we ensure
4127 * it is in the right layout for TES.
4128 */
4129 float hdr[8] = {};
4130 struct brw_tes_prog_data *tes_prog_data = (void *) tes_shader->prog_data;
4131 switch (tes_prog_data->domain) {
4132 case BRW_TESS_DOMAIN_QUAD:
4133 for (int i = 0; i < 4; i++)
4134 hdr[7 - i] = ice->state.default_outer_level[i];
4135 hdr[3] = ice->state.default_inner_level[0];
4136 hdr[2] = ice->state.default_inner_level[1];
4137 break;
4138 case BRW_TESS_DOMAIN_TRI:
4139 for (int i = 0; i < 3; i++)
4140 hdr[7 - i] = ice->state.default_outer_level[i];
4141 hdr[4] = ice->state.default_inner_level[0];
4142 break;
4143 case BRW_TESS_DOMAIN_ISOLINE:
4144 hdr[7] = ice->state.default_outer_level[1];
4145 hdr[6] = ice->state.default_outer_level[0];
4146 break;
4147 }
4148
4149 struct iris_shader_state *shs = &ice->state.shaders[MESA_SHADER_TESS_CTRL];
4150 struct iris_const_buffer *cbuf = &shs->constbuf[0];
4151 u_upload_data(ice->ctx.const_uploader, 0, sizeof(hdr), 32,
4152 &hdr[0], &cbuf->data.offset,
4153 &cbuf->data.res);
4154 }
4155
4156 for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
4157 if (!(dirty & (IRIS_DIRTY_CONSTANTS_VS << stage)))
4158 continue;
4159
4160 struct iris_shader_state *shs = &ice->state.shaders[stage];
4161 struct iris_compiled_shader *shader = ice->shaders.prog[stage];
4162
4163 if (!shader)
4164 continue;
4165
4166 if (shs->cbuf0_needs_upload)
4167 upload_uniforms(ice, stage);
4168
4169 struct brw_stage_prog_data *prog_data = (void *) shader->prog_data;
4170
4171 iris_emit_cmd(batch, GENX(3DSTATE_CONSTANT_VS), pkt) {
4172 pkt._3DCommandSubOpcode = push_constant_opcodes[stage];
4173 if (prog_data) {
4174 /* The Skylake PRM contains the following restriction:
4175 *
4176 * "The driver must ensure The following case does not occur
4177 * without a flush to the 3D engine: 3DSTATE_CONSTANT_* with
4178 * buffer 3 read length equal to zero committed followed by a
4179 * 3DSTATE_CONSTANT_* with buffer 0 read length not equal to
4180 * zero committed."
4181 *
4182 * To avoid this, we program the buffers in the highest slots.
4183 * This way, slot 0 is only used if slot 3 is also used.
4184 */
4185 int n = 3;
4186
4187 for (int i = 3; i >= 0; i--) {
4188 const struct brw_ubo_range *range = &prog_data->ubo_ranges[i];
4189
4190 if (range->length == 0)
4191 continue;
4192
4193 struct iris_const_buffer *cbuf = &shs->constbuf[range->block];
4194 struct iris_resource *res = (void *) cbuf->data.res;
4195
4196 assert(cbuf->data.offset % 32 == 0);
4197
4198 pkt.ConstantBody.ReadLength[n] = range->length;
4199 pkt.ConstantBody.Buffer[n] =
4200 res ? ro_bo(res->bo, range->start * 32 + cbuf->data.offset)
4201 : ro_bo(batch->screen->workaround_bo, 0);
4202 n--;
4203 }
4204 }
4205 }
4206 }
4207
4208 for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
4209 if (dirty & (IRIS_DIRTY_BINDINGS_VS << stage)) {
4210 iris_emit_cmd(batch, GENX(3DSTATE_BINDING_TABLE_POINTERS_VS), ptr) {
4211 ptr._3DCommandSubOpcode = 38 + stage;
4212 ptr.PointertoVSBindingTable = binder->bt_offset[stage];
4213 }
4214 }
4215 }
4216
4217 for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
4218 if (dirty & (IRIS_DIRTY_BINDINGS_VS << stage)) {
4219 iris_populate_binding_table(ice, batch, stage, false);
4220 }
4221 }
4222
4223 if (ice->state.need_border_colors)
4224 iris_use_pinned_bo(batch, ice->state.border_color_pool.bo, false);
4225
4226 for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
4227 if (!(dirty & (IRIS_DIRTY_SAMPLER_STATES_VS << stage)) ||
4228 !ice->shaders.prog[stage])
4229 continue;
4230
4231 struct iris_shader_state *shs = &ice->state.shaders[stage];
4232 struct pipe_resource *res = shs->sampler_table.res;
4233 if (res)
4234 iris_use_pinned_bo(batch, iris_resource_bo(res), false);
4235
4236 iris_emit_cmd(batch, GENX(3DSTATE_SAMPLER_STATE_POINTERS_VS), ptr) {
4237 ptr._3DCommandSubOpcode = 43 + stage;
4238 ptr.PointertoVSSamplerState = shs->sampler_table.offset;
4239 }
4240 }
4241
4242 if (dirty & IRIS_DIRTY_MULTISAMPLE) {
4243 iris_emit_cmd(batch, GENX(3DSTATE_MULTISAMPLE), ms) {
4244 ms.PixelLocation =
4245 ice->state.cso_rast->half_pixel_center ? CENTER : UL_CORNER;
4246 if (ice->state.framebuffer.samples > 0)
4247 ms.NumberofMultisamples = ffs(ice->state.framebuffer.samples) - 1;
4248 }
4249 }
4250
4251 if (dirty & IRIS_DIRTY_SAMPLE_MASK) {
4252 iris_emit_cmd(batch, GENX(3DSTATE_SAMPLE_MASK), ms) {
4253 ms.SampleMask = MAX2(ice->state.sample_mask, 1);
4254 }
4255 }
4256
4257 for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) {
4258 if (!(dirty & (IRIS_DIRTY_VS << stage)))
4259 continue;
4260
4261 struct iris_compiled_shader *shader = ice->shaders.prog[stage];
4262
4263 if (shader) {
4264 struct iris_resource *cache = (void *) shader->assembly.res;
4265 iris_use_pinned_bo(batch, cache->bo, false);
4266 iris_batch_emit(batch, shader->derived_data,
4267 iris_derived_program_state_size(stage));
4268 } else {
4269 if (stage == MESA_SHADER_TESS_EVAL) {
4270 iris_emit_cmd(batch, GENX(3DSTATE_HS), hs);
4271 iris_emit_cmd(batch, GENX(3DSTATE_TE), te);
4272 iris_emit_cmd(batch, GENX(3DSTATE_DS), ds);
4273 } else if (stage == MESA_SHADER_GEOMETRY) {
4274 iris_emit_cmd(batch, GENX(3DSTATE_GS), gs);
4275 }
4276 }
4277 }
4278
4279 if (ice->state.streamout_active) {
4280 if (dirty & IRIS_DIRTY_SO_BUFFERS) {
4281 iris_batch_emit(batch, genx->so_buffers,
4282 4 * 4 * GENX(3DSTATE_SO_BUFFER_length));
4283 for (int i = 0; i < 4; i++) {
4284 struct iris_stream_output_target *tgt =
4285 (void *) ice->state.so_target[i];
4286 if (tgt) {
4287 iris_use_pinned_bo(batch, iris_resource_bo(tgt->base.buffer),
4288 true);
4289 iris_use_pinned_bo(batch, iris_resource_bo(tgt->offset.res),
4290 true);
4291 }
4292 }
4293 }
4294
4295 if ((dirty & IRIS_DIRTY_SO_DECL_LIST) && ice->state.streamout) {
4296 uint32_t *decl_list =
4297 ice->state.streamout + GENX(3DSTATE_STREAMOUT_length);
4298 iris_batch_emit(batch, decl_list, 4 * ((decl_list[0] & 0xff) + 2));
4299 }
4300
4301 if (dirty & IRIS_DIRTY_STREAMOUT) {
4302 const struct iris_rasterizer_state *cso_rast = ice->state.cso_rast;
4303
4304 uint32_t dynamic_sol[GENX(3DSTATE_STREAMOUT_length)];
4305 iris_pack_command(GENX(3DSTATE_STREAMOUT), dynamic_sol, sol) {
4306 sol.SOFunctionEnable = true;
4307 sol.SOStatisticsEnable = true;
4308
4309 sol.RenderingDisable = cso_rast->rasterizer_discard &&
4310 !ice->state.prims_generated_query_active;
4311 sol.ReorderMode = cso_rast->flatshade_first ? LEADING : TRAILING;
4312 }
4313
4314 assert(ice->state.streamout);
4315
4316 iris_emit_merge(batch, ice->state.streamout, dynamic_sol,
4317 GENX(3DSTATE_STREAMOUT_length));
4318 }
4319 } else {
4320 if (dirty & IRIS_DIRTY_STREAMOUT) {
4321 iris_emit_cmd(batch, GENX(3DSTATE_STREAMOUT), sol);
4322 }
4323 }
4324
4325 if (dirty & IRIS_DIRTY_CLIP) {
4326 struct iris_rasterizer_state *cso_rast = ice->state.cso_rast;
4327 struct pipe_framebuffer_state *cso_fb = &ice->state.framebuffer;
4328
4329 uint32_t dynamic_clip[GENX(3DSTATE_CLIP_length)];
4330 iris_pack_command(GENX(3DSTATE_CLIP), &dynamic_clip, cl) {
4331 cl.StatisticsEnable = ice->state.statistics_counters_enabled;
4332 cl.ClipMode = cso_rast->rasterizer_discard ? CLIPMODE_REJECT_ALL
4333 : CLIPMODE_NORMAL;
4334 if (wm_prog_data->barycentric_interp_modes &
4335 BRW_BARYCENTRIC_NONPERSPECTIVE_BITS)
4336 cl.NonPerspectiveBarycentricEnable = true;
4337
4338 cl.ForceZeroRTAIndexEnable = cso_fb->layers == 0;
4339 cl.MaximumVPIndex = ice->state.num_viewports - 1;
4340 }
4341 iris_emit_merge(batch, cso_rast->clip, dynamic_clip,
4342 ARRAY_SIZE(cso_rast->clip));
4343 }
4344
4345 if (dirty & IRIS_DIRTY_RASTER) {
4346 struct iris_rasterizer_state *cso = ice->state.cso_rast;
4347 iris_batch_emit(batch, cso->raster, sizeof(cso->raster));
4348 iris_batch_emit(batch, cso->sf, sizeof(cso->sf));
4349
4350 }
4351
4352 if (dirty & IRIS_DIRTY_WM) {
4353 struct iris_rasterizer_state *cso = ice->state.cso_rast;
4354 uint32_t dynamic_wm[GENX(3DSTATE_WM_length)];
4355
4356 iris_pack_command(GENX(3DSTATE_WM), &dynamic_wm, wm) {
4357 wm.StatisticsEnable = ice->state.statistics_counters_enabled;
4358
4359 wm.BarycentricInterpolationMode =
4360 wm_prog_data->barycentric_interp_modes;
4361
4362 if (wm_prog_data->early_fragment_tests)
4363 wm.EarlyDepthStencilControl = EDSC_PREPS;
4364 else if (wm_prog_data->has_side_effects)
4365 wm.EarlyDepthStencilControl = EDSC_PSEXEC;
4366 }
4367 iris_emit_merge(batch, cso->wm, dynamic_wm, ARRAY_SIZE(cso->wm));
4368 }
4369
4370 if (dirty & IRIS_DIRTY_SBE) {
4371 iris_emit_sbe(batch, ice);
4372 }
4373
4374 if (dirty & IRIS_DIRTY_PS_BLEND) {
4375 struct iris_blend_state *cso_blend = ice->state.cso_blend;
4376 struct iris_depth_stencil_alpha_state *cso_zsa = ice->state.cso_zsa;
4377 uint32_t dynamic_pb[GENX(3DSTATE_PS_BLEND_length)];
4378 iris_pack_command(GENX(3DSTATE_PS_BLEND), &dynamic_pb, pb) {
4379 pb.HasWriteableRT = true; // XXX: comes from somewhere :(
4380 pb.AlphaTestEnable = cso_zsa->alpha.enabled;
4381 }
4382
4383 iris_emit_merge(batch, cso_blend->ps_blend, dynamic_pb,
4384 ARRAY_SIZE(cso_blend->ps_blend));
4385 }
4386
4387 if (dirty & IRIS_DIRTY_WM_DEPTH_STENCIL) {
4388 struct iris_depth_stencil_alpha_state *cso = ice->state.cso_zsa;
4389 #if GEN_GEN >= 9
4390 struct pipe_stencil_ref *p_stencil_refs = &ice->state.stencil_ref;
4391 uint32_t stencil_refs[GENX(3DSTATE_WM_DEPTH_STENCIL_length)];
4392 iris_pack_command(GENX(3DSTATE_WM_DEPTH_STENCIL), &stencil_refs, wmds) {
4393 wmds.StencilReferenceValue = p_stencil_refs->ref_value[0];
4394 wmds.BackfaceStencilReferenceValue = p_stencil_refs->ref_value[1];
4395 }
4396 iris_emit_merge(batch, cso->wmds, stencil_refs, ARRAY_SIZE(cso->wmds));
4397 #else
4398 iris_batch_emit(batch, cso->wmds, sizeof(cso->wmds));
4399 #endif
4400 }
4401
4402 if (dirty & IRIS_DIRTY_SCISSOR_RECT) {
4403 uint32_t scissor_offset =
4404 emit_state(batch, ice->state.dynamic_uploader,
4405 &ice->state.last_res.scissor,
4406 ice->state.scissors,
4407 sizeof(struct pipe_scissor_state) *
4408 ice->state.num_viewports, 32);
4409
4410 iris_emit_cmd(batch, GENX(3DSTATE_SCISSOR_STATE_POINTERS), ptr) {
4411 ptr.ScissorRectPointer = scissor_offset;
4412 }
4413 }
4414
4415 if (dirty & IRIS_DIRTY_DEPTH_BUFFER) {
4416 struct pipe_framebuffer_state *cso_fb = &ice->state.framebuffer;
4417 struct iris_depth_buffer_state *cso_z = &ice->state.genx->depth_buffer;
4418
4419 iris_batch_emit(batch, cso_z->packets, sizeof(cso_z->packets));
4420
4421 if (cso_fb->zsbuf) {
4422 struct iris_resource *zres, *sres;
4423 iris_get_depth_stencil_resources(cso_fb->zsbuf->texture,
4424 &zres, &sres);
4425 if (zres) {
4426 iris_use_pinned_bo(batch, zres->bo,
4427 ice->state.depth_writes_enabled);
4428 }
4429
4430 if (sres) {
4431 iris_use_pinned_bo(batch, sres->bo,
4432 ice->state.stencil_writes_enabled);
4433 }
4434 }
4435 }
4436
4437 if (dirty & IRIS_DIRTY_POLYGON_STIPPLE) {
4438 iris_emit_cmd(batch, GENX(3DSTATE_POLY_STIPPLE_PATTERN), poly) {
4439 for (int i = 0; i < 32; i++) {
4440 poly.PatternRow[i] = ice->state.poly_stipple.stipple[i];
4441 }
4442 }
4443 }
4444
4445 if (dirty & IRIS_DIRTY_LINE_STIPPLE) {
4446 struct iris_rasterizer_state *cso = ice->state.cso_rast;
4447 iris_batch_emit(batch, cso->line_stipple, sizeof(cso->line_stipple));
4448 }
4449
4450 if (dirty & IRIS_DIRTY_VF_TOPOLOGY) {
4451 iris_emit_cmd(batch, GENX(3DSTATE_VF_TOPOLOGY), topo) {
4452 topo.PrimitiveTopologyType =
4453 translate_prim_type(draw->mode, draw->vertices_per_patch);
4454 }
4455 }
4456
4457 if (dirty & IRIS_DIRTY_VERTEX_BUFFERS) {
4458 int count = util_bitcount64(ice->state.bound_vertex_buffers);
4459
4460 if (count) {
4461 /* The VF cache designers cut corners, and made the cache key's
4462 * <VertexBufferIndex, Memory Address> tuple only consider the bottom
4463 * 32 bits of the address. If you have two vertex buffers which get
4464 * placed exactly 4 GiB apart and use them in back-to-back draw calls,
4465 * you can get collisions (even within a single batch).
4466 *
4467 * So, we need to do a VF cache invalidate if the buffer for a VB
4468 * slot slot changes [48:32] address bits from the previous time.
4469 */
4470 unsigned flush_flags = 0;
4471
4472 uint64_t bound = ice->state.bound_vertex_buffers;
4473 while (bound) {
4474 const int i = u_bit_scan64(&bound);
4475 uint16_t high_bits = 0;
4476
4477 struct iris_resource *res =
4478 (void *) genx->vertex_buffers[i].resource;
4479 if (res) {
4480 iris_use_pinned_bo(batch, res->bo, false);
4481
4482 high_bits = res->bo->gtt_offset >> 32ull;
4483 if (high_bits != ice->state.last_vbo_high_bits[i]) {
4484 flush_flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
4485 ice->state.last_vbo_high_bits[i] = high_bits;
4486 }
4487
4488 /* If the buffer was written to by streamout, we may need
4489 * to stall so those writes land and become visible to the
4490 * vertex fetcher.
4491 *
4492 * TODO: This may stall more than necessary.
4493 */
4494 if (res->bind_history & PIPE_BIND_STREAM_OUTPUT)
4495 flush_flags |= PIPE_CONTROL_CS_STALL;
4496 }
4497 }
4498
4499 if (flush_flags)
4500 iris_emit_pipe_control_flush(batch, flush_flags);
4501
4502 const unsigned vb_dwords = GENX(VERTEX_BUFFER_STATE_length);
4503
4504 uint32_t *map =
4505 iris_get_command_space(batch, 4 * (1 + vb_dwords * count));
4506 _iris_pack_command(batch, GENX(3DSTATE_VERTEX_BUFFERS), map, vb) {
4507 vb.DWordLength = (vb_dwords * count + 1) - 2;
4508 }
4509 map += 1;
4510
4511 bound = ice->state.bound_vertex_buffers;
4512 while (bound) {
4513 const int i = u_bit_scan64(&bound);
4514 memcpy(map, genx->vertex_buffers[i].state,
4515 sizeof(uint32_t) * vb_dwords);
4516 map += vb_dwords;
4517 }
4518 }
4519 }
4520
4521 if (dirty & IRIS_DIRTY_VERTEX_ELEMENTS) {
4522 struct iris_vertex_element_state *cso = ice->state.cso_vertex_elements;
4523 const unsigned entries = MAX2(cso->count, 1);
4524 iris_batch_emit(batch, cso->vertex_elements, sizeof(uint32_t) *
4525 (1 + entries * GENX(VERTEX_ELEMENT_STATE_length)));
4526 iris_batch_emit(batch, cso->vf_instancing, sizeof(uint32_t) *
4527 entries * GENX(3DSTATE_VF_INSTANCING_length));
4528 }
4529
4530 if (dirty & IRIS_DIRTY_VF_SGVS) {
4531 const struct brw_vs_prog_data *vs_prog_data = (void *)
4532 ice->shaders.prog[MESA_SHADER_VERTEX]->prog_data;
4533 struct iris_vertex_element_state *cso = ice->state.cso_vertex_elements;
4534
4535 iris_emit_cmd(batch, GENX(3DSTATE_VF_SGVS), sgv) {
4536 if (vs_prog_data->uses_vertexid) {
4537 sgv.VertexIDEnable = true;
4538 sgv.VertexIDComponentNumber = 2;
4539 sgv.VertexIDElementOffset = cso->count;
4540 }
4541
4542 if (vs_prog_data->uses_instanceid) {
4543 sgv.InstanceIDEnable = true;
4544 sgv.InstanceIDComponentNumber = 3;
4545 sgv.InstanceIDElementOffset = cso->count;
4546 }
4547 }
4548 }
4549
4550 if (dirty & IRIS_DIRTY_VF) {
4551 iris_emit_cmd(batch, GENX(3DSTATE_VF), vf) {
4552 if (draw->primitive_restart) {
4553 vf.IndexedDrawCutIndexEnable = true;
4554 vf.CutIndex = draw->restart_index;
4555 }
4556 }
4557 }
4558
4559 // XXX: Gen8 - PMA fix
4560 }
4561
4562 static void
4563 iris_upload_render_state(struct iris_context *ice,
4564 struct iris_batch *batch,
4565 const struct pipe_draw_info *draw)
4566 {
4567 /* Always pin the binder. If we're emitting new binding table pointers,
4568 * we need it. If not, we're probably inheriting old tables via the
4569 * context, and need it anyway. Since true zero-bindings cases are
4570 * practically non-existent, just pin it and avoid last_res tracking.
4571 */
4572 iris_use_pinned_bo(batch, ice->state.binder.bo, false);
4573
4574 if (!batch->contains_draw) {
4575 iris_restore_render_saved_bos(ice, batch, draw);
4576 batch->contains_draw = true;
4577 }
4578
4579 iris_upload_dirty_render_state(ice, batch, draw);
4580
4581 if (draw->index_size > 0) {
4582 unsigned offset;
4583
4584 if (draw->has_user_indices) {
4585 u_upload_data(ice->ctx.stream_uploader, 0,
4586 draw->count * draw->index_size, 4, draw->index.user,
4587 &offset, &ice->state.last_res.index_buffer);
4588 } else {
4589 struct iris_resource *res = (void *) draw->index.resource;
4590 res->bind_history |= PIPE_BIND_INDEX_BUFFER;
4591
4592 pipe_resource_reference(&ice->state.last_res.index_buffer,
4593 draw->index.resource);
4594 offset = 0;
4595 }
4596
4597 struct iris_bo *bo = iris_resource_bo(ice->state.last_res.index_buffer);
4598
4599 iris_emit_cmd(batch, GENX(3DSTATE_INDEX_BUFFER), ib) {
4600 ib.IndexFormat = draw->index_size >> 1;
4601 ib.MOCS = mocs(bo);
4602 ib.BufferSize = bo->size;
4603 ib.BufferStartingAddress = ro_bo(bo, offset);
4604 }
4605
4606 /* The VF cache key only uses 32-bits, see vertex buffer comment above */
4607 uint16_t high_bits = bo->gtt_offset >> 32ull;
4608 if (high_bits != ice->state.last_index_bo_high_bits) {
4609 iris_emit_pipe_control_flush(batch, PIPE_CONTROL_VF_CACHE_INVALIDATE);
4610 ice->state.last_index_bo_high_bits = high_bits;
4611 }
4612 }
4613
4614 #define _3DPRIM_END_OFFSET 0x2420
4615 #define _3DPRIM_START_VERTEX 0x2430
4616 #define _3DPRIM_VERTEX_COUNT 0x2434
4617 #define _3DPRIM_INSTANCE_COUNT 0x2438
4618 #define _3DPRIM_START_INSTANCE 0x243C
4619 #define _3DPRIM_BASE_VERTEX 0x2440
4620
4621 if (draw->indirect) {
4622 /* We don't support this MultidrawIndirect. */
4623 assert(!draw->indirect->indirect_draw_count);
4624
4625 struct iris_bo *bo = iris_resource_bo(draw->indirect->buffer);
4626 assert(bo);
4627
4628 iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
4629 lrm.RegisterAddress = _3DPRIM_VERTEX_COUNT;
4630 lrm.MemoryAddress = ro_bo(bo, draw->indirect->offset + 0);
4631 }
4632 iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
4633 lrm.RegisterAddress = _3DPRIM_INSTANCE_COUNT;
4634 lrm.MemoryAddress = ro_bo(bo, draw->indirect->offset + 4);
4635 }
4636 iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
4637 lrm.RegisterAddress = _3DPRIM_START_VERTEX;
4638 lrm.MemoryAddress = ro_bo(bo, draw->indirect->offset + 8);
4639 }
4640 if (draw->index_size) {
4641 iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
4642 lrm.RegisterAddress = _3DPRIM_BASE_VERTEX;
4643 lrm.MemoryAddress = ro_bo(bo, draw->indirect->offset + 12);
4644 }
4645 iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
4646 lrm.RegisterAddress = _3DPRIM_START_INSTANCE;
4647 lrm.MemoryAddress = ro_bo(bo, draw->indirect->offset + 16);
4648 }
4649 } else {
4650 iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
4651 lrm.RegisterAddress = _3DPRIM_START_INSTANCE;
4652 lrm.MemoryAddress = ro_bo(bo, draw->indirect->offset + 12);
4653 }
4654 iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_IMM), lri) {
4655 lri.RegisterOffset = _3DPRIM_BASE_VERTEX;
4656 lri.DataDWord = 0;
4657 }
4658 }
4659 } else if (draw->count_from_stream_output) {
4660 struct iris_stream_output_target *so =
4661 (void *) draw->count_from_stream_output;
4662
4663 // XXX: avoid if possible
4664 iris_emit_pipe_control_flush(batch, PIPE_CONTROL_CS_STALL);
4665
4666 iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
4667 lrm.RegisterAddress = CS_GPR(0);
4668 lrm.MemoryAddress =
4669 ro_bo(iris_resource_bo(so->offset.res), so->offset.offset);
4670 }
4671 iris_math_div32_gpr0(ice, batch, so->stride);
4672 _iris_emit_lrr(batch, _3DPRIM_VERTEX_COUNT, CS_GPR(0));
4673
4674 _iris_emit_lri(batch, _3DPRIM_START_VERTEX, 0);
4675 _iris_emit_lri(batch, _3DPRIM_BASE_VERTEX, 0);
4676 _iris_emit_lri(batch, _3DPRIM_START_INSTANCE, 0);
4677 _iris_emit_lri(batch, _3DPRIM_INSTANCE_COUNT, draw->instance_count);
4678 }
4679
4680 iris_emit_cmd(batch, GENX(3DPRIMITIVE), prim) {
4681 prim.VertexAccessType = draw->index_size > 0 ? RANDOM : SEQUENTIAL;
4682 prim.PredicateEnable =
4683 ice->state.predicate == IRIS_PREDICATE_STATE_USE_BIT;
4684
4685 if (draw->indirect || draw->count_from_stream_output) {
4686 prim.IndirectParameterEnable = true;
4687 } else {
4688 prim.StartInstanceLocation = draw->start_instance;
4689 prim.InstanceCount = draw->instance_count;
4690 prim.VertexCountPerInstance = draw->count;
4691
4692 // XXX: this is probably bonkers.
4693 prim.StartVertexLocation = draw->start;
4694
4695 if (draw->index_size) {
4696 prim.BaseVertexLocation += draw->index_bias;
4697 } else {
4698 prim.StartVertexLocation += draw->index_bias;
4699 }
4700
4701 //prim.BaseVertexLocation = ...;
4702 }
4703 }
4704 }
4705
4706 static void
4707 iris_upload_compute_state(struct iris_context *ice,
4708 struct iris_batch *batch,
4709 const struct pipe_grid_info *grid)
4710 {
4711 const uint64_t dirty = ice->state.dirty;
4712 struct iris_screen *screen = batch->screen;
4713 const struct gen_device_info *devinfo = &screen->devinfo;
4714 struct iris_binder *binder = &ice->state.binder;
4715 struct iris_shader_state *shs = &ice->state.shaders[MESA_SHADER_COMPUTE];
4716 struct iris_compiled_shader *shader =
4717 ice->shaders.prog[MESA_SHADER_COMPUTE];
4718 struct brw_stage_prog_data *prog_data = shader->prog_data;
4719 struct brw_cs_prog_data *cs_prog_data = (void *) prog_data;
4720
4721 /* Always pin the binder. If we're emitting new binding table pointers,
4722 * we need it. If not, we're probably inheriting old tables via the
4723 * context, and need it anyway. Since true zero-bindings cases are
4724 * practically non-existent, just pin it and avoid last_res tracking.
4725 */
4726 iris_use_pinned_bo(batch, ice->state.binder.bo, false);
4727
4728 if ((dirty & IRIS_DIRTY_CONSTANTS_CS) && shs->cbuf0_needs_upload)
4729 upload_uniforms(ice, MESA_SHADER_COMPUTE);
4730
4731 if (dirty & IRIS_DIRTY_BINDINGS_CS)
4732 iris_populate_binding_table(ice, batch, MESA_SHADER_COMPUTE, false);
4733
4734 iris_use_optional_res(batch, shs->sampler_table.res, false);
4735 iris_use_pinned_bo(batch, iris_resource_bo(shader->assembly.res), false);
4736
4737 if (ice->state.need_border_colors)
4738 iris_use_pinned_bo(batch, ice->state.border_color_pool.bo, false);
4739
4740 if (dirty & IRIS_DIRTY_CS) {
4741 /* The MEDIA_VFE_STATE documentation for Gen8+ says:
4742 *
4743 * "A stalling PIPE_CONTROL is required before MEDIA_VFE_STATE unless
4744 * the only bits that are changed are scoreboard related: Scoreboard
4745 * Enable, Scoreboard Type, Scoreboard Mask, Scoreboard Delta. For
4746 * these scoreboard related states, a MEDIA_STATE_FLUSH is
4747 * sufficient."
4748 */
4749 iris_emit_pipe_control_flush(batch, PIPE_CONTROL_CS_STALL);
4750
4751 iris_emit_cmd(batch, GENX(MEDIA_VFE_STATE), vfe) {
4752 if (prog_data->total_scratch) {
4753 struct iris_bo *bo =
4754 iris_get_scratch_space(ice, prog_data->total_scratch,
4755 MESA_SHADER_COMPUTE);
4756 vfe.PerThreadScratchSpace = ffs(prog_data->total_scratch) - 11;
4757 vfe.ScratchSpaceBasePointer = rw_bo(bo, 0);
4758 }
4759
4760 vfe.MaximumNumberofThreads =
4761 devinfo->max_cs_threads * screen->subslice_total - 1;
4762 #if GEN_GEN < 11
4763 vfe.ResetGatewayTimer =
4764 Resettingrelativetimerandlatchingtheglobaltimestamp;
4765 #endif
4766 #if GEN_GEN == 8
4767 vfe.BypassGatewayControl = true;
4768 #endif
4769 vfe.NumberofURBEntries = 2;
4770 vfe.URBEntryAllocationSize = 2;
4771
4772 // XXX: Use Indirect Payload Storage?
4773 vfe.CURBEAllocationSize =
4774 ALIGN(cs_prog_data->push.per_thread.regs * cs_prog_data->threads +
4775 cs_prog_data->push.cross_thread.regs, 2);
4776 }
4777 }
4778
4779 // XXX: hack iris_set_constant_buffers to upload these thread counts
4780 // XXX: along with regular uniforms for compute shaders, somehow.
4781
4782 uint32_t curbe_data_offset = 0;
4783 // TODO: Move subgroup-id into uniforms ubo so we can push uniforms
4784 assert(cs_prog_data->push.cross_thread.dwords == 0 &&
4785 cs_prog_data->push.per_thread.dwords == 1 &&
4786 cs_prog_data->base.param[0] == BRW_PARAM_BUILTIN_SUBGROUP_ID);
4787 struct pipe_resource *curbe_data_res = NULL;
4788 uint32_t *curbe_data_map =
4789 stream_state(batch, ice->state.dynamic_uploader, &curbe_data_res,
4790 ALIGN(cs_prog_data->push.total.size, 64), 64,
4791 &curbe_data_offset);
4792 assert(curbe_data_map);
4793 memset(curbe_data_map, 0x5a, ALIGN(cs_prog_data->push.total.size, 64));
4794 iris_fill_cs_push_const_buffer(cs_prog_data, curbe_data_map);
4795
4796 if (dirty & IRIS_DIRTY_CONSTANTS_CS) {
4797 iris_emit_cmd(batch, GENX(MEDIA_CURBE_LOAD), curbe) {
4798 curbe.CURBETotalDataLength =
4799 ALIGN(cs_prog_data->push.total.size, 64);
4800 curbe.CURBEDataStartAddress = curbe_data_offset;
4801 }
4802 }
4803
4804 if (dirty & (IRIS_DIRTY_SAMPLER_STATES_CS |
4805 IRIS_DIRTY_BINDINGS_CS |
4806 IRIS_DIRTY_CONSTANTS_CS |
4807 IRIS_DIRTY_CS)) {
4808 struct pipe_resource *desc_res = NULL;
4809 uint32_t desc[GENX(INTERFACE_DESCRIPTOR_DATA_length)];
4810
4811 iris_pack_state(GENX(INTERFACE_DESCRIPTOR_DATA), desc, idd) {
4812 idd.SamplerStatePointer = shs->sampler_table.offset;
4813 idd.BindingTablePointer = binder->bt_offset[MESA_SHADER_COMPUTE];
4814 }
4815
4816 for (int i = 0; i < GENX(INTERFACE_DESCRIPTOR_DATA_length); i++)
4817 desc[i] |= ((uint32_t *) shader->derived_data)[i];
4818
4819 iris_emit_cmd(batch, GENX(MEDIA_INTERFACE_DESCRIPTOR_LOAD), load) {
4820 load.InterfaceDescriptorTotalLength =
4821 GENX(INTERFACE_DESCRIPTOR_DATA_length) * sizeof(uint32_t);
4822 load.InterfaceDescriptorDataStartAddress =
4823 emit_state(batch, ice->state.dynamic_uploader,
4824 &desc_res, desc, sizeof(desc), 32);
4825 }
4826
4827 pipe_resource_reference(&desc_res, NULL);
4828 }
4829
4830 uint32_t group_size = grid->block[0] * grid->block[1] * grid->block[2];
4831 uint32_t remainder = group_size & (cs_prog_data->simd_size - 1);
4832 uint32_t right_mask;
4833
4834 if (remainder > 0)
4835 right_mask = ~0u >> (32 - remainder);
4836 else
4837 right_mask = ~0u >> (32 - cs_prog_data->simd_size);
4838
4839 #define GPGPU_DISPATCHDIMX 0x2500
4840 #define GPGPU_DISPATCHDIMY 0x2504
4841 #define GPGPU_DISPATCHDIMZ 0x2508
4842
4843 if (grid->indirect) {
4844 struct iris_state_ref *grid_size = &ice->state.grid_size;
4845 struct iris_bo *bo = iris_resource_bo(grid_size->res);
4846 iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
4847 lrm.RegisterAddress = GPGPU_DISPATCHDIMX;
4848 lrm.MemoryAddress = ro_bo(bo, grid_size->offset + 0);
4849 }
4850 iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
4851 lrm.RegisterAddress = GPGPU_DISPATCHDIMY;
4852 lrm.MemoryAddress = ro_bo(bo, grid_size->offset + 4);
4853 }
4854 iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
4855 lrm.RegisterAddress = GPGPU_DISPATCHDIMZ;
4856 lrm.MemoryAddress = ro_bo(bo, grid_size->offset + 8);
4857 }
4858 }
4859
4860 iris_emit_cmd(batch, GENX(GPGPU_WALKER), ggw) {
4861 ggw.IndirectParameterEnable = grid->indirect != NULL;
4862 ggw.SIMDSize = cs_prog_data->simd_size / 16;
4863 ggw.ThreadDepthCounterMaximum = 0;
4864 ggw.ThreadHeightCounterMaximum = 0;
4865 ggw.ThreadWidthCounterMaximum = cs_prog_data->threads - 1;
4866 ggw.ThreadGroupIDXDimension = grid->grid[0];
4867 ggw.ThreadGroupIDYDimension = grid->grid[1];
4868 ggw.ThreadGroupIDZDimension = grid->grid[2];
4869 ggw.RightExecutionMask = right_mask;
4870 ggw.BottomExecutionMask = 0xffffffff;
4871 }
4872
4873 iris_emit_cmd(batch, GENX(MEDIA_STATE_FLUSH), msf);
4874
4875 if (!batch->contains_draw) {
4876 iris_restore_compute_saved_bos(ice, batch, grid);
4877 batch->contains_draw = true;
4878 }
4879 }
4880
4881 /**
4882 * State module teardown.
4883 */
4884 static void
4885 iris_destroy_state(struct iris_context *ice)
4886 {
4887 struct iris_genx_state *genx = ice->state.genx;
4888
4889 uint64_t bound_vbs = ice->state.bound_vertex_buffers;
4890 while (bound_vbs) {
4891 const int i = u_bit_scan64(&bound_vbs);
4892 pipe_resource_reference(&genx->vertex_buffers[i].resource, NULL);
4893 }
4894
4895 // XXX: unreference resources/surfaces.
4896 for (unsigned i = 0; i < ice->state.framebuffer.nr_cbufs; i++) {
4897 pipe_surface_reference(&ice->state.framebuffer.cbufs[i], NULL);
4898 }
4899 pipe_surface_reference(&ice->state.framebuffer.zsbuf, NULL);
4900
4901 for (int stage = 0; stage < MESA_SHADER_STAGES; stage++) {
4902 struct iris_shader_state *shs = &ice->state.shaders[stage];
4903 pipe_resource_reference(&shs->sampler_table.res, NULL);
4904 }
4905 free(ice->state.genx);
4906
4907 pipe_resource_reference(&ice->state.unbound_tex.res, NULL);
4908
4909 pipe_resource_reference(&ice->state.last_res.cc_vp, NULL);
4910 pipe_resource_reference(&ice->state.last_res.sf_cl_vp, NULL);
4911 pipe_resource_reference(&ice->state.last_res.color_calc, NULL);
4912 pipe_resource_reference(&ice->state.last_res.scissor, NULL);
4913 pipe_resource_reference(&ice->state.last_res.blend, NULL);
4914 pipe_resource_reference(&ice->state.last_res.index_buffer, NULL);
4915 }
4916
4917 /* ------------------------------------------------------------------- */
4918
4919 static void
4920 iris_load_register_reg32(struct iris_batch *batch, uint32_t dst,
4921 uint32_t src)
4922 {
4923 _iris_emit_lrr(batch, dst, src);
4924 }
4925
4926 static void
4927 iris_load_register_reg64(struct iris_batch *batch, uint32_t dst,
4928 uint32_t src)
4929 {
4930 _iris_emit_lrr(batch, dst, src);
4931 _iris_emit_lrr(batch, dst + 4, src + 4);
4932 }
4933
4934 static void
4935 iris_load_register_imm32(struct iris_batch *batch, uint32_t reg,
4936 uint32_t val)
4937 {
4938 _iris_emit_lri(batch, reg, val);
4939 }
4940
4941 static void
4942 iris_load_register_imm64(struct iris_batch *batch, uint32_t reg,
4943 uint64_t val)
4944 {
4945 _iris_emit_lri(batch, reg + 0, val & 0xffffffff);
4946 _iris_emit_lri(batch, reg + 4, val >> 32);
4947 }
4948
4949 /**
4950 * Emit MI_LOAD_REGISTER_MEM to load a 32-bit MMIO register from a buffer.
4951 */
4952 static void
4953 iris_load_register_mem32(struct iris_batch *batch, uint32_t reg,
4954 struct iris_bo *bo, uint32_t offset)
4955 {
4956 iris_emit_cmd(batch, GENX(MI_LOAD_REGISTER_MEM), lrm) {
4957 lrm.RegisterAddress = reg;
4958 lrm.MemoryAddress = ro_bo(bo, offset);
4959 }
4960 }
4961
4962 /**
4963 * Load a 64-bit value from a buffer into a MMIO register via
4964 * two MI_LOAD_REGISTER_MEM commands.
4965 */
4966 static void
4967 iris_load_register_mem64(struct iris_batch *batch, uint32_t reg,
4968 struct iris_bo *bo, uint32_t offset)
4969 {
4970 iris_load_register_mem32(batch, reg + 0, bo, offset + 0);
4971 iris_load_register_mem32(batch, reg + 4, bo, offset + 4);
4972 }
4973
4974 static void
4975 iris_store_register_mem32(struct iris_batch *batch, uint32_t reg,
4976 struct iris_bo *bo, uint32_t offset,
4977 bool predicated)
4978 {
4979 iris_emit_cmd(batch, GENX(MI_STORE_REGISTER_MEM), srm) {
4980 srm.RegisterAddress = reg;
4981 srm.MemoryAddress = rw_bo(bo, offset);
4982 srm.PredicateEnable = predicated;
4983 }
4984 }
4985
4986 static void
4987 iris_store_register_mem64(struct iris_batch *batch, uint32_t reg,
4988 struct iris_bo *bo, uint32_t offset,
4989 bool predicated)
4990 {
4991 iris_store_register_mem32(batch, reg + 0, bo, offset + 0, predicated);
4992 iris_store_register_mem32(batch, reg + 4, bo, offset + 4, predicated);
4993 }
4994
4995 static void
4996 iris_store_data_imm32(struct iris_batch *batch,
4997 struct iris_bo *bo, uint32_t offset,
4998 uint32_t imm)
4999 {
5000 iris_emit_cmd(batch, GENX(MI_STORE_DATA_IMM), sdi) {
5001 sdi.Address = rw_bo(bo, offset);
5002 sdi.ImmediateData = imm;
5003 }
5004 }
5005
5006 static void
5007 iris_store_data_imm64(struct iris_batch *batch,
5008 struct iris_bo *bo, uint32_t offset,
5009 uint64_t imm)
5010 {
5011 /* Can't use iris_emit_cmd because MI_STORE_DATA_IMM has a length of
5012 * 2 in genxml but it's actually variable length and we need 5 DWords.
5013 */
5014 void *map = iris_get_command_space(batch, 4 * 5);
5015 _iris_pack_command(batch, GENX(MI_STORE_DATA_IMM), map, sdi) {
5016 sdi.DWordLength = 5 - 2;
5017 sdi.Address = rw_bo(bo, offset);
5018 sdi.ImmediateData = imm;
5019 }
5020 }
5021
5022 static void
5023 iris_copy_mem_mem(struct iris_batch *batch,
5024 struct iris_bo *dst_bo, uint32_t dst_offset,
5025 struct iris_bo *src_bo, uint32_t src_offset,
5026 unsigned bytes)
5027 {
5028 /* MI_COPY_MEM_MEM operates on DWords. */
5029 assert(bytes % 4 == 0);
5030 assert(dst_offset % 4 == 0);
5031 assert(src_offset % 4 == 0);
5032
5033 for (unsigned i = 0; i < bytes; i += 4) {
5034 iris_emit_cmd(batch, GENX(MI_COPY_MEM_MEM), cp) {
5035 cp.DestinationMemoryAddress = rw_bo(dst_bo, dst_offset + i);
5036 cp.SourceMemoryAddress = ro_bo(src_bo, src_offset + i);
5037 }
5038 }
5039 }
5040
5041 /* ------------------------------------------------------------------- */
5042
5043 static unsigned
5044 flags_to_post_sync_op(uint32_t flags)
5045 {
5046 if (flags & PIPE_CONTROL_WRITE_IMMEDIATE)
5047 return WriteImmediateData;
5048
5049 if (flags & PIPE_CONTROL_WRITE_DEPTH_COUNT)
5050 return WritePSDepthCount;
5051
5052 if (flags & PIPE_CONTROL_WRITE_TIMESTAMP)
5053 return WriteTimestamp;
5054
5055 return 0;
5056 }
5057
5058 /**
5059 * Do the given flags have a Post Sync or LRI Post Sync operation?
5060 */
5061 static enum pipe_control_flags
5062 get_post_sync_flags(enum pipe_control_flags flags)
5063 {
5064 flags &= PIPE_CONTROL_WRITE_IMMEDIATE |
5065 PIPE_CONTROL_WRITE_DEPTH_COUNT |
5066 PIPE_CONTROL_WRITE_TIMESTAMP |
5067 PIPE_CONTROL_LRI_POST_SYNC_OP;
5068
5069 /* Only one "Post Sync Op" is allowed, and it's mutually exclusive with
5070 * "LRI Post Sync Operation". So more than one bit set would be illegal.
5071 */
5072 assert(util_bitcount(flags) <= 1);
5073
5074 return flags;
5075 }
5076
5077 #define IS_COMPUTE_PIPELINE(batch) (batch->name == IRIS_BATCH_COMPUTE)
5078
5079 /**
5080 * Emit a series of PIPE_CONTROL commands, taking into account any
5081 * workarounds necessary to actually accomplish the caller's request.
5082 *
5083 * Unless otherwise noted, spec quotations in this function come from:
5084 *
5085 * Synchronization of the 3D Pipeline > PIPE_CONTROL Command > Programming
5086 * Restrictions for PIPE_CONTROL.
5087 *
5088 * You should not use this function directly. Use the helpers in
5089 * iris_pipe_control.c instead, which may split the pipe control further.
5090 */
5091 static void
5092 iris_emit_raw_pipe_control(struct iris_batch *batch, uint32_t flags,
5093 struct iris_bo *bo, uint32_t offset, uint64_t imm)
5094 {
5095 UNUSED const struct gen_device_info *devinfo = &batch->screen->devinfo;
5096 enum pipe_control_flags post_sync_flags = get_post_sync_flags(flags);
5097 enum pipe_control_flags non_lri_post_sync_flags =
5098 post_sync_flags & ~PIPE_CONTROL_LRI_POST_SYNC_OP;
5099
5100 /* Recursive PIPE_CONTROL workarounds --------------------------------
5101 * (http://knowyourmeme.com/memes/xzibit-yo-dawg)
5102 *
5103 * We do these first because we want to look at the original operation,
5104 * rather than any workarounds we set.
5105 */
5106 if (GEN_GEN == 9 && (flags & PIPE_CONTROL_VF_CACHE_INVALIDATE)) {
5107 /* The PIPE_CONTROL "VF Cache Invalidation Enable" bit description
5108 * lists several workarounds:
5109 *
5110 * "Project: SKL, KBL, BXT
5111 *
5112 * If the VF Cache Invalidation Enable is set to a 1 in a
5113 * PIPE_CONTROL, a separate Null PIPE_CONTROL, all bitfields
5114 * sets to 0, with the VF Cache Invalidation Enable set to 0
5115 * needs to be sent prior to the PIPE_CONTROL with VF Cache
5116 * Invalidation Enable set to a 1."
5117 */
5118 iris_emit_raw_pipe_control(batch, 0, NULL, 0, 0);
5119 }
5120
5121 if (GEN_GEN == 9 && IS_COMPUTE_PIPELINE(batch) && post_sync_flags) {
5122 /* Project: SKL / Argument: LRI Post Sync Operation [23]
5123 *
5124 * "PIPECONTROL command with “Command Streamer Stall Enable” must be
5125 * programmed prior to programming a PIPECONTROL command with "LRI
5126 * Post Sync Operation" in GPGPU mode of operation (i.e when
5127 * PIPELINE_SELECT command is set to GPGPU mode of operation)."
5128 *
5129 * The same text exists a few rows below for Post Sync Op.
5130 */
5131 iris_emit_raw_pipe_control(batch, PIPE_CONTROL_CS_STALL, bo, offset, imm);
5132 }
5133
5134 if (GEN_GEN == 10 && (flags & PIPE_CONTROL_RENDER_TARGET_FLUSH)) {
5135 /* Cannonlake:
5136 * "Before sending a PIPE_CONTROL command with bit 12 set, SW must issue
5137 * another PIPE_CONTROL with Render Target Cache Flush Enable (bit 12)
5138 * = 0 and Pipe Control Flush Enable (bit 7) = 1"
5139 */
5140 iris_emit_raw_pipe_control(batch, PIPE_CONTROL_FLUSH_ENABLE, bo,
5141 offset, imm);
5142 }
5143
5144 /* "Flush Types" workarounds ---------------------------------------------
5145 * We do these now because they may add post-sync operations or CS stalls.
5146 */
5147
5148 if (GEN_GEN < 11 && flags & PIPE_CONTROL_VF_CACHE_INVALIDATE) {
5149 /* Project: BDW, SKL+ (stopping at CNL) / Argument: VF Invalidate
5150 *
5151 * "'Post Sync Operation' must be enabled to 'Write Immediate Data' or
5152 * 'Write PS Depth Count' or 'Write Timestamp'."
5153 */
5154 if (!bo) {
5155 flags |= PIPE_CONTROL_WRITE_IMMEDIATE;
5156 post_sync_flags |= PIPE_CONTROL_WRITE_IMMEDIATE;
5157 non_lri_post_sync_flags |= PIPE_CONTROL_WRITE_IMMEDIATE;
5158 bo = batch->screen->workaround_bo;
5159 }
5160 }
5161
5162 /* #1130 from Gen10 workarounds page:
5163 *
5164 * "Enable Depth Stall on every Post Sync Op if Render target Cache
5165 * Flush is not enabled in same PIPE CONTROL and Enable Pixel score
5166 * board stall if Render target cache flush is enabled."
5167 *
5168 * Applicable to CNL B0 and C0 steppings only.
5169 *
5170 * The wording here is unclear, and this workaround doesn't look anything
5171 * like the internal bug report recommendations, but leave it be for now...
5172 */
5173 if (GEN_GEN == 10) {
5174 if (flags & PIPE_CONTROL_RENDER_TARGET_FLUSH) {
5175 flags |= PIPE_CONTROL_STALL_AT_SCOREBOARD;
5176 } else if (flags & non_lri_post_sync_flags) {
5177 flags |= PIPE_CONTROL_DEPTH_STALL;
5178 }
5179 }
5180
5181 if (flags & PIPE_CONTROL_DEPTH_STALL) {
5182 /* From the PIPE_CONTROL instruction table, bit 13 (Depth Stall Enable):
5183 *
5184 * "This bit must be DISABLED for operations other than writing
5185 * PS_DEPTH_COUNT."
5186 *
5187 * This seems like nonsense. An Ivybridge workaround requires us to
5188 * emit a PIPE_CONTROL with a depth stall and write immediate post-sync
5189 * operation. Gen8+ requires us to emit depth stalls and depth cache
5190 * flushes together. So, it's hard to imagine this means anything other
5191 * than "we originally intended this to be used for PS_DEPTH_COUNT".
5192 *
5193 * We ignore the supposed restriction and do nothing.
5194 */
5195 }
5196
5197 if (flags & (PIPE_CONTROL_RENDER_TARGET_FLUSH |
5198 PIPE_CONTROL_STALL_AT_SCOREBOARD)) {
5199 /* From the PIPE_CONTROL instruction table, bit 12 and bit 1:
5200 *
5201 * "This bit must be DISABLED for End-of-pipe (Read) fences,
5202 * PS_DEPTH_COUNT or TIMESTAMP queries."
5203 *
5204 * TODO: Implement end-of-pipe checking.
5205 */
5206 assert(!(post_sync_flags & (PIPE_CONTROL_WRITE_DEPTH_COUNT |
5207 PIPE_CONTROL_WRITE_TIMESTAMP)));
5208 }
5209
5210 if (GEN_GEN < 11 && (flags & PIPE_CONTROL_STALL_AT_SCOREBOARD)) {
5211 /* From the PIPE_CONTROL instruction table, bit 1:
5212 *
5213 * "This bit is ignored if Depth Stall Enable is set.
5214 * Further, the render cache is not flushed even if Write Cache
5215 * Flush Enable bit is set."
5216 *
5217 * We assert that the caller doesn't do this combination, to try and
5218 * prevent mistakes. It shouldn't hurt the GPU, though.
5219 *
5220 * We skip this check on Gen11+ as the "Stall at Pixel Scoreboard"
5221 * and "Render Target Flush" combo is explicitly required for BTI
5222 * update workarounds.
5223 */
5224 assert(!(flags & (PIPE_CONTROL_DEPTH_STALL |
5225 PIPE_CONTROL_RENDER_TARGET_FLUSH)));
5226 }
5227
5228 /* PIPE_CONTROL page workarounds ------------------------------------- */
5229
5230 if (GEN_GEN <= 8 && (flags & PIPE_CONTROL_STATE_CACHE_INVALIDATE)) {
5231 /* From the PIPE_CONTROL page itself:
5232 *
5233 * "IVB, HSW, BDW
5234 * Restriction: Pipe_control with CS-stall bit set must be issued
5235 * before a pipe-control command that has the State Cache
5236 * Invalidate bit set."
5237 */
5238 flags |= PIPE_CONTROL_CS_STALL;
5239 }
5240
5241 if (flags & PIPE_CONTROL_FLUSH_LLC) {
5242 /* From the PIPE_CONTROL instruction table, bit 26 (Flush LLC):
5243 *
5244 * "Project: ALL
5245 * SW must always program Post-Sync Operation to "Write Immediate
5246 * Data" when Flush LLC is set."
5247 *
5248 * For now, we just require the caller to do it.
5249 */
5250 assert(flags & PIPE_CONTROL_WRITE_IMMEDIATE);
5251 }
5252
5253 /* "Post-Sync Operation" workarounds -------------------------------- */
5254
5255 /* Project: All / Argument: Global Snapshot Count Reset [19]
5256 *
5257 * "This bit must not be exercised on any product.
5258 * Requires stall bit ([20] of DW1) set."
5259 *
5260 * We don't use this, so we just assert that it isn't used. The
5261 * PIPE_CONTROL instruction page indicates that they intended this
5262 * as a debug feature and don't think it is useful in production,
5263 * but it may actually be usable, should we ever want to.
5264 */
5265 assert((flags & PIPE_CONTROL_GLOBAL_SNAPSHOT_COUNT_RESET) == 0);
5266
5267 if (flags & (PIPE_CONTROL_MEDIA_STATE_CLEAR |
5268 PIPE_CONTROL_INDIRECT_STATE_POINTERS_DISABLE)) {
5269 /* Project: All / Arguments:
5270 *
5271 * - Generic Media State Clear [16]
5272 * - Indirect State Pointers Disable [16]
5273 *
5274 * "Requires stall bit ([20] of DW1) set."
5275 *
5276 * Also, the PIPE_CONTROL instruction table, bit 16 (Generic Media
5277 * State Clear) says:
5278 *
5279 * "PIPECONTROL command with “Command Streamer Stall Enable” must be
5280 * programmed prior to programming a PIPECONTROL command with "Media
5281 * State Clear" set in GPGPU mode of operation"
5282 *
5283 * This is a subset of the earlier rule, so there's nothing to do.
5284 */
5285 flags |= PIPE_CONTROL_CS_STALL;
5286 }
5287
5288 if (flags & PIPE_CONTROL_STORE_DATA_INDEX) {
5289 /* Project: All / Argument: Store Data Index
5290 *
5291 * "Post-Sync Operation ([15:14] of DW1) must be set to something other
5292 * than '0'."
5293 *
5294 * For now, we just assert that the caller does this. We might want to
5295 * automatically add a write to the workaround BO...
5296 */
5297 assert(non_lri_post_sync_flags != 0);
5298 }
5299
5300 if (flags & PIPE_CONTROL_SYNC_GFDT) {
5301 /* Project: All / Argument: Sync GFDT
5302 *
5303 * "Post-Sync Operation ([15:14] of DW1) must be set to something other
5304 * than '0' or 0x2520[13] must be set."
5305 *
5306 * For now, we just assert that the caller does this.
5307 */
5308 assert(non_lri_post_sync_flags != 0);
5309 }
5310
5311 if (flags & PIPE_CONTROL_TLB_INVALIDATE) {
5312 /* Project: IVB+ / Argument: TLB inv
5313 *
5314 * "Requires stall bit ([20] of DW1) set."
5315 *
5316 * Also, from the PIPE_CONTROL instruction table:
5317 *
5318 * "Project: SKL+
5319 * Post Sync Operation or CS stall must be set to ensure a TLB
5320 * invalidation occurs. Otherwise no cycle will occur to the TLB
5321 * cache to invalidate."
5322 *
5323 * This is not a subset of the earlier rule, so there's nothing to do.
5324 */
5325 flags |= PIPE_CONTROL_CS_STALL;
5326 }
5327
5328 if (GEN_GEN == 9 && devinfo->gt == 4) {
5329 /* TODO: The big Skylake GT4 post sync op workaround */
5330 }
5331
5332 /* "GPGPU specific workarounds" (both post-sync and flush) ------------ */
5333
5334 if (IS_COMPUTE_PIPELINE(batch)) {
5335 if (GEN_GEN >= 9 && (flags & PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE)) {
5336 /* Project: SKL+ / Argument: Tex Invalidate
5337 * "Requires stall bit ([20] of DW) set for all GPGPU Workloads."
5338 */
5339 flags |= PIPE_CONTROL_CS_STALL;
5340 }
5341
5342 if (GEN_GEN == 8 && (post_sync_flags ||
5343 (flags & (PIPE_CONTROL_NOTIFY_ENABLE |
5344 PIPE_CONTROL_DEPTH_STALL |
5345 PIPE_CONTROL_RENDER_TARGET_FLUSH |
5346 PIPE_CONTROL_DEPTH_CACHE_FLUSH |
5347 PIPE_CONTROL_DATA_CACHE_FLUSH)))) {
5348 /* Project: BDW / Arguments:
5349 *
5350 * - LRI Post Sync Operation [23]
5351 * - Post Sync Op [15:14]
5352 * - Notify En [8]
5353 * - Depth Stall [13]
5354 * - Render Target Cache Flush [12]
5355 * - Depth Cache Flush [0]
5356 * - DC Flush Enable [5]
5357 *
5358 * "Requires stall bit ([20] of DW) set for all GPGPU and Media
5359 * Workloads."
5360 */
5361 flags |= PIPE_CONTROL_CS_STALL;
5362
5363 /* Also, from the PIPE_CONTROL instruction table, bit 20:
5364 *
5365 * "Project: BDW
5366 * This bit must be always set when PIPE_CONTROL command is
5367 * programmed by GPGPU and MEDIA workloads, except for the cases
5368 * when only Read Only Cache Invalidation bits are set (State
5369 * Cache Invalidation Enable, Instruction cache Invalidation
5370 * Enable, Texture Cache Invalidation Enable, Constant Cache
5371 * Invalidation Enable). This is to WA FFDOP CG issue, this WA
5372 * need not implemented when FF_DOP_CG is disable via "Fixed
5373 * Function DOP Clock Gate Disable" bit in RC_PSMI_CTRL register."
5374 *
5375 * It sounds like we could avoid CS stalls in some cases, but we
5376 * don't currently bother. This list isn't exactly the list above,
5377 * either...
5378 */
5379 }
5380 }
5381
5382 /* "Stall" workarounds ----------------------------------------------
5383 * These have to come after the earlier ones because we may have added
5384 * some additional CS stalls above.
5385 */
5386
5387 if (GEN_GEN < 9 && (flags & PIPE_CONTROL_CS_STALL)) {
5388 /* Project: PRE-SKL, VLV, CHV
5389 *
5390 * "[All Stepping][All SKUs]:
5391 *
5392 * One of the following must also be set:
5393 *
5394 * - Render Target Cache Flush Enable ([12] of DW1)
5395 * - Depth Cache Flush Enable ([0] of DW1)
5396 * - Stall at Pixel Scoreboard ([1] of DW1)
5397 * - Depth Stall ([13] of DW1)
5398 * - Post-Sync Operation ([13] of DW1)
5399 * - DC Flush Enable ([5] of DW1)"
5400 *
5401 * If we don't already have one of those bits set, we choose to add
5402 * "Stall at Pixel Scoreboard". Some of the other bits require a
5403 * CS stall as a workaround (see above), which would send us into
5404 * an infinite recursion of PIPE_CONTROLs. "Stall at Pixel Scoreboard"
5405 * appears to be safe, so we choose that.
5406 */
5407 const uint32_t wa_bits = PIPE_CONTROL_RENDER_TARGET_FLUSH |
5408 PIPE_CONTROL_DEPTH_CACHE_FLUSH |
5409 PIPE_CONTROL_WRITE_IMMEDIATE |
5410 PIPE_CONTROL_WRITE_DEPTH_COUNT |
5411 PIPE_CONTROL_WRITE_TIMESTAMP |
5412 PIPE_CONTROL_STALL_AT_SCOREBOARD |
5413 PIPE_CONTROL_DEPTH_STALL |
5414 PIPE_CONTROL_DATA_CACHE_FLUSH;
5415 if (!(flags & wa_bits))
5416 flags |= PIPE_CONTROL_STALL_AT_SCOREBOARD;
5417 }
5418
5419 /* Emit --------------------------------------------------------------- */
5420
5421 iris_emit_cmd(batch, GENX(PIPE_CONTROL), pc) {
5422 pc.LRIPostSyncOperation = NoLRIOperation;
5423 pc.PipeControlFlushEnable = flags & PIPE_CONTROL_FLUSH_ENABLE;
5424 pc.DCFlushEnable = flags & PIPE_CONTROL_DATA_CACHE_FLUSH;
5425 pc.StoreDataIndex = 0;
5426 pc.CommandStreamerStallEnable = flags & PIPE_CONTROL_CS_STALL;
5427 pc.GlobalSnapshotCountReset =
5428 flags & PIPE_CONTROL_GLOBAL_SNAPSHOT_COUNT_RESET;
5429 pc.TLBInvalidate = flags & PIPE_CONTROL_TLB_INVALIDATE;
5430 pc.GenericMediaStateClear = flags & PIPE_CONTROL_MEDIA_STATE_CLEAR;
5431 pc.StallAtPixelScoreboard = flags & PIPE_CONTROL_STALL_AT_SCOREBOARD;
5432 pc.RenderTargetCacheFlushEnable =
5433 flags & PIPE_CONTROL_RENDER_TARGET_FLUSH;
5434 pc.DepthCacheFlushEnable = flags & PIPE_CONTROL_DEPTH_CACHE_FLUSH;
5435 pc.StateCacheInvalidationEnable =
5436 flags & PIPE_CONTROL_STATE_CACHE_INVALIDATE;
5437 pc.VFCacheInvalidationEnable = flags & PIPE_CONTROL_VF_CACHE_INVALIDATE;
5438 pc.ConstantCacheInvalidationEnable =
5439 flags & PIPE_CONTROL_CONST_CACHE_INVALIDATE;
5440 pc.PostSyncOperation = flags_to_post_sync_op(flags);
5441 pc.DepthStallEnable = flags & PIPE_CONTROL_DEPTH_STALL;
5442 pc.InstructionCacheInvalidateEnable =
5443 flags & PIPE_CONTROL_INSTRUCTION_INVALIDATE;
5444 pc.NotifyEnable = flags & PIPE_CONTROL_NOTIFY_ENABLE;
5445 pc.IndirectStatePointersDisable =
5446 flags & PIPE_CONTROL_INDIRECT_STATE_POINTERS_DISABLE;
5447 pc.TextureCacheInvalidationEnable =
5448 flags & PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
5449 pc.Address = rw_bo(bo, offset);
5450 pc.ImmediateData = imm;
5451 }
5452 }
5453
5454 void
5455 genX(init_state)(struct iris_context *ice)
5456 {
5457 struct pipe_context *ctx = &ice->ctx;
5458 struct iris_screen *screen = (struct iris_screen *)ctx->screen;
5459
5460 ctx->create_blend_state = iris_create_blend_state;
5461 ctx->create_depth_stencil_alpha_state = iris_create_zsa_state;
5462 ctx->create_rasterizer_state = iris_create_rasterizer_state;
5463 ctx->create_sampler_state = iris_create_sampler_state;
5464 ctx->create_sampler_view = iris_create_sampler_view;
5465 ctx->create_surface = iris_create_surface;
5466 ctx->create_vertex_elements_state = iris_create_vertex_elements;
5467 ctx->bind_blend_state = iris_bind_blend_state;
5468 ctx->bind_depth_stencil_alpha_state = iris_bind_zsa_state;
5469 ctx->bind_sampler_states = iris_bind_sampler_states;
5470 ctx->bind_rasterizer_state = iris_bind_rasterizer_state;
5471 ctx->bind_vertex_elements_state = iris_bind_vertex_elements_state;
5472 ctx->delete_blend_state = iris_delete_state;
5473 ctx->delete_depth_stencil_alpha_state = iris_delete_state;
5474 ctx->delete_rasterizer_state = iris_delete_state;
5475 ctx->delete_sampler_state = iris_delete_state;
5476 ctx->delete_vertex_elements_state = iris_delete_state;
5477 ctx->set_blend_color = iris_set_blend_color;
5478 ctx->set_clip_state = iris_set_clip_state;
5479 ctx->set_constant_buffer = iris_set_constant_buffer;
5480 ctx->set_shader_buffers = iris_set_shader_buffers;
5481 ctx->set_shader_images = iris_set_shader_images;
5482 ctx->set_sampler_views = iris_set_sampler_views;
5483 ctx->set_tess_state = iris_set_tess_state;
5484 ctx->set_framebuffer_state = iris_set_framebuffer_state;
5485 ctx->set_polygon_stipple = iris_set_polygon_stipple;
5486 ctx->set_sample_mask = iris_set_sample_mask;
5487 ctx->set_scissor_states = iris_set_scissor_states;
5488 ctx->set_stencil_ref = iris_set_stencil_ref;
5489 ctx->set_vertex_buffers = iris_set_vertex_buffers;
5490 ctx->set_viewport_states = iris_set_viewport_states;
5491 ctx->sampler_view_destroy = iris_sampler_view_destroy;
5492 ctx->surface_destroy = iris_surface_destroy;
5493 ctx->draw_vbo = iris_draw_vbo;
5494 ctx->launch_grid = iris_launch_grid;
5495 ctx->create_stream_output_target = iris_create_stream_output_target;
5496 ctx->stream_output_target_destroy = iris_stream_output_target_destroy;
5497 ctx->set_stream_output_targets = iris_set_stream_output_targets;
5498
5499 ice->vtbl.destroy_state = iris_destroy_state;
5500 ice->vtbl.init_render_context = iris_init_render_context;
5501 ice->vtbl.init_compute_context = iris_init_compute_context;
5502 ice->vtbl.upload_render_state = iris_upload_render_state;
5503 ice->vtbl.update_surface_base_address = iris_update_surface_base_address;
5504 ice->vtbl.upload_compute_state = iris_upload_compute_state;
5505 ice->vtbl.emit_raw_pipe_control = iris_emit_raw_pipe_control;
5506 ice->vtbl.load_register_reg32 = iris_load_register_reg32;
5507 ice->vtbl.load_register_reg64 = iris_load_register_reg64;
5508 ice->vtbl.load_register_imm32 = iris_load_register_imm32;
5509 ice->vtbl.load_register_imm64 = iris_load_register_imm64;
5510 ice->vtbl.load_register_mem32 = iris_load_register_mem32;
5511 ice->vtbl.load_register_mem64 = iris_load_register_mem64;
5512 ice->vtbl.store_register_mem32 = iris_store_register_mem32;
5513 ice->vtbl.store_register_mem64 = iris_store_register_mem64;
5514 ice->vtbl.store_data_imm32 = iris_store_data_imm32;
5515 ice->vtbl.store_data_imm64 = iris_store_data_imm64;
5516 ice->vtbl.copy_mem_mem = iris_copy_mem_mem;
5517 ice->vtbl.derived_program_state_size = iris_derived_program_state_size;
5518 ice->vtbl.store_derived_program_state = iris_store_derived_program_state;
5519 ice->vtbl.create_so_decl_list = iris_create_so_decl_list;
5520 ice->vtbl.populate_vs_key = iris_populate_vs_key;
5521 ice->vtbl.populate_tcs_key = iris_populate_tcs_key;
5522 ice->vtbl.populate_tes_key = iris_populate_tes_key;
5523 ice->vtbl.populate_gs_key = iris_populate_gs_key;
5524 ice->vtbl.populate_fs_key = iris_populate_fs_key;
5525 ice->vtbl.populate_cs_key = iris_populate_cs_key;
5526
5527 ice->state.dirty = ~0ull;
5528
5529 ice->state.statistics_counters_enabled = true;
5530
5531 ice->state.sample_mask = 0xffff;
5532 ice->state.num_viewports = 1;
5533 ice->state.genx = calloc(1, sizeof(struct iris_genx_state));
5534
5535 /* Make a 1x1x1 null surface for unbound textures */
5536 void *null_surf_map =
5537 upload_state(ice->state.surface_uploader, &ice->state.unbound_tex,
5538 4 * GENX(RENDER_SURFACE_STATE_length), 64);
5539 isl_null_fill_state(&screen->isl_dev, null_surf_map, isl_extent3d(1, 1, 1));
5540 ice->state.unbound_tex.offset +=
5541 iris_bo_offset_from_base_address(iris_resource_bo(ice->state.unbound_tex.res));
5542
5543 /* Default all scissor rectangles to be empty regions. */
5544 for (int i = 0; i < IRIS_MAX_VIEWPORTS; i++) {
5545 ice->state.scissors[i] = (struct pipe_scissor_state) {
5546 .minx = 1, .maxx = 0, .miny = 1, .maxy = 0,
5547 };
5548 }
5549 }