freedreno: simplify pctx->clear()
[mesa.git] / src / gallium / drivers / freedreno / freedreno_draw.h
1 /* -*- mode: C; c-file-style: "k&r"; tab-width 4; indent-tabs-mode: t; -*- */
2
3 /*
4 * Copyright (C) 2012 Rob Clark <robclark@freedesktop.org>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 *
25 * Authors:
26 * Rob Clark <robclark@freedesktop.org>
27 */
28
29 #ifndef FREEDRENO_DRAW_H_
30 #define FREEDRENO_DRAW_H_
31
32 #include "pipe/p_state.h"
33 #include "pipe/p_context.h"
34
35 #include "freedreno_context.h"
36 #include "freedreno_resource.h"
37 #include "freedreno_screen.h"
38 #include "freedreno_util.h"
39
40 struct fd_ringbuffer;
41
42 void fd_draw_init(struct pipe_context *pctx);
43
44 static inline void
45 fd_draw(struct fd_batch *batch, struct fd_ringbuffer *ring,
46 enum pc_di_primtype primtype,
47 enum pc_di_vis_cull_mode vismode,
48 enum pc_di_src_sel src_sel, uint32_t count,
49 uint8_t instances,
50 enum pc_di_index_size idx_type,
51 uint32_t idx_size, uint32_t idx_offset,
52 struct pipe_resource *idx_buffer)
53 {
54 /* for debug after a lock up, write a unique counter value
55 * to scratch7 for each draw, to make it easier to match up
56 * register dumps to cmdstream. The combination of IB
57 * (scratch6) and DRAW is enough to "triangulate" the
58 * particular draw that caused lockup.
59 */
60 emit_marker(ring, 7);
61
62 if (is_a3xx_p0(batch->ctx->screen)) {
63 /* dummy-draw workaround: */
64 OUT_PKT3(ring, CP_DRAW_INDX, 3);
65 OUT_RING(ring, 0x00000000);
66 OUT_RING(ring, DRAW(1, DI_SRC_SEL_AUTO_INDEX,
67 INDEX_SIZE_IGN, USE_VISIBILITY, 0));
68 OUT_RING(ring, 0); /* NumIndices */
69
70 /* ugg, hard-code register offset to avoid pulling in the
71 * a3xx register headers into something #included from a2xx
72 */
73 OUT_PKT0(ring, 0x2206, 1); /* A3XX_HLSQ_CONST_VSPRESV_RANGE_REG */
74 OUT_RING(ring, 0);
75 }
76
77 if (is_a20x(batch->ctx->screen)) {
78 OUT_PKT3(ring, CP_DRAW_INDX, idx_buffer ? 4 : 2);
79 OUT_RING(ring, 0x00000000);
80 OUT_RING(ring, DRAW_A20X(primtype, src_sel, idx_type, vismode, count));
81 } else {
82 OUT_PKT3(ring, CP_DRAW_INDX, idx_buffer ? 5 : 3);
83 OUT_RING(ring, 0x00000000); /* viz query info. */
84 if (vismode == USE_VISIBILITY) {
85 /* leave vis mode blank for now, it will be patched up when
86 * we know if we are binning or not
87 */
88 OUT_RINGP(ring, DRAW(primtype, src_sel, idx_type, 0, instances),
89 &batch->draw_patches);
90 } else {
91 OUT_RING(ring, DRAW(primtype, src_sel, idx_type, vismode, instances));
92 }
93 OUT_RING(ring, count); /* NumIndices */
94 }
95
96 if (idx_buffer) {
97 OUT_RELOC(ring, fd_resource(idx_buffer)->bo, idx_offset, 0, 0);
98 OUT_RING (ring, idx_size);
99 }
100
101 emit_marker(ring, 7);
102
103 fd_reset_wfi(batch);
104 }
105
106
107 static inline enum pc_di_index_size
108 size2indextype(unsigned index_size)
109 {
110 switch (index_size) {
111 case 1: return INDEX_SIZE_8_BIT;
112 case 2: return INDEX_SIZE_16_BIT;
113 case 4: return INDEX_SIZE_32_BIT;
114 }
115 DBG("unsupported index size: %d", index_size);
116 assert(0);
117 return INDEX_SIZE_IGN;
118 }
119
120 /* this is same for a2xx/a3xx, so split into helper: */
121 static inline void
122 fd_draw_emit(struct fd_batch *batch, struct fd_ringbuffer *ring,
123 enum pc_di_primtype primtype,
124 enum pc_di_vis_cull_mode vismode,
125 const struct pipe_draw_info *info,
126 unsigned index_offset)
127 {
128 struct pipe_resource *idx_buffer = NULL;
129 enum pc_di_index_size idx_type = INDEX_SIZE_IGN;
130 enum pc_di_src_sel src_sel;
131 uint32_t idx_size, idx_offset;
132
133 if (info->index_size) {
134 assert(!info->has_user_indices);
135
136 idx_buffer = info->index.resource;
137 idx_type = size2indextype(info->index_size);
138 idx_size = info->index_size * info->count;
139 idx_offset = index_offset + info->start * info->index_size;
140 src_sel = DI_SRC_SEL_DMA;
141 } else {
142 idx_buffer = NULL;
143 idx_type = INDEX_SIZE_IGN;
144 idx_size = 0;
145 idx_offset = 0;
146 src_sel = DI_SRC_SEL_AUTO_INDEX;
147 }
148
149 fd_draw(batch, ring, primtype, vismode, src_sel,
150 info->count, info->instance_count - 1,
151 idx_type, idx_size, idx_offset, idx_buffer);
152 }
153
154 #endif /* FREEDRENO_DRAW_H_ */