freedreno/a6xx: cache flush harder
authorRob Clark <robdclark@gmail.com>
Fri, 8 Feb 2019 18:01:27 +0000 (13:01 -0500)
committerRob Clark <robdclark@gmail.com>
Sat, 16 Feb 2019 21:28:00 +0000 (16:28 -0500)
Signed-off-by: Rob Clark <robdclark@gmail.com>
src/gallium/drivers/freedreno/a6xx/fd6_compute.c
src/gallium/drivers/freedreno/a6xx/fd6_draw.c
src/gallium/drivers/freedreno/a6xx/fd6_emit.c
src/gallium/drivers/freedreno/a6xx/fd6_emit.h
src/gallium/drivers/freedreno/a6xx/fd6_gmem.c

index fd6b2d0..a3f7d53 100644 (file)
@@ -199,6 +199,8 @@ fd6_launch_grid(struct fd_context *ctx, const struct pipe_grid_info *info)
        }
 
        OUT_WFI5(ring);
+
+       fd6_cache_flush(ctx->batch, ring);
 }
 
 void
index 1c703a2..adbdef2 100644 (file)
@@ -368,7 +368,7 @@ fd6_clear_lrz(struct fd_batch *batch, struct fd_resource *zsbuf, double depth)
        fd6_event_write(batch, ring, FACENESS_FLUSH, true);
        fd6_event_write(batch, ring, CACHE_FLUSH_TS, true);
 
-       fd6_cache_flush(batch, ring);
+       fd6_cache_inv(batch, ring);
 }
 
 static bool is_z32(enum pipe_format format)
index bf9aed6..daa06d2 100644 (file)
@@ -1055,7 +1055,7 @@ fd6_emit_restore(struct fd_batch *batch, struct fd_ringbuffer *ring)
 {
        //struct fd_context *ctx = batch->ctx;
 
-       fd6_cache_flush(batch, ring);
+       fd6_cache_inv(batch, ring);
 
        OUT_PKT4(ring, REG_A6XX_HLSQ_UPDATE_CNTL, 1);
        OUT_RING(ring, 0xfffff);
index ab7ace4..6c02bd9 100644 (file)
@@ -119,28 +119,56 @@ fd6_emit_add_group(struct fd6_emit *emit, struct fd_ringbuffer *stateobj,
        g->enable_mask = enable_mask;
 }
 
-static inline void
+static inline unsigned
 fd6_event_write(struct fd_batch *batch, struct fd_ringbuffer *ring,
                enum vgt_event_type evt, bool timestamp)
 {
+       unsigned seqno = 0;
+
        fd_reset_wfi(batch);
 
        OUT_PKT7(ring, CP_EVENT_WRITE, timestamp ? 4 : 1);
        OUT_RING(ring, CP_EVENT_WRITE_0_EVENT(evt));
        if (timestamp) {
                struct fd6_context *fd6_ctx = fd6_context(batch->ctx);
+               seqno = ++fd6_ctx->seqno;
                OUT_RELOCW(ring, fd6_ctx->blit_mem, 0, 0, 0);  /* ADDR_LO/HI */
-               OUT_RING(ring, ++fd6_ctx->seqno);
+               OUT_RING(ring, seqno);
        }
+
+       return seqno;
 }
 
 static inline void
-fd6_cache_flush(struct fd_batch *batch, struct fd_ringbuffer *ring)
+fd6_cache_inv(struct fd_batch *batch, struct fd_ringbuffer *ring)
 {
        fd6_event_write(batch, ring, 0x31, false);
 }
 
 static inline void
+fd6_cache_flush(struct fd_batch *batch, struct fd_ringbuffer *ring)
+{
+       struct fd6_context *fd6_ctx = fd6_context(batch->ctx);
+       unsigned seqno;
+
+       seqno = fd6_event_write(batch, ring, CACHE_FLUSH_AND_INV_EVENT, true);
+
+       OUT_PKT7(ring, CP_WAIT_REG_MEM, 6);
+       OUT_RING(ring, 0x00000013);
+       OUT_RELOC(ring, fd6_ctx->blit_mem, 0, 0, 0);
+       OUT_RING(ring, seqno);
+       OUT_RING(ring, 0xffffffff);
+       OUT_RING(ring, 0x00000010);
+
+       seqno = fd6_event_write(batch, ring, CACHE_FLUSH_TS, true);
+
+       OUT_PKT7(ring, CP_UNK_A6XX_14, 4);
+       OUT_RING(ring, 0x00000000);
+       OUT_RELOC(ring, fd6_ctx->blit_mem, 0, 0, 0);
+       OUT_RING(ring, seqno);
+}
+
+static inline void
 fd6_emit_blit(struct fd_batch *batch, struct fd_ringbuffer *ring)
 {
        emit_marker6(ring, 7);
index 3c9df92..fa1090d 100644 (file)
@@ -463,7 +463,7 @@ fd6_emit_tile_init(struct fd_batch *batch)
        if (batch->lrz_clear)
                fd6_emit_ib(ring, batch->lrz_clear);
 
-       fd6_cache_flush(batch, ring);
+       fd6_cache_inv(batch, ring);
 
        prepare_tile_setup_ib(batch);
        prepare_tile_fini_ib(batch);
@@ -1045,7 +1045,7 @@ fd6_emit_sysmem_prep(struct fd_batch *batch)
        OUT_RING(ring, 0x0);
 
        fd6_event_write(batch, ring, PC_CCU_INVALIDATE_COLOR, false);
-       fd6_cache_flush(batch, ring);
+       fd6_cache_inv(batch, ring);
 
 #if 0
        OUT_PKT4(ring, REG_A6XX_PC_POWER_CNTL, 1);