radeonsi: move gfx fence wait out of si_check_vm_faults
[mesa.git] / src / gallium / drivers / radeonsi / si_hw_context.c
index b621b55abd397cdd0aed1421299eacce77c938bd..656d435361c4eb4a2d0c8921428727c9e1256e33 100644 (file)
 
 #include "si_pipe.h"
 
+static unsigned si_descriptor_list_cs_space(unsigned count, unsigned element_size)
+{
+       /* Ensure we have enough space to start a new range in a hole */
+       assert(element_size >= 3);
+
+       /* 5 dwords for possible load to reinitialize when we have no preamble
+        * IB + 5 dwords for write to L2 + 3 bytes for every range written to
+        * CE RAM.
+        */
+       return 5 + 5 + 3 + count * element_size;
+}
+
+static unsigned si_ce_needed_cs_space(void)
+{
+       unsigned space = 0;
+
+       space += si_descriptor_list_cs_space(SI_NUM_CONST_BUFFERS, 4);
+       space += si_descriptor_list_cs_space(SI_NUM_SHADER_BUFFERS, 4);
+       space += si_descriptor_list_cs_space(SI_NUM_SAMPLERS, 16);
+       space += si_descriptor_list_cs_space(SI_NUM_IMAGES, 8);
+       space *= SI_NUM_SHADERS;
+
+       space += si_descriptor_list_cs_space(SI_NUM_RW_BUFFERS, 4);
+
+       /* Increment CE counter packet */
+       space += 2;
+
+       return space;
+}
+
 /* initialize */
 void si_need_cs_space(struct si_context *ctx)
 {
        struct radeon_winsys_cs *cs = ctx->b.gfx.cs;
+       struct radeon_winsys_cs *ce_ib = ctx->ce_ib;
        struct radeon_winsys_cs *dma = ctx->b.dma.cs;
 
        /* Flush the DMA IB if it's not empty. */
-       if (dma && dma->cdw)
+       if (radeon_emitted(dma, 0))
                ctx->b.dma.flush(ctx, RADEON_FLUSH_ASYNC, NULL);
 
        /* There are two memory usage counters in the winsys for all buffers
@@ -53,7 +84,8 @@ void si_need_cs_space(struct si_context *ctx)
        /* If the CS is sufficiently large, don't count the space needed
         * and just flush if there is not enough space left.
         */
-       if (unlikely(cs->cdw > cs->max_dw - 2048))
+       if (!ctx->b.ws->cs_check_space(cs, 2048) ||
+           (ce_ib && !ctx->b.ws->cs_check_space(ce_ib, si_ce_needed_cs_space())))
                ctx->b.gfx.flush(ctx, RADEON_FLUSH_ASYNC, NULL);
 }
 
