radeonsi: implement the simple case of force_persample_interp
[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
46 /* Instruction cache. */
47 #define SI_CONTEXT_INV_ICACHE (R600_CONTEXT_PRIVATE_FLAG << 0)
48 /* Cache used by scalar memory (SMEM) instructions. They also use TC
49 * as a second level cache, which isn't flushed by this.
50 * Other names: constant cache, data cache, DCACHE */
51 #define SI_CONTEXT_INV_KCACHE (R600_CONTEXT_PRIVATE_FLAG << 1)
52 /* Caches used by vector memory (VMEM) instructions.
53 * L1 can optionally be bypassed (GLC=1) and can only be used by shaders.
54 * L2 is used by shaders and can be used by other blocks (CP, sDMA). */
55 #define SI_CONTEXT_INV_TC_L1 (R600_CONTEXT_PRIVATE_FLAG << 2)
56 #define SI_CONTEXT_INV_TC_L2 (R600_CONTEXT_PRIVATE_FLAG << 3)
57 /* Framebuffer caches. */
58 #define SI_CONTEXT_FLUSH_AND_INV_CB_META (R600_CONTEXT_PRIVATE_FLAG << 4)
59 #define SI_CONTEXT_FLUSH_AND_INV_DB_META (R600_CONTEXT_PRIVATE_FLAG << 5)
60 #define SI_CONTEXT_FLUSH_AND_INV_DB (R600_CONTEXT_PRIVATE_FLAG << 6)
61 #define SI_CONTEXT_FLUSH_AND_INV_CB (R600_CONTEXT_PRIVATE_FLAG << 7)
62 /* Engine synchronization. */
63 #define SI_CONTEXT_VS_PARTIAL_FLUSH (R600_CONTEXT_PRIVATE_FLAG << 8)
64 #define SI_CONTEXT_PS_PARTIAL_FLUSH (R600_CONTEXT_PRIVATE_FLAG << 9)
65 #define SI_CONTEXT_CS_PARTIAL_FLUSH (R600_CONTEXT_PRIVATE_FLAG << 10)
66 #define SI_CONTEXT_VGT_FLUSH (R600_CONTEXT_PRIVATE_FLAG << 11)
67 #define SI_CONTEXT_VGT_STREAMOUT_SYNC (R600_CONTEXT_PRIVATE_FLAG << 12)
68 /* Compute only. */
69 #define SI_CONTEXT_FLUSH_WITH_INV_L2 (R600_CONTEXT_PRIVATE_FLAG << 13) /* TODO: merge with TC? */
70 #define SI_CONTEXT_FLAG_COMPUTE (R600_CONTEXT_PRIVATE_FLAG << 14)
71
72 #define SI_CONTEXT_FLUSH_AND_INV_FRAMEBUFFER (SI_CONTEXT_FLUSH_AND_INV_CB | \
73 SI_CONTEXT_FLUSH_AND_INV_CB_META | \
74 SI_CONTEXT_FLUSH_AND_INV_DB | \
75 SI_CONTEXT_FLUSH_AND_INV_DB_META)
76
77 #define SI_ENCODE_TRACE_POINT(id) (0xcafe0000 | ((id) & 0xffff))
78 #define SI_IS_TRACE_POINT(x) (((x) & 0xcafe0000) == 0xcafe0000)
79 #define SI_GET_TRACE_POINT_ID(x) ((x) & 0xffff)
80
81 #define SI_MAX_VIEWPORTS 16
82 #define SI_MAX_BORDER_COLORS 4096
83
84 struct si_compute;
85
86 struct si_screen {
87 struct r600_common_screen b;
88 };
89
90 struct si_blend_color {
91 struct r600_atom atom;
92 struct pipe_blend_color state;
93 };
94
95 struct si_sampler_view {
96 struct pipe_sampler_view base;
97 struct list_head list;
98 struct r600_resource *resource;
99 /* [0..7] = image descriptor
100 * [4..7] = buffer descriptor */
101 uint32_t state[8];
102 uint32_t fmask_state[8];
103 bool is_stencil_sampler;
104 };
105
106 struct si_sampler_state {
107 uint32_t val[4];
108 };
109
110 struct si_cs_shader_state {
111 struct si_compute *program;
112 };
113
114 struct si_textures_info {
115 struct si_sampler_views views;
116 struct si_sampler_states states;
117 uint32_t depth_texture_mask; /* which textures are depth */
118 uint32_t compressed_colortex_mask;
119 };
120
121 struct si_framebuffer {
122 struct r600_atom atom;
123 struct pipe_framebuffer_state state;
124 unsigned nr_samples;
125 unsigned log_samples;
126 unsigned cb0_is_integer;
127 unsigned compressed_cb_mask;
128 unsigned export_16bpc;
129 unsigned dirty_cbufs;
130 bool dirty_zsbuf;
131 };
132
133 struct si_clip_state {
134 struct r600_atom atom;
135 struct pipe_clip_state state;
136 };
137
138 struct si_sample_mask {
139 struct r600_atom atom;
140 uint16_t sample_mask;
141 };
142
143 struct si_scissors {
144 struct r600_atom atom;
145 unsigned dirty_mask;
146 struct pipe_scissor_state states[SI_MAX_VIEWPORTS];
147 };
148
149 struct si_viewports {
150 struct r600_atom atom;
151 unsigned dirty_mask;
152 struct pipe_viewport_state states[SI_MAX_VIEWPORTS];
153 };
154
155 struct si_context {
156 struct r600_common_context b;
157 struct blitter_context *blitter;
158 void *custom_dsa_flush;
159 void *custom_blend_resolve;
160 void *custom_blend_decompress;
161 void *custom_blend_fastclear;
162 void *pstipple_sampler_state;
163 struct si_screen *screen;
164 struct pipe_fence_handle *last_gfx_fence;
165 struct si_shader_selector *fixed_func_tcs_shader;
166 LLVMTargetMachineRef tm;
167
168 /* Atoms (direct states). */
169 union si_state_atoms atoms;
170 unsigned dirty_atoms; /* mask */
171 /* PM4 states (precomputed immutable states) */
172 union si_state queued;
173 union si_state emitted;
174
175 /* Atom declarations. */
176 struct r600_atom cache_flush;
177 struct si_framebuffer framebuffer;
178 struct r600_atom msaa_sample_locs;
179 struct r600_atom db_render_state;
180 struct r600_atom msaa_config;
181 struct si_sample_mask sample_mask;
182 struct r600_atom cb_target_mask;
183 struct si_blend_color blend_color;
184 struct r600_atom clip_regs;
185 struct si_clip_state clip_state;
186 struct si_shader_data shader_userdata;
187 struct si_scissors scissors;
188 struct si_viewports viewports;
189 struct si_stencil_ref stencil_ref;
190 struct r600_atom spi_map;
191 struct r600_atom spi_ps_input;
192
193 /* Precomputed states. */
194 struct si_pm4_state *init_config;
195 struct si_pm4_state *vgt_shader_config[4];
196 /* With rasterizer discard, there doesn't have to be a pixel shader.
197 * In that case, we bind this one: */
198 void *dummy_pixel_shader;
199
200 /* shaders */
201 struct si_shader_selector *ps_shader;
202 struct si_shader_selector *gs_shader;
203 struct si_shader_selector *vs_shader;
204 struct si_shader_selector *tcs_shader;
205 struct si_shader_selector *tes_shader;
206 struct si_cs_shader_state cs_shader_state;
207
208 /* shader information */
209 struct si_vertex_element *vertex_elements;
210 unsigned sprite_coord_enable;
211 bool flatshade;
212 bool force_persample_interp;
213
214 /* shader descriptors */
215 struct si_descriptors vertex_buffers;
216 struct si_buffer_resources const_buffers[SI_NUM_SHADERS];
217 struct si_buffer_resources rw_buffers[SI_NUM_SHADERS];
218 struct si_textures_info samplers[SI_NUM_SHADERS];
219
220 /* other shader resources */
221 struct pipe_constant_buffer null_const_buf; /* used for set_constant_buffer(NULL) on CIK */
222 struct pipe_resource *esgs_ring;
223 struct pipe_resource *gsvs_ring;
224 struct pipe_resource *tf_ring;
225 union pipe_color_union *border_color_table; /* in CPU memory, any endian */
226 struct r600_resource *border_color_buffer;
227 union pipe_color_union *border_color_map; /* in VRAM (slow access), little endian */
228 unsigned border_color_count;
229
230 /* Vertex and index buffers. */
231 bool vertex_buffers_dirty;
232 struct pipe_index_buffer index_buffer;
233 struct pipe_vertex_buffer vertex_buffer[SI_NUM_VERTEX_BUFFERS];
234
235 /* MSAA config state. */
236 int ps_iter_samples;
237 bool smoothing_enabled;
238
239 /* DB render state. */
240 bool dbcb_depth_copy_enabled;
241 bool dbcb_stencil_copy_enabled;
242 unsigned dbcb_copy_sample;
243 bool db_flush_depth_inplace;
244 bool db_flush_stencil_inplace;
245 bool db_depth_clear;
246 bool db_depth_disable_expclear;
247 unsigned ps_db_shader_control;
248
249 /* Emitted draw state. */
250 int last_base_vertex;
251 int last_start_instance;
252 int last_sh_base_reg;
253 int last_primitive_restart_en;
254 int last_restart_index;
255 int last_gs_out_prim;
256 int last_prim;
257 int last_multi_vgt_param;
258 int last_ls_hs_config;
259 int last_rast_prim;
260 unsigned last_sc_line_stipple;
261 int current_rast_prim; /* primitive type after TES, GS */
262 unsigned last_gsvs_itemsize;
263
264 /* Scratch buffer */
265 struct r600_resource *scratch_buffer;
266 boolean emit_scratch_reloc;
267 unsigned scratch_waves;
268 unsigned spi_tmpring_size;
269
270 /* Emitted derived tessellation state. */
271 struct si_shader *last_ls; /* local shader (VS) */
272 struct si_shader_selector *last_tcs;
273 int last_num_tcs_input_cp;
274 int last_tes_sh_base;
275
276 /* Debug state. */
277 bool is_debug;
278 uint32_t *last_ib;
279 unsigned last_ib_dw_size;
280 struct r600_resource *last_trace_buf;
281 struct r600_resource *trace_buf;
282 unsigned trace_id;
283 uint64_t dmesg_timestamp;
284 unsigned last_bo_count;
285 struct radeon_bo_list_item *last_bo_list;
286 };
287
288 /* cik_sdma.c */
289 void cik_sdma_copy(struct pipe_context *ctx,
290 struct pipe_resource *dst,
291 unsigned dst_level,
292 unsigned dstx, unsigned dsty, unsigned dstz,
293 struct pipe_resource *src,
294 unsigned src_level,
295 const struct pipe_box *src_box);
296
297 /* si_blit.c */
298 void si_init_blit_functions(struct si_context *sctx);
299 void si_flush_depth_textures(struct si_context *sctx,
300 struct si_textures_info *textures);
301 void si_decompress_color_textures(struct si_context *sctx,
302 struct si_textures_info *textures);
303 void si_resource_copy_region(struct pipe_context *ctx,
304 struct pipe_resource *dst,
305 unsigned dst_level,
306 unsigned dstx, unsigned dsty, unsigned dstz,
307 struct pipe_resource *src,
308 unsigned src_level,
309 const struct pipe_box *src_box);
310
311 /* si_cp_dma.c */
312 void si_copy_buffer(struct si_context *sctx,
313 struct pipe_resource *dst, struct pipe_resource *src,
314 uint64_t dst_offset, uint64_t src_offset, unsigned size,
315 bool is_framebuffer);
316 void si_init_cp_dma_functions(struct si_context *sctx);
317
318 /* si_debug.c */
319 void si_init_debug_functions(struct si_context *sctx);
320 void si_check_vm_faults(struct si_context *sctx);
321
322 /* si_dma.c */
323 void si_dma_copy(struct pipe_context *ctx,
324 struct pipe_resource *dst,
325 unsigned dst_level,
326 unsigned dstx, unsigned dsty, unsigned dstz,
327 struct pipe_resource *src,
328 unsigned src_level,
329 const struct pipe_box *src_box);
330
331 /* si_hw_context.c */
332 void si_context_gfx_flush(void *context, unsigned flags,
333 struct pipe_fence_handle **fence);
334 void si_begin_new_cs(struct si_context *ctx);
335 void si_need_cs_space(struct si_context *ctx);
336
337 /* si_compute.c */
338 void si_init_compute_functions(struct si_context *sctx);
339
340 /* si_uvd.c */
341 struct pipe_video_codec *si_uvd_create_decoder(struct pipe_context *context,
342 const struct pipe_video_codec *templ);
343
344 struct pipe_video_buffer *si_video_buffer_create(struct pipe_context *pipe,
345 const struct pipe_video_buffer *tmpl);
346
347 /*
348 * common helpers
349 */
350
351 static inline struct r600_resource *
352 si_resource_create_custom(struct pipe_screen *screen,
353 unsigned usage, unsigned size)
354 {
355 assert(size);
356 return r600_resource(pipe_buffer_create(screen,
357 PIPE_BIND_CUSTOM, usage, size));
358 }
359
360 static inline void
361 si_invalidate_draw_sh_constants(struct si_context *sctx)
362 {
363 sctx->last_base_vertex = SI_BASE_VERTEX_UNKNOWN;
364 sctx->last_start_instance = -1; /* reset to an unknown value */
365 sctx->last_sh_base_reg = -1; /* reset to an unknown value */
366 }
367
368 static inline void
369 si_set_atom_dirty(struct si_context *sctx,
370 struct r600_atom *atom, bool dirty)
371 {
372 unsigned bit = 1 << (atom->id - 1);
373
374 if (dirty)
375 sctx->dirty_atoms |= bit;
376 else
377 sctx->dirty_atoms &= ~bit;
378 }
379
380 static inline void
381 si_mark_atom_dirty(struct si_context *sctx,
382 struct r600_atom *atom)
383 {
384 si_set_atom_dirty(sctx, atom, true);
385 }
386
387 #endif