c6e917cf069ebc7e288179ad52b2b47fd0fd2dcc
[mesa.git] / src / gallium / drivers / radeonsi / si_pipe.h
1 /*
2 * Copyright 2010 Jerome Glisse <glisse@freedesktop.org>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Jerome Glisse
25 */
26 #ifndef SI_PIPE_H
27 #define SI_PIPE_H
28
29 #include "si_state.h"
30
31 #include <llvm-c/TargetMachine.h>
32
33 #ifdef PIPE_ARCH_BIG_ENDIAN
34 #define SI_BIG_ENDIAN 1
35 #else
36 #define SI_BIG_ENDIAN 0
37 #endif
38
39 /* The base vertex and primitive restart can be any number, but we must pick
40 * one which will mean "unknown" for the purpose of state tracking and
41 * the number shouldn't be a commonly-used one. */
42 #define SI_BASE_VERTEX_UNKNOWN INT_MIN
43 #define SI_RESTART_INDEX_UNKNOWN INT_MIN
44 #define SI_NUM_SMOOTH_AA_SAMPLES 8
45 #define SI_GS_PER_ES 128
46
47 /* Instruction cache. */
48 #define SI_CONTEXT_INV_ICACHE (R600_CONTEXT_PRIVATE_FLAG << 0)
49 /* SMEM L1, other names: KCACHE, constant cache, DCACHE, data cache */
50 #define SI_CONTEXT_INV_SMEM_L1 (R600_CONTEXT_PRIVATE_FLAG << 1)
51 /* VMEM L1 can optionally be bypassed (GLC=1). Other names: TC L1 */
52 #define SI_CONTEXT_INV_VMEM_L1 (R600_CONTEXT_PRIVATE_FLAG << 2)
53 /* Used by everything except CB/DB, can be bypassed (SLC=1). Other names: TC L2 */
54 #define SI_CONTEXT_INV_GLOBAL_L2 (R600_CONTEXT_PRIVATE_FLAG << 3)
55 /* Framebuffer caches. */
56 #define SI_CONTEXT_FLUSH_AND_INV_CB_META (R600_CONTEXT_PRIVATE_FLAG << 4)
57 #define SI_CONTEXT_FLUSH_AND_INV_DB_META (R600_CONTEXT_PRIVATE_FLAG << 5)
58 #define SI_CONTEXT_FLUSH_AND_INV_DB (R600_CONTEXT_PRIVATE_FLAG << 6)
59 #define SI_CONTEXT_FLUSH_AND_INV_CB (R600_CONTEXT_PRIVATE_FLAG << 7)
60 /* Engine synchronization. */
61 #define SI_CONTEXT_VS_PARTIAL_FLUSH (R600_CONTEXT_PRIVATE_FLAG << 8)
62 #define SI_CONTEXT_PS_PARTIAL_FLUSH (R600_CONTEXT_PRIVATE_FLAG << 9)
63 #define SI_CONTEXT_CS_PARTIAL_FLUSH (R600_CONTEXT_PRIVATE_FLAG << 10)
64 #define SI_CONTEXT_VGT_FLUSH (R600_CONTEXT_PRIVATE_FLAG << 11)
65 #define SI_CONTEXT_VGT_STREAMOUT_SYNC (R600_CONTEXT_PRIVATE_FLAG << 12)
66
67 #define SI_CONTEXT_FLUSH_AND_INV_FRAMEBUFFER (SI_CONTEXT_FLUSH_AND_INV_CB | \
68 SI_CONTEXT_FLUSH_AND_INV_CB_META | \
69 SI_CONTEXT_FLUSH_AND_INV_DB | \
70 SI_CONTEXT_FLUSH_AND_INV_DB_META)
71
72 #define SI_ENCODE_TRACE_POINT(id) (0xcafe0000 | ((id) & 0xffff))
73 #define SI_IS_TRACE_POINT(x) (((x) & 0xcafe0000) == 0xcafe0000)
74 #define SI_GET_TRACE_POINT_ID(x) ((x) & 0xffff)
75
76 #define SI_MAX_BORDER_COLORS 4096
77
78 struct si_compute;
79 struct hash_table;
80 struct u_suballocator;
81
82 struct si_screen {
83 struct r600_common_screen b;
84 unsigned gs_table_depth;
85
86 /* Whether shaders are monolithic (1-part) or separate (3-part). */
87 bool use_monolithic_shaders;
88
89 pipe_mutex shader_parts_mutex;
90 struct si_shader_part *vs_prologs;
91 struct si_shader_part *vs_epilogs;
92 struct si_shader_part *tcs_epilogs;
93 struct si_shader_part *ps_prologs;
94 struct si_shader_part *ps_epilogs;
95
96 /* Shader cache in memory.
97 *
98 * Design & limitations:
99 * - The shader cache is per screen (= per process), never saved to
100 * disk, and skips redundant shader compilations from TGSI to bytecode.
101 * - It can only be used with one-variant-per-shader support, in which
102 * case only the main (typically middle) part of shaders is cached.
103 * - Only VS, TCS, TES, PS are cached, out of which only the hw VS
104 * variants of VS and TES are cached, so LS and ES aren't.
105 * - GS and CS aren't cached, but it's certainly possible to cache
106 * those as well.
107 */
108 pipe_mutex shader_cache_mutex;
109 struct hash_table *shader_cache;
110 };
111
112 struct si_blend_color {
113 struct r600_atom atom;
114 struct pipe_blend_color state;
115 };
116
117 struct si_sampler_view {
118 struct pipe_sampler_view base;
119 struct list_head list;
120 /* [0..7] = image descriptor
121 * [4..7] = buffer descriptor */
122 uint32_t state[8];
123 uint32_t fmask_state[8];
124 const struct radeon_surf_level *base_level_info;
125 unsigned base_level;
126 unsigned block_width;
127 bool is_stencil_sampler;
128 };
129
130 struct si_sampler_state {
131 uint32_t val[4];
132 };
133
134 struct si_cs_shader_state {
135 struct si_compute *program;
136 struct si_compute *emitted_program;
137 unsigned offset;
138 bool initialized;
139 bool uses_scratch;
140 };
141
142 struct si_textures_info {
143 struct si_sampler_views views;
144 uint32_t depth_texture_mask; /* which textures are depth */
145 uint32_t compressed_colortex_mask;
146 };
147
148 struct si_images_info {
149 struct pipe_image_view views[SI_NUM_IMAGES];
150 uint32_t compressed_colortex_mask;
151 unsigned enabled_mask;
152 };
153
154 struct si_framebuffer {
155 struct r600_atom atom;
156 struct pipe_framebuffer_state state;
157 unsigned nr_samples;
158 unsigned log_samples;
159 unsigned cb0_is_integer;
160 unsigned compressed_cb_mask;
161 unsigned spi_shader_col_format;
162 unsigned spi_shader_col_format_alpha;
163 unsigned spi_shader_col_format_blend;
164 unsigned spi_shader_col_format_blend_alpha;
165 unsigned color_is_int8; /* bitmask */
166 unsigned dirty_cbufs;
167 bool dirty_zsbuf;
168 };
169
170 struct si_clip_state {
171 struct r600_atom atom;
172 struct pipe_clip_state state;
173 };
174
175 struct si_sample_mask {
176 struct r600_atom atom;
177 uint16_t sample_mask;
178 };
179
180 /* A shader state consists of the shader selector, which is a constant state
181 * object shared by multiple contexts and shouldn't be modified, and
182 * the current shader variant selected for this context.
183 */
184 struct si_shader_ctx_state {
185 struct si_shader_selector *cso;
186 struct si_shader *current;
187 };
188
189 struct si_context {
190 struct r600_common_context b;
191 struct blitter_context *blitter;
192 void *custom_dsa_flush;
193 void *custom_blend_resolve;
194 void *custom_blend_decompress;
195 void *custom_blend_fastclear;
196 void *custom_blend_dcc_decompress;
197 struct si_screen *screen;
198
199 struct radeon_winsys_cs *ce_ib;
200 struct radeon_winsys_cs *ce_preamble_ib;
201 bool ce_need_synchronization;
202 struct u_suballocator *ce_suballocator;
203
204 struct pipe_fence_handle *last_gfx_fence;
205 struct si_shader_ctx_state fixed_func_tcs_shader;
206 LLVMTargetMachineRef tm;
207 bool gfx_flush_in_progress;
208
209 /* Atoms (direct states). */
210 union si_state_atoms atoms;
211 unsigned dirty_atoms; /* mask */
212 /* PM4 states (precomputed immutable states) */
213 union si_state queued;
214 union si_state emitted;
215
216 /* Atom declarations. */
217 struct r600_atom cache_flush;
218 struct si_framebuffer framebuffer;
219 struct r600_atom msaa_sample_locs;
220 struct r600_atom db_render_state;
221 struct r600_atom msaa_config;
222 struct si_sample_mask sample_mask;
223 struct r600_atom cb_render_state;
224 struct si_blend_color blend_color;
225 struct r600_atom clip_regs;
226 struct si_clip_state clip_state;
227 struct si_shader_data shader_userdata;
228 struct si_stencil_ref stencil_ref;
229 struct r600_atom spi_map;
230
231 /* Precomputed states. */
232 struct si_pm4_state *init_config;
233 struct si_pm4_state *init_config_gs_rings;
234 bool init_config_has_vgt_flush;
235 struct si_pm4_state *vgt_shader_config[4];
236
237 /* shaders */
238 struct si_shader_ctx_state ps_shader;
239 struct si_shader_ctx_state gs_shader;
240 struct si_shader_ctx_state vs_shader;
241 struct si_shader_ctx_state tcs_shader;
242 struct si_shader_ctx_state tes_shader;
243 struct si_cs_shader_state cs_shader_state;
244
245 /* shader information */
246 struct si_vertex_element *vertex_elements;
247 unsigned sprite_coord_enable;
248 bool flatshade;
249
250 /* shader descriptors */
251 struct si_descriptors vertex_buffers;
252 struct si_descriptors descriptors[SI_NUM_DESCS];
253 unsigned descriptors_dirty;
254 struct si_buffer_resources rw_buffers;
255 struct si_buffer_resources const_buffers[SI_NUM_SHADERS];
256 struct si_buffer_resources shader_buffers[SI_NUM_SHADERS];
257 struct si_textures_info samplers[SI_NUM_SHADERS];
258 struct si_images_info images[SI_NUM_SHADERS];
259
260 /* other shader resources */
261 struct pipe_constant_buffer null_const_buf; /* used for set_constant_buffer(NULL) on CIK */
262 struct pipe_resource *esgs_ring;
263 struct pipe_resource *gsvs_ring;
264 struct pipe_resource *tf_ring;
265 struct pipe_resource *tess_offchip_ring;
266 union pipe_color_union *border_color_table; /* in CPU memory, any endian */
267 struct r600_resource *border_color_buffer;
268 union pipe_color_union *border_color_map; /* in VRAM (slow access), little endian */
269 unsigned border_color_count;
270
271 /* Vertex and index buffers. */
272 bool vertex_buffers_dirty;
273 struct pipe_index_buffer index_buffer;
274 struct pipe_vertex_buffer vertex_buffer[SI_NUM_VERTEX_BUFFERS];
275
276 /* MSAA config state. */
277 int ps_iter_samples;
278 bool smoothing_enabled;
279
280 /* DB render state. */
281 bool dbcb_depth_copy_enabled;
282 bool dbcb_stencil_copy_enabled;
283 unsigned dbcb_copy_sample;
284 bool db_flush_depth_inplace;
285 bool db_flush_stencil_inplace;
286 bool db_depth_clear;
287 bool db_depth_disable_expclear;
288 bool db_stencil_clear;
289 bool db_stencil_disable_expclear;
290 unsigned ps_db_shader_control;
291 bool occlusion_queries_disabled;
292
293 /* Emitted draw state. */
294 int last_base_vertex;
295 int last_start_instance;
296 int last_sh_base_reg;
297 int last_primitive_restart_en;
298 int last_restart_index;
299 int last_gs_out_prim;
300 int last_prim;
301 int last_multi_vgt_param;
302 int last_ls_hs_config;
303 int last_rast_prim;
304 unsigned last_sc_line_stipple;
305 int current_rast_prim; /* primitive type after TES, GS */
306 unsigned last_gsvs_itemsize;
307
308 /* Scratch buffer */
309 struct r600_resource *scratch_buffer;
310 boolean emit_scratch_reloc;
311 unsigned scratch_waves;
312 unsigned spi_tmpring_size;
313
314 struct r600_resource *compute_scratch_buffer;
315
316 /* Emitted derived tessellation state. */
317 struct si_shader *last_ls; /* local shader (VS) */
318 struct si_shader_selector *last_tcs;
319 int last_num_tcs_input_cp;
320 int last_tes_sh_base;
321
322 /* Debug state. */
323 bool is_debug;
324 struct radeon_saved_cs last_gfx;
325 struct r600_resource *last_trace_buf;
326 struct r600_resource *trace_buf;
327 unsigned trace_id;
328 uint64_t dmesg_timestamp;
329
330 /* Other state */
331 bool need_check_render_feedback;
332 };
333
334 /* cik_sdma.c */
335 void cik_init_sdma_functions(struct si_context *sctx);
336
337 /* si_blit.c */
338 void si_init_blit_functions(struct si_context *sctx);
339 void si_decompress_graphics_textures(struct si_context *sctx);
340 void si_decompress_compute_textures(struct si_context *sctx);
341 void si_resource_copy_region(struct pipe_context *ctx,
342 struct pipe_resource *dst,
343 unsigned dst_level,
344 unsigned dstx, unsigned dsty, unsigned dstz,
345 struct pipe_resource *src,
346 unsigned src_level,
347 const struct pipe_box *src_box);
348
349 /* si_cp_dma.c */
350 void si_copy_buffer(struct si_context *sctx,
351 struct pipe_resource *dst, struct pipe_resource *src,
352 uint64_t dst_offset, uint64_t src_offset, unsigned size);
353 void si_init_cp_dma_functions(struct si_context *sctx);
354
355 /* si_debug.c */
356 void si_init_debug_functions(struct si_context *sctx);
357 void si_check_vm_faults(struct r600_common_context *ctx,
358 struct radeon_saved_cs *saved, enum ring_type ring);
359 bool si_replace_shader(unsigned num, struct radeon_shader_binary *binary);
360
361 /* si_dma.c */
362 void si_init_dma_functions(struct si_context *sctx);
363
364 /* si_hw_context.c */
365 void si_context_gfx_flush(void *context, unsigned flags,
366 struct pipe_fence_handle **fence);
367 void si_begin_new_cs(struct si_context *ctx);
368 void si_need_cs_space(struct si_context *ctx);
369
370 /* si_compute.c */
371 void si_init_compute_functions(struct si_context *sctx);
372
373 /* si_perfcounters.c */
374 void si_init_perfcounters(struct si_screen *screen);
375
376 /* si_uvd.c */
377 struct pipe_video_codec *si_uvd_create_decoder(struct pipe_context *context,
378 const struct pipe_video_codec *templ);
379
380 struct pipe_video_buffer *si_video_buffer_create(struct pipe_context *pipe,
381 const struct pipe_video_buffer *tmpl);
382
383 /*
384 * common helpers
385 */
386
387 static inline struct r600_resource *
388 si_resource_create_custom(struct pipe_screen *screen,
389 unsigned usage, unsigned size)
390 {
391 assert(size);
392 return r600_resource(pipe_buffer_create(screen,
393 PIPE_BIND_CUSTOM, usage, size));
394 }
395
396 static inline void
397 si_invalidate_draw_sh_constants(struct si_context *sctx)
398 {
399 sctx->last_base_vertex = SI_BASE_VERTEX_UNKNOWN;
400 sctx->last_start_instance = -1; /* reset to an unknown value */
401 sctx->last_sh_base_reg = -1; /* reset to an unknown value */
402 }
403
404 static inline void
405 si_set_atom_dirty(struct si_context *sctx,
406 struct r600_atom *atom, bool dirty)
407 {
408 unsigned bit = 1 << (atom->id - 1);
409
410 if (dirty)
411 sctx->dirty_atoms |= bit;
412 else
413 sctx->dirty_atoms &= ~bit;
414 }
415
416 static inline bool
417 si_is_atom_dirty(struct si_context *sctx,
418 struct r600_atom *atom)
419 {
420 unsigned bit = 1 << (atom->id - 1);
421
422 return sctx->dirty_atoms & bit;
423 }
424
425 static inline void
426 si_mark_atom_dirty(struct si_context *sctx,
427 struct r600_atom *atom)
428 {
429 si_set_atom_dirty(sctx, atom, true);
430 }
431
432 #endif