@@ -69,7 +101,7 @@ void si_context_gfx_flush(void *context, unsigned flags,
 
        ctx->gfx_flush_in_progress = true;
 
-       if (cs->cdw == ctx->b.initial_gfx_cs_size &&
+       if (!radeon_emitted(cs, ctx->b.initial_gfx_cs_size) &&
            (!fence || ctx->last_gfx_fence)) {
                if (fence)
                        ws->fence_reference(fence, ctx->last_gfx_fence);
@@ -81,11 +113,14 @@ void si_context_gfx_flush(void *context, unsigned flags,
 
        r600_preflush_suspend_features(&ctx->b);
 
-       ctx->b.flags |= SI_CONTEXT_FLUSH_AND_INV_FRAMEBUFFER |
-                       SI_CONTEXT_INV_VMEM_L1 |
-                       SI_CONTEXT_INV_GLOBAL_L2 |
-                       /* this is probably not needed anymore */
+       ctx->b.flags |= SI_CONTEXT_CS_PARTIAL_FLUSH |
                        SI_CONTEXT_PS_PARTIAL_FLUSH;
+
+       /* DRM 3.1.0 doesn't flush TC for VI correctly. */
+       if (ctx->b.chip_class == VI && ctx->b.screen->info.drm_minor <= 1)
+               ctx->b.flags |= SI_CONTEXT_INV_GLOBAL_L2 |
+                               SI_CONTEXT_INV_VMEM_L1;
+
        si_emit_cache_flush(ctx, NULL);
 
        /* force to keep tiling flags */
@@ -95,26 +130,11 @@ void si_context_gfx_flush(void *context, unsigned flags,
                si_trace_emit(ctx);
 
        if (ctx->is_debug) {
-               unsigned i;
-
                /* Save the IB for debug contexts. */
-               free(ctx->last_ib);
-               ctx->last_ib_dw_size = cs->cdw;
-               ctx->last_ib = malloc(cs->cdw * 4);
-               memcpy(ctx->last_ib, cs->buf, cs->cdw * 4);
+               radeon_clear_saved_cs(&ctx->last_gfx);
+               radeon_save_cs(ws, cs, &ctx->last_gfx);
                r600_resource_reference(&ctx->last_trace_buf, ctx->trace_buf);
                r600_resource_reference(&ctx->trace_buf, NULL);
-
-               /* Save the buffer list. */
-               if (ctx->last_bo_list) {
-                       for (i = 0; i < ctx->last_bo_count; i++)
-                               pb_reference(&ctx->last_bo_list[i].buf, NULL);
-                       free(ctx->last_bo_list);
-               }
-               ctx->last_bo_count = ws->cs_get_buffer_list(cs, NULL);
-               ctx->last_bo_list = calloc(ctx->last_bo_count,
-                                          sizeof(ctx->last_bo_list[0]));
-               ws->cs_get_buffer_list(cs, ctx->last_bo_list);
        }
 
        /* Flush the CS. */
@@ -124,8 +144,14 @@ void si_context_gfx_flush(void *context, unsigned flags,
                ws->fence_reference(fence, ctx->last_gfx_fence);
 
        /* Check VM faults if needed. */
-       if (ctx->screen->b.debug_flags & DBG_CHECK_VM)
+       if (ctx->screen->b.debug_flags & DBG_CHECK_VM) {
+               /* Use conservative timeout 800ms, after which we won't wait any
+                * longer and assume the GPU is hung.
+                */
+               ctx->b.ws->fence_wait(ctx->b.ws, ctx->last_gfx_fence, 800*1000*1000);
+
                si_check_vm_faults(ctx);
+       }
 
        si_begin_new_cs(ctx);
        ctx->gfx_flush_in_progress = false;
@@ -150,13 +176,12 @@ void si_begin_new_cs(struct si_context *ctx)
        if (ctx->trace_buf)
                si_trace_emit(ctx);
 
-       /* Flush read caches at the beginning of CS. */
-       ctx->b.flags |= SI_CONTEXT_FLUSH_AND_INV_FRAMEBUFFER |
-                       SI_CONTEXT_INV_VMEM_L1 |
-                       SI_CONTEXT_INV_GLOBAL_L2 |
-                       SI_CONTEXT_INV_SMEM_L1 |
-                       SI_CONTEXT_INV_ICACHE |
-                       R600_CONTEXT_START_PIPELINE_STATS;
+       /* Flush read caches at the beginning of CS not flushed by the kernel. */
+       if (ctx->b.chip_class >= CIK)
+               ctx->b.flags |= SI_CONTEXT_INV_SMEM_L1 |
+                               SI_CONTEXT_INV_ICACHE;
+
+       ctx->b.flags |= R600_CONTEXT_START_PIPELINE_STATS;
 
        /* set all valid group as dirty so they get reemited on
         * next draw command
@@ -168,6 +193,14 @@ void si_begin_new_cs(struct si_context *ctx)
        if (ctx->init_config_gs_rings)
                si_pm4_emit(ctx, ctx->init_config_gs_rings);
 
+       if (ctx->ce_preamble_ib)
+               si_ce_enable_loads(ctx->ce_preamble_ib);
+       else if (ctx->ce_ib)
+               si_ce_enable_loads(ctx->ce_ib);
+
+       if (ctx->ce_preamble_ib)
+               si_ce_reinitialize_all_descriptors(ctx);
+
        ctx->framebuffer.dirty_cbufs = (1 << 8) - 1;
        ctx->framebuffer.dirty_zsbuf = true;
        si_mark_atom_dirty(ctx, &ctx->framebuffer.atom);
@@ -193,7 +226,8 @@ void si_begin_new_cs(struct si_context *ctx)
 
        r600_postflush_resume_features(&ctx->b);
 
-       ctx->b.initial_gfx_cs_size = ctx->b.gfx.cs->cdw;
+       assert(!ctx->b.gfx.cs->prev_dw);
+       ctx->b.initial_gfx_cs_size = ctx->b.gfx.cs->current.cdw;
 
        /* Invalidate various draw states so that they are emitted before
         * the first draw call. */
@@ -211,4 +245,6 @@ void si_begin_new_cs(struct si_context *ctx)
        ctx->last_tcs = NULL;
        ctx->last_tes_sh_base = -1;
        ctx->last_num_tcs_input_cp = -1;
+
+       ctx->cs_shader_state.initialized = false;
 }