nouveau/nir: Implement load_global_constant
[mesa.git] / src / gallium / drivers / freedreno / freedreno_draw.h
index 25e102f5067c61d0b97a6275ea69d575b99a281f..b508f70f4efa218f3892a00c27ceea7c32e8ed4b 100644 (file)
@@ -1,5 +1,3 @@
-/* -*- mode: C; c-file-style: "k&r"; tab-width 4; indent-tabs-mode: t; -*- */
-
 /*
  * Copyright (C) 2012 Rob Clark <robclark@freedesktop.org>
  *
@@ -42,14 +40,14 @@ struct fd_ringbuffer;
 void fd_draw_init(struct pipe_context *pctx);
 
 static inline void
-fd_draw(struct fd_context *ctx, struct fd_ringbuffer *ring,
+fd_draw(struct fd_batch *batch, struct fd_ringbuffer *ring,
                enum pc_di_primtype primtype,
                enum pc_di_vis_cull_mode vismode,
                enum pc_di_src_sel src_sel, uint32_t count,
                uint8_t instances,
                enum pc_di_index_size idx_type,
                uint32_t idx_size, uint32_t idx_offset,
-               struct fd_bo *idx_bo)
+               struct pipe_resource *idx_buffer)
 {
        /* for debug after a lock up, write a unique counter value
         * to scratch7 for each draw, to make it easier to match up
@@ -59,7 +57,7 @@ fd_draw(struct fd_context *ctx, struct fd_ringbuffer *ring,
         */
        emit_marker(ring, 7);
 
-       if (is_a3xx_p0(ctx->screen)) {
+       if (is_a3xx_p0(batch->ctx->screen)) {
                /* dummy-draw workaround: */
                OUT_PKT3(ring, CP_DRAW_INDX, 3);
                OUT_RING(ring, 0x00000000);
@@ -74,26 +72,57 @@ fd_draw(struct fd_context *ctx, struct fd_ringbuffer *ring,
                OUT_RING(ring, 0);
        }
 
-       OUT_PKT3(ring, CP_DRAW_INDX, idx_bo ? 5 : 3);
-       OUT_RING(ring, 0x00000000);        /* viz query info. */
-       if (vismode == USE_VISIBILITY) {
-               /* leave vis mode blank for now, it will be patched up when
-                * we know if we are binning or not
+       if (is_a20x(batch->ctx->screen)) {
+               /* a20x has a different draw command for drawing with binning data
+                * note: if we do patching we will have to insert a NOP
+                *
+                * binning data is is 1 byte/vertex (8x8x4 bin position of vertex)
+                * base ptr set by the CP_SET_DRAW_INIT_FLAGS command
+                *
+                * TODO: investigate the faceness_cull_select parameter to see how
+                * it is used with hw binning to use "faceness" bits
                 */
-               OUT_RINGP(ring, DRAW(primtype, src_sel, idx_type, 0, instances),
-                               &ctx->draw_patches);
+               uint32_t size = 2;
+               if (vismode)
+                       size += 2;
+               if (idx_buffer)
+                       size += 2;
+
+               BEGIN_RING(ring, size+1);
+               if (vismode)
+                       util_dynarray_append(&batch->draw_patches, uint32_t*, ring->cur);
+
+               OUT_PKT3(ring, vismode ? CP_DRAW_INDX_BIN : CP_DRAW_INDX, size);
+               OUT_RING(ring, 0x00000000);
+               OUT_RING(ring, DRAW_A20X(primtype, DI_FACE_CULL_NONE, src_sel,
+                                                                idx_type, vismode, vismode, count));
+               if (vismode == USE_VISIBILITY) {
+                       OUT_RING(ring, batch->num_vertices);
+                       OUT_RING(ring, count);
+               }
        } else {
-               OUT_RING(ring, DRAW(primtype, src_sel, idx_type, vismode, instances));
+               OUT_PKT3(ring, CP_DRAW_INDX, idx_buffer ? 5 : 3);
+               OUT_RING(ring, 0x00000000);        /* viz query info. */
+               if (vismode == USE_VISIBILITY) {
+                       /* leave vis mode blank for now, it will be patched up when
+                        * we know if we are binning or not
+                        */
+                       OUT_RINGP(ring, DRAW(primtype, src_sel, idx_type, 0, instances),
+                                       &batch->draw_patches);
+               } else {
+                       OUT_RING(ring, DRAW(primtype, src_sel, idx_type, vismode, instances));
+               }
+               OUT_RING(ring, count);             /* NumIndices */
        }
-       OUT_RING(ring, count);             /* NumIndices */
-       if (idx_bo) {
-               OUT_RELOC(ring, idx_bo, idx_offset, 0, 0);
+
+       if (idx_buffer) {
+               OUT_RELOC(ring, fd_resource(idx_buffer)->bo, idx_offset, 0, 0);
                OUT_RING (ring, idx_size);
        }
 
        emit_marker(ring, 7);
 
-       fd_reset_wfi(ctx);
+       fd_reset_wfi(batch);
 }
 
 
@@ -112,35 +141,36 @@ size2indextype(unsigned index_size)
 
 /* this is same for a2xx/a3xx, so split into helper: */
 static inline void
-fd_draw_emit(struct fd_context *ctx, struct fd_ringbuffer *ring,
+fd_draw_emit(struct fd_batch *batch, struct fd_ringbuffer *ring,
+               enum pc_di_primtype primtype,
                enum pc_di_vis_cull_mode vismode,
-               const struct pipe_draw_info *info)
+               const struct pipe_draw_info *info,
+               unsigned index_offset)
 {
-       struct pipe_index_buffer *idx = &ctx->indexbuf;
-       struct fd_bo *idx_bo = NULL;
+       struct pipe_resource *idx_buffer = NULL;
        enum pc_di_index_size idx_type = INDEX_SIZE_IGN;
        enum pc_di_src_sel src_sel;
        uint32_t idx_size, idx_offset;
 
-       if (info->indexed) {
-               assert(!idx->user_buffer);
+       if (info->index_size) {
+               assert(!info->has_user_indices);
 
-               idx_bo = fd_resource(idx->buffer)->bo;
-               idx_type = size2indextype(idx->index_size);
-               idx_size = idx->index_size * info->count;
-               idx_offset = idx->offset + (info->start * idx->index_size);
+               idx_buffer = info->index.resource;
+               idx_type = size2indextype(info->index_size);
+               idx_size = info->index_size * info->count;
+               idx_offset = index_offset + info->start * info->index_size;
                src_sel = DI_SRC_SEL_DMA;
        } else {
-               idx_bo = NULL;
+               idx_buffer = NULL;
                idx_type = INDEX_SIZE_IGN;
                idx_size = 0;
                idx_offset = 0;
                src_sel = DI_SRC_SEL_AUTO_INDEX;
        }
 
-       fd_draw(ctx, ring, ctx->primtypes[info->mode], vismode, src_sel,
+       fd_draw(batch, ring, primtype, vismode, src_sel,
                        info->count, info->instance_count - 1,
-                       idx_type, idx_size, idx_offset, idx_bo);
+                       idx_type, idx_size, idx_offset, idx_buffer);
 }
 
 #endif /* FREEDRENO_DRAW_H_ */