radeonsi: compute scissor from viewport in set_viewport_states
[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 /* Compute only. */
67 #define SI_CONTEXT_FLUSH_WITH_INV_L2 (R600_CONTEXT_PRIVATE_FLAG << 13) /* TODO: merge with TC? */
68 #define SI_CONTEXT_FLAG_COMPUTE (R600_CONTEXT_PRIVATE_FLAG << 14)
69
70 #define SI_CONTEXT_FLUSH_AND_INV_FRAMEBUFFER (SI_CONTEXT_FLUSH_AND_INV_CB | \
71 SI_CONTEXT_FLUSH_AND_INV_CB_META | \
72 SI_CONTEXT_FLUSH_AND_INV_DB | \
73 SI_CONTEXT_FLUSH_AND_INV_DB_META)
74
75 #define SI_ENCODE_TRACE_POINT(id) (0xcafe0000 | ((id) & 0xffff))
76 #define SI_IS_TRACE_POINT(x) (((x) & 0xcafe0000) == 0xcafe0000)
77 #define SI_GET_TRACE_POINT_ID(x) ((x) & 0xffff)
78
79 #define SI_MAX_VIEWPORTS 16
80 #define SI_MAX_BORDER_COLORS 4096
81
82 struct si_compute;
83 struct hash_table;
84
85 struct si_screen {
86 struct r600_common_screen b;
87 unsigned gs_table_depth;
88
89 /* Whether shaders are monolithic (1-part) or separate (3-part). */
90 bool use_monolithic_shaders;
91
92 pipe_mutex shader_parts_mutex;
93 struct si_shader_part *vs_prologs;
94 struct si_shader_part *vs_epilogs;
95 struct si_shader_part *tcs_epilogs;
96 struct si_shader_part *ps_prologs;
97 struct si_shader_part *ps_epilogs;
98
99 /* Shader cache in memory.
100 *
101 * Design & limitations:
102 * - The shader cache is per screen (= per process), never saved to
103 * disk, and skips redundant shader compilations from TGSI to bytecode.
104 * - It can only be used with one-variant-per-shader support, in which
105 * case only the main (typically middle) part of shaders is cached.
106 * - Only VS, TCS, TES, PS are cached, out of which only the hw VS
107 * variants of VS and TES are cached, so LS and ES aren't.
108 * - GS and CS aren't cached, but it's certainly possible to cache
109 * those as well.
110 */
111 pipe_mutex shader_cache_mutex;
112 struct hash_table *shader_cache;
113 };
114
115 struct si_blend_color {
116 struct r600_atom atom;
117 struct pipe_blend_color state;
118 };
119
120 struct si_sampler_view {
121 struct pipe_sampler_view base;
122 struct list_head list;
123 /* [0..7] = image descriptor
124 * [4..7] = buffer descriptor */
125 uint32_t state[8];
126 uint32_t fmask_state[8];
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 };
137
138 struct si_textures_info {
139 struct si_sampler_views views;
140 uint64_t depth_texture_mask; /* which textures are depth */
141 uint64_t compressed_colortex_mask;
142 };
143
144 struct si_images_info {
145 struct si_descriptors desc;
146 struct pipe_image_view views[SI_NUM_IMAGES];
147 uint32_t compressed_colortex_mask;
148 };
149
150 struct si_framebuffer {
151 struct r600_atom atom;
152 struct pipe_framebuffer_state state;
153 unsigned nr_samples;
154 unsigned log_samples;
155 unsigned cb0_is_integer;
156 unsigned compressed_cb_mask;
157 unsigned spi_shader_col_format;
158 unsigned spi_shader_col_format_alpha;
159 unsigned spi_shader_col_format_blend;
160 unsigned spi_shader_col_format_blend_alpha;
161 unsigned color_is_int8; /* bitmask */
162 unsigned dirty_cbufs;
163 bool dirty_zsbuf;
164 };
165
166 struct si_clip_state {
167 struct r600_atom atom;
168 struct pipe_clip_state state;
169 };
170
171 struct si_sample_mask {
172 struct r600_atom atom;
173 uint16_t sample_mask;
174 };
175
176 struct si_scissors {
177 struct r600_atom atom;
178 unsigned dirty_mask;
179 struct pipe_scissor_state states[SI_MAX_VIEWPORTS];
180 };
181
182 struct si_signed_scissor {
183 int minx;
184 int miny;
185 int maxx;
186 int maxy;
187 };
188
189 struct si_viewports {
190 struct r600_atom atom;
191 unsigned dirty_mask;
192 struct pipe_viewport_state states[SI_MAX_VIEWPORTS];
193 struct si_signed_scissor as_scissor[SI_MAX_VIEWPORTS];
194 };
195
196 /* A shader state consists of the shader selector, which is a constant state
197 * object shared by multiple contexts and shouldn't be modified, and
198 * the current shader variant selected for this context.
199 */
200 struct si_shader_ctx_state {
201 struct si_shader_selector *cso;
202 struct si_shader *current;
203 };
204
205 struct si_context {
206 struct r600_common_context b;
207 struct blitter_context *blitter;
208 void *custom_dsa_flush;
209 void *custom_blend_resolve;
210 void *custom_blend_decompress;
211 void *custom_blend_fastclear;
212 void *custom_blend_dcc_decompress;
213 void *pstipple_sampler_state;
214 struct si_screen *screen;
215 struct pipe_fence_handle *last_gfx_fence;
216 struct si_shader_ctx_state fixed_func_tcs_shader;
217 LLVMTargetMachineRef tm;
218 bool gfx_flush_in_progress;
219
220 /* Atoms (direct states). */
221 union si_state_atoms atoms;
222 unsigned dirty_atoms; /* mask */
223 /* PM4 states (precomputed immutable states) */
224 union si_state queued;
225 union si_state emitted;
226
227 /* Atom declarations. */
228 struct r600_atom cache_flush;
229 struct si_framebuffer framebuffer;
230 struct r600_atom msaa_sample_locs;
231 struct r600_atom db_render_state;
232 struct r600_atom msaa_config;
233 struct si_sample_mask sample_mask;
234 struct r600_atom cb_render_state;
235 struct si_blend_color blend_color;
236 struct r600_atom clip_regs;
237 struct si_clip_state clip_state;
238 struct si_shader_data shader_userdata;
239 struct si_scissors scissors;
240 struct si_viewports viewports;
241 struct si_stencil_ref stencil_ref;
242 struct r600_atom spi_map;
243
244 /* Precomputed states. */
245 struct si_pm4_state *init_config;
246 struct si_pm4_state *init_config_gs_rings;
247 bool init_config_has_vgt_flush;
248 struct si_pm4_state *vgt_shader_config[4];
249
250 /* shaders */
251 struct si_shader_ctx_state ps_shader;
252 struct si_shader_ctx_state gs_shader;
253 struct si_shader_ctx_state vs_shader;
254 struct si_shader_ctx_state tcs_shader;
255 struct si_shader_ctx_state tes_shader;
256 struct si_cs_shader_state cs_shader_state;
257
258 /* shader information */
259 struct si_vertex_element *vertex_elements;
260 unsigned sprite_coord_enable;
261 bool flatshade;
262
263 /* shader descriptors */
264 struct si_descriptors vertex_buffers;
265 struct si_buffer_resources const_buffers[SI_NUM_SHADERS];
266 struct si_buffer_resources rw_buffers[SI_NUM_SHADERS];
267 struct si_textures_info samplers[SI_NUM_SHADERS];
268 struct si_images_info images[SI_NUM_SHADERS];
269
270 /* other shader resources */
271 struct pipe_constant_buffer null_const_buf; /* used for set_constant_buffer(NULL) on CIK */
272 struct pipe_resource *esgs_ring;
273 struct pipe_resource *gsvs_ring;
274 struct pipe_resource *tf_ring;
275 union pipe_color_union *border_color_table; /* in CPU memory, any endian */
276 struct r600_resource *border_color_buffer;
277 union pipe_color_union *border_color_map; /* in VRAM (slow access), little endian */
278 unsigned border_color_count;
279
280 /* Vertex and index buffers. */
281 bool vertex_buffers_dirty;
282 struct pipe_index_buffer index_buffer;
283 struct pipe_vertex_buffer vertex_buffer[SI_NUM_VERTEX_BUFFERS];
284
285 /* MSAA config state. */
286 int ps_iter_samples;
287 bool smoothing_enabled;
288
289 /* DB render state. */
290 bool dbcb_depth_copy_enabled;
291 bool dbcb_stencil_copy_enabled;
292 unsigned dbcb_copy_sample;
293 bool db_flush_depth_inplace;
294 bool db_flush_stencil_inplace;
295 bool db_depth_clear;
296 bool db_depth_disable_expclear;
297 bool db_stencil_clear;
298 bool db_stencil_disable_expclear;
299 unsigned ps_db_shader_control;
300 bool occlusion_queries_disabled;
301
302 /* Emitted draw state. */
303 int last_base_vertex;
304 int last_start_instance;
305 int last_sh_base_reg;
306 int last_primitive_restart_en;
307 int last_restart_index;
308 int last_gs_out_prim;
309 int last_prim;
310 int last_multi_vgt_param;
311 int last_ls_hs_config;
312 int last_rast_prim;
313 unsigned last_sc_line_stipple;
314 int current_rast_prim; /* primitive type after TES, GS */
315 unsigned last_gsvs_itemsize;
316
317 /* Scratch buffer */
318 struct r600_resource *scratch_buffer;
319 boolean emit_scratch_reloc;
320 unsigned scratch_waves;
321 unsigned spi_tmpring_size;
322
323 /* Emitted derived tessellation state. */
324 struct si_shader *last_ls; /* local shader (VS) */
325 struct si_shader_selector *last_tcs;
326 int last_num_tcs_input_cp;
327 int last_tes_sh_base;
328
329 /* Debug state. */
330 bool is_debug;
331 uint32_t *last_ib;
332 unsigned last_ib_dw_size;
333 struct r600_resource *last_trace_buf;
334 struct r600_resource *trace_buf;
335 unsigned trace_id;
336 uint64_t dmesg_timestamp;
337 unsigned last_bo_count;
338 struct radeon_bo_list_item *last_bo_list;
339 };
340
341 /* cik_sdma.c */
342 void cik_sdma_copy(struct pipe_context *ctx,
343 struct pipe_resource *dst,
344 unsigned dst_level,
345 unsigned dstx, unsigned dsty, unsigned dstz,
346 struct pipe_resource *src,
347 unsigned src_level,
348 const struct pipe_box *src_box);
349
350 /* si_blit.c */
351 void si_init_blit_functions(struct si_context *sctx);
352 void si_decompress_textures(struct si_context *sctx);
353 void si_resource_copy_region(struct pipe_context *ctx,
354 struct pipe_resource *dst,
355 unsigned dst_level,
356 unsigned dstx, unsigned dsty, unsigned dstz,
357 struct pipe_resource *src,
358 unsigned src_level,
359 const struct pipe_box *src_box);
360
361 /* si_cp_dma.c */
362 void si_copy_buffer(struct si_context *sctx,
363 struct pipe_resource *dst, struct pipe_resource *src,
364 uint64_t dst_offset, uint64_t src_offset, unsigned size,
365 bool is_framebuffer);
366 void si_init_cp_dma_functions(struct si_context *sctx);
367
368 /* si_debug.c */
369 void si_init_debug_functions(struct si_context *sctx);
370 void si_check_vm_faults(struct si_context *sctx);
371 bool si_replace_shader(unsigned num, struct radeon_shader_binary *binary);
372
373 /* si_dma.c */
374 void si_dma_copy(struct pipe_context *ctx,
375 struct pipe_resource *dst,
376 unsigned dst_level,
377 unsigned dstx, unsigned dsty, unsigned dstz,
378 struct pipe_resource *src,
379 unsigned src_level,
380 const struct pipe_box *src_box);
381
382 /* si_hw_context.c */
383 void si_context_gfx_flush(void *context, unsigned flags,
384 struct pipe_fence_handle **fence);
385 void si_begin_new_cs(struct si_context *ctx);
386 void si_need_cs_space(struct si_context *ctx);
387
388 /* si_compute.c */
389 void si_init_compute_functions(struct si_context *sctx);
390
391 /* si_perfcounters.c */
392 void si_init_perfcounters(struct si_screen *screen);
393
394 /* si_uvd.c */
395 struct pipe_video_codec *si_uvd_create_decoder(struct pipe_context *context,
396 const struct pipe_video_codec *templ);
397
398 struct pipe_video_buffer *si_video_buffer_create(struct pipe_context *pipe,
399 const struct pipe_video_buffer *tmpl);
400
401 /*
402 * common helpers
403 */
404
405 static inline struct r600_resource *
406 si_resource_create_custom(struct pipe_screen *screen,
407 unsigned usage, unsigned size)
408 {
409 assert(size);
410 return r600_resource(pipe_buffer_create(screen,
411 PIPE_BIND_CUSTOM, usage, size));
412 }
413
414 static inline void
415 si_invalidate_draw_sh_constants(struct si_context *sctx)
416 {
417 sctx->last_base_vertex = SI_BASE_VERTEX_UNKNOWN;
418 sctx->last_start_instance = -1; /* reset to an unknown value */
419 sctx->last_sh_base_reg = -1; /* reset to an unknown value */
420 }
421
422 static inline void
423 si_set_atom_dirty(struct si_context *sctx,
424 struct r600_atom *atom, bool dirty)
425 {
426 unsigned bit = 1 << (atom->id - 1);
427
428 if (dirty)
429 sctx->dirty_atoms |= bit;
430 else
431 sctx->dirty_atoms &= ~bit;
432 }
433
434 static inline void
435 si_mark_atom_dirty(struct si_context *sctx,
436 struct r600_atom *atom)
437 {
438 si_set_atom_dirty(sctx, atom, true);
439 }
440
441 #endif