summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKristian H. Kristensen <[email protected]>2019-06-03 14:12:59 -0700
committerRob Clark <[email protected]>2019-06-07 07:32:59 -0700
commit4552162e2d4aa03078d2c7ac7d903ff92126640b (patch)
tree35708174fd9aea4c31c7f931045cd23de5576967 /src
parentcae6b4d741ee3cd7c6640574eea46481e05d13ba (diff)
freedreno/a6xx: Consolidate more of dword 0 building in fd6_draw_vbo
There's already a bit of duplicated logic here and tessellation will add more. Build up dword 0 in fd6_draw_vbo() and drop the a4xx in the process. Reviewed-by: Rob Clark <[email protected]> Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/freedreno/a6xx/fd6_draw.c55
1 files changed, 24 insertions, 31 deletions
diff --git a/src/gallium/drivers/freedreno/a6xx/fd6_draw.c b/src/gallium/drivers/freedreno/a6xx/fd6_draw.c
index 767312cc3f2..7933d3bc2b5 100644
--- a/src/gallium/drivers/freedreno/a6xx/fd6_draw.c
+++ b/src/gallium/drivers/freedreno/a6xx/fd6_draw.c
@@ -40,12 +40,9 @@
#include "fd6_format.h"
#include "fd6_zsa.h"
-/* some bits in common w/ a4xx: */
-#include "a4xx/fd4_draw.h"
-
static void
draw_emit_indirect(struct fd_batch *batch, struct fd_ringbuffer *ring,
- enum pc_di_primtype primtype,
+ uint32_t draw0,
const struct pipe_draw_info *info,
unsigned index_offset)
{
@@ -56,9 +53,7 @@ draw_emit_indirect(struct fd_batch *batch, struct fd_ringbuffer *ring,
unsigned max_indicies = idx->width0 / info->index_size;
OUT_PKT7(ring, CP_DRAW_INDX_INDIRECT, 6);
- OUT_RINGP(ring, DRAW4(primtype, DI_SRC_SEL_DMA,
- fd4_size2indextype(info->index_size), 0),
- &batch->draw_patches);
+ OUT_RINGP(ring, draw0, &batch->draw_patches);
OUT_RELOC(ring, fd_resource(idx)->bo,
index_offset, 0, 0);
// XXX: Check A5xx vs A6xx
@@ -66,15 +61,14 @@ draw_emit_indirect(struct fd_batch *batch, struct fd_ringbuffer *ring,
OUT_RELOC(ring, ind->bo, info->indirect->offset, 0, 0);
} else {
OUT_PKT7(ring, CP_DRAW_INDIRECT, 3);
- OUT_RINGP(ring, DRAW4(primtype, DI_SRC_SEL_AUTO_INDEX, 0, 0),
- &batch->draw_patches);
+ OUT_RINGP(ring, draw0, &batch->draw_patches);
OUT_RELOC(ring, ind->bo, info->indirect->offset, 0, 0);
}
}
static void
draw_emit(struct fd_batch *batch, struct fd_ringbuffer *ring,
- enum pc_di_primtype primtype,
+ uint32_t draw0,
const struct pipe_draw_info *info,
unsigned index_offset)
{
@@ -85,31 +79,16 @@ draw_emit(struct fd_batch *batch, struct fd_ringbuffer *ring,
uint32_t idx_size = info->index_size * info->count;
uint32_t idx_offset = index_offset + info->start * info->index_size;
- /* leave vis mode blank for now, it will be patched up when
- * we know if we are binning or not
- */
- uint32_t draw = CP_DRAW_INDX_OFFSET_0_PRIM_TYPE(primtype) |
- CP_DRAW_INDX_OFFSET_0_SOURCE_SELECT(DI_SRC_SEL_DMA) |
- CP_DRAW_INDX_OFFSET_0_INDEX_SIZE(fd4_size2indextype(info->index_size)) |
- 0x2000;
-
OUT_PKT7(ring, CP_DRAW_INDX_OFFSET, 7);
- OUT_RINGP(ring, draw, &batch->draw_patches);
+ OUT_RINGP(ring, draw0, &batch->draw_patches);
OUT_RING(ring, info->instance_count); /* NumInstances */
OUT_RING(ring, info->count); /* NumIndices */
OUT_RING(ring, 0x0); /* XXX */
OUT_RELOC(ring, fd_resource(idx_buffer)->bo, idx_offset, 0, 0);
OUT_RING (ring, idx_size);
} else {
- /* leave vis mode blank for now, it will be patched up when
- * we know if we are binning or not
- */
- uint32_t draw = CP_DRAW_INDX_OFFSET_0_PRIM_TYPE(primtype) |
- CP_DRAW_INDX_OFFSET_0_SOURCE_SELECT(DI_SRC_SEL_AUTO_INDEX) |
- 0x2000;
-
OUT_PKT7(ring, CP_DRAW_INDX_OFFSET, 3);
- OUT_RINGP(ring, draw, &batch->draw_patches);
+ OUT_RINGP(ring, draw0, &batch->draw_patches);
OUT_RING(ring, info->instance_count); /* NumInstances */
OUT_RING(ring, info->count); /* NumIndices */
}
@@ -225,12 +204,26 @@ fd6_draw_vbo(struct fd_context *ctx, const struct pipe_draw_info *info,
*/
emit_marker6(ring, 7);
+ /* leave vis mode blank for now, it will be patched up when
+ * we know if we are binning or not
+ */
+ uint32_t draw0 =
+ CP_DRAW_INDX_OFFSET_0_PRIM_TYPE(primtype) |
+ 0x2000;
+
+ if (info->index_size) {
+ draw0 |=
+ CP_DRAW_INDX_OFFSET_0_SOURCE_SELECT(DI_SRC_SEL_DMA) |
+ CP_DRAW_INDX_OFFSET_0_INDEX_SIZE(fd4_size2indextype(info->index_size));
+ } else {
+ draw0 |=
+ CP_DRAW_INDX_OFFSET_0_SOURCE_SELECT(DI_SRC_SEL_AUTO_INDEX);
+ }
+
if (info->indirect) {
- draw_emit_indirect(ctx->batch, ring, primtype,
- info, index_offset);
+ draw_emit_indirect(ctx->batch, ring, draw0, info, index_offset);
} else {
- draw_emit(ctx->batch, ring, primtype,
- info, index_offset);
+ draw_emit(ctx->batch, ring, draw0, info, index_offset);
}
emit_marker6(ring, 7);