From: Rob Clark Date: Tue, 14 Nov 2017 19:15:27 +0000 (-0500) Subject: freedreno/a5xx: split out helper for pipeline stalls X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f383cf9d410e3764eda9321f75fd324f6a15138d;p=mesa.git freedreno/a5xx: split out helper for pipeline stalls We need a similar thing for indirect draws. Signed-off-by: Rob Clark --- diff --git a/src/gallium/drivers/freedreno/a5xx/fd5_compute.c b/src/gallium/drivers/freedreno/a5xx/fd5_compute.c index 362ab1dc544..55cddadf600 100644 --- a/src/gallium/drivers/freedreno/a5xx/fd5_compute.c +++ b/src/gallium/drivers/freedreno/a5xx/fd5_compute.c @@ -160,12 +160,7 @@ fd5_launch_grid(struct fd_context *ctx, const struct pipe_grid_info *info) if (info->indirect) { struct fd_resource *rsc = fd_resource(info->indirect); - OUT_PKT7(ring, CP_EVENT_WRITE, 4); - OUT_RING(ring, CACHE_FLUSH_TS); - OUT_RELOCW(ring, fd5_context(ctx)->blit_mem, 0, 0, 0); /* ADDR_LO/HI */ - OUT_RING(ring, 0x00000000); - - OUT_WFI5(ring); + fd5_emit_flush(ctx, ring); OUT_PKT7(ring, CP_EXEC_CS_INDIRECT, 4); OUT_RING(ring, 0x00000000); diff --git a/src/gallium/drivers/freedreno/a5xx/fd5_context.h b/src/gallium/drivers/freedreno/a5xx/fd5_context.h index f4d885b40f7..37573460c21 100644 --- a/src/gallium/drivers/freedreno/a5xx/fd5_context.h +++ b/src/gallium/drivers/freedreno/a5xx/fd5_context.h @@ -93,4 +93,16 @@ fd5_context(struct fd_context *ctx) struct pipe_context * fd5_context_create(struct pipe_screen *pscreen, void *priv, unsigned flags); +/* helper for places where we need to stall CP to wait for previous draws: */ +static inline void +fd5_emit_flush(struct fd_context *ctx, struct fd_ringbuffer *ring) +{ + OUT_PKT7(ring, CP_EVENT_WRITE, 4); + OUT_RING(ring, CACHE_FLUSH_TS); + OUT_RELOCW(ring, fd5_context(ctx)->blit_mem, 0, 0, 0); /* ADDR_LO/HI */ + OUT_RING(ring, 0x00000000); + + OUT_WFI5(ring); +} + #endif /* FD5_CONTEXT_H_ */