i965: Move repeat-instruction-suppression to batchbuffer core
[mesa.git] / src / mesa / drivers / dri / intel / intel_batchbuffer.c
1 /**************************************************************************
2 *
3 * Copyright 2006 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #include "intel_context.h"
29 #include "intel_batchbuffer.h"
30 #include "intel_buffer_objects.h"
31 #include "intel_decode.h"
32 #include "intel_reg.h"
33 #include "intel_bufmgr.h"
34 #include "intel_buffers.h"
35
36 struct cached_batch_item {
37 struct cached_batch_item *next;
38 uint16_t header;
39 uint16_t size;
40 };
41
42 static void clear_cache( struct intel_context *intel )
43 {
44 struct cached_batch_item *item = intel->batch.cached_items;
45
46 while (item) {
47 struct cached_batch_item *next = item->next;
48 free(item);
49 item = next;
50 }
51
52 intel->batch.cached_items = NULL;
53 }
54
55 void
56 intel_batchbuffer_reset(struct intel_context *intel)
57 {
58 if (intel->batch.bo != NULL) {
59 drm_intel_bo_unreference(intel->batch.bo);
60 intel->batch.bo = NULL;
61 }
62 clear_cache(intel);
63
64 intel->batch.bo = drm_intel_bo_alloc(intel->bufmgr, "batchbuffer",
65 intel->maxBatchSize, 4096);
66
67 intel->batch.reserved_space = BATCH_RESERVED;
68 intel->batch.state_batch_offset = intel->batch.bo->size;
69 intel->batch.used = 0;
70 }
71
72 void
73 intel_batchbuffer_free(struct intel_context *intel)
74 {
75 drm_intel_bo_unreference(intel->batch.bo);
76 clear_cache(intel);
77 }
78
79
80 /* TODO: Push this whole function into bufmgr.
81 */
82 static void
83 do_flush_locked(struct intel_context *intel)
84 {
85 struct intel_batchbuffer *batch = &intel->batch;
86 int ret = 0;
87
88 if (!intel->intelScreen->no_hw) {
89 int ring;
90
91 if (intel->gen < 6 || !batch->is_blit) {
92 ring = I915_EXEC_RENDER;
93 } else {
94 ring = I915_EXEC_BLT;
95 }
96
97 ret = drm_intel_bo_subdata(batch->bo, 0, 4*batch->used, batch->map);
98 if (ret == 0 && batch->state_batch_offset != batch->bo->size) {
99 ret = drm_intel_bo_subdata(batch->bo,
100 batch->state_batch_offset,
101 batch->bo->size - batch->state_batch_offset,
102 (char *)batch->map + batch->state_batch_offset);
103 }
104
105 if (ret == 0)
106 ret = drm_intel_bo_mrb_exec(batch->bo, 4*batch->used, NULL, 0, 0, ring);
107 }
108
109 if (unlikely(INTEL_DEBUG & DEBUG_BATCH)) {
110 intel_decode(batch->map, batch->used,
111 batch->bo->offset,
112 intel->intelScreen->deviceID, GL_TRUE);
113
114 if (intel->vtbl.debug_batch != NULL)
115 intel->vtbl.debug_batch(intel);
116 }
117
118 if (ret != 0) {
119 exit(1);
120 }
121 intel->vtbl.new_batch(intel);
122 }
123
124 void
125 _intel_batchbuffer_flush(struct intel_context *intel,
126 const char *file, int line)
127 {
128 if (intel->batch.used == 0)
129 return;
130
131 if (intel->first_post_swapbuffers_batch == NULL) {
132 intel->first_post_swapbuffers_batch = intel->batch.bo;
133 drm_intel_bo_reference(intel->first_post_swapbuffers_batch);
134 }
135
136 if (unlikely(INTEL_DEBUG & DEBUG_BATCH))
137 fprintf(stderr, "%s:%d: Batchbuffer flush with %db used\n", file, line,
138 4*intel->batch.used);
139
140 intel->batch.reserved_space = 0;
141
142 if (intel->always_flush_cache) {
143 intel_batchbuffer_emit_mi_flush(intel);
144 }
145
146 /* Mark the end of the buffer. */
147 intel_batchbuffer_emit_dword(intel, MI_BATCH_BUFFER_END);
148 if (intel->batch.used & 1) {
149 /* Round batchbuffer usage to 2 DWORDs. */
150 intel_batchbuffer_emit_dword(intel, MI_NOOP);
151 }
152
153 if (intel->vtbl.finish_batch)
154 intel->vtbl.finish_batch(intel);
155
156 intel_upload_finish(intel);
157
158 /* Check that we didn't just wrap our batchbuffer at a bad time. */
159 assert(!intel->no_batch_wrap);
160
161 do_flush_locked(intel);
162
163 if (unlikely(INTEL_DEBUG & DEBUG_SYNC)) {
164 fprintf(stderr, "waiting for idle\n");
165 drm_intel_bo_wait_rendering(intel->batch.bo);
166 }
167
168 /* Reset the buffer:
169 */
170 intel_batchbuffer_reset(intel);
171 }
172
173
174 /* This is the only way buffers get added to the validate list.
175 */
176 GLboolean
177 intel_batchbuffer_emit_reloc(struct intel_context *intel,
178 drm_intel_bo *buffer,
179 uint32_t read_domains, uint32_t write_domain,
180 uint32_t delta)
181 {
182 int ret;
183
184 assert(delta < buffer->size);
185
186 ret = drm_intel_bo_emit_reloc(intel->batch.bo, 4*intel->batch.used,
187 buffer, delta,
188 read_domains, write_domain);
189 assert(ret == 0);
190 (void)ret;
191
192 /*
193 * Using the old buffer offset, write in what the right data would be, in case
194 * the buffer doesn't move and we can short-circuit the relocation processing
195 * in the kernel
196 */
197 intel_batchbuffer_emit_dword(intel, buffer->offset + delta);
198
199 return GL_TRUE;
200 }
201
202 GLboolean
203 intel_batchbuffer_emit_reloc_fenced(struct intel_context *intel,
204 drm_intel_bo *buffer,
205 uint32_t read_domains,
206 uint32_t write_domain,
207 uint32_t delta)
208 {
209 int ret;
210
211 assert(delta < buffer->size);
212
213 ret = drm_intel_bo_emit_reloc_fence(intel->batch.bo, 4*intel->batch.used,
214 buffer, delta,
215 read_domains, write_domain);
216 assert(ret == 0);
217 (void)ret;
218
219 /*
220 * Using the old buffer offset, write in what the right data would
221 * be, in case the buffer doesn't move and we can short-circuit the
222 * relocation processing in the kernel
223 */
224 intel_batchbuffer_emit_dword(intel, buffer->offset + delta);
225
226 return GL_TRUE;
227 }
228
229 void
230 intel_batchbuffer_data(struct intel_context *intel,
231 const void *data, GLuint bytes, bool is_blit)
232 {
233 assert((bytes & 3) == 0);
234 intel_batchbuffer_require_space(intel, bytes, is_blit);
235 __memcpy(intel->batch.map + intel->batch.used, data, bytes);
236 intel->batch.used += bytes >> 2;
237 }
238
239 void
240 intel_batchbuffer_cached_advance(struct intel_context *intel)
241 {
242 struct cached_batch_item **prev = &intel->batch.cached_items, *item;
243 uint32_t sz = (intel->batch.used - intel->batch.emit) * sizeof(uint32_t);
244 uint32_t *start = intel->batch.map + intel->batch.emit;
245 uint16_t op = *start >> 16;
246
247 while (*prev) {
248 uint32_t *old;
249
250 item = *prev;
251 old = intel->batch.map + item->header;
252 if (op == *old >> 16) {
253 if (item->size == sz && memcmp(old, start, sz) == 0) {
254 if (prev != &intel->batch.cached_items) {
255 *prev = item->next;
256 item->next = intel->batch.cached_items;
257 intel->batch.cached_items = item;
258 }
259 intel->batch.used = intel->batch.emit;
260 return;
261 }
262
263 goto emit;
264 }
265 prev = &item->next;
266 }
267
268 item = malloc(sizeof(struct cached_batch_item));
269 if (item == NULL)
270 return;
271
272 item->next = intel->batch.cached_items;
273 intel->batch.cached_items = item;
274
275 emit:
276 item->size = sz;
277 item->header = intel->batch.emit;
278 }
279
280 /* Emit a pipelined flush to either flush render and texture cache for
281 * reading from a FBO-drawn texture, or flush so that frontbuffer
282 * render appears on the screen in DRI1.
283 *
284 * This is also used for the always_flush_cache driconf debug option.
285 */
286 void
287 intel_batchbuffer_emit_mi_flush(struct intel_context *intel)
288 {
289 if (intel->gen >= 6) {
290 if (intel->batch.is_blit) {
291 BEGIN_BATCH_BLT(4);
292 OUT_BATCH(MI_FLUSH_DW);
293 OUT_BATCH(0);
294 OUT_BATCH(0);
295 OUT_BATCH(0);
296 ADVANCE_BATCH();
297 } else {
298 BEGIN_BATCH(8);
299 /* XXX workaround: issue any post sync != 0 before write
300 * cache flush = 1
301 */
302 OUT_BATCH(_3DSTATE_PIPE_CONTROL);
303 OUT_BATCH(PIPE_CONTROL_WRITE_IMMEDIATE);
304 OUT_BATCH(0); /* write address */
305 OUT_BATCH(0); /* write data */
306
307 OUT_BATCH(_3DSTATE_PIPE_CONTROL);
308 OUT_BATCH(PIPE_CONTROL_INSTRUCTION_FLUSH |
309 PIPE_CONTROL_WRITE_FLUSH |
310 PIPE_CONTROL_DEPTH_CACHE_FLUSH |
311 PIPE_CONTROL_NO_WRITE);
312 OUT_BATCH(0); /* write address */
313 OUT_BATCH(0); /* write data */
314 ADVANCE_BATCH();
315 }
316 } else if (intel->gen >= 4) {
317 BEGIN_BATCH(4);
318 OUT_BATCH(_3DSTATE_PIPE_CONTROL |
319 PIPE_CONTROL_WRITE_FLUSH |
320 PIPE_CONTROL_NO_WRITE);
321 OUT_BATCH(0); /* write address */
322 OUT_BATCH(0); /* write data */
323 OUT_BATCH(0); /* write data */
324 ADVANCE_BATCH();
325 } else {
326 BEGIN_BATCH(1);
327 OUT_BATCH(MI_FLUSH);
328 ADVANCE_BATCH();
329 }
330 }