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