intel/fs: Drop the gl_program from fs_visitor
[mesa.git] / src / gallium / drivers / iris / iris_context.h
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 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23 #ifndef IRIS_CONTEXT_H
24 #define IRIS_CONTEXT_H
25
26 #include "pipe/p_context.h"
27 #include "pipe/p_state.h"
28 #include "util/u_debug.h"
29 #include "intel/blorp/blorp.h"
30 #include "intel/dev/gen_debug.h"
31 #include "intel/compiler/brw_compiler.h"
32 #include "iris_batch.h"
33 #include "iris_binder.h"
34 #include "iris_fence.h"
35 #include "iris_resource.h"
36 #include "iris_screen.h"
37
38 struct iris_bo;
39 struct iris_context;
40 struct blorp_batch;
41 struct blorp_params;
42
43 #define IRIS_MAX_TEXTURE_BUFFER_SIZE (1 << 27)
44 #define IRIS_MAX_TEXTURE_SAMPLERS 32
45 /* IRIS_MAX_ABOS and IRIS_MAX_SSBOS must be the same. */
46 #define IRIS_MAX_ABOS 16
47 #define IRIS_MAX_SSBOS 16
48 #define IRIS_MAX_VIEWPORTS 16
49 #define IRIS_MAX_CLIP_PLANES 8
50
51 enum iris_param_domain {
52 BRW_PARAM_DOMAIN_BUILTIN = 0,
53 BRW_PARAM_DOMAIN_IMAGE,
54 };
55
56 #define BRW_PARAM(domain, val) (BRW_PARAM_DOMAIN_##domain << 24 | (val))
57 #define BRW_PARAM_DOMAIN(param) ((uint32_t)(param) >> 24)
58 #define BRW_PARAM_VALUE(param) ((uint32_t)(param) & 0x00ffffff)
59 #define BRW_PARAM_IMAGE(idx, offset) BRW_PARAM(IMAGE, ((idx) << 8) | (offset))
60 #define BRW_PARAM_IMAGE_IDX(value) (BRW_PARAM_VALUE(value) >> 8)
61 #define BRW_PARAM_IMAGE_OFFSET(value)(BRW_PARAM_VALUE(value) & 0xf)
62
63 /**
64 * Dirty flags. When state changes, we flag some combination of these
65 * to indicate that particular GPU commands need to be re-emitted.
66 *
67 * Each bit typically corresponds to a single 3DSTATE_* command packet, but
68 * in rare cases they map to a group of related packets that need to be
69 * emitted together.
70 *
71 * See iris_upload_render_state().
72 */
73 #define IRIS_DIRTY_COLOR_CALC_STATE (1ull << 0)
74 #define IRIS_DIRTY_POLYGON_STIPPLE (1ull << 1)
75 #define IRIS_DIRTY_SCISSOR_RECT (1ull << 2)
76 #define IRIS_DIRTY_WM_DEPTH_STENCIL (1ull << 3)
77 #define IRIS_DIRTY_CC_VIEWPORT (1ull << 4)
78 #define IRIS_DIRTY_SF_CL_VIEWPORT (1ull << 5)
79 #define IRIS_DIRTY_PS_BLEND (1ull << 6)
80 #define IRIS_DIRTY_BLEND_STATE (1ull << 7)
81 #define IRIS_DIRTY_RASTER (1ull << 8)
82 #define IRIS_DIRTY_CLIP (1ull << 9)
83 #define IRIS_DIRTY_SBE (1ull << 10)
84 #define IRIS_DIRTY_LINE_STIPPLE (1ull << 11)
85 #define IRIS_DIRTY_VERTEX_ELEMENTS (1ull << 12)
86 #define IRIS_DIRTY_MULTISAMPLE (1ull << 13)
87 #define IRIS_DIRTY_VERTEX_BUFFERS (1ull << 14)
88 #define IRIS_DIRTY_SAMPLE_MASK (1ull << 15)
89 #define IRIS_DIRTY_SAMPLER_STATES_VS (1ull << 16)
90 #define IRIS_DIRTY_SAMPLER_STATES_TCS (1ull << 17)
91 #define IRIS_DIRTY_SAMPLER_STATES_TES (1ull << 18)
92 #define IRIS_DIRTY_SAMPLER_STATES_GS (1ull << 19)
93 #define IRIS_DIRTY_SAMPLER_STATES_PS (1ull << 20)
94 #define IRIS_DIRTY_SAMPLER_STATES_CS (1ull << 21)
95 #define IRIS_DIRTY_UNCOMPILED_VS (1ull << 22)
96 #define IRIS_DIRTY_UNCOMPILED_TCS (1ull << 23)
97 #define IRIS_DIRTY_UNCOMPILED_TES (1ull << 24)
98 #define IRIS_DIRTY_UNCOMPILED_GS (1ull << 25)
99 #define IRIS_DIRTY_UNCOMPILED_FS (1ull << 26)
100 #define IRIS_DIRTY_UNCOMPILED_CS (1ull << 27)
101 #define IRIS_DIRTY_VS (1ull << 28)
102 #define IRIS_DIRTY_TCS (1ull << 29)
103 #define IRIS_DIRTY_TES (1ull << 30)
104 #define IRIS_DIRTY_GS (1ull << 31)
105 #define IRIS_DIRTY_FS (1ull << 32)
106 #define IRIS_DIRTY_CS (1ull << 33)
107 #define IRIS_DIRTY_URB (1ull << 34)
108 #define IRIS_DIRTY_CONSTANTS_VS (1ull << 35)
109 #define IRIS_DIRTY_CONSTANTS_TCS (1ull << 36)
110 #define IRIS_DIRTY_CONSTANTS_TES (1ull << 37)
111 #define IRIS_DIRTY_CONSTANTS_GS (1ull << 38)
112 #define IRIS_DIRTY_CONSTANTS_FS (1ull << 39)
113 #define IRIS_DIRTY_CONSTANTS_CS (1ull << 40)
114 #define IRIS_DIRTY_DEPTH_BUFFER (1ull << 41)
115 #define IRIS_DIRTY_WM (1ull << 42)
116 #define IRIS_DIRTY_BINDINGS_VS (1ull << 43)
117 #define IRIS_DIRTY_BINDINGS_TCS (1ull << 44)
118 #define IRIS_DIRTY_BINDINGS_TES (1ull << 45)
119 #define IRIS_DIRTY_BINDINGS_GS (1ull << 46)
120 #define IRIS_DIRTY_BINDINGS_FS (1ull << 47)
121 #define IRIS_DIRTY_BINDINGS_CS (1ull << 48)
122 #define IRIS_DIRTY_SO_BUFFERS (1ull << 49)
123 #define IRIS_DIRTY_SO_DECL_LIST (1ull << 50)
124 #define IRIS_DIRTY_STREAMOUT (1ull << 51)
125 #define IRIS_DIRTY_VF_SGVS (1ull << 52)
126 #define IRIS_DIRTY_VF (1ull << 53)
127 #define IRIS_DIRTY_VF_TOPOLOGY (1ull << 54)
128 #define IRIS_DIRTY_RENDER_RESOLVES_AND_FLUSHES (1ull << 55)
129 #define IRIS_DIRTY_COMPUTE_RESOLVES_AND_FLUSHES (1ull << 56)
130 #define IRIS_DIRTY_VF_STATISTICS (1ull << 57)
131
132 #define IRIS_ALL_DIRTY_FOR_COMPUTE (IRIS_DIRTY_CS | \
133 IRIS_DIRTY_SAMPLER_STATES_CS | \
134 IRIS_DIRTY_UNCOMPILED_CS | \
135 IRIS_DIRTY_CONSTANTS_CS | \
136 IRIS_DIRTY_BINDINGS_CS | \
137 IRIS_DIRTY_COMPUTE_RESOLVES_AND_FLUSHES)
138
139 #define IRIS_ALL_DIRTY_FOR_RENDER ~IRIS_ALL_DIRTY_FOR_COMPUTE
140
141 #define IRIS_ALL_DIRTY_BINDINGS (IRIS_DIRTY_BINDINGS_VS | \
142 IRIS_DIRTY_BINDINGS_TCS | \
143 IRIS_DIRTY_BINDINGS_TES | \
144 IRIS_DIRTY_BINDINGS_GS | \
145 IRIS_DIRTY_BINDINGS_FS | \
146 IRIS_DIRTY_BINDINGS_CS)
147
148 /**
149 * Non-orthogonal state (NOS) dependency flags.
150 *
151 * Shader programs may depend on non-orthogonal state. These flags are
152 * used to indicate that a shader's key depends on the state provided by
153 * a certain Gallium CSO. Changing any CSOs marked as a dependency will
154 * cause the driver to re-compute the shader key, possibly triggering a
155 * shader recompile.
156 */
157 enum iris_nos_dep {
158 IRIS_NOS_FRAMEBUFFER,
159 IRIS_NOS_DEPTH_STENCIL_ALPHA,
160 IRIS_NOS_RASTERIZER,
161 IRIS_NOS_BLEND,
162 IRIS_NOS_LAST_VUE_MAP,
163
164 IRIS_NOS_COUNT,
165 };
166
167 struct iris_depth_stencil_alpha_state;
168
169 /**
170 * Cache IDs for the in-memory program cache (ice->shaders.cache).
171 */
172 enum iris_program_cache_id {
173 IRIS_CACHE_VS = MESA_SHADER_VERTEX,
174 IRIS_CACHE_TCS = MESA_SHADER_TESS_CTRL,
175 IRIS_CACHE_TES = MESA_SHADER_TESS_EVAL,
176 IRIS_CACHE_GS = MESA_SHADER_GEOMETRY,
177 IRIS_CACHE_FS = MESA_SHADER_FRAGMENT,
178 IRIS_CACHE_CS = MESA_SHADER_COMPUTE,
179 IRIS_CACHE_BLORP,
180 };
181
182 /** @{
183 *
184 * Defines for PIPE_CONTROL operations, which trigger cache flushes,
185 * synchronization, pipelined memory writes, and so on.
186 *
187 * The bits here are not the actual hardware values. The actual fields
188 * move between various generations, so we just have flags for each
189 * potential operation, and use genxml to encode the actual packet.
190 */
191 enum pipe_control_flags
192 {
193 PIPE_CONTROL_FLUSH_LLC = (1 << 1),
194 PIPE_CONTROL_LRI_POST_SYNC_OP = (1 << 2),
195 PIPE_CONTROL_STORE_DATA_INDEX = (1 << 3),
196 PIPE_CONTROL_CS_STALL = (1 << 4),
197 PIPE_CONTROL_GLOBAL_SNAPSHOT_COUNT_RESET = (1 << 5),
198 PIPE_CONTROL_SYNC_GFDT = (1 << 6),
199 PIPE_CONTROL_TLB_INVALIDATE = (1 << 7),
200 PIPE_CONTROL_MEDIA_STATE_CLEAR = (1 << 8),
201 PIPE_CONTROL_WRITE_IMMEDIATE = (1 << 9),
202 PIPE_CONTROL_WRITE_DEPTH_COUNT = (1 << 10),
203 PIPE_CONTROL_WRITE_TIMESTAMP = (1 << 11),
204 PIPE_CONTROL_DEPTH_STALL = (1 << 12),
205 PIPE_CONTROL_RENDER_TARGET_FLUSH = (1 << 13),
206 PIPE_CONTROL_INSTRUCTION_INVALIDATE = (1 << 14),
207 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE = (1 << 15),
208 PIPE_CONTROL_INDIRECT_STATE_POINTERS_DISABLE = (1 << 16),
209 PIPE_CONTROL_NOTIFY_ENABLE = (1 << 17),
210 PIPE_CONTROL_FLUSH_ENABLE = (1 << 18),
211 PIPE_CONTROL_DATA_CACHE_FLUSH = (1 << 19),
212 PIPE_CONTROL_VF_CACHE_INVALIDATE = (1 << 20),
213 PIPE_CONTROL_CONST_CACHE_INVALIDATE = (1 << 21),
214 PIPE_CONTROL_STATE_CACHE_INVALIDATE = (1 << 22),
215 PIPE_CONTROL_STALL_AT_SCOREBOARD = (1 << 23),
216 PIPE_CONTROL_DEPTH_CACHE_FLUSH = (1 << 24),
217 };
218
219 #define PIPE_CONTROL_CACHE_FLUSH_BITS \
220 (PIPE_CONTROL_DEPTH_CACHE_FLUSH | \
221 PIPE_CONTROL_DATA_CACHE_FLUSH | \
222 PIPE_CONTROL_RENDER_TARGET_FLUSH)
223
224 #define PIPE_CONTROL_CACHE_INVALIDATE_BITS \
225 (PIPE_CONTROL_STATE_CACHE_INVALIDATE | \
226 PIPE_CONTROL_CONST_CACHE_INVALIDATE | \
227 PIPE_CONTROL_VF_CACHE_INVALIDATE | \
228 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE | \
229 PIPE_CONTROL_INSTRUCTION_INVALIDATE)
230
231 enum iris_predicate_state {
232 /* The first two states are used if we can determine whether to draw
233 * without having to look at the values in the query object buffer. This
234 * will happen if there is no conditional render in progress, if the query
235 * object is already completed or if something else has already added
236 * samples to the preliminary result.
237 */
238 IRIS_PREDICATE_STATE_RENDER,
239 IRIS_PREDICATE_STATE_DONT_RENDER,
240
241 /* In this case whether to draw or not depends on the result of an
242 * MI_PREDICATE command so the predicate enable bit needs to be checked.
243 */
244 IRIS_PREDICATE_STATE_USE_BIT,
245 };
246
247 /** @} */
248
249 /**
250 * An uncompiled, API-facing shader. This is the Gallium CSO for shaders.
251 * It primarily contains the NIR for the shader.
252 *
253 * Each API-facing shader can be compiled into multiple shader variants,
254 * based on non-orthogonal state dependencies, recorded in the shader key.
255 *
256 * See iris_compiled_shader, which represents a compiled shader variant.
257 */
258 struct iris_uncompiled_shader {
259 struct nir_shader *nir;
260
261 struct pipe_stream_output_info stream_output;
262
263 /* A SHA1 of the serialized NIR for the disk cache. */
264 unsigned char nir_sha1[20];
265
266 unsigned program_id;
267
268 /** Bitfield of (1 << IRIS_NOS_*) flags. */
269 unsigned nos;
270
271 /** Have any shader variants been compiled yet? */
272 bool compiled_once;
273
274 /** Should we use ALT mode for math? Useful for ARB programs. */
275 bool use_alt_mode;
276
277 /** Constant data scraped from the shader by nir_opt_large_constants */
278 struct pipe_resource *const_data;
279
280 /** Surface state for const_data */
281 struct iris_state_ref const_data_state;
282 };
283
284 enum iris_surface_group {
285 IRIS_SURFACE_GROUP_RENDER_TARGET,
286 IRIS_SURFACE_GROUP_RENDER_TARGET_READ,
287 IRIS_SURFACE_GROUP_CS_WORK_GROUPS,
288 IRIS_SURFACE_GROUP_TEXTURE,
289 IRIS_SURFACE_GROUP_IMAGE,
290 IRIS_SURFACE_GROUP_UBO,
291 IRIS_SURFACE_GROUP_SSBO,
292
293 IRIS_SURFACE_GROUP_COUNT,
294 };
295
296 enum {
297 /* Invalid value for a binding table index. */
298 IRIS_SURFACE_NOT_USED = 0xa0a0a0a0,
299 };
300
301 struct iris_binding_table {
302 uint32_t size_bytes;
303
304 /** Number of surfaces in each group, before compacting. */
305 uint32_t sizes[IRIS_SURFACE_GROUP_COUNT];
306
307 /** Initial offset of each group. */
308 uint32_t offsets[IRIS_SURFACE_GROUP_COUNT];
309
310 /** Mask of surfaces used in each group. */
311 uint64_t used_mask[IRIS_SURFACE_GROUP_COUNT];
312 };
313
314 /**
315 * A compiled shader variant, containing a pointer to the GPU assembly,
316 * as well as program data and other packets needed by state upload.
317 *
318 * There can be several iris_compiled_shader variants per API-level shader
319 * (iris_uncompiled_shader), due to state-based recompiles (brw_*_prog_key).
320 */
321 struct iris_compiled_shader {
322 /** Reference to the uploaded assembly. */
323 struct iris_state_ref assembly;
324
325 /** Pointer to the assembly in the BO's map. */
326 void *map;
327
328 /** The program data (owned by the program cache hash table) */
329 struct brw_stage_prog_data *prog_data;
330
331 /** A list of system values to be uploaded as uniforms. */
332 enum brw_param_builtin *system_values;
333 unsigned num_system_values;
334
335 /** Number of constbufs expected by the shader. */
336 unsigned num_cbufs;
337
338 /**
339 * Derived 3DSTATE_STREAMOUT and 3DSTATE_SO_DECL_LIST packets
340 * (the VUE-based information for transform feedback outputs).
341 */
342 uint32_t *streamout;
343
344 struct iris_binding_table bt;
345
346 /**
347 * Shader packets and other data derived from prog_data. These must be
348 * completely determined from prog_data.
349 */
350 uint8_t derived_data[0];
351 };
352
353 /**
354 * API context state that is replicated per shader stage.
355 */
356 struct iris_shader_state {
357 /** Uniform Buffers */
358 struct pipe_shader_buffer constbuf[PIPE_MAX_CONSTANT_BUFFERS];
359 struct iris_state_ref constbuf_surf_state[PIPE_MAX_CONSTANT_BUFFERS];
360
361 bool sysvals_need_upload;
362
363 /** Shader Storage Buffers */
364 struct pipe_shader_buffer ssbo[PIPE_MAX_SHADER_BUFFERS];
365 struct iris_state_ref ssbo_surf_state[PIPE_MAX_SHADER_BUFFERS];
366
367 /** Shader Storage Images (image load store) */
368 struct iris_image_view image[PIPE_MAX_SHADER_IMAGES];
369
370 struct iris_state_ref sampler_table;
371 struct iris_sampler_state *samplers[IRIS_MAX_TEXTURE_SAMPLERS];
372 struct iris_sampler_view *textures[IRIS_MAX_TEXTURE_SAMPLERS];
373
374 /** Bitfield of which constant buffers are bound (non-null). */
375 uint32_t bound_cbufs;
376
377 /** Bitfield of which image views are bound (non-null). */
378 uint32_t bound_image_views;
379
380 /** Bitfield of which sampler views are bound (non-null). */
381 uint32_t bound_sampler_views;
382
383 /** Bitfield of which shader storage buffers are bound (non-null). */
384 uint32_t bound_ssbos;
385
386 /** Bitfield of which shader storage buffers are writable. */
387 uint32_t writable_ssbos;
388 };
389
390 /**
391 * Gallium CSO for stream output (transform feedback) targets.
392 */
393 struct iris_stream_output_target {
394 struct pipe_stream_output_target base;
395
396 /** Storage holding the offset where we're writing in the buffer */
397 struct iris_state_ref offset;
398
399 /** Stride (bytes-per-vertex) during this transform feedback operation */
400 uint16_t stride;
401
402 /** Has 3DSTATE_SO_BUFFER actually been emitted, zeroing the offsets? */
403 bool zeroed;
404 };
405
406 /**
407 * Virtual table for generation-specific (genxml) function calls.
408 */
409 struct iris_vtable {
410 void (*destroy_state)(struct iris_context *ice);
411 void (*init_render_context)(struct iris_screen *screen,
412 struct iris_batch *batch,
413 struct iris_vtable *vtbl,
414 struct pipe_debug_callback *dbg);
415 void (*init_compute_context)(struct iris_screen *screen,
416 struct iris_batch *batch,
417 struct iris_vtable *vtbl,
418 struct pipe_debug_callback *dbg);
419 void (*upload_render_state)(struct iris_context *ice,
420 struct iris_batch *batch,
421 const struct pipe_draw_info *draw);
422 void (*update_surface_base_address)(struct iris_batch *batch,
423 struct iris_binder *binder);
424 void (*upload_compute_state)(struct iris_context *ice,
425 struct iris_batch *batch,
426 const struct pipe_grid_info *grid);
427 void (*rebind_buffer)(struct iris_context *ice,
428 struct iris_resource *res,
429 uint64_t old_address);
430 void (*resolve_conditional_render)(struct iris_context *ice);
431 void (*load_register_reg32)(struct iris_batch *batch, uint32_t dst,
432 uint32_t src);
433 void (*load_register_reg64)(struct iris_batch *batch, uint32_t dst,
434 uint32_t src);
435 void (*load_register_imm32)(struct iris_batch *batch, uint32_t reg,
436 uint32_t val);
437 void (*load_register_imm64)(struct iris_batch *batch, uint32_t reg,
438 uint64_t val);
439 void (*load_register_mem32)(struct iris_batch *batch, uint32_t reg,
440 struct iris_bo *bo, uint32_t offset);
441 void (*load_register_mem64)(struct iris_batch *batch, uint32_t reg,
442 struct iris_bo *bo, uint32_t offset);
443 void (*store_register_mem32)(struct iris_batch *batch, uint32_t reg,
444 struct iris_bo *bo, uint32_t offset,
445 bool predicated);
446 void (*store_register_mem64)(struct iris_batch *batch, uint32_t reg,
447 struct iris_bo *bo, uint32_t offset,
448 bool predicated);
449 void (*store_data_imm32)(struct iris_batch *batch,
450 struct iris_bo *bo, uint32_t offset,
451 uint32_t value);
452 void (*store_data_imm64)(struct iris_batch *batch,
453 struct iris_bo *bo, uint32_t offset,
454 uint64_t value);
455 void (*copy_mem_mem)(struct iris_batch *batch,
456 struct iris_bo *dst_bo, uint32_t dst_offset,
457 struct iris_bo *src_bo, uint32_t src_offset,
458 unsigned bytes);
459 void (*emit_raw_pipe_control)(struct iris_batch *batch,
460 const char *reason, uint32_t flags,
461 struct iris_bo *bo, uint32_t offset,
462 uint64_t imm);
463
464 void (*emit_mi_report_perf_count)(struct iris_batch *batch,
465 struct iris_bo *bo,
466 uint32_t offset_in_bytes,
467 uint32_t report_id);
468
469 unsigned (*derived_program_state_size)(enum iris_program_cache_id id);
470 void (*store_derived_program_state)(struct iris_context *ice,
471 enum iris_program_cache_id cache_id,
472 struct iris_compiled_shader *shader);
473 uint32_t *(*create_so_decl_list)(const struct pipe_stream_output_info *sol,
474 const struct brw_vue_map *vue_map);
475 void (*populate_vs_key)(const struct iris_context *ice,
476 const struct shader_info *info,
477 gl_shader_stage last_stage,
478 struct brw_vs_prog_key *key);
479 void (*populate_tcs_key)(const struct iris_context *ice,
480 struct brw_tcs_prog_key *key);
481 void (*populate_tes_key)(const struct iris_context *ice,
482 const struct shader_info *info,
483 gl_shader_stage last_stage,
484 struct brw_tes_prog_key *key);
485 void (*populate_gs_key)(const struct iris_context *ice,
486 const struct shader_info *info,
487 gl_shader_stage last_stage,
488 struct brw_gs_prog_key *key);
489 void (*populate_fs_key)(const struct iris_context *ice,
490 const struct shader_info *info,
491 struct brw_wm_prog_key *key);
492 void (*populate_cs_key)(const struct iris_context *ice,
493 struct brw_cs_prog_key *key);
494 uint32_t (*mocs)(const struct iris_bo *bo);
495 void (*lost_genx_state)(struct iris_context *ice, struct iris_batch *batch);
496 };
497
498 /**
499 * A pool containing SAMPLER_BORDER_COLOR_STATE entries.
500 *
501 * See iris_border_color.c for more information.
502 */
503 struct iris_border_color_pool {
504 struct iris_bo *bo;
505 void *map;
506 unsigned insert_point;
507
508 /** Map from border colors to offsets in the buffer. */
509 struct hash_table *ht;
510 };
511
512 /**
513 * The API context (derived from pipe_context).
514 *
515 * Most driver state is tracked here.
516 */
517 struct iris_context {
518 struct pipe_context ctx;
519
520 /** A debug callback for KHR_debug output. */
521 struct pipe_debug_callback dbg;
522
523 /** A device reset status callback for notifying that the GPU is hosed. */
524 struct pipe_device_reset_callback reset;
525
526 /** Slab allocator for iris_transfer_map objects. */
527 struct slab_child_pool transfer_pool;
528
529 struct iris_vtable vtbl;
530
531 struct blorp_context blorp;
532
533 struct iris_batch batches[IRIS_BATCH_COUNT];
534
535 struct u_upload_mgr *query_buffer_uploader;
536
537 struct {
538 struct {
539 /**
540 * Either the value of BaseVertex for indexed draw calls or the value
541 * of the argument <first> for non-indexed draw calls.
542 */
543 int firstvertex;
544 int baseinstance;
545 } params;
546
547 /**
548 * Resource and offset that stores draw_parameters from the indirect
549 * buffer or to the buffer that stures the previous values for non
550 * indirect draws.
551 */
552 struct pipe_resource *draw_params_res;
553 uint32_t draw_params_offset;
554
555 struct {
556 /**
557 * The value of DrawID. This always comes in from it's own vertex
558 * buffer since it's not part of the indirect draw parameters.
559 */
560 int drawid;
561
562 /**
563 * Stores if an indexed or non-indexed draw (~0/0). Useful to
564 * calculate BaseVertex as an AND of firstvertex and is_indexed_draw.
565 */
566 int is_indexed_draw;
567 } derived_params;
568
569 /**
570 * Resource and offset used for GL_ARB_shader_draw_parameters which
571 * contains parameters that are not present in the indirect buffer as
572 * drawid and is_indexed_draw. They will go in their own vertex element.
573 */
574 struct pipe_resource *derived_draw_params_res;
575 uint32_t derived_draw_params_offset;
576
577 bool is_indirect;
578 } draw;
579
580 struct {
581 struct iris_uncompiled_shader *uncompiled[MESA_SHADER_STAGES];
582 struct iris_compiled_shader *prog[MESA_SHADER_STAGES];
583 struct brw_vue_map *last_vue_map;
584
585 struct u_upload_mgr *uploader;
586 struct hash_table *cache;
587
588 unsigned urb_size;
589
590 /** Is a GS or TES outputting points or lines? */
591 bool output_topology_is_points_or_lines;
592
593 /* Track last VS URB entry size */
594 unsigned last_vs_entry_size;
595
596 /**
597 * Scratch buffers for various sizes and stages.
598 *
599 * Indexed by the "Per-Thread Scratch Space" field's 4-bit encoding,
600 * and shader stage.
601 */
602 struct iris_bo *scratch_bos[1 << 4][MESA_SHADER_STAGES];
603 } shaders;
604
605 struct {
606 struct iris_query *query;
607 bool condition;
608 } condition;
609
610 struct gen_perf_context *perf_ctx;
611
612 struct {
613 uint64_t dirty;
614 uint64_t dirty_for_nos[IRIS_NOS_COUNT];
615
616 unsigned num_viewports;
617 unsigned sample_mask;
618 struct iris_blend_state *cso_blend;
619 struct iris_rasterizer_state *cso_rast;
620 struct iris_depth_stencil_alpha_state *cso_zsa;
621 struct iris_vertex_element_state *cso_vertex_elements;
622 struct pipe_blend_color blend_color;
623 struct pipe_poly_stipple poly_stipple;
624 struct pipe_viewport_state viewports[IRIS_MAX_VIEWPORTS];
625 struct pipe_scissor_state scissors[IRIS_MAX_VIEWPORTS];
626 struct pipe_stencil_ref stencil_ref;
627 struct pipe_framebuffer_state framebuffer;
628 struct pipe_clip_state clip_planes;
629
630 float default_outer_level[4];
631 float default_inner_level[2];
632
633 /** Bitfield of which vertex buffers are bound (non-null). */
634 uint64_t bound_vertex_buffers;
635
636 bool primitive_restart;
637 unsigned cut_index;
638 enum pipe_prim_type prim_mode:8;
639 bool prim_is_points_or_lines;
640 uint8_t vertices_per_patch;
641
642 bool window_space_position;
643
644 /** The last compute grid size */
645 uint32_t last_grid[3];
646 /** Reference to the BO containing the compute grid size */
647 struct iris_state_ref grid_size;
648 /** Reference to the SURFACE_STATE for the compute grid resource */
649 struct iris_state_ref grid_surf_state;
650
651 /**
652 * Array of aux usages for drawing, altered to account for any
653 * self-dependencies from resources bound for sampling and rendering.
654 */
655 enum isl_aux_usage draw_aux_usage[BRW_MAX_DRAW_BUFFERS];
656
657 /** Bitfield of whether color blending is enabled for RT[i] */
658 uint8_t blend_enables;
659
660 /** Are depth writes enabled? (Depth buffer may or may not exist.) */
661 bool depth_writes_enabled;
662
663 /** Are stencil writes enabled? (Stencil buffer may or may not exist.) */
664 bool stencil_writes_enabled;
665
666 /** GenX-specific current state */
667 struct iris_genx_state *genx;
668
669 struct iris_shader_state shaders[MESA_SHADER_STAGES];
670
671 /** Do vertex shader uses shader draw parameters ? */
672 bool vs_uses_draw_params;
673 bool vs_uses_derived_draw_params;
674 bool vs_needs_sgvs_element;
675
676 /** Do vertex shader uses edge flag ? */
677 bool vs_needs_edge_flag;
678
679 /** Do any samplers need border color? One bit per shader stage. */
680 uint8_t need_border_colors;
681
682 struct pipe_stream_output_target *so_target[PIPE_MAX_SO_BUFFERS];
683 bool streamout_active;
684
685 bool statistics_counters_enabled;
686
687 /** Current conditional rendering mode */
688 enum iris_predicate_state predicate;
689
690 /**
691 * Query BO with a MI_PREDICATE_RESULT snapshot calculated on the
692 * render context that needs to be uploaded to the compute context.
693 */
694 struct iris_bo *compute_predicate;
695
696 /** Is a PIPE_QUERY_PRIMITIVES_GENERATED query active? */
697 bool prims_generated_query_active;
698
699 /** 3DSTATE_STREAMOUT and 3DSTATE_SO_DECL_LIST packets */
700 uint32_t *streamout;
701
702 /** The SURFACE_STATE for a 1x1x1 null surface. */
703 struct iris_state_ref unbound_tex;
704
705 /** The SURFACE_STATE for a framebuffer-sized null surface. */
706 struct iris_state_ref null_fb;
707
708 struct u_upload_mgr *surface_uploader;
709 struct u_upload_mgr *dynamic_uploader;
710
711 struct iris_binder binder;
712
713 struct iris_border_color_pool border_color_pool;
714
715 /** The high 16-bits of the last VBO/index buffer addresses */
716 uint16_t last_vbo_high_bits[33];
717 uint16_t last_index_bo_high_bits;
718
719 /**
720 * Resources containing streamed state which our render context
721 * currently points to. Used to re-add these to the validation
722 * list when we start a new batch and haven't resubmitted commands.
723 */
724 struct {
725 struct pipe_resource *cc_vp;
726 struct pipe_resource *sf_cl_vp;
727 struct pipe_resource *color_calc;
728 struct pipe_resource *scissor;
729 struct pipe_resource *blend;
730 struct pipe_resource *index_buffer;
731 struct pipe_resource *cs_thread_ids;
732 struct pipe_resource *cs_desc;
733 } last_res;
734
735 /** Records the size of variable-length state for INTEL_DEBUG=bat */
736 struct hash_table_u64 *sizes;
737
738 /** Last rendering scale argument provided to genX(emit_hashing_mode). */
739 unsigned current_hash_scale;
740 } state;
741 };
742
743 #define perf_debug(dbg, ...) do { \
744 if (INTEL_DEBUG & DEBUG_PERF) \
745 dbg_printf(__VA_ARGS__); \
746 if (unlikely(dbg)) \
747 pipe_debug_message(dbg, PERF_INFO, __VA_ARGS__); \
748 } while(0)
749
750 double get_time(void);
751
752 struct pipe_context *
753 iris_create_context(struct pipe_screen *screen, void *priv, unsigned flags);
754
755 void iris_lost_context_state(struct iris_batch *batch);
756
757 void iris_init_blit_functions(struct pipe_context *ctx);
758 void iris_init_clear_functions(struct pipe_context *ctx);
759 void iris_init_program_functions(struct pipe_context *ctx);
760 void iris_init_resource_functions(struct pipe_context *ctx);
761 void iris_update_compiled_shaders(struct iris_context *ice);
762 void iris_update_compiled_compute_shader(struct iris_context *ice);
763 void iris_fill_cs_push_const_buffer(struct brw_cs_prog_data *cs_prog_data,
764 uint32_t *dst);
765
766
767 /* iris_blit.c */
768 void iris_blorp_surf_for_resource(struct iris_vtable *vtbl,
769 struct blorp_surf *surf,
770 struct pipe_resource *p_res,
771 enum isl_aux_usage aux_usage,
772 unsigned level,
773 bool is_render_target);
774 void iris_copy_region(struct blorp_context *blorp,
775 struct iris_batch *batch,
776 struct pipe_resource *dst,
777 unsigned dst_level,
778 unsigned dstx, unsigned dsty, unsigned dstz,
779 struct pipe_resource *src,
780 unsigned src_level,
781 const struct pipe_box *src_box);
782
783 /* iris_draw.c */
784
785 void iris_draw_vbo(struct pipe_context *ctx, const struct pipe_draw_info *info);
786 void iris_launch_grid(struct pipe_context *, const struct pipe_grid_info *);
787
788 /* iris_pipe_control.c */
789
790 void iris_emit_pipe_control_flush(struct iris_batch *batch,
791 const char *reason, uint32_t flags);
792 void iris_emit_pipe_control_write(struct iris_batch *batch,
793 const char *reason, uint32_t flags,
794 struct iris_bo *bo, uint32_t offset,
795 uint64_t imm);
796 void iris_emit_end_of_pipe_sync(struct iris_batch *batch,
797 const char *reason, uint32_t flags);
798
799 void iris_init_flush_functions(struct pipe_context *ctx);
800
801 /* iris_border_color.c */
802
803 void iris_init_border_color_pool(struct iris_context *ice);
804 void iris_destroy_border_color_pool(struct iris_context *ice);
805 void iris_border_color_pool_reserve(struct iris_context *ice, unsigned count);
806 uint32_t iris_upload_border_color(struct iris_context *ice,
807 union pipe_color_union *color);
808
809 /* iris_program.c */
810 void iris_upload_ubo_ssbo_surf_state(struct iris_context *ice,
811 struct pipe_shader_buffer *buf,
812 struct iris_state_ref *surf_state,
813 bool ssbo);
814 const struct shader_info *iris_get_shader_info(const struct iris_context *ice,
815 gl_shader_stage stage);
816 struct iris_bo *iris_get_scratch_space(struct iris_context *ice,
817 unsigned per_thread_scratch,
818 gl_shader_stage stage);
819 uint32_t iris_group_index_to_bti(const struct iris_binding_table *bt,
820 enum iris_surface_group group,
821 uint32_t index);
822 uint32_t iris_bti_to_group_index(const struct iris_binding_table *bt,
823 enum iris_surface_group group,
824 uint32_t bti);
825
826 /* iris_disk_cache.c */
827
828 void iris_disk_cache_store(struct disk_cache *cache,
829 const struct iris_uncompiled_shader *ish,
830 const struct iris_compiled_shader *shader,
831 const void *prog_key,
832 uint32_t prog_key_size);
833 struct iris_compiled_shader *
834 iris_disk_cache_retrieve(struct iris_context *ice,
835 const struct iris_uncompiled_shader *ish,
836 const void *prog_key,
837 uint32_t prog_key_size);
838
839 /* iris_program_cache.c */
840
841 void iris_init_program_cache(struct iris_context *ice);
842 void iris_destroy_program_cache(struct iris_context *ice);
843 void iris_print_program_cache(struct iris_context *ice);
844 struct iris_compiled_shader *iris_find_cached_shader(struct iris_context *ice,
845 enum iris_program_cache_id,
846 uint32_t key_size,
847 const void *key);
848 struct iris_compiled_shader *iris_upload_shader(struct iris_context *ice,
849 enum iris_program_cache_id,
850 uint32_t key_size,
851 const void *key,
852 const void *assembly,
853 struct brw_stage_prog_data *,
854 uint32_t *streamout,
855 enum brw_param_builtin *sysv,
856 unsigned num_system_values,
857 unsigned num_cbufs,
858 const struct iris_binding_table *bt);
859 const void *iris_find_previous_compile(const struct iris_context *ice,
860 enum iris_program_cache_id cache_id,
861 unsigned program_string_id);
862 bool iris_blorp_lookup_shader(struct blorp_batch *blorp_batch,
863 const void *key,
864 uint32_t key_size,
865 uint32_t *kernel_out,
866 void *prog_data_out);
867 bool iris_blorp_upload_shader(struct blorp_batch *blorp_batch,
868 const void *key, uint32_t key_size,
869 const void *kernel, uint32_t kernel_size,
870 const struct brw_stage_prog_data *prog_data,
871 uint32_t prog_data_size,
872 uint32_t *kernel_out,
873 void *prog_data_out);
874
875 /* iris_resolve.c */
876
877 void iris_predraw_resolve_inputs(struct iris_context *ice,
878 struct iris_batch *batch,
879 bool *draw_aux_buffer_disabled,
880 gl_shader_stage stage,
881 bool consider_framebuffer);
882 void iris_predraw_resolve_framebuffer(struct iris_context *ice,
883 struct iris_batch *batch,
884 bool *draw_aux_buffer_disabled);
885 void iris_postdraw_update_resolve_tracking(struct iris_context *ice,
886 struct iris_batch *batch);
887 void iris_cache_sets_clear(struct iris_batch *batch);
888 void iris_flush_depth_and_render_caches(struct iris_batch *batch);
889 void iris_cache_flush_for_read(struct iris_batch *batch, struct iris_bo *bo);
890 void iris_cache_flush_for_render(struct iris_batch *batch,
891 struct iris_bo *bo,
892 enum isl_format format,
893 enum isl_aux_usage aux_usage);
894 void iris_render_cache_add_bo(struct iris_batch *batch,
895 struct iris_bo *bo,
896 enum isl_format format,
897 enum isl_aux_usage aux_usage);
898 void iris_cache_flush_for_depth(struct iris_batch *batch, struct iris_bo *bo);
899 void iris_depth_cache_add_bo(struct iris_batch *batch, struct iris_bo *bo);
900 int iris_get_driver_query_info(struct pipe_screen *pscreen, unsigned index,
901 struct pipe_driver_query_info *info);
902 int iris_get_driver_query_group_info(struct pipe_screen *pscreen,
903 unsigned index,
904 struct pipe_driver_query_group_info *info);
905
906 /* iris_state.c */
907 void gen9_toggle_preemption(struct iris_context *ice,
908 struct iris_batch *batch,
909 const struct pipe_draw_info *draw);
910
911 #ifdef genX
912 # include "iris_genx_protos.h"
913 #else
914 # define genX(x) gen4_##x
915 # include "iris_genx_protos.h"
916 # undef genX
917 # define genX(x) gen5_##x
918 # include "iris_genx_protos.h"
919 # undef genX
920 # define genX(x) gen6_##x
921 # include "iris_genx_protos.h"
922 # undef genX
923 # define genX(x) gen7_##x
924 # include "iris_genx_protos.h"
925 # undef genX
926 # define genX(x) gen75_##x
927 # include "iris_genx_protos.h"
928 # undef genX
929 # define genX(x) gen8_##x
930 # include "iris_genx_protos.h"
931 # undef genX
932 # define genX(x) gen9_##x
933 # include "iris_genx_protos.h"
934 # undef genX
935 # define genX(x) gen10_##x
936 # include "iris_genx_protos.h"
937 # undef genX
938 # define genX(x) gen11_##x
939 # include "iris_genx_protos.h"
940 # undef genX
941 #endif
942
943 #endif