2 * Copyright 2010 Jerome Glisse <glisse@freedesktop.org>
3 * Copyright 2018 Advanced Micro Devices, Inc.
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:
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
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.
28 #include "si_shader.h"
31 #include "util/u_dynarray.h"
32 #include "util/u_idalloc.h"
33 #include "util/u_threaded_context.h"
35 #ifdef PIPE_ARCH_BIG_ENDIAN
36 #define SI_BIG_ENDIAN 1
38 #define SI_BIG_ENDIAN 0
41 #define ATI_VENDOR_ID 0x1002
43 #define SI_NOT_QUERY 0xffffffff
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_NUM_SMOOTH_AA_SAMPLES 8
51 #define SI_MAX_POINT_SIZE 2048
52 #define SI_GS_PER_ES 128
53 /* Alignment for optimal CP DMA performance. */
54 #define SI_CPDMA_ALIGNMENT 32
56 /* Tunables for compute-based clear_buffer and copy_buffer: */
57 #define SI_COMPUTE_CLEAR_DW_PER_THREAD 4
58 #define SI_COMPUTE_COPY_DW_PER_THREAD 4
59 #define SI_COMPUTE_DST_CACHE_POLICY L2_STREAM
61 /* Pipeline & streamout query controls. */
62 #define SI_CONTEXT_START_PIPELINE_STATS (1 << 0)
63 #define SI_CONTEXT_STOP_PIPELINE_STATS (1 << 1)
64 #define SI_CONTEXT_FLUSH_FOR_RENDER_COND (1 << 2)
65 /* Instruction cache. */
66 #define SI_CONTEXT_INV_ICACHE (1 << 3)
67 /* SMEM L1, other names: KCACHE, constant cache, DCACHE, data cache */
68 #define SI_CONTEXT_INV_SMEM_L1 (1 << 4)
69 /* VMEM L1 can optionally be bypassed (GLC=1). Other names: TC L1 */
70 #define SI_CONTEXT_INV_VMEM_L1 (1 << 5)
71 /* Used by everything except CB/DB, can be bypassed (SLC=1). Other names: TC L2 */
72 #define SI_CONTEXT_INV_GLOBAL_L2 (1 << 6)
73 /* Write dirty L2 lines back to memory (shader and CP DMA stores), but don't
74 * invalidate L2. SI-CIK can't do it, so they will do complete invalidation. */
75 #define SI_CONTEXT_WRITEBACK_GLOBAL_L2 (1 << 7)
76 /* Writeback & invalidate the L2 metadata cache. It can only be coupled with
77 * a CB or DB flush. */
78 #define SI_CONTEXT_INV_L2_METADATA (1 << 8)
79 /* Framebuffer caches. */
80 #define SI_CONTEXT_FLUSH_AND_INV_DB (1 << 9)
81 #define SI_CONTEXT_FLUSH_AND_INV_DB_META (1 << 10)
82 #define SI_CONTEXT_FLUSH_AND_INV_CB (1 << 11)
83 /* Engine synchronization. */
84 #define SI_CONTEXT_VS_PARTIAL_FLUSH (1 << 12)
85 #define SI_CONTEXT_PS_PARTIAL_FLUSH (1 << 13)
86 #define SI_CONTEXT_CS_PARTIAL_FLUSH (1 << 14)
87 #define SI_CONTEXT_VGT_FLUSH (1 << 15)
88 #define SI_CONTEXT_VGT_STREAMOUT_SYNC (1 << 16)
90 #define SI_PREFETCH_VBO_DESCRIPTORS (1 << 0)
91 #define SI_PREFETCH_LS (1 << 1)
92 #define SI_PREFETCH_HS (1 << 2)
93 #define SI_PREFETCH_ES (1 << 3)
94 #define SI_PREFETCH_GS (1 << 4)
95 #define SI_PREFETCH_VS (1 << 5)
96 #define SI_PREFETCH_PS (1 << 6)
98 #define SI_MAX_BORDER_COLORS 4096
99 #define SI_MAX_VIEWPORTS 16
100 #define SIX_BITS 0x3F
101 #define SI_MAP_BUFFER_ALIGNMENT 64
102 #define SI_MAX_VARIABLE_THREADS_PER_BLOCK 1024
104 #define SI_RESOURCE_FLAG_TRANSFER (PIPE_RESOURCE_FLAG_DRV_PRIV << 0)
105 #define SI_RESOURCE_FLAG_FLUSHED_DEPTH (PIPE_RESOURCE_FLAG_DRV_PRIV << 1)
106 #define SI_RESOURCE_FLAG_FORCE_TILING (PIPE_RESOURCE_FLAG_DRV_PRIV << 2)
107 #define SI_RESOURCE_FLAG_DISABLE_DCC (PIPE_RESOURCE_FLAG_DRV_PRIV << 3)
108 #define SI_RESOURCE_FLAG_UNMAPPABLE (PIPE_RESOURCE_FLAG_DRV_PRIV << 4)
109 #define SI_RESOURCE_FLAG_READ_ONLY (PIPE_RESOURCE_FLAG_DRV_PRIV << 5)
110 #define SI_RESOURCE_FLAG_32BIT (PIPE_RESOURCE_FLAG_DRV_PRIV << 6)
111 #define SI_RESOURCE_FLAG_SO_FILLED_SIZE (PIPE_RESOURCE_FLAG_DRV_PRIV << 7)
115 /* Shader logging options: */
116 DBG_VS
= PIPE_SHADER_VERTEX
,
117 DBG_PS
= PIPE_SHADER_FRAGMENT
,
118 DBG_GS
= PIPE_SHADER_GEOMETRY
,
119 DBG_TCS
= PIPE_SHADER_TESS_CTRL
,
120 DBG_TES
= PIPE_SHADER_TESS_EVAL
,
121 DBG_CS
= PIPE_SHADER_COMPUTE
,
127 /* Shader compiler options the shader cache should be aware of: */
128 DBG_FS_CORRECT_DERIVS_AFTER_KILL
,
133 /* Shader compiler options (with no effect on the shader cache): */
136 DBG_MONOLITHIC_SHADERS
,
139 /* Information logging options: */
145 /* Driver options: */
153 /* 3D engine options: */
173 DBG_TEST_VMFAULT_SDMA
,
174 DBG_TEST_VMFAULT_SHADER
,
179 #define DBG_ALL_SHADERS (((1 << (DBG_CS + 1)) - 1))
180 #define DBG(name) (1ull << DBG_##name)
182 enum si_cache_policy
{
184 L2_STREAM
, /* same as SLC=1 */
185 L2_LRU
, /* same as SLC=0 */
189 SI_COHERENCY_NONE
, /* no cache flushes needed */
191 SI_COHERENCY_CB_META
,
197 struct u_suballocator
;
199 /* Only 32-bit buffer allocations are supported, gallium doesn't support more
202 struct r600_resource
{
203 struct threaded_resource b
;
205 /* Winsys objects. */
206 struct pb_buffer
*buf
;
207 uint64_t gpu_address
;
208 /* Memory usage if the buffer placement is optimal. */
212 /* Resource properties. */
214 unsigned bo_alignment
;
215 enum radeon_bo_domain domains
;
216 enum radeon_bo_flag flags
;
217 unsigned bind_history
;
218 int max_forced_staging_uploads
;
220 /* The buffer range which is initialized (with a write transfer,
221 * streamout, DMA, or as a random access target). The rest of
222 * the buffer is considered invalid and can be mapped unsynchronized.
224 * This allows unsychronized mapping of a buffer range which hasn't
225 * been used yet. It's for applications which forget to use
226 * the unsynchronized map flag and expect the driver to figure it out.
228 struct util_range valid_buffer_range
;
230 /* For buffers only. This indicates that a write operation has been
231 * performed by TC L2, but the cache hasn't been flushed.
232 * Any hw block which doesn't use or bypasses TC L2 should check this
233 * flag and flush the cache before using the buffer.
235 * For example, TC L2 must be flushed if a buffer which has been
236 * modified by a shader store instruction is about to be used as
237 * an index buffer. The reason is that VGT DMA index fetching doesn't
242 /* Whether this resource is referenced by bindless handles. */
243 bool texture_handle_allocated
;
244 bool image_handle_allocated
;
246 /* Whether the resource has been exported via resource_get_handle. */
247 unsigned external_usage
; /* PIPE_HANDLE_USAGE_* */
251 struct threaded_transfer b
;
252 struct r600_resource
*staging
;
257 struct r600_resource buffer
;
259 struct radeon_surf surface
;
261 struct si_texture
*flushed_depth_texture
;
263 /* Colorbuffer compression and fast clear. */
264 uint64_t fmask_offset
;
265 uint64_t cmask_offset
;
266 uint64_t cmask_base_address_reg
;
267 struct r600_resource
*cmask_buffer
;
268 uint64_t dcc_offset
; /* 0 = disabled */
269 unsigned cb_color_info
; /* fast clear enable bit */
270 unsigned color_clear_value
[2];
271 unsigned last_msaa_resolve_target_micro_mode
;
272 unsigned num_level0_transfers
;
274 /* Depth buffer compression and fast clear. */
275 uint64_t htile_offset
;
276 float depth_clear_value
;
277 uint16_t dirty_level_mask
; /* each bit says if that mipmap is compressed */
278 uint16_t stencil_dirty_level_mask
; /* each bit says if that mipmap is compressed */
279 enum pipe_format db_render_format
:16;
280 uint8_t stencil_clear_value
;
281 bool tc_compatible_htile
:1;
282 bool depth_cleared
:1; /* if it was cleared at least once */
283 bool stencil_cleared
:1; /* if it was cleared at least once */
284 bool upgraded_depth
:1; /* upgraded from unorm to Z32_FLOAT */
286 bool db_compatible
:1;
290 /* We need to track DCC dirtiness, because st/dri usually calls
291 * flush_resource twice per frame (not a bug) and we don't wanna
292 * decompress DCC twice. Also, the dirty tracking must be done even
293 * if DCC isn't used, because it's required by the DCC usage analysis
294 * for a possible future enablement.
296 bool separate_dcc_dirty
:1;
297 /* Statistics gathering for the DCC enablement heuristic. */
298 bool dcc_gather_statistics
:1;
299 /* Counter that should be non-zero if the texture is bound to a
302 unsigned framebuffers_bound
;
303 /* Whether the texture is a displayable back buffer and needs DCC
304 * decompression, which is expensive. Therefore, it's enabled only
305 * if statistics suggest that it will pay off and it's allocated
306 * separately. It can't be bound as a sampler by apps. Limited to
307 * target == 2D and last_level == 0. If enabled, dcc_offset contains
308 * the absolute GPUVM address, not the relative one.
310 struct r600_resource
*dcc_separate_buffer
;
311 /* When DCC is temporarily disabled, the separate buffer is here. */
312 struct r600_resource
*last_dcc_separate_buffer
;
313 /* Estimate of how much this color buffer is written to in units of
314 * full-screen draws: ps_invocations / (width * height)
315 * Shader kills, late Z, and blending with trivial discards make it
316 * inaccurate (we need to count CB updates, not PS invocations).
318 unsigned ps_draw_ratio
;
319 /* The number of clears since the last DCC usage analysis. */
320 unsigned num_slow_clears
;
324 struct pipe_surface base
;
326 /* These can vary with block-compressed textures. */
330 bool color_initialized
:1;
331 bool depth_initialized
:1;
333 /* Misc. color flags. */
334 bool color_is_int8
:1;
335 bool color_is_int10
:1;
336 bool dcc_incompatible
:1;
338 /* Color registers. */
339 unsigned cb_color_info
;
340 unsigned cb_color_view
;
341 unsigned cb_color_attrib
;
342 unsigned cb_color_attrib2
; /* GFX9 and later */
343 unsigned cb_dcc_control
; /* VI and later */
344 unsigned spi_shader_col_format
:8; /* no blending, no alpha-to-coverage. */
345 unsigned spi_shader_col_format_alpha
:8; /* alpha-to-coverage */
346 unsigned spi_shader_col_format_blend
:8; /* blending without alpha. */
347 unsigned spi_shader_col_format_blend_alpha
:8; /* blending with alpha. */
350 uint64_t db_depth_base
; /* DB_Z_READ/WRITE_BASE */
351 uint64_t db_stencil_base
;
352 uint64_t db_htile_data_base
;
353 unsigned db_depth_info
;
355 unsigned db_z_info2
; /* GFX9+ */
356 unsigned db_depth_view
;
357 unsigned db_depth_size
;
358 unsigned db_depth_slice
;
359 unsigned db_stencil_info
;
360 unsigned db_stencil_info2
; /* GFX9+ */
361 unsigned db_htile_surface
;
364 struct si_mmio_counter
{
369 union si_mmio_counters
{
371 /* For global GPU load including SDMA. */
372 struct si_mmio_counter gpu
;
375 struct si_mmio_counter spi
;
376 struct si_mmio_counter gui
;
377 struct si_mmio_counter ta
;
378 struct si_mmio_counter gds
;
379 struct si_mmio_counter vgt
;
380 struct si_mmio_counter ia
;
381 struct si_mmio_counter sx
;
382 struct si_mmio_counter wd
;
383 struct si_mmio_counter bci
;
384 struct si_mmio_counter sc
;
385 struct si_mmio_counter pa
;
386 struct si_mmio_counter db
;
387 struct si_mmio_counter cp
;
388 struct si_mmio_counter cb
;
391 struct si_mmio_counter sdma
;
394 struct si_mmio_counter pfp
;
395 struct si_mmio_counter meq
;
396 struct si_mmio_counter me
;
397 struct si_mmio_counter surf_sync
;
398 struct si_mmio_counter cp_dma
;
399 struct si_mmio_counter scratch_ram
;
404 struct si_memory_object
{
405 struct pipe_memory_object b
;
406 struct pb_buffer
*buf
;
410 /* Saved CS data for debugging features. */
411 struct radeon_saved_cs
{
415 struct radeon_bo_list_item
*bo_list
;
420 struct pipe_screen b
;
421 struct radeon_winsys
*ws
;
422 struct disk_cache
*disk_shader_cache
;
424 struct radeon_info info
;
425 uint64_t debug_flags
;
426 char renderer_string
[183];
428 unsigned pa_sc_raster_config
;
429 unsigned pa_sc_raster_config_1
;
430 unsigned se_tile_repeat
;
431 unsigned gs_table_depth
;
432 unsigned tess_offchip_block_dw_size
;
433 unsigned tess_offchip_ring_size
;
434 unsigned tess_factor_ring_size
;
435 unsigned vgt_hs_offchip_param
;
436 unsigned eqaa_force_coverage_samples
;
437 unsigned eqaa_force_z_samples
;
438 unsigned eqaa_force_color_samples
;
439 bool has_clear_state
;
440 bool has_distributed_tess
;
441 bool has_draw_indirect_multi
;
442 bool has_out_of_order_rast
;
443 bool assume_no_z_fights
;
444 bool commutative_blend_add
;
445 bool clear_db_cache_before_clear
;
446 bool has_msaa_sample_loc_bug
;
447 bool has_ls_vgpr_init_bug
;
448 bool has_dcc_constant_encode
;
451 bool llvm_has_working_vgpr_indexing
;
453 /* Whether shaders are monolithic (1-part) or separate (3-part). */
454 bool use_monolithic_shaders
;
456 bool has_rbplus
; /* if RB+ registers exist */
457 bool rbplus_allowed
; /* if RB+ is allowed */
458 bool dcc_msaa_allowed
;
459 bool cpdma_prefetch_writes_memory
;
461 struct slab_parent_pool pool_transfers
;
463 /* Texture filter settings. */
464 int force_aniso
; /* -1 = disabled */
466 /* Auxiliary context. Mainly used to initialize resources.
467 * It must be locked prior to using and flushed before unlocking. */
468 struct pipe_context
*aux_context
;
469 mtx_t aux_context_lock
;
471 /* This must be in the screen, because UE4 uses one context for
472 * compilation and another one for rendering.
474 unsigned num_compilations
;
475 /* Along with ST_DEBUG=precompile, this should show if applications
476 * are loading shaders on demand. This is a monotonic counter.
478 unsigned num_shaders_created
;
479 unsigned num_shader_cache_hits
;
481 /* GPU load thread. */
482 mtx_t gpu_load_mutex
;
483 thrd_t gpu_load_thread
;
484 union si_mmio_counters mmio_counters
;
485 volatile unsigned gpu_load_stop_thread
; /* bool */
487 /* Performance counters. */
488 struct si_perfcounters
*perfcounters
;
490 /* If pipe_screen wants to recompute and re-emit the framebuffer,
491 * sampler, and image states of all contexts, it should atomically
494 * Each context will compare this with its own last known value of
495 * the counter before drawing and re-emit the states accordingly.
497 unsigned dirty_tex_counter
;
499 /* Atomically increment this counter when an existing texture's
500 * metadata is enabled or disabled in a way that requires changing
501 * contexts' compressed texture binding masks.
503 unsigned compressed_colortex_counter
;
506 /* Context flags to set so that all writes from earlier jobs
507 * in the CP are seen by L2 clients.
511 /* Context flags to set so that all writes from earlier jobs
512 * that end in L2 are seen by CP.
517 mtx_t shader_parts_mutex
;
518 struct si_shader_part
*vs_prologs
;
519 struct si_shader_part
*tcs_epilogs
;
520 struct si_shader_part
*gs_prologs
;
521 struct si_shader_part
*ps_prologs
;
522 struct si_shader_part
*ps_epilogs
;
524 /* Shader cache in memory.
526 * Design & limitations:
527 * - The shader cache is per screen (= per process), never saved to
528 * disk, and skips redundant shader compilations from TGSI to bytecode.
529 * - It can only be used with one-variant-per-shader support, in which
530 * case only the main (typically middle) part of shaders is cached.
531 * - Only VS, TCS, TES, PS are cached, out of which only the hw VS
532 * variants of VS and TES are cached, so LS and ES aren't.
533 * - GS and CS aren't cached, but it's certainly possible to cache
536 mtx_t shader_cache_mutex
;
537 struct hash_table
*shader_cache
;
539 /* Shader compiler queue for multithreaded compilation. */
540 struct util_queue shader_compiler_queue
;
541 /* Use at most 3 normal compiler threads on quadcore and better.
542 * Hyperthreaded CPUs report the number of threads, but we want
543 * the number of cores. We only need this many threads for shader-db. */
544 struct ac_llvm_compiler compiler
[24]; /* used by the queue only */
546 struct util_queue shader_compiler_queue_low_priority
;
547 /* Use at most 2 low priority threads on quadcore and better.
548 * We want to minimize the impact on multithreaded Mesa. */
549 struct ac_llvm_compiler compiler_lowp
[10];
552 struct si_blend_color
{
553 struct pipe_blend_color state
;
557 struct si_sampler_view
{
558 struct pipe_sampler_view base
;
559 /* [0..7] = image descriptor
560 * [4..7] = buffer descriptor */
562 uint32_t fmask_state
[8];
563 const struct legacy_surf_level
*base_level_info
;
566 bool is_stencil_sampler
;
568 bool dcc_incompatible
;
571 #define SI_SAMPLER_STATE_MAGIC 0x34f1c35a
573 struct si_sampler_state
{
578 uint32_t integer_val
[4];
579 uint32_t upgraded_depth_val
[4];
582 struct si_cs_shader_state
{
583 struct si_compute
*program
;
584 struct si_compute
*emitted_program
;
591 struct pipe_sampler_view
*views
[SI_NUM_SAMPLERS
];
592 struct si_sampler_state
*sampler_states
[SI_NUM_SAMPLERS
];
594 /* The i-th bit is set if that element is enabled (non-NULL resource). */
595 unsigned enabled_mask
;
596 uint32_t needs_depth_decompress_mask
;
597 uint32_t needs_color_decompress_mask
;
601 struct pipe_image_view views
[SI_NUM_IMAGES
];
602 uint32_t needs_color_decompress_mask
;
603 unsigned enabled_mask
;
606 struct si_framebuffer
{
607 struct pipe_framebuffer_state state
;
608 unsigned colorbuf_enabled_4bit
;
609 unsigned spi_shader_col_format
;
610 unsigned spi_shader_col_format_alpha
;
611 unsigned spi_shader_col_format_blend
;
612 unsigned spi_shader_col_format_blend_alpha
;
613 ubyte nr_samples
:5; /* at most 16xAA */
614 ubyte log_samples
:3; /* at most 4 = 16xAA */
615 ubyte nr_color_samples
; /* at most 8xAA */
616 ubyte compressed_cb_mask
;
617 ubyte uncompressed_cb_mask
;
619 ubyte color_is_int10
;
621 ubyte dcc_overwrite_combiner_watermark
;
624 bool CB_has_shader_readable_metadata
;
625 bool DB_has_shader_readable_metadata
;
629 /* This is the list we want to support. */
630 SI_QUANT_MODE_16_8_FIXED_POINT_1_256TH
,
631 SI_QUANT_MODE_14_10_FIXED_POINT_1_1024TH
,
632 SI_QUANT_MODE_12_12_FIXED_POINT_1_4096TH
,
635 struct si_signed_scissor
{
640 enum si_quant_mode quant_mode
;
645 struct pipe_scissor_state states
[SI_MAX_VIEWPORTS
];
648 struct si_viewports
{
650 unsigned depth_range_dirty_mask
;
651 struct pipe_viewport_state states
[SI_MAX_VIEWPORTS
];
652 struct si_signed_scissor as_scissor
[SI_MAX_VIEWPORTS
];
655 struct si_clip_state
{
656 struct pipe_clip_state state
;
660 struct si_streamout_target
{
661 struct pipe_stream_output_target b
;
663 /* The buffer where BUFFER_FILLED_SIZE is stored. */
664 struct r600_resource
*buf_filled_size
;
665 unsigned buf_filled_size_offset
;
666 bool buf_filled_size_valid
;
668 unsigned stride_in_dw
;
671 struct si_streamout
{
674 unsigned enabled_mask
;
675 unsigned num_targets
;
676 struct si_streamout_target
*targets
[PIPE_MAX_SO_BUFFERS
];
678 unsigned append_bitmask
;
681 /* External state which comes from the vertex shader,
682 * it must be set explicitly when binding a shader. */
683 uint16_t *stride_in_dw
;
684 unsigned enabled_stream_buffers_mask
; /* stream0 buffers0-3 in 4 LSB */
686 /* The state of VGT_STRMOUT_BUFFER_(CONFIG|EN). */
687 unsigned hw_enabled_mask
;
689 /* The state of VGT_STRMOUT_(CONFIG|EN). */
690 bool streamout_enabled
;
691 bool prims_gen_query_enabled
;
692 int num_prims_gen_queries
;
695 /* A shader state consists of the shader selector, which is a constant state
696 * object shared by multiple contexts and shouldn't be modified, and
697 * the current shader variant selected for this context.
699 struct si_shader_ctx_state
{
700 struct si_shader_selector
*cso
;
701 struct si_shader
*current
;
704 #define SI_NUM_VGT_PARAM_KEY_BITS 12
705 #define SI_NUM_VGT_PARAM_STATES (1 << SI_NUM_VGT_PARAM_KEY_BITS)
707 /* The IA_MULTI_VGT_PARAM key used to index the table of precomputed values.
708 * Some fields are set by state-change calls, most are set by draw_vbo.
710 union si_vgt_param_key
{
712 #ifdef PIPE_ARCH_LITTLE_ENDIAN
714 unsigned uses_instancing
:1;
715 unsigned multi_instances_smaller_than_primgroup
:1;
716 unsigned primitive_restart
:1;
717 unsigned count_from_stream_output
:1;
718 unsigned line_stipple_enabled
:1;
719 unsigned uses_tess
:1;
720 unsigned tess_uses_prim_id
:1;
722 unsigned _pad
:32 - SI_NUM_VGT_PARAM_KEY_BITS
;
723 #else /* PIPE_ARCH_BIG_ENDIAN */
724 unsigned _pad
:32 - SI_NUM_VGT_PARAM_KEY_BITS
;
726 unsigned tess_uses_prim_id
:1;
727 unsigned uses_tess
:1;
728 unsigned line_stipple_enabled
:1;
729 unsigned count_from_stream_output
:1;
730 unsigned primitive_restart
:1;
731 unsigned multi_instances_smaller_than_primgroup
:1;
732 unsigned uses_instancing
:1;
739 struct si_texture_handle
743 struct pipe_sampler_view
*view
;
744 struct si_sampler_state sstate
;
747 struct si_image_handle
751 struct pipe_image_view view
;
755 struct pipe_reference reference
;
756 struct si_context
*ctx
;
757 struct radeon_saved_cs gfx
;
758 struct r600_resource
*trace_buf
;
761 unsigned gfx_last_dw
;
767 struct pipe_context b
; /* base class */
769 enum radeon_family family
;
770 enum chip_class chip_class
;
772 struct radeon_winsys
*ws
;
773 struct radeon_winsys_ctx
*ctx
;
774 struct radeon_cmdbuf
*gfx_cs
;
775 struct radeon_cmdbuf
*dma_cs
;
776 struct pipe_fence_handle
*last_gfx_fence
;
777 struct pipe_fence_handle
*last_sdma_fence
;
778 struct r600_resource
*eop_bug_scratch
;
779 struct u_upload_mgr
*cached_gtt_allocator
;
780 struct threaded_context
*tc
;
781 struct u_suballocator
*allocator_zeroed_memory
;
782 struct slab_child_pool pool_transfers
;
783 struct slab_child_pool pool_transfers_unsync
; /* for threaded_context */
784 struct pipe_device_reset_callback device_reset_callback
;
785 struct u_log_context
*log
;
786 void *query_result_shader
;
787 struct blitter_context
*blitter
;
788 void *custom_dsa_flush
;
789 void *custom_blend_resolve
;
790 void *custom_blend_fmask_decompress
;
791 void *custom_blend_eliminate_fastclear
;
792 void *custom_blend_dcc_decompress
;
794 void *vs_blit_pos_layered
;
796 void *vs_blit_color_layered
;
797 void *vs_blit_texcoord
;
798 void *cs_clear_buffer
;
799 void *cs_copy_buffer
;
800 struct si_screen
*screen
;
801 struct pipe_debug_callback debug
;
802 struct ac_llvm_compiler compiler
; /* only non-threaded compilation */
803 struct si_shader_ctx_state fixed_func_tcs_shader
;
804 struct r600_resource
*wait_mem_scratch
;
805 unsigned wait_mem_number
;
806 uint16_t prefetch_L2_mask
;
808 bool gfx_flush_in_progress
:1;
809 bool gfx_last_ib_is_busy
:1;
810 bool compute_is_busy
:1;
812 unsigned num_gfx_cs_flushes
;
813 unsigned initial_gfx_cs_size
;
814 unsigned gpu_reset_counter
;
815 unsigned last_dirty_tex_counter
;
816 unsigned last_compressed_colortex_counter
;
817 unsigned last_num_draw_calls
;
818 unsigned flags
; /* flush flags */
819 /* Current unaccounted memory usage. */
823 /* Atoms (direct states). */
824 union si_state_atoms atoms
;
825 unsigned dirty_atoms
; /* mask */
826 /* PM4 states (precomputed immutable states) */
827 unsigned dirty_states
;
828 union si_state queued
;
829 union si_state emitted
;
831 /* Atom declarations. */
832 struct si_framebuffer framebuffer
;
833 unsigned sample_locs_num_samples
;
834 uint16_t sample_mask
;
835 unsigned last_cb_target_mask
;
836 struct si_blend_color blend_color
;
837 struct si_clip_state clip_state
;
838 struct si_shader_data shader_pointers
;
839 struct si_stencil_ref stencil_ref
;
840 struct si_scissors scissors
;
841 struct si_streamout streamout
;
842 struct si_viewports viewports
;
843 unsigned num_window_rectangles
;
844 bool window_rectangles_include
;
845 struct pipe_scissor_state window_rectangles
[4];
847 /* Precomputed states. */
848 struct si_pm4_state
*init_config
;
849 struct si_pm4_state
*init_config_gs_rings
;
850 bool init_config_has_vgt_flush
;
851 struct si_pm4_state
*vgt_shader_config
[4];
854 struct si_shader_ctx_state ps_shader
;
855 struct si_shader_ctx_state gs_shader
;
856 struct si_shader_ctx_state vs_shader
;
857 struct si_shader_ctx_state tcs_shader
;
858 struct si_shader_ctx_state tes_shader
;
859 struct si_cs_shader_state cs_shader_state
;
861 /* shader information */
862 struct si_vertex_elements
*vertex_elements
;
863 unsigned sprite_coord_enable
;
864 unsigned cs_max_waves_per_sh
;
866 bool do_update_shaders
;
868 /* vertex buffer descriptors */
869 uint32_t *vb_descriptors_gpu_list
;
870 struct r600_resource
*vb_descriptors_buffer
;
871 unsigned vb_descriptors_offset
;
873 /* shader descriptors */
874 struct si_descriptors descriptors
[SI_NUM_DESCS
];
875 unsigned descriptors_dirty
;
876 unsigned shader_pointers_dirty
;
877 unsigned shader_needs_decompress_mask
;
878 struct si_buffer_resources rw_buffers
;
879 struct si_buffer_resources const_and_shader_buffers
[SI_NUM_SHADERS
];
880 struct si_samplers samplers
[SI_NUM_SHADERS
];
881 struct si_images images
[SI_NUM_SHADERS
];
883 /* other shader resources */
884 struct pipe_constant_buffer null_const_buf
; /* used for set_constant_buffer(NULL) on CIK */
885 struct pipe_resource
*esgs_ring
;
886 struct pipe_resource
*gsvs_ring
;
887 struct pipe_resource
*tess_rings
;
888 union pipe_color_union
*border_color_table
; /* in CPU memory, any endian */
889 struct r600_resource
*border_color_buffer
;
890 union pipe_color_union
*border_color_map
; /* in VRAM (slow access), little endian */
891 unsigned border_color_count
;
892 unsigned num_vs_blit_sgprs
;
893 uint32_t vs_blit_sh_data
[SI_VS_BLIT_SGPRS_POS_TEXCOORD
];
894 uint32_t cs_user_data
[4];
896 /* Vertex and index buffers. */
897 bool vertex_buffers_dirty
;
898 bool vertex_buffer_pointer_dirty
;
899 struct pipe_vertex_buffer vertex_buffer
[SI_NUM_VERTEX_BUFFERS
];
901 /* MSAA config state. */
903 bool ps_uses_fbfetch
;
904 bool smoothing_enabled
;
906 /* DB render state. */
907 unsigned ps_db_shader_control
;
908 unsigned dbcb_copy_sample
;
909 bool dbcb_depth_copy_enabled
:1;
910 bool dbcb_stencil_copy_enabled
:1;
911 bool db_flush_depth_inplace
:1;
912 bool db_flush_stencil_inplace
:1;
913 bool db_depth_clear
:1;
914 bool db_depth_disable_expclear
:1;
915 bool db_stencil_clear
:1;
916 bool db_stencil_disable_expclear
:1;
917 bool occlusion_queries_disabled
:1;
918 bool generate_mipmap_for_depth
:1;
920 /* Emitted draw state. */
921 bool gs_tri_strip_adj_fix
:1;
924 int last_base_vertex
;
925 int last_start_instance
;
927 int last_sh_base_reg
;
928 int last_primitive_restart_en
;
929 int last_restart_index
;
931 int last_multi_vgt_param
;
933 unsigned last_sc_line_stipple
;
934 unsigned current_vs_state
;
935 unsigned last_vs_state
;
936 enum pipe_prim_type current_rast_prim
; /* primitive type after TES, GS */
939 struct r600_resource
*scratch_buffer
;
940 unsigned scratch_waves
;
941 unsigned spi_tmpring_size
;
943 struct r600_resource
*compute_scratch_buffer
;
945 /* Emitted derived tessellation state. */
946 /* Local shader (VS), or HS if LS-HS are merged. */
947 struct si_shader
*last_ls
;
948 struct si_shader_selector
*last_tcs
;
949 int last_num_tcs_input_cp
;
950 int last_tes_sh_base
;
951 bool last_tess_uses_primid
;
952 unsigned last_num_patches
;
953 int last_ls_hs_config
;
957 struct si_saved_cs
*current_saved_cs
;
958 uint64_t dmesg_timestamp
;
959 unsigned apitrace_call_number
;
962 bool need_check_render_feedback
;
963 bool decompression_enabled
;
965 bool vs_writes_viewport_index
;
966 bool vs_disables_clipping_viewport
;
968 /* Precomputed IA_MULTI_VGT_PARAM */
969 union si_vgt_param_key ia_multi_vgt_param_key
;
970 unsigned ia_multi_vgt_param
[SI_NUM_VGT_PARAM_STATES
];
972 /* Bindless descriptors. */
973 struct si_descriptors bindless_descriptors
;
974 struct util_idalloc bindless_used_slots
;
975 unsigned num_bindless_descriptors
;
976 bool bindless_descriptors_dirty
;
977 bool graphics_bindless_pointer_dirty
;
978 bool compute_bindless_pointer_dirty
;
980 /* Allocated bindless handles */
981 struct hash_table
*tex_handles
;
982 struct hash_table
*img_handles
;
984 /* Resident bindless handles */
985 struct util_dynarray resident_tex_handles
;
986 struct util_dynarray resident_img_handles
;
988 /* Resident bindless handles which need decompression */
989 struct util_dynarray resident_tex_needs_color_decompress
;
990 struct util_dynarray resident_img_needs_color_decompress
;
991 struct util_dynarray resident_tex_needs_depth_decompress
;
994 bool uses_bindless_samplers
;
995 bool uses_bindless_images
;
997 /* MSAA sample locations.
998 * The first index is the sample index.
999 * The second index is the coordinate: X, Y. */
1007 struct pipe_resource
*sample_pos_buffer
;
1010 unsigned num_draw_calls
;
1011 unsigned num_decompress_calls
;
1012 unsigned num_mrt_draw_calls
;
1013 unsigned num_prim_restart_calls
;
1014 unsigned num_spill_draw_calls
;
1015 unsigned num_compute_calls
;
1016 unsigned num_spill_compute_calls
;
1017 unsigned num_dma_calls
;
1018 unsigned num_cp_dma_calls
;
1019 unsigned num_vs_flushes
;
1020 unsigned num_ps_flushes
;
1021 unsigned num_cs_flushes
;
1022 unsigned num_cb_cache_flushes
;
1023 unsigned num_db_cache_flushes
;
1024 unsigned num_L2_invalidates
;
1025 unsigned num_L2_writebacks
;
1026 unsigned num_resident_handles
;
1027 uint64_t num_alloc_tex_transfer_bytes
;
1028 unsigned last_tex_ps_draw_ratio
; /* for query */
1029 unsigned context_roll_counter
;
1032 /* Maintain the list of active queries for pausing between IBs. */
1033 int num_occlusion_queries
;
1034 int num_perfect_occlusion_queries
;
1035 struct list_head active_queries
;
1036 unsigned num_cs_dw_queries_suspend
;
1038 /* Render condition. */
1039 struct pipe_query
*render_cond
;
1040 unsigned render_cond_mode
;
1041 bool render_cond_invert
;
1042 bool render_cond_force_off
; /* for u_blitter */
1044 /* Statistics gathering for the DCC enablement heuristic. It can't be
1045 * in si_texture because si_texture can be shared by multiple
1046 * contexts. This is for back buffers only. We shouldn't get too many
1049 * X11 DRI3 rotates among a finite set of back buffers. They should
1050 * all fit in this array. If they don't, separate DCC might never be
1051 * enabled by DCC stat gathering.
1054 struct si_texture
*tex
;
1055 /* Query queue: 0 = usually active, 1 = waiting, 2 = readback. */
1056 struct pipe_query
*ps_stats
[3];
1057 /* If all slots are used and another slot is needed,
1058 * the least recently used slot is evicted based on this. */
1059 int64_t last_use_timestamp
;
1063 /* Copy one resource to another using async DMA. */
1064 void (*dma_copy
)(struct pipe_context
*ctx
,
1065 struct pipe_resource
*dst
,
1067 unsigned dst_x
, unsigned dst_y
, unsigned dst_z
,
1068 struct pipe_resource
*src
,
1070 const struct pipe_box
*src_box
);
1072 struct si_tracked_regs tracked_regs
;
1076 void cik_init_sdma_functions(struct si_context
*sctx
);
1079 enum si_blitter_op
/* bitmask */
1081 SI_SAVE_TEXTURES
= 1,
1082 SI_SAVE_FRAMEBUFFER
= 2,
1083 SI_SAVE_FRAGMENT_STATE
= 4,
1084 SI_DISABLE_RENDER_COND
= 8,
1087 void si_blitter_begin(struct si_context
*sctx
, enum si_blitter_op op
);
1088 void si_blitter_end(struct si_context
*sctx
);
1089 void si_init_blit_functions(struct si_context
*sctx
);
1090 void si_decompress_textures(struct si_context
*sctx
, unsigned shader_mask
);
1091 void si_resource_copy_region(struct pipe_context
*ctx
,
1092 struct pipe_resource
*dst
,
1094 unsigned dstx
, unsigned dsty
, unsigned dstz
,
1095 struct pipe_resource
*src
,
1097 const struct pipe_box
*src_box
);
1098 void si_decompress_dcc(struct si_context
*sctx
, struct si_texture
*tex
);
1099 void si_blit_decompress_depth(struct pipe_context
*ctx
,
1100 struct si_texture
*texture
,
1101 struct si_texture
*staging
,
1102 unsigned first_level
, unsigned last_level
,
1103 unsigned first_layer
, unsigned last_layer
,
1104 unsigned first_sample
, unsigned last_sample
);
1107 bool si_rings_is_buffer_referenced(struct si_context
*sctx
,
1108 struct pb_buffer
*buf
,
1109 enum radeon_bo_usage usage
);
1110 void *si_buffer_map_sync_with_rings(struct si_context
*sctx
,
1111 struct r600_resource
*resource
,
1113 void si_init_resource_fields(struct si_screen
*sscreen
,
1114 struct r600_resource
*res
,
1115 uint64_t size
, unsigned alignment
);
1116 bool si_alloc_resource(struct si_screen
*sscreen
,
1117 struct r600_resource
*res
);
1118 struct pipe_resource
*pipe_aligned_buffer_create(struct pipe_screen
*screen
,
1119 unsigned flags
, unsigned usage
,
1120 unsigned size
, unsigned alignment
);
1121 struct r600_resource
*si_aligned_buffer_create(struct pipe_screen
*screen
,
1122 unsigned flags
, unsigned usage
,
1123 unsigned size
, unsigned alignment
);
1124 void si_replace_buffer_storage(struct pipe_context
*ctx
,
1125 struct pipe_resource
*dst
,
1126 struct pipe_resource
*src
);
1127 void si_init_screen_buffer_functions(struct si_screen
*sscreen
);
1128 void si_init_buffer_functions(struct si_context
*sctx
);
1131 enum pipe_format
si_simplify_cb_format(enum pipe_format format
);
1132 bool vi_alpha_is_on_msb(enum pipe_format format
);
1133 void vi_dcc_clear_level(struct si_context
*sctx
,
1134 struct si_texture
*tex
,
1135 unsigned level
, unsigned clear_value
);
1136 void si_init_clear_functions(struct si_context
*sctx
);
1138 /* si_compute_blit.c */
1139 unsigned si_get_flush_flags(struct si_context
*sctx
, enum si_coherency coher
,
1140 enum si_cache_policy cache_policy
);
1141 void si_clear_buffer(struct si_context
*sctx
, struct pipe_resource
*dst
,
1142 uint64_t offset
, uint64_t size
, uint32_t *clear_value
,
1143 uint32_t clear_value_size
, enum si_coherency coher
);
1144 void si_copy_buffer(struct si_context
*sctx
,
1145 struct pipe_resource
*dst
, struct pipe_resource
*src
,
1146 uint64_t dst_offset
, uint64_t src_offset
, unsigned size
);
1147 void si_init_compute_blit_functions(struct si_context
*sctx
);
1150 #define SI_CPDMA_SKIP_CHECK_CS_SPACE (1 << 0) /* don't call need_cs_space */
1151 #define SI_CPDMA_SKIP_SYNC_AFTER (1 << 1) /* don't wait for DMA after the copy */
1152 #define SI_CPDMA_SKIP_SYNC_BEFORE (1 << 2) /* don't wait for DMA before the copy (RAW hazards) */
1153 #define SI_CPDMA_SKIP_GFX_SYNC (1 << 3) /* don't flush caches and don't wait for PS/CS */
1154 #define SI_CPDMA_SKIP_BO_LIST_UPDATE (1 << 4) /* don't update the BO list */
1155 #define SI_CPDMA_SKIP_ALL (SI_CPDMA_SKIP_CHECK_CS_SPACE | \
1156 SI_CPDMA_SKIP_SYNC_AFTER | \
1157 SI_CPDMA_SKIP_SYNC_BEFORE | \
1158 SI_CPDMA_SKIP_GFX_SYNC | \
1159 SI_CPDMA_SKIP_BO_LIST_UPDATE)
1161 void si_cp_dma_wait_for_idle(struct si_context
*sctx
);
1162 void si_cp_dma_clear_buffer(struct si_context
*sctx
, struct pipe_resource
*dst
,
1163 uint64_t offset
, uint64_t size
, unsigned value
,
1164 enum si_coherency coher
,
1165 enum si_cache_policy cache_policy
);
1166 void si_cp_dma_copy_buffer(struct si_context
*sctx
,
1167 struct pipe_resource
*dst
, struct pipe_resource
*src
,
1168 uint64_t dst_offset
, uint64_t src_offset
, unsigned size
,
1169 unsigned user_flags
, enum si_coherency coher
,
1170 enum si_cache_policy cache_policy
);
1171 void cik_prefetch_TC_L2_async(struct si_context
*sctx
, struct pipe_resource
*buf
,
1172 uint64_t offset
, unsigned size
);
1173 void cik_emit_prefetch_L2(struct si_context
*sctx
, bool vertex_stage_only
);
1174 void si_test_gds(struct si_context
*sctx
);
1177 void si_save_cs(struct radeon_winsys
*ws
, struct radeon_cmdbuf
*cs
,
1178 struct radeon_saved_cs
*saved
, bool get_buffer_list
);
1179 void si_clear_saved_cs(struct radeon_saved_cs
*saved
);
1180 void si_destroy_saved_cs(struct si_saved_cs
*scs
);
1181 void si_auto_log_cs(void *data
, struct u_log_context
*log
);
1182 void si_log_hw_flush(struct si_context
*sctx
);
1183 void si_log_draw_state(struct si_context
*sctx
, struct u_log_context
*log
);
1184 void si_log_compute_state(struct si_context
*sctx
, struct u_log_context
*log
);
1185 void si_init_debug_functions(struct si_context
*sctx
);
1186 void si_check_vm_faults(struct si_context
*sctx
,
1187 struct radeon_saved_cs
*saved
, enum ring_type ring
);
1188 bool si_replace_shader(unsigned num
, struct ac_shader_binary
*binary
);
1191 void si_init_dma_functions(struct si_context
*sctx
);
1194 void si_dma_emit_timestamp(struct si_context
*sctx
, struct r600_resource
*dst
,
1196 void si_sdma_clear_buffer(struct si_context
*sctx
, struct pipe_resource
*dst
,
1197 uint64_t offset
, uint64_t size
, unsigned clear_value
);
1198 void si_need_dma_space(struct si_context
*ctx
, unsigned num_dw
,
1199 struct r600_resource
*dst
, struct r600_resource
*src
);
1200 void si_flush_dma_cs(struct si_context
*ctx
, unsigned flags
,
1201 struct pipe_fence_handle
**fence
);
1202 void si_screen_clear_buffer(struct si_screen
*sscreen
, struct pipe_resource
*dst
,
1203 uint64_t offset
, uint64_t size
, unsigned value
);
1206 void si_cp_release_mem(struct si_context
*ctx
,
1207 unsigned event
, unsigned event_flags
,
1208 unsigned dst_sel
, unsigned int_sel
, unsigned data_sel
,
1209 struct r600_resource
*buf
, uint64_t va
,
1210 uint32_t new_fence
, unsigned query_type
);
1211 unsigned si_cp_write_fence_dwords(struct si_screen
*screen
);
1212 void si_cp_wait_mem(struct si_context
*ctx
,
1213 uint64_t va
, uint32_t ref
, uint32_t mask
, unsigned flags
);
1214 void si_init_fence_functions(struct si_context
*ctx
);
1215 void si_init_screen_fence_functions(struct si_screen
*screen
);
1216 struct pipe_fence_handle
*si_create_fence(struct pipe_context
*ctx
,
1217 struct tc_unflushed_batch_token
*tc_token
);
1220 void si_init_screen_get_functions(struct si_screen
*sscreen
);
1223 void si_flush_gfx_cs(struct si_context
*ctx
, unsigned flags
,
1224 struct pipe_fence_handle
**fence
);
1225 void si_begin_new_gfx_cs(struct si_context
*ctx
);
1226 void si_need_gfx_cs_space(struct si_context
*ctx
);
1228 /* r600_gpu_load.c */
1229 void si_gpu_load_kill_thread(struct si_screen
*sscreen
);
1230 uint64_t si_begin_counter(struct si_screen
*sscreen
, unsigned type
);
1231 unsigned si_end_counter(struct si_screen
*sscreen
, unsigned type
,
1235 void si_init_compute_functions(struct si_context
*sctx
);
1237 /* r600_perfcounters.c */
1238 void si_perfcounters_destroy(struct si_screen
*sscreen
);
1240 /* si_perfcounters.c */
1241 void si_init_perfcounters(struct si_screen
*screen
);
1244 bool si_check_device_reset(struct si_context
*sctx
);
1247 void si_init_screen_query_functions(struct si_screen
*sscreen
);
1248 void si_init_query_functions(struct si_context
*sctx
);
1249 void si_suspend_queries(struct si_context
*sctx
);
1250 void si_resume_queries(struct si_context
*sctx
);
1252 /* si_shaderlib_tgsi.c */
1253 void *si_get_blitter_vs(struct si_context
*sctx
, enum blitter_attrib_type type
,
1254 unsigned num_layers
);
1255 void *si_create_fixed_func_tcs(struct si_context
*sctx
);
1256 void *si_create_dma_compute_shader(struct pipe_context
*ctx
,
1257 unsigned num_dwords_per_thread
,
1258 bool dst_stream_cache_policy
, bool is_copy
);
1259 void *si_create_query_result_cs(struct si_context
*sctx
);
1262 void si_test_dma(struct si_screen
*sscreen
);
1264 /* si_test_clearbuffer.c */
1265 void si_test_dma_perf(struct si_screen
*sscreen
);
1268 struct pipe_video_codec
*si_uvd_create_decoder(struct pipe_context
*context
,
1269 const struct pipe_video_codec
*templ
);
1271 struct pipe_video_buffer
*si_video_buffer_create(struct pipe_context
*pipe
,
1272 const struct pipe_video_buffer
*tmpl
);
1275 void si_update_vs_viewport_state(struct si_context
*ctx
);
1276 void si_init_viewport_functions(struct si_context
*ctx
);
1279 bool si_prepare_for_dma_blit(struct si_context
*sctx
,
1280 struct si_texture
*dst
,
1281 unsigned dst_level
, unsigned dstx
,
1282 unsigned dsty
, unsigned dstz
,
1283 struct si_texture
*src
,
1285 const struct pipe_box
*src_box
);
1286 void si_eliminate_fast_color_clear(struct si_context
*sctx
,
1287 struct si_texture
*tex
);
1288 void si_texture_discard_cmask(struct si_screen
*sscreen
,
1289 struct si_texture
*tex
);
1290 bool si_init_flushed_depth_texture(struct pipe_context
*ctx
,
1291 struct pipe_resource
*texture
,
1292 struct si_texture
**staging
);
1293 void si_print_texture_info(struct si_screen
*sscreen
,
1294 struct si_texture
*tex
, struct u_log_context
*log
);
1295 struct pipe_resource
*si_texture_create(struct pipe_screen
*screen
,
1296 const struct pipe_resource
*templ
);
1297 bool vi_dcc_formats_compatible(enum pipe_format format1
,
1298 enum pipe_format format2
);
1299 bool vi_dcc_formats_are_incompatible(struct pipe_resource
*tex
,
1301 enum pipe_format view_format
);
1302 void vi_disable_dcc_if_incompatible_format(struct si_context
*sctx
,
1303 struct pipe_resource
*tex
,
1305 enum pipe_format view_format
);
1306 struct pipe_surface
*si_create_surface_custom(struct pipe_context
*pipe
,
1307 struct pipe_resource
*texture
,
1308 const struct pipe_surface
*templ
,
1309 unsigned width0
, unsigned height0
,
1310 unsigned width
, unsigned height
);
1311 unsigned si_translate_colorswap(enum pipe_format format
, bool do_endian_swap
);
1312 void vi_separate_dcc_try_enable(struct si_context
*sctx
,
1313 struct si_texture
*tex
);
1314 void vi_separate_dcc_start_query(struct si_context
*sctx
,
1315 struct si_texture
*tex
);
1316 void vi_separate_dcc_stop_query(struct si_context
*sctx
,
1317 struct si_texture
*tex
);
1318 void vi_separate_dcc_process_and_reset_stats(struct pipe_context
*ctx
,
1319 struct si_texture
*tex
);
1320 bool si_texture_disable_dcc(struct si_context
*sctx
,
1321 struct si_texture
*tex
);
1322 void si_init_screen_texture_functions(struct si_screen
*sscreen
);
1323 void si_init_context_texture_functions(struct si_context
*sctx
);
1330 static inline struct r600_resource
*r600_resource(struct pipe_resource
*r
)
1332 return (struct r600_resource
*)r
;
1336 r600_resource_reference(struct r600_resource
**ptr
, struct r600_resource
*res
)
1338 pipe_resource_reference((struct pipe_resource
**)ptr
,
1339 (struct pipe_resource
*)res
);
1343 si_texture_reference(struct si_texture
**ptr
, struct si_texture
*res
)
1345 pipe_resource_reference((struct pipe_resource
**)ptr
, &res
->buffer
.b
.b
);
1349 vi_dcc_enabled(struct si_texture
*tex
, unsigned level
)
1351 return tex
->dcc_offset
&& level
< tex
->surface
.num_dcc_levels
;
1354 static inline unsigned
1355 si_tile_mode_index(struct si_texture
*tex
, unsigned level
, bool stencil
)
1358 return tex
->surface
.u
.legacy
.stencil_tiling_index
[level
];
1360 return tex
->surface
.u
.legacy
.tiling_index
[level
];
1364 si_context_add_resource_size(struct si_context
*sctx
, struct pipe_resource
*r
)
1367 /* Add memory usage for need_gfx_cs_space */
1368 sctx
->vram
+= r600_resource(r
)->vram_usage
;
1369 sctx
->gtt
+= r600_resource(r
)->gart_usage
;
1374 si_invalidate_draw_sh_constants(struct si_context
*sctx
)
1376 sctx
->last_base_vertex
= SI_BASE_VERTEX_UNKNOWN
;
1379 static inline unsigned
1380 si_get_atom_bit(struct si_context
*sctx
, struct si_atom
*atom
)
1382 return 1 << (atom
- sctx
->atoms
.array
);
1386 si_set_atom_dirty(struct si_context
*sctx
, struct si_atom
*atom
, bool dirty
)
1388 unsigned bit
= si_get_atom_bit(sctx
, atom
);
1391 sctx
->dirty_atoms
|= bit
;
1393 sctx
->dirty_atoms
&= ~bit
;
1397 si_is_atom_dirty(struct si_context
*sctx
, struct si_atom
*atom
)
1399 return (sctx
->dirty_atoms
& si_get_atom_bit(sctx
, atom
)) != 0;
1403 si_mark_atom_dirty(struct si_context
*sctx
, struct si_atom
*atom
)
1405 si_set_atom_dirty(sctx
, atom
, true);
1408 static inline struct si_shader_ctx_state
*si_get_vs(struct si_context
*sctx
)
1410 if (sctx
->gs_shader
.cso
)
1411 return &sctx
->gs_shader
;
1412 if (sctx
->tes_shader
.cso
)
1413 return &sctx
->tes_shader
;
1415 return &sctx
->vs_shader
;
1418 static inline struct tgsi_shader_info
*si_get_vs_info(struct si_context
*sctx
)
1420 struct si_shader_ctx_state
*vs
= si_get_vs(sctx
);
1422 return vs
->cso
? &vs
->cso
->info
: NULL
;
1425 static inline struct si_shader
* si_get_vs_state(struct si_context
*sctx
)
1427 if (sctx
->gs_shader
.cso
)
1428 return sctx
->gs_shader
.cso
->gs_copy_shader
;
1430 struct si_shader_ctx_state
*vs
= si_get_vs(sctx
);
1431 return vs
->current
? vs
->current
: NULL
;
1434 static inline bool si_can_dump_shader(struct si_screen
*sscreen
,
1437 return sscreen
->debug_flags
& (1 << processor
);
1440 static inline bool si_get_strmout_en(struct si_context
*sctx
)
1442 return sctx
->streamout
.streamout_enabled
||
1443 sctx
->streamout
.prims_gen_query_enabled
;
1446 static inline unsigned
1447 si_optimal_tcc_alignment(struct si_context
*sctx
, unsigned upload_size
)
1449 unsigned alignment
, tcc_cache_line_size
;
1451 /* If the upload size is less than the cache line size (e.g. 16, 32),
1452 * the whole thing will fit into a cache line if we align it to its size.
1453 * The idea is that multiple small uploads can share a cache line.
1454 * If the upload size is greater, align it to the cache line size.
1456 alignment
= util_next_power_of_two(upload_size
);
1457 tcc_cache_line_size
= sctx
->screen
->info
.tcc_cache_line_size
;
1458 return MIN2(alignment
, tcc_cache_line_size
);
1462 si_saved_cs_reference(struct si_saved_cs
**dst
, struct si_saved_cs
*src
)
1464 if (pipe_reference(&(*dst
)->reference
, &src
->reference
))
1465 si_destroy_saved_cs(*dst
);
1471 si_make_CB_shader_coherent(struct si_context
*sctx
, unsigned num_samples
,
1472 bool shaders_read_metadata
)
1474 sctx
->flags
|= SI_CONTEXT_FLUSH_AND_INV_CB
|
1475 SI_CONTEXT_INV_VMEM_L1
;
1477 if (sctx
->chip_class
>= GFX9
) {
1478 /* Single-sample color is coherent with shaders on GFX9, but
1479 * L2 metadata must be flushed if shaders read metadata.
1482 if (num_samples
>= 2)
1483 sctx
->flags
|= SI_CONTEXT_INV_GLOBAL_L2
;
1484 else if (shaders_read_metadata
)
1485 sctx
->flags
|= SI_CONTEXT_INV_L2_METADATA
;
1488 sctx
->flags
|= SI_CONTEXT_INV_GLOBAL_L2
;
1493 si_make_DB_shader_coherent(struct si_context
*sctx
, unsigned num_samples
,
1494 bool include_stencil
, bool shaders_read_metadata
)
1496 sctx
->flags
|= SI_CONTEXT_FLUSH_AND_INV_DB
|
1497 SI_CONTEXT_INV_VMEM_L1
;
1499 if (sctx
->chip_class
>= GFX9
) {
1500 /* Single-sample depth (not stencil) is coherent with shaders
1501 * on GFX9, but L2 metadata must be flushed if shaders read
1504 if (num_samples
>= 2 || include_stencil
)
1505 sctx
->flags
|= SI_CONTEXT_INV_GLOBAL_L2
;
1506 else if (shaders_read_metadata
)
1507 sctx
->flags
|= SI_CONTEXT_INV_L2_METADATA
;
1510 sctx
->flags
|= SI_CONTEXT_INV_GLOBAL_L2
;
1515 si_can_sample_zs(struct si_texture
*tex
, bool stencil_sampler
)
1517 return (stencil_sampler
&& tex
->can_sample_s
) ||
1518 (!stencil_sampler
&& tex
->can_sample_z
);
1522 si_htile_enabled(struct si_texture
*tex
, unsigned level
)
1524 return tex
->htile_offset
&& level
== 0;
1528 vi_tc_compat_htile_enabled(struct si_texture
*tex
, unsigned level
)
1530 assert(!tex
->tc_compatible_htile
|| tex
->htile_offset
);
1531 return tex
->tc_compatible_htile
&& level
== 0;
1534 static inline unsigned si_get_ps_iter_samples(struct si_context
*sctx
)
1536 if (sctx
->ps_uses_fbfetch
)
1537 return sctx
->framebuffer
.nr_color_samples
;
1539 return MIN2(sctx
->ps_iter_samples
, sctx
->framebuffer
.nr_color_samples
);
1542 static inline unsigned si_get_total_colormask(struct si_context
*sctx
)
1544 if (sctx
->queued
.named
.rasterizer
->rasterizer_discard
)
1547 struct si_shader_selector
*ps
= sctx
->ps_shader
.cso
;
1551 unsigned colormask
= sctx
->framebuffer
.colorbuf_enabled_4bit
&
1552 sctx
->queued
.named
.blend
->cb_target_mask
;
1554 if (!ps
->info
.properties
[TGSI_PROPERTY_FS_COLOR0_WRITES_ALL_CBUFS
])
1555 colormask
&= ps
->colors_written_4bit
;
1556 else if (!ps
->colors_written_4bit
)
1557 colormask
= 0; /* color0 writes all cbufs, but it's not written */
1562 #define UTIL_ALL_PRIM_LINE_MODES ((1 << PIPE_PRIM_LINES) | \
1563 (1 << PIPE_PRIM_LINE_LOOP) | \
1564 (1 << PIPE_PRIM_LINE_STRIP) | \
1565 (1 << PIPE_PRIM_LINES_ADJACENCY) | \
1566 (1 << PIPE_PRIM_LINE_STRIP_ADJACENCY))
1568 static inline bool util_prim_is_lines(unsigned prim
)
1570 return ((1 << prim
) & UTIL_ALL_PRIM_LINE_MODES
) != 0;
1573 static inline bool util_prim_is_points_or_lines(unsigned prim
)
1575 return ((1 << prim
) & (UTIL_ALL_PRIM_LINE_MODES
|
1576 (1 << PIPE_PRIM_POINTS
))) != 0;
1580 * Return true if there is enough memory in VRAM and GTT for the buffers
1583 * \param vram VRAM memory size not added to the buffer list yet
1584 * \param gtt GTT memory size not added to the buffer list yet
1587 radeon_cs_memory_below_limit(struct si_screen
*screen
,
1588 struct radeon_cmdbuf
*cs
,
1589 uint64_t vram
, uint64_t gtt
)
1591 vram
+= cs
->used_vram
;
1592 gtt
+= cs
->used_gart
;
1594 /* Anything that goes above the VRAM size should go to GTT. */
1595 if (vram
> screen
->info
.vram_size
)
1596 gtt
+= vram
- screen
->info
.vram_size
;
1598 /* Now we just need to check if we have enough GTT. */
1599 return gtt
< screen
->info
.gart_size
* 0.7;
1603 * Add a buffer to the buffer list for the given command stream (CS).
1605 * All buffers used by a CS must be added to the list. This tells the kernel
1606 * driver which buffers are used by GPU commands. Other buffers can
1607 * be swapped out (not accessible) during execution.
1609 * The buffer list becomes empty after every context flush and must be
1612 static inline void radeon_add_to_buffer_list(struct si_context
*sctx
,
1613 struct radeon_cmdbuf
*cs
,
1614 struct r600_resource
*rbo
,
1615 enum radeon_bo_usage usage
,
1616 enum radeon_bo_priority priority
)
1619 sctx
->ws
->cs_add_buffer(
1621 (enum radeon_bo_usage
)(usage
| RADEON_USAGE_SYNCHRONIZED
),
1622 rbo
->domains
, priority
);
1626 * Same as above, but also checks memory usage and flushes the context
1629 * When this SHOULD NOT be used:
1631 * - if si_context_add_resource_size has been called for the buffer
1632 * followed by *_need_cs_space for checking the memory usage
1634 * - if si_need_dma_space has been called for the buffer
1636 * - when emitting state packets and draw packets (because preceding packets
1637 * can't be re-emitted at that point)
1639 * - if shader resource "enabled_mask" is not up-to-date or there is
1640 * a different constraint disallowing a context flush
1643 radeon_add_to_gfx_buffer_list_check_mem(struct si_context
*sctx
,
1644 struct r600_resource
*rbo
,
1645 enum radeon_bo_usage usage
,
1646 enum radeon_bo_priority priority
,
1650 !radeon_cs_memory_below_limit(sctx
->screen
, sctx
->gfx_cs
,
1651 sctx
->vram
+ rbo
->vram_usage
,
1652 sctx
->gtt
+ rbo
->gart_usage
))
1653 si_flush_gfx_cs(sctx
, RADEON_FLUSH_ASYNC_START_NEXT_GFX_IB_NOW
, NULL
);
1655 radeon_add_to_buffer_list(sctx
, sctx
->gfx_cs
, rbo
, usage
, priority
);
1658 #define PRINT_ERR(fmt, args...) \
1659 fprintf(stderr, "EE %s:%d %s - " fmt, __FILE__, __LINE__, __func__, ##args)