radeonsi: use the new run-time linker for shaders
[mesa.git] / src / gallium / drivers / radeonsi / si_pipe.h
1 /*
2 * Copyright 2010 Jerome Glisse <glisse@freedesktop.org>
3 * Copyright 2018 Advanced Micro Devices, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * on the rights to use, copy, modify, merge, publish, distribute, sub
10 * license, and/or sell copies of the Software, and to permit persons to whom
11 * the Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
21 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
22 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
23 * USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25 #ifndef SI_PIPE_H
26 #define SI_PIPE_H
27
28 #include "si_shader.h"
29 #include "si_state.h"
30
31 #include "util/u_dynarray.h"
32 #include "util/u_idalloc.h"
33 #include "util/u_threaded_context.h"
34
35 #ifdef PIPE_ARCH_BIG_ENDIAN
36 #define SI_BIG_ENDIAN 1
37 #else
38 #define SI_BIG_ENDIAN 0
39 #endif
40
41 #define ATI_VENDOR_ID 0x1002
42 #define SI_PRIM_DISCARD_DEBUG 0
43 #define SI_NOT_QUERY 0xffffffff
44
45 /* The base vertex and primitive restart can be any number, but we must pick
46 * one which will mean "unknown" for the purpose of state tracking and
47 * the number shouldn't be a commonly-used one. */
48 #define SI_BASE_VERTEX_UNKNOWN INT_MIN
49 #define SI_RESTART_INDEX_UNKNOWN INT_MIN
50 #define SI_INSTANCE_COUNT_UNKNOWN INT_MIN
51 #define SI_NUM_SMOOTH_AA_SAMPLES 8
52 #define SI_MAX_POINT_SIZE 2048
53 #define SI_GS_PER_ES 128
54 /* Alignment for optimal CP DMA performance. */
55 #define SI_CPDMA_ALIGNMENT 32
56
57 /* Tunables for compute-based clear_buffer and copy_buffer: */
58 #define SI_COMPUTE_CLEAR_DW_PER_THREAD 4
59 #define SI_COMPUTE_COPY_DW_PER_THREAD 4
60 #define SI_COMPUTE_DST_CACHE_POLICY L2_STREAM
61
62 /* Pipeline & streamout query controls. */
63 #define SI_CONTEXT_START_PIPELINE_STATS (1 << 0)
64 #define SI_CONTEXT_STOP_PIPELINE_STATS (1 << 1)
65 #define SI_CONTEXT_FLUSH_FOR_RENDER_COND (1 << 2)
66 /* Instruction cache. */
67 #define SI_CONTEXT_INV_ICACHE (1 << 3)
68 /* SMEM L1, other names: KCACHE, constant cache, DCACHE, data cache */
69 #define SI_CONTEXT_INV_SMEM_L1 (1 << 4)
70 /* VMEM L1 can optionally be bypassed (GLC=1). Other names: TC L1 */
71 #define SI_CONTEXT_INV_VMEM_L1 (1 << 5)
72 /* Used by everything except CB/DB, can be bypassed (SLC=1). Other names: TC L2 */
73 #define SI_CONTEXT_INV_GLOBAL_L2 (1 << 6)
74 /* Write dirty L2 lines back to memory (shader and CP DMA stores), but don't
75 * invalidate L2. GFX6-GFX7 can't do it, so they will do complete invalidation. */
76 #define SI_CONTEXT_WRITEBACK_GLOBAL_L2 (1 << 7)
77 /* Writeback & invalidate the L2 metadata cache. It can only be coupled with
78 * a CB or DB flush. */
79 #define SI_CONTEXT_INV_L2_METADATA (1 << 8)
80 /* Framebuffer caches. */
81 #define SI_CONTEXT_FLUSH_AND_INV_DB (1 << 9)
82 #define SI_CONTEXT_FLUSH_AND_INV_DB_META (1 << 10)
83 #define SI_CONTEXT_FLUSH_AND_INV_CB (1 << 11)
84 /* Engine synchronization. */
85 #define SI_CONTEXT_VS_PARTIAL_FLUSH (1 << 12)
86 #define SI_CONTEXT_PS_PARTIAL_FLUSH (1 << 13)
87 #define SI_CONTEXT_CS_PARTIAL_FLUSH (1 << 14)
88 #define SI_CONTEXT_VGT_FLUSH (1 << 15)
89 #define SI_CONTEXT_VGT_STREAMOUT_SYNC (1 << 16)
90
91 #define SI_PREFETCH_VBO_DESCRIPTORS (1 << 0)
92 #define SI_PREFETCH_LS (1 << 1)
93 #define SI_PREFETCH_HS (1 << 2)
94 #define SI_PREFETCH_ES (1 << 3)
95 #define SI_PREFETCH_GS (1 << 4)
96 #define SI_PREFETCH_VS (1 << 5)
97 #define SI_PREFETCH_PS (1 << 6)
98
99 #define SI_MAX_BORDER_COLORS 4096
100 #define SI_MAX_VIEWPORTS 16
101 #define SIX_BITS 0x3F
102 #define SI_MAP_BUFFER_ALIGNMENT 64
103 #define SI_MAX_VARIABLE_THREADS_PER_BLOCK 1024
104
105 #define SI_RESOURCE_FLAG_TRANSFER (PIPE_RESOURCE_FLAG_DRV_PRIV << 0)
106 #define SI_RESOURCE_FLAG_FLUSHED_DEPTH (PIPE_RESOURCE_FLAG_DRV_PRIV << 1)
107 #define SI_RESOURCE_FLAG_FORCE_MSAA_TILING (PIPE_RESOURCE_FLAG_DRV_PRIV << 2)
108 #define SI_RESOURCE_FLAG_DISABLE_DCC (PIPE_RESOURCE_FLAG_DRV_PRIV << 3)
109 #define SI_RESOURCE_FLAG_UNMAPPABLE (PIPE_RESOURCE_FLAG_DRV_PRIV << 4)
110 #define SI_RESOURCE_FLAG_READ_ONLY (PIPE_RESOURCE_FLAG_DRV_PRIV << 5)
111 #define SI_RESOURCE_FLAG_32BIT (PIPE_RESOURCE_FLAG_DRV_PRIV << 6)
112 #define SI_RESOURCE_FLAG_CLEAR (PIPE_RESOURCE_FLAG_DRV_PRIV << 7)
113 /* For const_uploader, upload data via GTT and copy to VRAM on context flush via SDMA. */
114 #define SI_RESOURCE_FLAG_UPLOAD_FLUSH_EXPLICIT_VIA_SDMA (PIPE_RESOURCE_FLAG_DRV_PRIV << 8)
115
116 enum si_clear_code
117 {
118 DCC_CLEAR_COLOR_0000 = 0x00000000,
119 DCC_CLEAR_COLOR_0001 = 0x40404040,
120 DCC_CLEAR_COLOR_1110 = 0x80808080,
121 DCC_CLEAR_COLOR_1111 = 0xC0C0C0C0,
122 DCC_CLEAR_COLOR_REG = 0x20202020,
123 DCC_UNCOMPRESSED = 0xFFFFFFFF,
124 };
125
126 #define SI_IMAGE_ACCESS_AS_BUFFER (1 << 7)
127
128 /* Debug flags. */
129 enum {
130 /* Shader logging options: */
131 DBG_VS = PIPE_SHADER_VERTEX,
132 DBG_PS = PIPE_SHADER_FRAGMENT,
133 DBG_GS = PIPE_SHADER_GEOMETRY,
134 DBG_TCS = PIPE_SHADER_TESS_CTRL,
135 DBG_TES = PIPE_SHADER_TESS_EVAL,
136 DBG_CS = PIPE_SHADER_COMPUTE,
137 DBG_NO_IR,
138 DBG_NO_TGSI,
139 DBG_NO_ASM,
140 DBG_PREOPT_IR,
141
142 /* Shader compiler options the shader cache should be aware of: */
143 DBG_FS_CORRECT_DERIVS_AFTER_KILL,
144 DBG_UNSAFE_MATH,
145 DBG_SI_SCHED,
146 DBG_GISEL,
147
148 /* Shader compiler options (with no effect on the shader cache): */
149 DBG_CHECK_IR,
150 DBG_MONOLITHIC_SHADERS,
151 DBG_NO_OPT_VARIANT,
152
153 /* Information logging options: */
154 DBG_INFO,
155 DBG_TEX,
156 DBG_COMPUTE,
157 DBG_VM,
158
159 /* Driver options: */
160 DBG_FORCE_DMA,
161 DBG_NO_ASYNC_DMA,
162 DBG_NO_WC,
163 DBG_CHECK_VM,
164 DBG_RESERVE_VMID,
165 DBG_ZERO_VRAM,
166
167 /* 3D engine options: */
168 DBG_ALWAYS_PD,
169 DBG_PD,
170 DBG_NO_PD,
171 DBG_SWITCH_ON_EOP,
172 DBG_NO_OUT_OF_ORDER,
173 DBG_NO_DPBB,
174 DBG_NO_DFSM,
175 DBG_DPBB,
176 DBG_DFSM,
177 DBG_NO_HYPERZ,
178 DBG_NO_RB_PLUS,
179 DBG_NO_2D_TILING,
180 DBG_NO_TILING,
181 DBG_NO_DCC,
182 DBG_NO_DCC_CLEAR,
183 DBG_NO_DCC_FB,
184 DBG_NO_DCC_MSAA,
185 DBG_NO_FMASK,
186
187 /* Tests: */
188 DBG_TEST_DMA,
189 DBG_TEST_VMFAULT_CP,
190 DBG_TEST_VMFAULT_SDMA,
191 DBG_TEST_VMFAULT_SHADER,
192 DBG_TEST_DMA_PERF,
193 DBG_TEST_GDS,
194 DBG_TEST_GDS_MM,
195 DBG_TEST_GDS_OA_MM,
196 };
197
198 #define DBG_ALL_SHADERS (((1 << (DBG_CS + 1)) - 1))
199 #define DBG(name) (1ull << DBG_##name)
200
201 enum si_cache_policy {
202 L2_BYPASS,
203 L2_STREAM, /* same as SLC=1 */
204 L2_LRU, /* same as SLC=0 */
205 };
206
207 enum si_coherency {
208 SI_COHERENCY_NONE, /* no cache flushes needed */
209 SI_COHERENCY_SHADER,
210 SI_COHERENCY_CB_META,
211 SI_COHERENCY_CP,
212 };
213
214 struct si_compute;
215 struct si_shader_context;
216 struct hash_table;
217 struct u_suballocator;
218
219 /* Only 32-bit buffer allocations are supported, gallium doesn't support more
220 * at the moment.
221 */
222 struct si_resource {
223 struct threaded_resource b;
224
225 /* Winsys objects. */
226 struct pb_buffer *buf;
227 uint64_t gpu_address;
228 /* Memory usage if the buffer placement is optimal. */
229 uint64_t vram_usage;
230 uint64_t gart_usage;
231
232 /* Resource properties. */
233 uint64_t bo_size;
234 unsigned bo_alignment;
235 enum radeon_bo_domain domains;
236 enum radeon_bo_flag flags;
237 unsigned bind_history;
238 int max_forced_staging_uploads;
239
240 /* The buffer range which is initialized (with a write transfer,
241 * streamout, DMA, or as a random access target). The rest of
242 * the buffer is considered invalid and can be mapped unsynchronized.
243 *
244 * This allows unsychronized mapping of a buffer range which hasn't
245 * been used yet. It's for applications which forget to use
246 * the unsynchronized map flag and expect the driver to figure it out.
247 */
248 struct util_range valid_buffer_range;
249
250 /* For buffers only. This indicates that a write operation has been
251 * performed by TC L2, but the cache hasn't been flushed.
252 * Any hw block which doesn't use or bypasses TC L2 should check this
253 * flag and flush the cache before using the buffer.
254 *
255 * For example, TC L2 must be flushed if a buffer which has been
256 * modified by a shader store instruction is about to be used as
257 * an index buffer. The reason is that VGT DMA index fetching doesn't
258 * use TC L2.
259 */
260 bool TC_L2_dirty;
261
262 /* Whether this resource is referenced by bindless handles. */
263 bool texture_handle_allocated;
264 bool image_handle_allocated;
265
266 /* Whether the resource has been exported via resource_get_handle. */
267 unsigned external_usage; /* PIPE_HANDLE_USAGE_* */
268 };
269
270 struct si_transfer {
271 struct threaded_transfer b;
272 struct si_resource *staging;
273 unsigned offset;
274 };
275
276 struct si_texture {
277 struct si_resource buffer;
278
279 struct radeon_surf surface;
280 uint64_t size;
281 struct si_texture *flushed_depth_texture;
282
283 /* One texture allocation can contain these buffers:
284 * - image (pixel data)
285 * - FMASK buffer (MSAA compression)
286 * - CMASK buffer (MSAA compression and/or legacy fast color clear)
287 * - HTILE buffer (Z/S compression and fast Z/S clear)
288 * - DCC buffer (color compression and new fast color clear)
289 * - displayable DCC buffer (if the DCC buffer is not displayable)
290 * - DCC retile mapping buffer (if the DCC buffer is not displayable)
291 */
292 uint64_t fmask_offset;
293 uint64_t cmask_offset;
294 uint64_t cmask_base_address_reg;
295 struct si_resource *cmask_buffer;
296 uint64_t dcc_offset; /* 0 = disabled */
297 uint64_t display_dcc_offset;
298 uint64_t dcc_retile_map_offset;
299 unsigned cb_color_info; /* fast clear enable bit */
300 unsigned color_clear_value[2];
301 unsigned last_msaa_resolve_target_micro_mode;
302 unsigned num_level0_transfers;
303
304 /* Depth buffer compression and fast clear. */
305 uint64_t htile_offset;
306 float depth_clear_value;
307 uint16_t dirty_level_mask; /* each bit says if that mipmap is compressed */
308 uint16_t stencil_dirty_level_mask; /* each bit says if that mipmap is compressed */
309 enum pipe_format db_render_format:16;
310 uint8_t stencil_clear_value;
311 bool tc_compatible_htile:1;
312 bool depth_cleared:1; /* if it was cleared at least once */
313 bool stencil_cleared:1; /* if it was cleared at least once */
314 bool upgraded_depth:1; /* upgraded from unorm to Z32_FLOAT */
315 bool is_depth:1;
316 bool db_compatible:1;
317 bool can_sample_z:1;
318 bool can_sample_s:1;
319
320 /* We need to track DCC dirtiness, because st/dri usually calls
321 * flush_resource twice per frame (not a bug) and we don't wanna
322 * decompress DCC twice. Also, the dirty tracking must be done even
323 * if DCC isn't used, because it's required by the DCC usage analysis
324 * for a possible future enablement.
325 */
326 bool separate_dcc_dirty:1;
327 /* Statistics gathering for the DCC enablement heuristic. */
328 bool dcc_gather_statistics:1;
329 /* Counter that should be non-zero if the texture is bound to a
330 * framebuffer.
331 */
332 unsigned framebuffers_bound;
333 /* Whether the texture is a displayable back buffer and needs DCC
334 * decompression, which is expensive. Therefore, it's enabled only
335 * if statistics suggest that it will pay off and it's allocated
336 * separately. It can't be bound as a sampler by apps. Limited to
337 * target == 2D and last_level == 0. If enabled, dcc_offset contains
338 * the absolute GPUVM address, not the relative one.
339 */
340 struct si_resource *dcc_separate_buffer;
341 /* When DCC is temporarily disabled, the separate buffer is here. */
342 struct si_resource *last_dcc_separate_buffer;
343 /* Estimate of how much this color buffer is written to in units of
344 * full-screen draws: ps_invocations / (width * height)
345 * Shader kills, late Z, and blending with trivial discards make it
346 * inaccurate (we need to count CB updates, not PS invocations).
347 */
348 unsigned ps_draw_ratio;
349 /* The number of clears since the last DCC usage analysis. */
350 unsigned num_slow_clears;
351 };
352
353 struct si_surface {
354 struct pipe_surface base;
355
356 /* These can vary with block-compressed textures. */
357 uint16_t width0;
358 uint16_t height0;
359
360 bool color_initialized:1;
361 bool depth_initialized:1;
362
363 /* Misc. color flags. */
364 bool color_is_int8:1;
365 bool color_is_int10:1;
366 bool dcc_incompatible:1;
367
368 /* Color registers. */
369 unsigned cb_color_info;
370 unsigned cb_color_view;
371 unsigned cb_color_attrib;
372 unsigned cb_color_attrib2; /* GFX9 and later */
373 unsigned cb_dcc_control; /* GFX8 and later */
374 unsigned spi_shader_col_format:8; /* no blending, no alpha-to-coverage. */
375 unsigned spi_shader_col_format_alpha:8; /* alpha-to-coverage */
376 unsigned spi_shader_col_format_blend:8; /* blending without alpha. */
377 unsigned spi_shader_col_format_blend_alpha:8; /* blending with alpha. */
378
379 /* DB registers. */
380 uint64_t db_depth_base; /* DB_Z_READ/WRITE_BASE */
381 uint64_t db_stencil_base;
382 uint64_t db_htile_data_base;
383 unsigned db_depth_info;
384 unsigned db_z_info;
385 unsigned db_z_info2; /* GFX9+ */
386 unsigned db_depth_view;
387 unsigned db_depth_size;
388 unsigned db_depth_slice;
389 unsigned db_stencil_info;
390 unsigned db_stencil_info2; /* GFX9+ */
391 unsigned db_htile_surface;
392 };
393
394 struct si_mmio_counter {
395 unsigned busy;
396 unsigned idle;
397 };
398
399 union si_mmio_counters {
400 struct {
401 /* For global GPU load including SDMA. */
402 struct si_mmio_counter gpu;
403
404 /* GRBM_STATUS */
405 struct si_mmio_counter spi;
406 struct si_mmio_counter gui;
407 struct si_mmio_counter ta;
408 struct si_mmio_counter gds;
409 struct si_mmio_counter vgt;
410 struct si_mmio_counter ia;
411 struct si_mmio_counter sx;
412 struct si_mmio_counter wd;
413 struct si_mmio_counter bci;
414 struct si_mmio_counter sc;
415 struct si_mmio_counter pa;
416 struct si_mmio_counter db;
417 struct si_mmio_counter cp;
418 struct si_mmio_counter cb;
419
420 /* SRBM_STATUS2 */
421 struct si_mmio_counter sdma;
422
423 /* CP_STAT */
424 struct si_mmio_counter pfp;
425 struct si_mmio_counter meq;
426 struct si_mmio_counter me;
427 struct si_mmio_counter surf_sync;
428 struct si_mmio_counter cp_dma;
429 struct si_mmio_counter scratch_ram;
430 } named;
431 unsigned array[0];
432 };
433
434 struct si_memory_object {
435 struct pipe_memory_object b;
436 struct pb_buffer *buf;
437 uint32_t stride;
438 };
439
440 /* Saved CS data for debugging features. */
441 struct radeon_saved_cs {
442 uint32_t *ib;
443 unsigned num_dw;
444
445 struct radeon_bo_list_item *bo_list;
446 unsigned bo_count;
447 };
448
449 struct si_screen {
450 struct pipe_screen b;
451 struct radeon_winsys *ws;
452 struct disk_cache *disk_shader_cache;
453
454 struct radeon_info info;
455 uint64_t debug_flags;
456 char renderer_string[183];
457
458 unsigned pa_sc_raster_config;
459 unsigned pa_sc_raster_config_1;
460 unsigned se_tile_repeat;
461 unsigned gs_table_depth;
462 unsigned tess_offchip_block_dw_size;
463 unsigned tess_offchip_ring_size;
464 unsigned tess_factor_ring_size;
465 unsigned vgt_hs_offchip_param;
466 unsigned eqaa_force_coverage_samples;
467 unsigned eqaa_force_z_samples;
468 unsigned eqaa_force_color_samples;
469 bool has_clear_state;
470 bool has_distributed_tess;
471 bool has_draw_indirect_multi;
472 bool has_out_of_order_rast;
473 bool assume_no_z_fights;
474 bool commutative_blend_add;
475 bool has_gfx9_scissor_bug;
476 bool has_msaa_sample_loc_bug;
477 bool has_ls_vgpr_init_bug;
478 bool has_dcc_constant_encode;
479 bool dpbb_allowed;
480 bool dfsm_allowed;
481 bool llvm_has_working_vgpr_indexing;
482
483 struct {
484 #define OPT_BOOL(name, dflt, description) bool name:1;
485 #include "si_debug_options.h"
486 } options;
487
488 /* Whether shaders are monolithic (1-part) or separate (3-part). */
489 bool use_monolithic_shaders;
490 bool record_llvm_ir;
491 bool has_rbplus; /* if RB+ registers exist */
492 bool rbplus_allowed; /* if RB+ is allowed */
493 bool dcc_msaa_allowed;
494 bool cpdma_prefetch_writes_memory;
495
496 struct slab_parent_pool pool_transfers;
497
498 /* Texture filter settings. */
499 int force_aniso; /* -1 = disabled */
500
501 /* Auxiliary context. Mainly used to initialize resources.
502 * It must be locked prior to using and flushed before unlocking. */
503 struct pipe_context *aux_context;
504 mtx_t aux_context_lock;
505
506 /* This must be in the screen, because UE4 uses one context for
507 * compilation and another one for rendering.
508 */
509 unsigned num_compilations;
510 /* Along with ST_DEBUG=precompile, this should show if applications
511 * are loading shaders on demand. This is a monotonic counter.
512 */
513 unsigned num_shaders_created;
514 unsigned num_shader_cache_hits;
515
516 /* GPU load thread. */
517 mtx_t gpu_load_mutex;
518 thrd_t gpu_load_thread;
519 union si_mmio_counters mmio_counters;
520 volatile unsigned gpu_load_stop_thread; /* bool */
521
522 /* Performance counters. */
523 struct si_perfcounters *perfcounters;
524
525 /* If pipe_screen wants to recompute and re-emit the framebuffer,
526 * sampler, and image states of all contexts, it should atomically
527 * increment this.
528 *
529 * Each context will compare this with its own last known value of
530 * the counter before drawing and re-emit the states accordingly.
531 */
532 unsigned dirty_tex_counter;
533 unsigned dirty_buf_counter;
534
535 /* Atomically increment this counter when an existing texture's
536 * metadata is enabled or disabled in a way that requires changing
537 * contexts' compressed texture binding masks.
538 */
539 unsigned compressed_colortex_counter;
540
541 struct {
542 /* Context flags to set so that all writes from earlier jobs
543 * in the CP are seen by L2 clients.
544 */
545 unsigned cp_to_L2;
546
547 /* Context flags to set so that all writes from earlier jobs
548 * that end in L2 are seen by CP.
549 */
550 unsigned L2_to_cp;
551 } barrier_flags;
552
553 mtx_t shader_parts_mutex;
554 struct si_shader_part *vs_prologs;
555 struct si_shader_part *tcs_epilogs;
556 struct si_shader_part *gs_prologs;
557 struct si_shader_part *ps_prologs;
558 struct si_shader_part *ps_epilogs;
559
560 /* Shader cache in memory.
561 *
562 * Design & limitations:
563 * - The shader cache is per screen (= per process), never saved to
564 * disk, and skips redundant shader compilations from TGSI to bytecode.
565 * - It can only be used with one-variant-per-shader support, in which
566 * case only the main (typically middle) part of shaders is cached.
567 * - Only VS, TCS, TES, PS are cached, out of which only the hw VS
568 * variants of VS and TES are cached, so LS and ES aren't.
569 * - GS and CS aren't cached, but it's certainly possible to cache
570 * those as well.
571 */
572 mtx_t shader_cache_mutex;
573 struct hash_table *shader_cache;
574
575 /* Shader compiler queue for multithreaded compilation. */
576 struct util_queue shader_compiler_queue;
577 /* Use at most 3 normal compiler threads on quadcore and better.
578 * Hyperthreaded CPUs report the number of threads, but we want
579 * the number of cores. We only need this many threads for shader-db. */
580 struct ac_llvm_compiler compiler[24]; /* used by the queue only */
581
582 struct util_queue shader_compiler_queue_low_priority;
583 /* Use at most 2 low priority threads on quadcore and better.
584 * We want to minimize the impact on multithreaded Mesa. */
585 struct ac_llvm_compiler compiler_lowp[10];
586 };
587
588 struct si_blend_color {
589 struct pipe_blend_color state;
590 bool any_nonzeros;
591 };
592
593 struct si_sampler_view {
594 struct pipe_sampler_view base;
595 /* [0..7] = image descriptor
596 * [4..7] = buffer descriptor */
597 uint32_t state[8];
598 uint32_t fmask_state[8];
599 const struct legacy_surf_level *base_level_info;
600 ubyte base_level;
601 ubyte block_width;
602 bool is_stencil_sampler;
603 bool is_integer;
604 bool dcc_incompatible;
605 };
606
607 #define SI_SAMPLER_STATE_MAGIC 0x34f1c35a
608
609 struct si_sampler_state {
610 #ifndef NDEBUG
611 unsigned magic;
612 #endif
613 uint32_t val[4];
614 uint32_t integer_val[4];
615 uint32_t upgraded_depth_val[4];
616 };
617
618 struct si_cs_shader_state {
619 struct si_compute *program;
620 struct si_compute *emitted_program;
621 unsigned offset;
622 bool initialized;
623 bool uses_scratch;
624 };
625
626 struct si_samplers {
627 struct pipe_sampler_view *views[SI_NUM_SAMPLERS];
628 struct si_sampler_state *sampler_states[SI_NUM_SAMPLERS];
629
630 /* The i-th bit is set if that element is enabled (non-NULL resource). */
631 unsigned enabled_mask;
632 uint32_t needs_depth_decompress_mask;
633 uint32_t needs_color_decompress_mask;
634 };
635
636 struct si_images {
637 struct pipe_image_view views[SI_NUM_IMAGES];
638 uint32_t needs_color_decompress_mask;
639 unsigned enabled_mask;
640 };
641
642 struct si_framebuffer {
643 struct pipe_framebuffer_state state;
644 unsigned colorbuf_enabled_4bit;
645 unsigned spi_shader_col_format;
646 unsigned spi_shader_col_format_alpha;
647 unsigned spi_shader_col_format_blend;
648 unsigned spi_shader_col_format_blend_alpha;
649 ubyte nr_samples:5; /* at most 16xAA */
650 ubyte log_samples:3; /* at most 4 = 16xAA */
651 ubyte nr_color_samples; /* at most 8xAA */
652 ubyte compressed_cb_mask;
653 ubyte uncompressed_cb_mask;
654 ubyte color_is_int8;
655 ubyte color_is_int10;
656 ubyte dirty_cbufs;
657 ubyte dcc_overwrite_combiner_watermark;
658 bool dirty_zsbuf;
659 bool any_dst_linear;
660 bool CB_has_shader_readable_metadata;
661 bool DB_has_shader_readable_metadata;
662 bool all_DCC_pipe_aligned;
663 };
664
665 enum si_quant_mode {
666 /* This is the list we want to support. */
667 SI_QUANT_MODE_16_8_FIXED_POINT_1_256TH,
668 SI_QUANT_MODE_14_10_FIXED_POINT_1_1024TH,
669 SI_QUANT_MODE_12_12_FIXED_POINT_1_4096TH,
670 };
671
672 struct si_signed_scissor {
673 int minx;
674 int miny;
675 int maxx;
676 int maxy;
677 enum si_quant_mode quant_mode;
678 };
679
680 struct si_viewports {
681 struct pipe_viewport_state states[SI_MAX_VIEWPORTS];
682 struct si_signed_scissor as_scissor[SI_MAX_VIEWPORTS];
683 bool y_inverted;
684 };
685
686 struct si_clip_state {
687 struct pipe_clip_state state;
688 bool any_nonzeros;
689 };
690
691 struct si_streamout_target {
692 struct pipe_stream_output_target b;
693
694 /* The buffer where BUFFER_FILLED_SIZE is stored. */
695 struct si_resource *buf_filled_size;
696 unsigned buf_filled_size_offset;
697 bool buf_filled_size_valid;
698
699 unsigned stride_in_dw;
700 };
701
702 struct si_streamout {
703 bool begin_emitted;
704
705 unsigned enabled_mask;
706 unsigned num_targets;
707 struct si_streamout_target *targets[PIPE_MAX_SO_BUFFERS];
708
709 unsigned append_bitmask;
710 bool suspended;
711
712 /* External state which comes from the vertex shader,
713 * it must be set explicitly when binding a shader. */
714 uint16_t *stride_in_dw;
715 unsigned enabled_stream_buffers_mask; /* stream0 buffers0-3 in 4 LSB */
716
717 /* The state of VGT_STRMOUT_BUFFER_(CONFIG|EN). */
718 unsigned hw_enabled_mask;
719
720 /* The state of VGT_STRMOUT_(CONFIG|EN). */
721 bool streamout_enabled;
722 bool prims_gen_query_enabled;
723 int num_prims_gen_queries;
724 };
725
726 /* A shader state consists of the shader selector, which is a constant state
727 * object shared by multiple contexts and shouldn't be modified, and
728 * the current shader variant selected for this context.
729 */
730 struct si_shader_ctx_state {
731 struct si_shader_selector *cso;
732 struct si_shader *current;
733 };
734
735 #define SI_NUM_VGT_PARAM_KEY_BITS 12
736 #define SI_NUM_VGT_PARAM_STATES (1 << SI_NUM_VGT_PARAM_KEY_BITS)
737
738 /* The IA_MULTI_VGT_PARAM key used to index the table of precomputed values.
739 * Some fields are set by state-change calls, most are set by draw_vbo.
740 */
741 union si_vgt_param_key {
742 struct {
743 #ifdef PIPE_ARCH_LITTLE_ENDIAN
744 unsigned prim:4;
745 unsigned uses_instancing:1;
746 unsigned multi_instances_smaller_than_primgroup:1;
747 unsigned primitive_restart:1;
748 unsigned count_from_stream_output:1;
749 unsigned line_stipple_enabled:1;
750 unsigned uses_tess:1;
751 unsigned tess_uses_prim_id:1;
752 unsigned uses_gs:1;
753 unsigned _pad:32 - SI_NUM_VGT_PARAM_KEY_BITS;
754 #else /* PIPE_ARCH_BIG_ENDIAN */
755 unsigned _pad:32 - SI_NUM_VGT_PARAM_KEY_BITS;
756 unsigned uses_gs:1;
757 unsigned tess_uses_prim_id:1;
758 unsigned uses_tess:1;
759 unsigned line_stipple_enabled:1;
760 unsigned count_from_stream_output:1;
761 unsigned primitive_restart:1;
762 unsigned multi_instances_smaller_than_primgroup:1;
763 unsigned uses_instancing:1;
764 unsigned prim:4;
765 #endif
766 } u;
767 uint32_t index;
768 };
769
770 struct si_texture_handle
771 {
772 unsigned desc_slot;
773 bool desc_dirty;
774 struct pipe_sampler_view *view;
775 struct si_sampler_state sstate;
776 };
777
778 struct si_image_handle
779 {
780 unsigned desc_slot;
781 bool desc_dirty;
782 struct pipe_image_view view;
783 };
784
785 struct si_saved_cs {
786 struct pipe_reference reference;
787 struct si_context *ctx;
788 struct radeon_saved_cs gfx;
789 struct radeon_saved_cs compute;
790 struct si_resource *trace_buf;
791 unsigned trace_id;
792
793 unsigned gfx_last_dw;
794 unsigned compute_last_dw;
795 bool flushed;
796 int64_t time_flush;
797 };
798
799 struct si_sdma_upload {
800 struct si_resource *dst;
801 struct si_resource *src;
802 unsigned src_offset;
803 unsigned dst_offset;
804 unsigned size;
805 };
806
807 struct si_context {
808 struct pipe_context b; /* base class */
809
810 enum radeon_family family;
811 enum chip_class chip_class;
812
813 struct radeon_winsys *ws;
814 struct radeon_winsys_ctx *ctx;
815 struct radeon_cmdbuf *gfx_cs; /* compute IB if graphics is disabled */
816 struct radeon_cmdbuf *dma_cs;
817 struct pipe_fence_handle *last_gfx_fence;
818 struct pipe_fence_handle *last_sdma_fence;
819 struct si_resource *eop_bug_scratch;
820 struct u_upload_mgr *cached_gtt_allocator;
821 struct threaded_context *tc;
822 struct u_suballocator *allocator_zeroed_memory;
823 struct slab_child_pool pool_transfers;
824 struct slab_child_pool pool_transfers_unsync; /* for threaded_context */
825 struct pipe_device_reset_callback device_reset_callback;
826 struct u_log_context *log;
827 void *query_result_shader;
828 struct blitter_context *blitter;
829 void *custom_dsa_flush;
830 void *custom_blend_resolve;
831 void *custom_blend_fmask_decompress;
832 void *custom_blend_eliminate_fastclear;
833 void *custom_blend_dcc_decompress;
834 void *vs_blit_pos;
835 void *vs_blit_pos_layered;
836 void *vs_blit_color;
837 void *vs_blit_color_layered;
838 void *vs_blit_texcoord;
839 void *cs_clear_buffer;
840 void *cs_copy_buffer;
841 void *cs_copy_image;
842 void *cs_copy_image_1d_array;
843 void *cs_clear_render_target;
844 void *cs_clear_render_target_1d_array;
845 void *cs_dcc_retile;
846 struct si_screen *screen;
847 struct pipe_debug_callback debug;
848 struct ac_llvm_compiler compiler; /* only non-threaded compilation */
849 struct si_shader_ctx_state fixed_func_tcs_shader;
850 /* Offset 0: EOP flush number; Offset 4: GDS prim restart counter */
851 struct si_resource *wait_mem_scratch;
852 unsigned wait_mem_number;
853 uint16_t prefetch_L2_mask;
854
855 bool has_graphics;
856 bool gfx_flush_in_progress:1;
857 bool gfx_last_ib_is_busy:1;
858 bool compute_is_busy:1;
859
860 unsigned num_gfx_cs_flushes;
861 unsigned initial_gfx_cs_size;
862 unsigned last_dirty_tex_counter;
863 unsigned last_dirty_buf_counter;
864 unsigned last_compressed_colortex_counter;
865 unsigned last_num_draw_calls;
866 unsigned flags; /* flush flags */
867 /* Current unaccounted memory usage. */
868 uint64_t vram;
869 uint64_t gtt;
870
871 /* Compute-based primitive discard. */
872 unsigned prim_discard_vertex_count_threshold;
873 struct pb_buffer *gds;
874 struct pb_buffer *gds_oa;
875 struct radeon_cmdbuf *prim_discard_compute_cs;
876 unsigned compute_gds_offset;
877 struct si_shader *compute_ib_last_shader;
878 uint32_t compute_rewind_va;
879 unsigned compute_num_prims_in_batch;
880 bool preserve_prim_restart_gds_at_flush;
881 /* index_ring is divided into 2 halves for doublebuffering. */
882 struct si_resource *index_ring;
883 unsigned index_ring_base; /* offset of a per-IB portion */
884 unsigned index_ring_offset; /* offset within a per-IB portion */
885 unsigned index_ring_size_per_ib; /* max available size per IB */
886 bool prim_discard_compute_ib_initialized;
887 /* For tracking the last execution barrier - it can be either
888 * a WRITE_DATA packet or a fence. */
889 uint32_t *last_pkt3_write_data;
890 struct si_resource *barrier_buf;
891 unsigned barrier_buf_offset;
892 struct pipe_fence_handle *last_ib_barrier_fence;
893 struct si_resource *last_ib_barrier_buf;
894 unsigned last_ib_barrier_buf_offset;
895
896 /* Atoms (direct states). */
897 union si_state_atoms atoms;
898 unsigned dirty_atoms; /* mask */
899 /* PM4 states (precomputed immutable states) */
900 unsigned dirty_states;
901 union si_state queued;
902 union si_state emitted;
903
904 /* Atom declarations. */
905 struct si_framebuffer framebuffer;
906 unsigned sample_locs_num_samples;
907 uint16_t sample_mask;
908 unsigned last_cb_target_mask;
909 struct si_blend_color blend_color;
910 struct si_clip_state clip_state;
911 struct si_shader_data shader_pointers;
912 struct si_stencil_ref stencil_ref;
913 struct pipe_scissor_state scissors[SI_MAX_VIEWPORTS];
914 struct si_streamout streamout;
915 struct si_viewports viewports;
916 unsigned num_window_rectangles;
917 bool window_rectangles_include;
918 struct pipe_scissor_state window_rectangles[4];
919
920 /* Precomputed states. */
921 struct si_pm4_state *init_config;
922 struct si_pm4_state *init_config_gs_rings;
923 bool init_config_has_vgt_flush;
924 struct si_pm4_state *vgt_shader_config[4];
925
926 /* shaders */
927 struct si_shader_ctx_state ps_shader;
928 struct si_shader_ctx_state gs_shader;
929 struct si_shader_ctx_state vs_shader;
930 struct si_shader_ctx_state tcs_shader;
931 struct si_shader_ctx_state tes_shader;
932 struct si_shader_ctx_state cs_prim_discard_state;
933 struct si_cs_shader_state cs_shader_state;
934
935 /* shader information */
936 struct si_vertex_elements *vertex_elements;
937 unsigned sprite_coord_enable;
938 unsigned cs_max_waves_per_sh;
939 bool flatshade;
940 bool do_update_shaders;
941
942 /* vertex buffer descriptors */
943 uint32_t *vb_descriptors_gpu_list;
944 struct si_resource *vb_descriptors_buffer;
945 unsigned vb_descriptors_offset;
946
947 /* shader descriptors */
948 struct si_descriptors descriptors[SI_NUM_DESCS];
949 unsigned descriptors_dirty;
950 unsigned shader_pointers_dirty;
951 unsigned shader_needs_decompress_mask;
952 struct si_buffer_resources rw_buffers;
953 struct si_buffer_resources const_and_shader_buffers[SI_NUM_SHADERS];
954 struct si_samplers samplers[SI_NUM_SHADERS];
955 struct si_images images[SI_NUM_SHADERS];
956 bool bo_list_add_all_resident_resources;
957 bool bo_list_add_all_gfx_resources;
958 bool bo_list_add_all_compute_resources;
959
960 /* other shader resources */
961 struct pipe_constant_buffer null_const_buf; /* used for set_constant_buffer(NULL) on GFX7 */
962 struct pipe_resource *esgs_ring;
963 struct pipe_resource *gsvs_ring;
964 struct pipe_resource *tess_rings;
965 union pipe_color_union *border_color_table; /* in CPU memory, any endian */
966 struct si_resource *border_color_buffer;
967 union pipe_color_union *border_color_map; /* in VRAM (slow access), little endian */
968 unsigned border_color_count;
969 unsigned num_vs_blit_sgprs;
970 uint32_t vs_blit_sh_data[SI_VS_BLIT_SGPRS_POS_TEXCOORD];
971 uint32_t cs_user_data[4];
972
973 /* Vertex and index buffers. */
974 bool vertex_buffers_dirty;
975 bool vertex_buffer_pointer_dirty;
976 struct pipe_vertex_buffer vertex_buffer[SI_NUM_VERTEX_BUFFERS];
977 uint16_t vertex_buffer_unaligned; /* bitmask of not dword-aligned buffers */
978
979 /* MSAA config state. */
980 int ps_iter_samples;
981 bool ps_uses_fbfetch;
982 bool smoothing_enabled;
983
984 /* DB render state. */
985 unsigned ps_db_shader_control;
986 unsigned dbcb_copy_sample;
987 bool dbcb_depth_copy_enabled:1;
988 bool dbcb_stencil_copy_enabled:1;
989 bool db_flush_depth_inplace:1;
990 bool db_flush_stencil_inplace:1;
991 bool db_depth_clear:1;
992 bool db_depth_disable_expclear:1;
993 bool db_stencil_clear:1;
994 bool db_stencil_disable_expclear:1;
995 bool occlusion_queries_disabled:1;
996 bool generate_mipmap_for_depth:1;
997
998 /* Emitted draw state. */
999 bool gs_tri_strip_adj_fix:1;
1000 bool ls_vgpr_fix:1;
1001 bool prim_discard_cs_instancing:1;
1002 int last_index_size;
1003 int last_base_vertex;
1004 int last_start_instance;
1005 int last_instance_count;
1006 int last_drawid;
1007 int last_sh_base_reg;
1008 int last_primitive_restart_en;
1009 int last_restart_index;
1010 int last_prim;
1011 int last_multi_vgt_param;
1012 int last_rast_prim;
1013 unsigned last_sc_line_stipple;
1014 unsigned current_vs_state;
1015 unsigned last_vs_state;
1016 enum pipe_prim_type current_rast_prim; /* primitive type after TES, GS */
1017
1018 /* Scratch buffer */
1019 struct si_resource *scratch_buffer;
1020 unsigned scratch_waves;
1021 unsigned spi_tmpring_size;
1022
1023 struct si_resource *compute_scratch_buffer;
1024
1025 /* Emitted derived tessellation state. */
1026 /* Local shader (VS), or HS if LS-HS are merged. */
1027 struct si_shader *last_ls;
1028 struct si_shader_selector *last_tcs;
1029 int last_num_tcs_input_cp;
1030 int last_tes_sh_base;
1031 bool last_tess_uses_primid;
1032 unsigned last_num_patches;
1033 int last_ls_hs_config;
1034
1035 /* Debug state. */
1036 bool is_debug;
1037 struct si_saved_cs *current_saved_cs;
1038 uint64_t dmesg_timestamp;
1039 unsigned apitrace_call_number;
1040
1041 /* Other state */
1042 bool need_check_render_feedback;
1043 bool decompression_enabled;
1044 bool dpbb_force_off;
1045 bool vs_writes_viewport_index;
1046 bool vs_disables_clipping_viewport;
1047
1048 /* Precomputed IA_MULTI_VGT_PARAM */
1049 union si_vgt_param_key ia_multi_vgt_param_key;
1050 unsigned ia_multi_vgt_param[SI_NUM_VGT_PARAM_STATES];
1051
1052 /* Bindless descriptors. */
1053 struct si_descriptors bindless_descriptors;
1054 struct util_idalloc bindless_used_slots;
1055 unsigned num_bindless_descriptors;
1056 bool bindless_descriptors_dirty;
1057 bool graphics_bindless_pointer_dirty;
1058 bool compute_bindless_pointer_dirty;
1059
1060 /* Allocated bindless handles */
1061 struct hash_table *tex_handles;
1062 struct hash_table *img_handles;
1063
1064 /* Resident bindless handles */
1065 struct util_dynarray resident_tex_handles;
1066 struct util_dynarray resident_img_handles;
1067
1068 /* Resident bindless handles which need decompression */
1069 struct util_dynarray resident_tex_needs_color_decompress;
1070 struct util_dynarray resident_img_needs_color_decompress;
1071 struct util_dynarray resident_tex_needs_depth_decompress;
1072
1073 /* Bindless state */
1074 bool uses_bindless_samplers;
1075 bool uses_bindless_images;
1076
1077 /* MSAA sample locations.
1078 * The first index is the sample index.
1079 * The second index is the coordinate: X, Y. */
1080 struct {
1081 float x1[1][2];
1082 float x2[2][2];
1083 float x4[4][2];
1084 float x8[8][2];
1085 float x16[16][2];
1086 } sample_positions;
1087 struct pipe_resource *sample_pos_buffer;
1088
1089 /* Misc stats. */
1090 unsigned num_draw_calls;
1091 unsigned num_decompress_calls;
1092 unsigned num_mrt_draw_calls;
1093 unsigned num_prim_restart_calls;
1094 unsigned num_spill_draw_calls;
1095 unsigned num_compute_calls;
1096 unsigned num_spill_compute_calls;
1097 unsigned num_dma_calls;
1098 unsigned num_cp_dma_calls;
1099 unsigned num_vs_flushes;
1100 unsigned num_ps_flushes;
1101 unsigned num_cs_flushes;
1102 unsigned num_cb_cache_flushes;
1103 unsigned num_db_cache_flushes;
1104 unsigned num_L2_invalidates;
1105 unsigned num_L2_writebacks;
1106 unsigned num_resident_handles;
1107 uint64_t num_alloc_tex_transfer_bytes;
1108 unsigned last_tex_ps_draw_ratio; /* for query */
1109 unsigned compute_num_verts_accepted;
1110 unsigned compute_num_verts_rejected;
1111 unsigned compute_num_verts_ineligible; /* due to low vertex count */
1112 unsigned context_roll;
1113
1114 /* Queries. */
1115 /* Maintain the list of active queries for pausing between IBs. */
1116 int num_occlusion_queries;
1117 int num_perfect_occlusion_queries;
1118 int num_pipeline_stat_queries;
1119 struct list_head active_queries;
1120 unsigned num_cs_dw_queries_suspend;
1121
1122 /* Render condition. */
1123 struct pipe_query *render_cond;
1124 unsigned render_cond_mode;
1125 bool render_cond_invert;
1126 bool render_cond_force_off; /* for u_blitter */
1127
1128 /* For uploading data via GTT and copy to VRAM on context flush via SDMA. */
1129 bool sdma_uploads_in_progress;
1130 struct si_sdma_upload *sdma_uploads;
1131 unsigned num_sdma_uploads;
1132 unsigned max_sdma_uploads;
1133
1134 /* Statistics gathering for the DCC enablement heuristic. It can't be
1135 * in si_texture because si_texture can be shared by multiple
1136 * contexts. This is for back buffers only. We shouldn't get too many
1137 * of those.
1138 *
1139 * X11 DRI3 rotates among a finite set of back buffers. They should
1140 * all fit in this array. If they don't, separate DCC might never be
1141 * enabled by DCC stat gathering.
1142 */
1143 struct {
1144 struct si_texture *tex;
1145 /* Query queue: 0 = usually active, 1 = waiting, 2 = readback. */
1146 struct pipe_query *ps_stats[3];
1147 /* If all slots are used and another slot is needed,
1148 * the least recently used slot is evicted based on this. */
1149 int64_t last_use_timestamp;
1150 bool query_active;
1151 } dcc_stats[5];
1152
1153 /* Copy one resource to another using async DMA. */
1154 void (*dma_copy)(struct pipe_context *ctx,
1155 struct pipe_resource *dst,
1156 unsigned dst_level,
1157 unsigned dst_x, unsigned dst_y, unsigned dst_z,
1158 struct pipe_resource *src,
1159 unsigned src_level,
1160 const struct pipe_box *src_box);
1161
1162 struct si_tracked_regs tracked_regs;
1163 };
1164
1165 /* cik_sdma.c */
1166 void cik_init_sdma_functions(struct si_context *sctx);
1167
1168 /* si_blit.c */
1169 enum si_blitter_op /* bitmask */
1170 {
1171 SI_SAVE_TEXTURES = 1,
1172 SI_SAVE_FRAMEBUFFER = 2,
1173 SI_SAVE_FRAGMENT_STATE = 4,
1174 SI_DISABLE_RENDER_COND = 8,
1175 };
1176
1177 void si_blitter_begin(struct si_context *sctx, enum si_blitter_op op);
1178 void si_blitter_end(struct si_context *sctx);
1179 void si_init_blit_functions(struct si_context *sctx);
1180 void si_decompress_textures(struct si_context *sctx, unsigned shader_mask);
1181 void si_resource_copy_region(struct pipe_context *ctx,
1182 struct pipe_resource *dst,
1183 unsigned dst_level,
1184 unsigned dstx, unsigned dsty, unsigned dstz,
1185 struct pipe_resource *src,
1186 unsigned src_level,
1187 const struct pipe_box *src_box);
1188 void si_decompress_dcc(struct si_context *sctx, struct si_texture *tex);
1189 void si_blit_decompress_depth(struct pipe_context *ctx,
1190 struct si_texture *texture,
1191 struct si_texture *staging,
1192 unsigned first_level, unsigned last_level,
1193 unsigned first_layer, unsigned last_layer,
1194 unsigned first_sample, unsigned last_sample);
1195
1196 /* si_buffer.c */
1197 bool si_rings_is_buffer_referenced(struct si_context *sctx,
1198 struct pb_buffer *buf,
1199 enum radeon_bo_usage usage);
1200 void *si_buffer_map_sync_with_rings(struct si_context *sctx,
1201 struct si_resource *resource,
1202 unsigned usage);
1203 void si_init_resource_fields(struct si_screen *sscreen,
1204 struct si_resource *res,
1205 uint64_t size, unsigned alignment);
1206 bool si_alloc_resource(struct si_screen *sscreen,
1207 struct si_resource *res);
1208 struct pipe_resource *pipe_aligned_buffer_create(struct pipe_screen *screen,
1209 unsigned flags, unsigned usage,
1210 unsigned size, unsigned alignment);
1211 struct si_resource *si_aligned_buffer_create(struct pipe_screen *screen,
1212 unsigned flags, unsigned usage,
1213 unsigned size, unsigned alignment);
1214 void si_replace_buffer_storage(struct pipe_context *ctx,
1215 struct pipe_resource *dst,
1216 struct pipe_resource *src);
1217 void si_init_screen_buffer_functions(struct si_screen *sscreen);
1218 void si_init_buffer_functions(struct si_context *sctx);
1219
1220 /* si_clear.c */
1221 enum pipe_format si_simplify_cb_format(enum pipe_format format);
1222 bool vi_alpha_is_on_msb(enum pipe_format format);
1223 void vi_dcc_clear_level(struct si_context *sctx,
1224 struct si_texture *tex,
1225 unsigned level, unsigned clear_value);
1226 void si_init_clear_functions(struct si_context *sctx);
1227
1228 /* si_compute_blit.c */
1229 unsigned si_get_flush_flags(struct si_context *sctx, enum si_coherency coher,
1230 enum si_cache_policy cache_policy);
1231 void si_clear_buffer(struct si_context *sctx, struct pipe_resource *dst,
1232 uint64_t offset, uint64_t size, uint32_t *clear_value,
1233 uint32_t clear_value_size, enum si_coherency coher,
1234 bool force_cpdma);
1235 void si_copy_buffer(struct si_context *sctx,
1236 struct pipe_resource *dst, struct pipe_resource *src,
1237 uint64_t dst_offset, uint64_t src_offset, unsigned size);
1238 void si_compute_copy_image(struct si_context *sctx,
1239 struct pipe_resource *dst,
1240 unsigned dst_level,
1241 struct pipe_resource *src,
1242 unsigned src_level,
1243 unsigned dstx, unsigned dsty, unsigned dstz,
1244 const struct pipe_box *src_box);
1245 void si_compute_clear_render_target(struct pipe_context *ctx,
1246 struct pipe_surface *dstsurf,
1247 const union pipe_color_union *color,
1248 unsigned dstx, unsigned dsty,
1249 unsigned width, unsigned height,
1250 bool render_condition_enabled);
1251 void si_retile_dcc(struct si_context *sctx, struct si_texture *tex);
1252 void si_init_compute_blit_functions(struct si_context *sctx);
1253
1254 /* si_cp_dma.c */
1255 #define SI_CPDMA_SKIP_CHECK_CS_SPACE (1 << 0) /* don't call need_cs_space */
1256 #define SI_CPDMA_SKIP_SYNC_AFTER (1 << 1) /* don't wait for DMA after the copy */
1257 #define SI_CPDMA_SKIP_SYNC_BEFORE (1 << 2) /* don't wait for DMA before the copy (RAW hazards) */
1258 #define SI_CPDMA_SKIP_GFX_SYNC (1 << 3) /* don't flush caches and don't wait for PS/CS */
1259 #define SI_CPDMA_SKIP_BO_LIST_UPDATE (1 << 4) /* don't update the BO list */
1260 #define SI_CPDMA_SKIP_ALL (SI_CPDMA_SKIP_CHECK_CS_SPACE | \
1261 SI_CPDMA_SKIP_SYNC_AFTER | \
1262 SI_CPDMA_SKIP_SYNC_BEFORE | \
1263 SI_CPDMA_SKIP_GFX_SYNC | \
1264 SI_CPDMA_SKIP_BO_LIST_UPDATE)
1265
1266 void si_cp_dma_wait_for_idle(struct si_context *sctx);
1267 void si_cp_dma_clear_buffer(struct si_context *sctx, struct radeon_cmdbuf *cs,
1268 struct pipe_resource *dst, uint64_t offset,
1269 uint64_t size, unsigned value, unsigned user_flags,
1270 enum si_coherency coher, enum si_cache_policy cache_policy);
1271 void si_cp_dma_copy_buffer(struct si_context *sctx,
1272 struct pipe_resource *dst, struct pipe_resource *src,
1273 uint64_t dst_offset, uint64_t src_offset, unsigned size,
1274 unsigned user_flags, enum si_coherency coher,
1275 enum si_cache_policy cache_policy);
1276 void cik_prefetch_TC_L2_async(struct si_context *sctx, struct pipe_resource *buf,
1277 uint64_t offset, unsigned size);
1278 void cik_emit_prefetch_L2(struct si_context *sctx, bool vertex_stage_only);
1279 void si_test_gds(struct si_context *sctx);
1280 void si_cp_write_data(struct si_context *sctx, struct si_resource *buf,
1281 unsigned offset, unsigned size, unsigned dst_sel,
1282 unsigned engine, const void *data);
1283 void si_cp_copy_data(struct si_context *sctx, struct radeon_cmdbuf *cs,
1284 unsigned dst_sel, struct si_resource *dst, unsigned dst_offset,
1285 unsigned src_sel, struct si_resource *src, unsigned src_offset);
1286
1287 /* si_debug.c */
1288 void si_save_cs(struct radeon_winsys *ws, struct radeon_cmdbuf *cs,
1289 struct radeon_saved_cs *saved, bool get_buffer_list);
1290 void si_clear_saved_cs(struct radeon_saved_cs *saved);
1291 void si_destroy_saved_cs(struct si_saved_cs *scs);
1292 void si_auto_log_cs(void *data, struct u_log_context *log);
1293 void si_log_hw_flush(struct si_context *sctx);
1294 void si_log_draw_state(struct si_context *sctx, struct u_log_context *log);
1295 void si_log_compute_state(struct si_context *sctx, struct u_log_context *log);
1296 void si_init_debug_functions(struct si_context *sctx);
1297 void si_check_vm_faults(struct si_context *sctx,
1298 struct radeon_saved_cs *saved, enum ring_type ring);
1299 bool si_replace_shader(unsigned num, struct si_shader_binary *binary);
1300
1301 /* si_dma.c */
1302 void si_init_dma_functions(struct si_context *sctx);
1303
1304 /* si_dma_cs.c */
1305 void si_dma_emit_timestamp(struct si_context *sctx, struct si_resource *dst,
1306 uint64_t offset);
1307 void si_sdma_clear_buffer(struct si_context *sctx, struct pipe_resource *dst,
1308 uint64_t offset, uint64_t size, unsigned clear_value);
1309 void si_need_dma_space(struct si_context *ctx, unsigned num_dw,
1310 struct si_resource *dst, struct si_resource *src);
1311 void si_flush_dma_cs(struct si_context *ctx, unsigned flags,
1312 struct pipe_fence_handle **fence);
1313 void si_screen_clear_buffer(struct si_screen *sscreen, struct pipe_resource *dst,
1314 uint64_t offset, uint64_t size, unsigned value);
1315
1316 /* si_fence.c */
1317 void si_cp_release_mem(struct si_context *ctx, struct radeon_cmdbuf *cs,
1318 unsigned event, unsigned event_flags,
1319 unsigned dst_sel, unsigned int_sel, unsigned data_sel,
1320 struct si_resource *buf, uint64_t va,
1321 uint32_t new_fence, unsigned query_type);
1322 unsigned si_cp_write_fence_dwords(struct si_screen *screen);
1323 void si_cp_wait_mem(struct si_context *ctx, struct radeon_cmdbuf *cs,
1324 uint64_t va, uint32_t ref, uint32_t mask, unsigned flags);
1325 void si_init_fence_functions(struct si_context *ctx);
1326 void si_init_screen_fence_functions(struct si_screen *screen);
1327 struct pipe_fence_handle *si_create_fence(struct pipe_context *ctx,
1328 struct tc_unflushed_batch_token *tc_token);
1329
1330 /* si_get.c */
1331 void si_init_screen_get_functions(struct si_screen *sscreen);
1332
1333 /* si_gfx_cs.c */
1334 void si_flush_gfx_cs(struct si_context *ctx, unsigned flags,
1335 struct pipe_fence_handle **fence);
1336 void si_begin_new_gfx_cs(struct si_context *ctx);
1337 void si_need_gfx_cs_space(struct si_context *ctx);
1338 void si_unref_sdma_uploads(struct si_context *sctx);
1339
1340 /* si_gpu_load.c */
1341 void si_gpu_load_kill_thread(struct si_screen *sscreen);
1342 uint64_t si_begin_counter(struct si_screen *sscreen, unsigned type);
1343 unsigned si_end_counter(struct si_screen *sscreen, unsigned type,
1344 uint64_t begin);
1345
1346 /* si_compute.c */
1347 void si_emit_initial_compute_regs(struct si_context *sctx, struct radeon_cmdbuf *cs);
1348 unsigned si_get_compute_resource_limits(struct si_screen *sscreen,
1349 unsigned waves_per_threadgroup,
1350 unsigned max_waves_per_sh,
1351 unsigned threadgroups_per_cu);
1352 void si_init_compute_functions(struct si_context *sctx);
1353
1354 /* si_compute_prim_discard.c */
1355 enum si_prim_discard_outcome {
1356 SI_PRIM_DISCARD_ENABLED,
1357 SI_PRIM_DISCARD_DISABLED,
1358 SI_PRIM_DISCARD_DRAW_SPLIT,
1359 };
1360
1361 void si_build_prim_discard_compute_shader(struct si_shader_context *ctx);
1362 enum si_prim_discard_outcome
1363 si_prepare_prim_discard_or_split_draw(struct si_context *sctx,
1364 const struct pipe_draw_info *info,
1365 bool primitive_restart);
1366 void si_compute_signal_gfx(struct si_context *sctx);
1367 void si_dispatch_prim_discard_cs_and_draw(struct si_context *sctx,
1368 const struct pipe_draw_info *info,
1369 unsigned index_size,
1370 unsigned base_vertex,
1371 uint64_t input_indexbuf_va,
1372 unsigned input_indexbuf_max_elements);
1373 void si_initialize_prim_discard_tunables(struct si_context *sctx);
1374
1375 /* si_perfcounters.c */
1376 void si_init_perfcounters(struct si_screen *screen);
1377 void si_destroy_perfcounters(struct si_screen *screen);
1378
1379 /* si_pipe.c */
1380 bool si_check_device_reset(struct si_context *sctx);
1381
1382 /* si_query.c */
1383 void si_init_screen_query_functions(struct si_screen *sscreen);
1384 void si_init_query_functions(struct si_context *sctx);
1385 void si_suspend_queries(struct si_context *sctx);
1386 void si_resume_queries(struct si_context *sctx);
1387
1388 /* si_shaderlib_tgsi.c */
1389 void *si_get_blitter_vs(struct si_context *sctx, enum blitter_attrib_type type,
1390 unsigned num_layers);
1391 void *si_create_fixed_func_tcs(struct si_context *sctx);
1392 void *si_create_dma_compute_shader(struct pipe_context *ctx,
1393 unsigned num_dwords_per_thread,
1394 bool dst_stream_cache_policy, bool is_copy);
1395 void *si_create_copy_image_compute_shader(struct pipe_context *ctx);
1396 void *si_create_copy_image_compute_shader_1d_array(struct pipe_context *ctx);
1397 void *si_clear_render_target_shader(struct pipe_context *ctx);
1398 void *si_clear_render_target_shader_1d_array(struct pipe_context *ctx);
1399 void *si_create_dcc_retile_cs(struct pipe_context *ctx);
1400 void *si_create_query_result_cs(struct si_context *sctx);
1401
1402 /* si_test_dma.c */
1403 void si_test_dma(struct si_screen *sscreen);
1404
1405 /* si_test_clearbuffer.c */
1406 void si_test_dma_perf(struct si_screen *sscreen);
1407
1408 /* si_uvd.c */
1409 struct pipe_video_codec *si_uvd_create_decoder(struct pipe_context *context,
1410 const struct pipe_video_codec *templ);
1411
1412 struct pipe_video_buffer *si_video_buffer_create(struct pipe_context *pipe,
1413 const struct pipe_video_buffer *tmpl);
1414
1415 /* si_viewport.c */
1416 void si_update_vs_viewport_state(struct si_context *ctx);
1417 void si_init_viewport_functions(struct si_context *ctx);
1418
1419 /* si_texture.c */
1420 bool si_prepare_for_dma_blit(struct si_context *sctx,
1421 struct si_texture *dst,
1422 unsigned dst_level, unsigned dstx,
1423 unsigned dsty, unsigned dstz,
1424 struct si_texture *src,
1425 unsigned src_level,
1426 const struct pipe_box *src_box);
1427 void si_eliminate_fast_color_clear(struct si_context *sctx,
1428 struct si_texture *tex);
1429 void si_texture_discard_cmask(struct si_screen *sscreen,
1430 struct si_texture *tex);
1431 bool si_init_flushed_depth_texture(struct pipe_context *ctx,
1432 struct pipe_resource *texture,
1433 struct si_texture **staging);
1434 void si_print_texture_info(struct si_screen *sscreen,
1435 struct si_texture *tex, struct u_log_context *log);
1436 struct pipe_resource *si_texture_create(struct pipe_screen *screen,
1437 const struct pipe_resource *templ);
1438 bool vi_dcc_formats_compatible(enum pipe_format format1,
1439 enum pipe_format format2);
1440 bool vi_dcc_formats_are_incompatible(struct pipe_resource *tex,
1441 unsigned level,
1442 enum pipe_format view_format);
1443 void vi_disable_dcc_if_incompatible_format(struct si_context *sctx,
1444 struct pipe_resource *tex,
1445 unsigned level,
1446 enum pipe_format view_format);
1447 struct pipe_surface *si_create_surface_custom(struct pipe_context *pipe,
1448 struct pipe_resource *texture,
1449 const struct pipe_surface *templ,
1450 unsigned width0, unsigned height0,
1451 unsigned width, unsigned height);
1452 unsigned si_translate_colorswap(enum pipe_format format, bool do_endian_swap);
1453 void vi_separate_dcc_try_enable(struct si_context *sctx,
1454 struct si_texture *tex);
1455 void vi_separate_dcc_start_query(struct si_context *sctx,
1456 struct si_texture *tex);
1457 void vi_separate_dcc_stop_query(struct si_context *sctx,
1458 struct si_texture *tex);
1459 void vi_separate_dcc_process_and_reset_stats(struct pipe_context *ctx,
1460 struct si_texture *tex);
1461 bool si_texture_disable_dcc(struct si_context *sctx,
1462 struct si_texture *tex);
1463 void si_init_screen_texture_functions(struct si_screen *sscreen);
1464 void si_init_context_texture_functions(struct si_context *sctx);
1465
1466
1467 /*
1468 * common helpers
1469 */
1470
1471 static inline struct si_resource *si_resource(struct pipe_resource *r)
1472 {
1473 return (struct si_resource*)r;
1474 }
1475
1476 static inline void
1477 si_resource_reference(struct si_resource **ptr, struct si_resource *res)
1478 {
1479 pipe_resource_reference((struct pipe_resource **)ptr,
1480 (struct pipe_resource *)res);
1481 }
1482
1483 static inline void
1484 si_texture_reference(struct si_texture **ptr, struct si_texture *res)
1485 {
1486 pipe_resource_reference((struct pipe_resource **)ptr, &res->buffer.b.b);
1487 }
1488
1489 static inline bool
1490 vi_dcc_enabled(struct si_texture *tex, unsigned level)
1491 {
1492 return tex->dcc_offset && level < tex->surface.num_dcc_levels;
1493 }
1494
1495 static inline unsigned
1496 si_tile_mode_index(struct si_texture *tex, unsigned level, bool stencil)
1497 {
1498 if (stencil)
1499 return tex->surface.u.legacy.stencil_tiling_index[level];
1500 else
1501 return tex->surface.u.legacy.tiling_index[level];
1502 }
1503
1504 static inline unsigned
1505 si_get_minimum_num_gfx_cs_dwords(struct si_context *sctx)
1506 {
1507 /* Don't count the needed CS space exactly and just use an upper bound.
1508 *
1509 * Also reserve space for stopping queries at the end of IB, because
1510 * the number of active queries is unlimited in theory.
1511 */
1512 return 2048 + sctx->num_cs_dw_queries_suspend;
1513 }
1514
1515 static inline void
1516 si_context_add_resource_size(struct si_context *sctx, struct pipe_resource *r)
1517 {
1518 if (r) {
1519 /* Add memory usage for need_gfx_cs_space */
1520 sctx->vram += si_resource(r)->vram_usage;
1521 sctx->gtt += si_resource(r)->gart_usage;
1522 }
1523 }
1524
1525 static inline void
1526 si_invalidate_draw_sh_constants(struct si_context *sctx)
1527 {
1528 sctx->last_base_vertex = SI_BASE_VERTEX_UNKNOWN;
1529 sctx->last_instance_count = SI_INSTANCE_COUNT_UNKNOWN;
1530 }
1531
1532 static inline unsigned
1533 si_get_atom_bit(struct si_context *sctx, struct si_atom *atom)
1534 {
1535 return 1 << (atom - sctx->atoms.array);
1536 }
1537
1538 static inline void
1539 si_set_atom_dirty(struct si_context *sctx, struct si_atom *atom, bool dirty)
1540 {
1541 unsigned bit = si_get_atom_bit(sctx, atom);
1542
1543 if (dirty)
1544 sctx->dirty_atoms |= bit;
1545 else
1546 sctx->dirty_atoms &= ~bit;
1547 }
1548
1549 static inline bool
1550 si_is_atom_dirty(struct si_context *sctx, struct si_atom *atom)
1551 {
1552 return (sctx->dirty_atoms & si_get_atom_bit(sctx, atom)) != 0;
1553 }
1554
1555 static inline void
1556 si_mark_atom_dirty(struct si_context *sctx, struct si_atom *atom)
1557 {
1558 si_set_atom_dirty(sctx, atom, true);
1559 }
1560
1561 static inline struct si_shader_ctx_state *si_get_vs(struct si_context *sctx)
1562 {
1563 if (sctx->gs_shader.cso)
1564 return &sctx->gs_shader;
1565 if (sctx->tes_shader.cso)
1566 return &sctx->tes_shader;
1567
1568 return &sctx->vs_shader;
1569 }
1570
1571 static inline struct tgsi_shader_info *si_get_vs_info(struct si_context *sctx)
1572 {
1573 struct si_shader_ctx_state *vs = si_get_vs(sctx);
1574
1575 return vs->cso ? &vs->cso->info : NULL;
1576 }
1577
1578 static inline struct si_shader* si_get_vs_state(struct si_context *sctx)
1579 {
1580 if (sctx->gs_shader.cso)
1581 return sctx->gs_shader.cso->gs_copy_shader;
1582
1583 struct si_shader_ctx_state *vs = si_get_vs(sctx);
1584 return vs->current ? vs->current : NULL;
1585 }
1586
1587 static inline bool si_can_dump_shader(struct si_screen *sscreen,
1588 unsigned processor)
1589 {
1590 return sscreen->debug_flags & (1 << processor);
1591 }
1592
1593 static inline bool si_get_strmout_en(struct si_context *sctx)
1594 {
1595 return sctx->streamout.streamout_enabled ||
1596 sctx->streamout.prims_gen_query_enabled;
1597 }
1598
1599 static inline unsigned
1600 si_optimal_tcc_alignment(struct si_context *sctx, unsigned upload_size)
1601 {
1602 unsigned alignment, tcc_cache_line_size;
1603
1604 /* If the upload size is less than the cache line size (e.g. 16, 32),
1605 * the whole thing will fit into a cache line if we align it to its size.
1606 * The idea is that multiple small uploads can share a cache line.
1607 * If the upload size is greater, align it to the cache line size.
1608 */
1609 alignment = util_next_power_of_two(upload_size);
1610 tcc_cache_line_size = sctx->screen->info.tcc_cache_line_size;
1611 return MIN2(alignment, tcc_cache_line_size);
1612 }
1613
1614 static inline void
1615 si_saved_cs_reference(struct si_saved_cs **dst, struct si_saved_cs *src)
1616 {
1617 if (pipe_reference(&(*dst)->reference, &src->reference))
1618 si_destroy_saved_cs(*dst);
1619
1620 *dst = src;
1621 }
1622
1623 static inline void
1624 si_make_CB_shader_coherent(struct si_context *sctx, unsigned num_samples,
1625 bool shaders_read_metadata, bool dcc_pipe_aligned)
1626 {
1627 sctx->flags |= SI_CONTEXT_FLUSH_AND_INV_CB |
1628 SI_CONTEXT_INV_VMEM_L1;
1629
1630 if (sctx->chip_class >= GFX9) {
1631 /* Single-sample color is coherent with shaders on GFX9, but
1632 * L2 metadata must be flushed if shaders read metadata.
1633 * (DCC, CMASK).
1634 */
1635 if (num_samples >= 2 ||
1636 (shaders_read_metadata && !dcc_pipe_aligned))
1637 sctx->flags |= SI_CONTEXT_INV_GLOBAL_L2;
1638 else if (shaders_read_metadata)
1639 sctx->flags |= SI_CONTEXT_INV_L2_METADATA;
1640 } else {
1641 /* GFX6-GFX8 */
1642 sctx->flags |= SI_CONTEXT_INV_GLOBAL_L2;
1643 }
1644 }
1645
1646 static inline void
1647 si_make_DB_shader_coherent(struct si_context *sctx, unsigned num_samples,
1648 bool include_stencil, bool shaders_read_metadata)
1649 {
1650 sctx->flags |= SI_CONTEXT_FLUSH_AND_INV_DB |
1651 SI_CONTEXT_INV_VMEM_L1;
1652
1653 if (sctx->chip_class >= GFX9) {
1654 /* Single-sample depth (not stencil) is coherent with shaders
1655 * on GFX9, but L2 metadata must be flushed if shaders read
1656 * metadata.
1657 */
1658 if (num_samples >= 2 || include_stencil)
1659 sctx->flags |= SI_CONTEXT_INV_GLOBAL_L2;
1660 else if (shaders_read_metadata)
1661 sctx->flags |= SI_CONTEXT_INV_L2_METADATA;
1662 } else {
1663 /* GFX6-GFX8 */
1664 sctx->flags |= SI_CONTEXT_INV_GLOBAL_L2;
1665 }
1666 }
1667
1668 static inline bool
1669 si_can_sample_zs(struct si_texture *tex, bool stencil_sampler)
1670 {
1671 return (stencil_sampler && tex->can_sample_s) ||
1672 (!stencil_sampler && tex->can_sample_z);
1673 }
1674
1675 static inline bool
1676 si_htile_enabled(struct si_texture *tex, unsigned level)
1677 {
1678 return tex->htile_offset && level == 0;
1679 }
1680
1681 static inline bool
1682 vi_tc_compat_htile_enabled(struct si_texture *tex, unsigned level)
1683 {
1684 assert(!tex->tc_compatible_htile || tex->htile_offset);
1685 return tex->tc_compatible_htile && level == 0;
1686 }
1687
1688 static inline unsigned si_get_ps_iter_samples(struct si_context *sctx)
1689 {
1690 if (sctx->ps_uses_fbfetch)
1691 return sctx->framebuffer.nr_color_samples;
1692
1693 return MIN2(sctx->ps_iter_samples, sctx->framebuffer.nr_color_samples);
1694 }
1695
1696 static inline unsigned si_get_total_colormask(struct si_context *sctx)
1697 {
1698 if (sctx->queued.named.rasterizer->rasterizer_discard)
1699 return 0;
1700
1701 struct si_shader_selector *ps = sctx->ps_shader.cso;
1702 if (!ps)
1703 return 0;
1704
1705 unsigned colormask = sctx->framebuffer.colorbuf_enabled_4bit &
1706 sctx->queued.named.blend->cb_target_mask;
1707
1708 if (!ps->info.properties[TGSI_PROPERTY_FS_COLOR0_WRITES_ALL_CBUFS])
1709 colormask &= ps->colors_written_4bit;
1710 else if (!ps->colors_written_4bit)
1711 colormask = 0; /* color0 writes all cbufs, but it's not written */
1712
1713 return colormask;
1714 }
1715
1716 #define UTIL_ALL_PRIM_LINE_MODES ((1 << PIPE_PRIM_LINES) | \
1717 (1 << PIPE_PRIM_LINE_LOOP) | \
1718 (1 << PIPE_PRIM_LINE_STRIP) | \
1719 (1 << PIPE_PRIM_LINES_ADJACENCY) | \
1720 (1 << PIPE_PRIM_LINE_STRIP_ADJACENCY))
1721
1722 static inline bool util_prim_is_lines(unsigned prim)
1723 {
1724 return ((1 << prim) & UTIL_ALL_PRIM_LINE_MODES) != 0;
1725 }
1726
1727 static inline bool util_prim_is_points_or_lines(unsigned prim)
1728 {
1729 return ((1 << prim) & (UTIL_ALL_PRIM_LINE_MODES |
1730 (1 << PIPE_PRIM_POINTS))) != 0;
1731 }
1732
1733 /**
1734 * Return true if there is enough memory in VRAM and GTT for the buffers
1735 * added so far.
1736 *
1737 * \param vram VRAM memory size not added to the buffer list yet
1738 * \param gtt GTT memory size not added to the buffer list yet
1739 */
1740 static inline bool
1741 radeon_cs_memory_below_limit(struct si_screen *screen,
1742 struct radeon_cmdbuf *cs,
1743 uint64_t vram, uint64_t gtt)
1744 {
1745 vram += cs->used_vram;
1746 gtt += cs->used_gart;
1747
1748 /* Anything that goes above the VRAM size should go to GTT. */
1749 if (vram > screen->info.vram_size)
1750 gtt += vram - screen->info.vram_size;
1751
1752 /* Now we just need to check if we have enough GTT. */
1753 return gtt < screen->info.gart_size * 0.7;
1754 }
1755
1756 /**
1757 * Add a buffer to the buffer list for the given command stream (CS).
1758 *
1759 * All buffers used by a CS must be added to the list. This tells the kernel
1760 * driver which buffers are used by GPU commands. Other buffers can
1761 * be swapped out (not accessible) during execution.
1762 *
1763 * The buffer list becomes empty after every context flush and must be
1764 * rebuilt.
1765 */
1766 static inline void radeon_add_to_buffer_list(struct si_context *sctx,
1767 struct radeon_cmdbuf *cs,
1768 struct si_resource *bo,
1769 enum radeon_bo_usage usage,
1770 enum radeon_bo_priority priority)
1771 {
1772 assert(usage);
1773 sctx->ws->cs_add_buffer(
1774 cs, bo->buf,
1775 (enum radeon_bo_usage)(usage | RADEON_USAGE_SYNCHRONIZED),
1776 bo->domains, priority);
1777 }
1778
1779 /**
1780 * Same as above, but also checks memory usage and flushes the context
1781 * accordingly.
1782 *
1783 * When this SHOULD NOT be used:
1784 *
1785 * - if si_context_add_resource_size has been called for the buffer
1786 * followed by *_need_cs_space for checking the memory usage
1787 *
1788 * - if si_need_dma_space has been called for the buffer
1789 *
1790 * - when emitting state packets and draw packets (because preceding packets
1791 * can't be re-emitted at that point)
1792 *
1793 * - if shader resource "enabled_mask" is not up-to-date or there is
1794 * a different constraint disallowing a context flush
1795 */
1796 static inline void
1797 radeon_add_to_gfx_buffer_list_check_mem(struct si_context *sctx,
1798 struct si_resource *bo,
1799 enum radeon_bo_usage usage,
1800 enum radeon_bo_priority priority,
1801 bool check_mem)
1802 {
1803 if (check_mem &&
1804 !radeon_cs_memory_below_limit(sctx->screen, sctx->gfx_cs,
1805 sctx->vram + bo->vram_usage,
1806 sctx->gtt + bo->gart_usage))
1807 si_flush_gfx_cs(sctx, RADEON_FLUSH_ASYNC_START_NEXT_GFX_IB_NOW, NULL);
1808
1809 radeon_add_to_buffer_list(sctx, sctx->gfx_cs, bo, usage, priority);
1810 }
1811
1812 static inline bool si_compute_prim_discard_enabled(struct si_context *sctx)
1813 {
1814 return sctx->prim_discard_vertex_count_threshold != UINT_MAX;
1815 }
1816
1817 #define PRINT_ERR(fmt, args...) \
1818 fprintf(stderr, "EE %s:%d %s - " fmt, __FILE__, __LINE__, __func__, ##args)
1819
1820 #endif