2d7f6a78c6db4a13c979c1cdcb7b1246d419be32
[mesa.git] / src / gallium / drivers / radeonsi / si_hw_context.c
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
24 #include "si_pipe.h"
25 #include "radeon/r600_cs.h"
26
27 #include "util/os_time.h"
28
29 void si_destroy_saved_cs(struct si_saved_cs *scs)
30 {
31 si_clear_saved_cs(&scs->gfx);
32 r600_resource_reference(&scs->trace_buf, NULL);
33 free(scs);
34 }
35
36 /* initialize */
37 void si_need_cs_space(struct si_context *ctx)
38 {
39 struct radeon_winsys_cs *cs = ctx->b.gfx.cs;
40
41 /* There is no need to flush the DMA IB here, because
42 * r600_need_dma_space always flushes the GFX IB if there is
43 * a conflict, which means any unflushed DMA commands automatically
44 * precede the GFX IB (= they had no dependency on the GFX IB when
45 * they were submitted).
46 */
47
48 /* There are two memory usage counters in the winsys for all buffers
49 * that have been added (cs_add_buffer) and two counters in the pipe
50 * driver for those that haven't been added yet.
51 */
52 if (unlikely(!radeon_cs_memory_below_limit(ctx->b.screen, ctx->b.gfx.cs,
53 ctx->b.vram, ctx->b.gtt))) {
54 ctx->b.gtt = 0;
55 ctx->b.vram = 0;
56 ctx->b.gfx.flush(ctx, RADEON_FLUSH_ASYNC, NULL);
57 return;
58 }
59 ctx->b.gtt = 0;
60 ctx->b.vram = 0;
61
62 /* If the CS is sufficiently large, don't count the space needed
63 * and just flush if there is not enough space left.
64 */
65 if (!ctx->b.ws->cs_check_space(cs, 2048))
66 ctx->b.gfx.flush(ctx, RADEON_FLUSH_ASYNC, NULL);
67 }
68
69 void si_context_gfx_flush(void *context, unsigned flags,
70 struct pipe_fence_handle **fence)
71 {
72 struct si_context *ctx = context;
73 struct radeon_winsys_cs *cs = ctx->b.gfx.cs;
74 struct radeon_winsys *ws = ctx->b.ws;
75
76 if (ctx->gfx_flush_in_progress)
77 return;
78
79 if (!radeon_emitted(cs, ctx->b.initial_gfx_cs_size))
80 return;
81
82 if (si_check_device_reset(&ctx->b))
83 return;
84
85 if (ctx->screen->b.debug_flags & DBG(CHECK_VM))
86 flags &= ~RADEON_FLUSH_ASYNC;
87
88 /* If the state tracker is flushing the GFX IB, r600_flush_from_st is
89 * responsible for flushing the DMA IB and merging the fences from both.
90 * This code is only needed when the driver flushes the GFX IB
91 * internally, and it never asks for a fence handle.
92 */
93 if (radeon_emitted(ctx->b.dma.cs, 0)) {
94 assert(fence == NULL); /* internal flushes only */
95 ctx->b.dma.flush(ctx, flags, NULL);
96 }
97
98 ctx->gfx_flush_in_progress = true;
99
100 si_preflush_suspend_features(&ctx->b);
101
102 ctx->streamout.suspended = false;
103 if (ctx->streamout.begin_emitted) {
104 si_emit_streamout_end(ctx);
105 ctx->streamout.suspended = true;
106 }
107
108 ctx->b.flags |= SI_CONTEXT_CS_PARTIAL_FLUSH |
109 SI_CONTEXT_PS_PARTIAL_FLUSH;
110
111 /* DRM 3.1.0 doesn't flush TC for VI correctly. */
112 if (ctx->b.chip_class == VI && ctx->b.screen->info.drm_minor <= 1)
113 ctx->b.flags |= SI_CONTEXT_INV_GLOBAL_L2 |
114 SI_CONTEXT_INV_VMEM_L1;
115
116 si_emit_cache_flush(ctx);
117
118 if (ctx->current_saved_cs) {
119 si_trace_emit(ctx);
120 si_log_hw_flush(ctx);
121
122 /* Save the IB for debug contexts. */
123 si_save_cs(ws, cs, &ctx->current_saved_cs->gfx, true);
124 ctx->current_saved_cs->flushed = true;
125 ctx->current_saved_cs->time_flush = os_time_get_nano();
126 }
127
128 /* Flush the CS. */
129 ws->cs_flush(cs, flags, &ctx->b.last_gfx_fence);
130 if (fence)
131 ws->fence_reference(fence, ctx->b.last_gfx_fence);
132
133 /* This must be after cs_flush returns, since the context's API
134 * thread can concurrently read this value in si_fence_finish. */
135 ctx->b.num_gfx_cs_flushes++;
136
137 /* Check VM faults if needed. */
138 if (ctx->screen->b.debug_flags & DBG(CHECK_VM)) {
139 /* Use conservative timeout 800ms, after which we won't wait any
140 * longer and assume the GPU is hung.
141 */
142 ctx->b.ws->fence_wait(ctx->b.ws, ctx->b.last_gfx_fence, 800*1000*1000);
143
144 si_check_vm_faults(&ctx->b, &ctx->current_saved_cs->gfx, RING_GFX);
145 }
146
147 if (ctx->current_saved_cs)
148 si_saved_cs_reference(&ctx->current_saved_cs, NULL);
149
150 si_begin_new_cs(ctx);
151 ctx->gfx_flush_in_progress = false;
152 }
153
154 static void si_begin_cs_debug(struct si_context *ctx)
155 {
156 static const uint32_t zeros[1];
157 assert(!ctx->current_saved_cs);
158
159 ctx->current_saved_cs = calloc(1, sizeof(*ctx->current_saved_cs));
160 if (!ctx->current_saved_cs)
161 return;
162
163 pipe_reference_init(&ctx->current_saved_cs->reference, 1);
164
165 ctx->current_saved_cs->trace_buf = (struct r600_resource*)
166 pipe_buffer_create(ctx->b.b.screen, 0,
167 PIPE_USAGE_STAGING, 8);
168 if (!ctx->current_saved_cs->trace_buf) {
169 free(ctx->current_saved_cs);
170 ctx->current_saved_cs = NULL;
171 return;
172 }
173
174 pipe_buffer_write_nooverlap(&ctx->b.b, &ctx->current_saved_cs->trace_buf->b.b,
175 0, sizeof(zeros), zeros);
176 ctx->current_saved_cs->trace_id = 0;
177
178 si_trace_emit(ctx);
179
180 radeon_add_to_buffer_list(&ctx->b, &ctx->b.gfx, ctx->current_saved_cs->trace_buf,
181 RADEON_USAGE_READWRITE, RADEON_PRIO_TRACE);
182 }
183
184 void si_begin_new_cs(struct si_context *ctx)
185 {
186 if (ctx->is_debug)
187 si_begin_cs_debug(ctx);
188
189 /* Flush read caches at the beginning of CS not flushed by the kernel. */
190 if (ctx->b.chip_class >= CIK)
191 ctx->b.flags |= SI_CONTEXT_INV_SMEM_L1 |
192 SI_CONTEXT_INV_ICACHE;
193
194 ctx->b.flags |= R600_CONTEXT_START_PIPELINE_STATS;
195
196 /* set all valid group as dirty so they get reemited on
197 * next draw command
198 */
199 si_pm4_reset_emitted(ctx);
200
201 /* The CS initialization should be emitted before everything else. */
202 si_pm4_emit(ctx, ctx->init_config);
203 if (ctx->init_config_gs_rings)
204 si_pm4_emit(ctx, ctx->init_config_gs_rings);
205
206 if (ctx->queued.named.ls)
207 ctx->prefetch_L2_mask |= SI_PREFETCH_LS;
208 if (ctx->queued.named.hs)
209 ctx->prefetch_L2_mask |= SI_PREFETCH_HS;
210 if (ctx->queued.named.es)
211 ctx->prefetch_L2_mask |= SI_PREFETCH_ES;
212 if (ctx->queued.named.gs)
213 ctx->prefetch_L2_mask |= SI_PREFETCH_GS;
214 if (ctx->queued.named.vs)
215 ctx->prefetch_L2_mask |= SI_PREFETCH_VS;
216 if (ctx->queued.named.ps)
217 ctx->prefetch_L2_mask |= SI_PREFETCH_PS;
218 if (ctx->vertex_buffers.buffer && ctx->vertex_elements)
219 ctx->prefetch_L2_mask |= SI_PREFETCH_VBO_DESCRIPTORS;
220
221 /* CLEAR_STATE disables all colorbuffers, so only enable bound ones. */
222 bool has_clear_state = ctx->screen->has_clear_state;
223 if (has_clear_state) {
224 ctx->framebuffer.dirty_cbufs =
225 u_bit_consecutive(0, ctx->framebuffer.state.nr_cbufs);
226 /* CLEAR_STATE disables the zbuffer, so only enable it if it's bound. */
227 ctx->framebuffer.dirty_zsbuf = ctx->framebuffer.state.zsbuf != NULL;
228 } else {
229 ctx->framebuffer.dirty_cbufs = u_bit_consecutive(0, 8);
230 ctx->framebuffer.dirty_zsbuf = true;
231 }
232 /* This should always be marked as dirty to set the framebuffer scissor
233 * at least. */
234 si_mark_atom_dirty(ctx, &ctx->framebuffer.atom);
235
236 si_mark_atom_dirty(ctx, &ctx->clip_regs);
237 /* CLEAR_STATE sets zeros. */
238 if (!has_clear_state || ctx->clip_state.any_nonzeros)
239 si_mark_atom_dirty(ctx, &ctx->clip_state.atom);
240 ctx->msaa_sample_locs.nr_samples = 0;
241 si_mark_atom_dirty(ctx, &ctx->msaa_sample_locs.atom);
242 si_mark_atom_dirty(ctx, &ctx->msaa_config);
243 /* CLEAR_STATE sets 0xffff. */
244 if (!has_clear_state || ctx->sample_mask.sample_mask != 0xffff)
245 si_mark_atom_dirty(ctx, &ctx->sample_mask.atom);
246 si_mark_atom_dirty(ctx, &ctx->cb_render_state);
247 /* CLEAR_STATE sets zeros. */
248 if (!has_clear_state || ctx->blend_color.any_nonzeros)
249 si_mark_atom_dirty(ctx, &ctx->blend_color.atom);
250 si_mark_atom_dirty(ctx, &ctx->db_render_state);
251 if (ctx->b.chip_class >= GFX9)
252 si_mark_atom_dirty(ctx, &ctx->dpbb_state);
253 si_mark_atom_dirty(ctx, &ctx->stencil_ref.atom);
254 si_mark_atom_dirty(ctx, &ctx->spi_map);
255 si_mark_atom_dirty(ctx, &ctx->streamout.enable_atom);
256 si_mark_atom_dirty(ctx, &ctx->b.render_cond_atom);
257 si_all_descriptors_begin_new_cs(ctx);
258 si_all_resident_buffers_begin_new_cs(ctx);
259
260 ctx->scissors.dirty_mask = (1 << SI_MAX_VIEWPORTS) - 1;
261 ctx->viewports.dirty_mask = (1 << SI_MAX_VIEWPORTS) - 1;
262 ctx->viewports.depth_range_dirty_mask = (1 << SI_MAX_VIEWPORTS) - 1;
263 si_mark_atom_dirty(ctx, &ctx->scissors.atom);
264 si_mark_atom_dirty(ctx, &ctx->viewports.atom);
265
266 si_mark_atom_dirty(ctx, &ctx->scratch_state);
267 if (ctx->scratch_buffer) {
268 si_context_add_resource_size(&ctx->b.b,
269 &ctx->scratch_buffer->b.b);
270 }
271
272 if (ctx->streamout.suspended) {
273 ctx->streamout.append_bitmask = ctx->streamout.enabled_mask;
274 si_streamout_buffers_dirty(ctx);
275 }
276
277 si_postflush_resume_features(&ctx->b);
278
279 assert(!ctx->b.gfx.cs->prev_dw);
280 ctx->b.initial_gfx_cs_size = ctx->b.gfx.cs->current.cdw;
281
282 /* Invalidate various draw states so that they are emitted before
283 * the first draw call. */
284 si_invalidate_draw_sh_constants(ctx);
285 ctx->last_index_size = -1;
286 ctx->last_primitive_restart_en = -1;
287 ctx->last_restart_index = SI_RESTART_INDEX_UNKNOWN;
288 ctx->last_gs_out_prim = -1;
289 ctx->last_prim = -1;
290 ctx->last_multi_vgt_param = -1;
291 ctx->last_rast_prim = -1;
292 ctx->last_sc_line_stipple = ~0;
293 ctx->last_vs_state = ~0;
294 ctx->last_ls = NULL;
295 ctx->last_tcs = NULL;
296 ctx->last_tes_sh_base = -1;
297 ctx->last_num_tcs_input_cp = -1;
298
299 ctx->cs_shader_state.initialized = false;
300 }