fb5ed279c8d33bd9388a164d2f0852e77ea6887e
[mesa.git] / src / mesa / drivers / dri / i965 / intel_batchbuffer.c
1 /*
2 * Copyright 2006 VMware, Inc.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial portions
15 * of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
21 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26 #include "intel_batchbuffer.h"
27 #include "intel_buffer_objects.h"
28 #include "brw_bufmgr.h"
29 #include "intel_buffers.h"
30 #include "intel_fbo.h"
31 #include "brw_context.h"
32 #include "brw_defines.h"
33 #include "brw_state.h"
34 #include "common/gen_decoder.h"
35
36 #include "util/hash_table.h"
37
38 #include <xf86drm.h>
39 #include <i915_drm.h>
40
41 #define FILE_DEBUG_FLAG DEBUG_BUFMGR
42
43 static void
44 intel_batchbuffer_reset(struct intel_batchbuffer *batch,
45 struct brw_bufmgr *bufmgr,
46 bool has_llc);
47
48 static bool
49 uint_key_compare(const void *a, const void *b)
50 {
51 return a == b;
52 }
53
54 static uint32_t
55 uint_key_hash(const void *key)
56 {
57 return (uintptr_t) key;
58 }
59
60 void
61 intel_batchbuffer_init(struct intel_batchbuffer *batch,
62 struct brw_bufmgr *bufmgr,
63 bool has_llc)
64 {
65 intel_batchbuffer_reset(batch, bufmgr, has_llc);
66
67 if (!has_llc) {
68 batch->cpu_map = malloc(BATCH_SZ);
69 batch->map = batch->cpu_map;
70 batch->map_next = batch->cpu_map;
71 }
72
73 batch->reloc_count = 0;
74 batch->reloc_array_size = 250;
75 batch->relocs = malloc(batch->reloc_array_size *
76 sizeof(struct drm_i915_gem_relocation_entry));
77 batch->exec_count = 0;
78 batch->exec_array_size = 100;
79 batch->exec_bos =
80 malloc(batch->exec_array_size * sizeof(batch->exec_bos[0]));
81 batch->validation_list =
82 malloc(batch->exec_array_size * sizeof(batch->validation_list[0]));
83
84 if (INTEL_DEBUG & DEBUG_BATCH) {
85 batch->state_batch_sizes =
86 _mesa_hash_table_create(NULL, uint_key_hash, uint_key_compare);
87 }
88 }
89
90 static void
91 intel_batchbuffer_reset(struct intel_batchbuffer *batch,
92 struct brw_bufmgr *bufmgr,
93 bool has_llc)
94 {
95 if (batch->last_bo != NULL) {
96 brw_bo_unreference(batch->last_bo);
97 batch->last_bo = NULL;
98 }
99 batch->last_bo = batch->bo;
100
101 batch->bo = brw_bo_alloc(bufmgr, "batchbuffer", BATCH_SZ, 4096);
102 if (has_llc) {
103 batch->map = brw_bo_map(NULL, batch->bo, MAP_READ | MAP_WRITE);
104 }
105 batch->map_next = batch->map;
106
107 batch->reserved_space = BATCH_RESERVED;
108 batch->state_batch_offset = batch->bo->size;
109 batch->needs_sol_reset = false;
110 batch->state_base_address_emitted = false;
111
112 /* We don't know what ring the new batch will be sent to until we see the
113 * first BEGIN_BATCH or BEGIN_BATCH_BLT. Mark it as unknown.
114 */
115 batch->ring = UNKNOWN_RING;
116
117 if (batch->state_batch_sizes)
118 _mesa_hash_table_clear(batch->state_batch_sizes, NULL);
119 }
120
121 static void
122 intel_batchbuffer_reset_and_clear_render_cache(struct brw_context *brw)
123 {
124 intel_batchbuffer_reset(&brw->batch, brw->bufmgr, brw->has_llc);
125 brw_render_cache_set_clear(brw);
126 }
127
128 void
129 intel_batchbuffer_save_state(struct brw_context *brw)
130 {
131 brw->batch.saved.map_next = brw->batch.map_next;
132 brw->batch.saved.reloc_count = brw->batch.reloc_count;
133 brw->batch.saved.exec_count = brw->batch.exec_count;
134 }
135
136 void
137 intel_batchbuffer_reset_to_saved(struct brw_context *brw)
138 {
139 for (int i = brw->batch.saved.exec_count;
140 i < brw->batch.exec_count; i++) {
141 if (brw->batch.exec_bos[i] != brw->batch.bo) {
142 brw_bo_unreference(brw->batch.exec_bos[i]);
143 }
144 }
145 brw->batch.reloc_count = brw->batch.saved.reloc_count;
146 brw->batch.exec_count = brw->batch.saved.exec_count;
147
148 brw->batch.map_next = brw->batch.saved.map_next;
149 if (USED_BATCH(brw->batch) == 0)
150 brw->batch.ring = UNKNOWN_RING;
151 }
152
153 void
154 intel_batchbuffer_free(struct intel_batchbuffer *batch)
155 {
156 free(batch->cpu_map);
157
158 for (int i = 0; i < batch->exec_count; i++) {
159 if (batch->exec_bos[i] != batch->bo) {
160 brw_bo_unreference(batch->exec_bos[i]);
161 }
162 }
163 free(batch->relocs);
164 free(batch->exec_bos);
165 free(batch->validation_list);
166
167 brw_bo_unreference(batch->last_bo);
168 brw_bo_unreference(batch->bo);
169 if (batch->state_batch_sizes)
170 _mesa_hash_table_destroy(batch->state_batch_sizes, NULL);
171 }
172
173 void
174 intel_batchbuffer_require_space(struct brw_context *brw, GLuint sz,
175 enum brw_gpu_ring ring)
176 {
177 /* If we're switching rings, implicitly flush the batch. */
178 if (unlikely(ring != brw->batch.ring) && brw->batch.ring != UNKNOWN_RING &&
179 brw->gen >= 6) {
180 intel_batchbuffer_flush(brw);
181 }
182
183 #ifdef DEBUG
184 assert(sz < BATCH_SZ - BATCH_RESERVED);
185 #endif
186 if (intel_batchbuffer_space(&brw->batch) < sz)
187 intel_batchbuffer_flush(brw);
188
189 /* The intel_batchbuffer_flush() calls above might have changed
190 * brw->batch.ring to UNKNOWN_RING, so we need to set it here at the end.
191 */
192 brw->batch.ring = ring;
193 }
194
195 #ifdef DEBUG
196 #define CSI "\e["
197 #define BLUE_HEADER CSI "0;44m"
198 #define NORMAL CSI "0m"
199
200
201 static void
202 decode_struct(struct brw_context *brw, struct gen_spec *spec,
203 const char *struct_name, uint32_t *data,
204 uint32_t gtt_offset, uint32_t offset, bool color)
205 {
206 struct gen_group *group = gen_spec_find_struct(spec, struct_name);
207 if (!group)
208 return;
209
210 fprintf(stderr, "%s\n", struct_name);
211 gen_print_group(stderr, group, gtt_offset + offset,
212 &data[offset / 4], color);
213 }
214
215 static void
216 decode_structs(struct brw_context *brw, struct gen_spec *spec,
217 const char *struct_name,
218 uint32_t *data, uint32_t gtt_offset, uint32_t offset,
219 int struct_size, bool color)
220 {
221 struct gen_group *group = gen_spec_find_struct(spec, struct_name);
222 if (!group)
223 return;
224
225 int entries = brw_state_batch_size(brw, offset) / struct_size;
226 for (int i = 0; i < entries; i++) {
227 fprintf(stderr, "%s %d\n", struct_name, i);
228 gen_print_group(stderr, group, gtt_offset + offset,
229 &data[(offset + i * struct_size) / 4], color);
230 }
231 }
232
233 static void
234 do_batch_dump(struct brw_context *brw)
235 {
236 struct intel_batchbuffer *batch = &brw->batch;
237 struct gen_spec *spec = gen_spec_load(&brw->screen->devinfo);
238
239 if (batch->ring != RENDER_RING)
240 return;
241
242 void *map = brw_bo_map(brw, batch->bo, MAP_READ);
243 if (map == NULL) {
244 fprintf(stderr,
245 "WARNING: failed to map batchbuffer, "
246 "dumping uploaded data instead.\n");
247 }
248
249 uint32_t *data = map ? map : batch->map;
250 uint32_t *end = data + USED_BATCH(*batch);
251 uint32_t gtt_offset = map ? batch->bo->offset64 : 0;
252 int length;
253
254 bool color = INTEL_DEBUG & DEBUG_COLOR;
255 const char *header_color = color ? BLUE_HEADER : "";
256 const char *reset_color = color ? NORMAL : "";
257
258 for (uint32_t *p = data; p < end; p += length) {
259 struct gen_group *inst = gen_spec_find_instruction(spec, p);
260 length = gen_group_get_length(inst, p);
261 assert(inst == NULL || length > 0);
262 length = MAX2(1, length);
263 if (inst == NULL) {
264 fprintf(stderr, "unknown instruction %08x\n", p[0]);
265 continue;
266 }
267
268 uint64_t offset = gtt_offset + 4 * (p - data);
269
270 fprintf(stderr, "%s0x%08"PRIx64": 0x%08x: %-80s%s\n", header_color,
271 offset, p[0], gen_group_get_name(inst), reset_color);
272
273 gen_print_group(stderr, inst, offset, p, color);
274
275 switch (gen_group_get_opcode(inst) >> 16) {
276 case _3DSTATE_PIPELINED_POINTERS:
277 /* Note: these Gen4-5 pointers are full relocations rather than
278 * offsets from the start of the batch. So we need to subtract
279 * gtt_offset (the start of the batch) to obtain an offset we
280 * can add to the map and get at the data.
281 */
282 decode_struct(brw, spec, "VS_STATE", data, gtt_offset,
283 (p[1] & ~0x1fu) - gtt_offset, color);
284 if (p[2] & 1) {
285 decode_struct(brw, spec, "GS_STATE", data, gtt_offset,
286 (p[2] & ~0x1fu) - gtt_offset, color);
287 }
288 if (p[3] & 1) {
289 decode_struct(brw, spec, "CLIP_STATE", data, gtt_offset,
290 (p[3] & ~0x1fu) - gtt_offset, color);
291 }
292 decode_struct(brw, spec, "SF_STATE", data, gtt_offset,
293 (p[4] & ~0x1fu) - gtt_offset, color);
294 decode_struct(brw, spec, "WM_STATE", data, gtt_offset,
295 (p[5] & ~0x1fu) - gtt_offset, color);
296 decode_struct(brw, spec, "COLOR_CALC_STATE", data, gtt_offset,
297 (p[6] & ~0x3fu) - gtt_offset, color);
298 break;
299 case _3DSTATE_BINDING_TABLE_POINTERS_VS:
300 case _3DSTATE_BINDING_TABLE_POINTERS_HS:
301 case _3DSTATE_BINDING_TABLE_POINTERS_DS:
302 case _3DSTATE_BINDING_TABLE_POINTERS_GS:
303 case _3DSTATE_BINDING_TABLE_POINTERS_PS: {
304 struct gen_group *group =
305 gen_spec_find_struct(spec, "RENDER_SURFACE_STATE");
306 if (!group)
307 break;
308
309 uint32_t bt_offset = p[1] & ~0x1fu;
310 int bt_entries = brw_state_batch_size(brw, bt_offset) / 4;
311 uint32_t *bt_pointers = &data[bt_offset / 4];
312 for (int i = 0; i < bt_entries; i++) {
313 fprintf(stderr, "SURFACE_STATE - BTI = %d\n", i);
314 gen_print_group(stderr, group, gtt_offset + bt_pointers[i],
315 &data[bt_pointers[i] / 4], color);
316 }
317 break;
318 }
319 case _3DSTATE_SAMPLER_STATE_POINTERS_VS:
320 case _3DSTATE_SAMPLER_STATE_POINTERS_HS:
321 case _3DSTATE_SAMPLER_STATE_POINTERS_DS:
322 case _3DSTATE_SAMPLER_STATE_POINTERS_GS:
323 case _3DSTATE_SAMPLER_STATE_POINTERS_PS:
324 decode_structs(brw, spec, "SAMPLER_STATE", data,
325 gtt_offset, p[1] & ~0x1fu, 4 * 4, color);
326 break;
327 case _3DSTATE_VIEWPORT_STATE_POINTERS:
328 decode_structs(brw, spec, "CLIP_VIEWPORT", data,
329 gtt_offset, p[1] & ~0x3fu, 4 * 4, color);
330 decode_structs(brw, spec, "SF_VIEWPORT", data,
331 gtt_offset, p[1] & ~0x3fu, 8 * 4, color);
332 decode_structs(brw, spec, "CC_VIEWPORT", data,
333 gtt_offset, p[3] & ~0x3fu, 2 * 4, color);
334 break;
335 case _3DSTATE_VIEWPORT_STATE_POINTERS_CC:
336 decode_structs(brw, spec, "CC_VIEWPORT", data,
337 gtt_offset, p[1] & ~0x3fu, 2 * 4, color);
338 break;
339 case _3DSTATE_VIEWPORT_STATE_POINTERS_SF_CL:
340 decode_structs(brw, spec, "SF_CLIP_VIEWPORT", data,
341 gtt_offset, p[1] & ~0x3fu, 16 * 4, color);
342 break;
343 case _3DSTATE_SCISSOR_STATE_POINTERS:
344 decode_structs(brw, spec, "SCISSOR_RECT", data,
345 gtt_offset, p[1] & ~0x1fu, 2 * 4, color);
346 break;
347 case _3DSTATE_BLEND_STATE_POINTERS:
348 /* TODO: handle Gen8+ extra dword at the beginning */
349 decode_structs(brw, spec, "BLEND_STATE", data,
350 gtt_offset, p[1] & ~0x3fu, 8 * 4, color);
351 break;
352 case _3DSTATE_CC_STATE_POINTERS:
353 if (brw->gen >= 7) {
354 decode_struct(brw, spec, "COLOR_CALC_STATE", data,
355 gtt_offset, p[1] & ~0x3fu, color);
356 } else if (brw->gen == 6) {
357 decode_structs(brw, spec, "BLEND_STATE", data,
358 gtt_offset, p[1] & ~0x3fu, 2 * 4, color);
359 decode_struct(brw, spec, "DEPTH_STENCIL_STATE", data,
360 gtt_offset, p[2] & ~0x3fu, color);
361 decode_struct(brw, spec, "COLOR_CALC_STATE", data,
362 gtt_offset, p[3] & ~0x3fu, color);
363 }
364 break;
365 case _3DSTATE_DEPTH_STENCIL_STATE_POINTERS:
366 decode_struct(brw, spec, "DEPTH_STENCIL_STATE", data,
367 gtt_offset, p[1] & ~0x3fu, color);
368 break;
369 }
370 }
371
372 if (map != NULL) {
373 brw_bo_unmap(batch->bo);
374 }
375 }
376 #else
377 static void do_batch_dump(struct brw_context *brw) { }
378 #endif
379
380 /**
381 * Called when starting a new batch buffer.
382 */
383 static void
384 brw_new_batch(struct brw_context *brw)
385 {
386 /* Unreference any BOs held by the previous batch, and reset counts. */
387 for (int i = 0; i < brw->batch.exec_count; i++) {
388 if (brw->batch.exec_bos[i] != brw->batch.bo) {
389 brw_bo_unreference(brw->batch.exec_bos[i]);
390 }
391 brw->batch.exec_bos[i] = NULL;
392 }
393 brw->batch.reloc_count = 0;
394 brw->batch.exec_count = 0;
395 brw->batch.aperture_space = BATCH_SZ;
396
397 /* Create a new batchbuffer and reset the associated state: */
398 intel_batchbuffer_reset_and_clear_render_cache(brw);
399
400 /* If the kernel supports hardware contexts, then most hardware state is
401 * preserved between batches; we only need to re-emit state that is required
402 * to be in every batch. Otherwise we need to re-emit all the state that
403 * would otherwise be stored in the context (which for all intents and
404 * purposes means everything).
405 */
406 if (brw->hw_ctx == 0)
407 brw->ctx.NewDriverState |= BRW_NEW_CONTEXT;
408
409 brw->ctx.NewDriverState |= BRW_NEW_BATCH;
410
411 brw->ib.index_size = -1;
412
413 /* We need to periodically reap the shader time results, because rollover
414 * happens every few seconds. We also want to see results every once in a
415 * while, because many programs won't cleanly destroy our context, so the
416 * end-of-run printout may not happen.
417 */
418 if (INTEL_DEBUG & DEBUG_SHADER_TIME)
419 brw_collect_and_report_shader_time(brw);
420 }
421
422 /**
423 * Called from intel_batchbuffer_flush before emitting MI_BATCHBUFFER_END and
424 * sending it off.
425 *
426 * This function can emit state (say, to preserve registers that aren't saved
427 * between batches). All of this state MUST fit in the reserved space at the
428 * end of the batchbuffer. If you add more GPU state, increase the reserved
429 * space by updating the BATCH_RESERVED macro.
430 */
431 static void
432 brw_finish_batch(struct brw_context *brw)
433 {
434 /* Capture the closing pipeline statistics register values necessary to
435 * support query objects (in the non-hardware context world).
436 */
437 brw_emit_query_end(brw);
438
439 if (brw->batch.ring == RENDER_RING) {
440 /* Work around L3 state leaks into contexts set MI_RESTORE_INHIBIT which
441 * assume that the L3 cache is configured according to the hardware
442 * defaults.
443 */
444 if (brw->gen >= 7)
445 gen7_restore_default_l3_config(brw);
446
447 if (brw->is_haswell) {
448 /* From the Haswell PRM, Volume 2b, Command Reference: Instructions,
449 * 3DSTATE_CC_STATE_POINTERS > "Note":
450 *
451 * "SW must program 3DSTATE_CC_STATE_POINTERS command at the end of every
452 * 3D batch buffer followed by a PIPE_CONTROL with RC flush and CS stall."
453 *
454 * From the example in the docs, it seems to expect a regular pipe control
455 * flush here as well. We may have done it already, but meh.
456 *
457 * See also WaAvoidRCZCounterRollover.
458 */
459 brw_emit_mi_flush(brw);
460 BEGIN_BATCH(2);
461 OUT_BATCH(_3DSTATE_CC_STATE_POINTERS << 16 | (2 - 2));
462 OUT_BATCH(brw->cc.state_offset | 1);
463 ADVANCE_BATCH();
464 brw_emit_pipe_control_flush(brw, PIPE_CONTROL_RENDER_TARGET_FLUSH |
465 PIPE_CONTROL_CS_STALL);
466 }
467 }
468 }
469
470 static void
471 throttle(struct brw_context *brw)
472 {
473 /* Wait for the swapbuffers before the one we just emitted, so we
474 * don't get too many swaps outstanding for apps that are GPU-heavy
475 * but not CPU-heavy.
476 *
477 * We're using intelDRI2Flush (called from the loader before
478 * swapbuffer) and glFlush (for front buffer rendering) as the
479 * indicator that a frame is done and then throttle when we get
480 * here as we prepare to render the next frame. At this point for
481 * round trips for swap/copy and getting new buffers are done and
482 * we'll spend less time waiting on the GPU.
483 *
484 * Unfortunately, we don't have a handle to the batch containing
485 * the swap, and getting our hands on that doesn't seem worth it,
486 * so we just use the first batch we emitted after the last swap.
487 */
488 if (brw->need_swap_throttle && brw->throttle_batch[0]) {
489 if (brw->throttle_batch[1]) {
490 if (!brw->disable_throttling) {
491 /* Pass NULL rather than brw so we avoid perf_debug warnings;
492 * stalling is common and expected here...
493 */
494 brw_bo_wait_rendering(brw->throttle_batch[1]);
495 }
496 brw_bo_unreference(brw->throttle_batch[1]);
497 }
498 brw->throttle_batch[1] = brw->throttle_batch[0];
499 brw->throttle_batch[0] = NULL;
500 brw->need_swap_throttle = false;
501 /* Throttling here is more precise than the throttle ioctl, so skip it */
502 brw->need_flush_throttle = false;
503 }
504
505 if (brw->need_flush_throttle) {
506 __DRIscreen *dri_screen = brw->screen->driScrnPriv;
507 drmCommandNone(dri_screen->fd, DRM_I915_GEM_THROTTLE);
508 brw->need_flush_throttle = false;
509 }
510 }
511
512 static void
513 add_exec_bo(struct intel_batchbuffer *batch, struct brw_bo *bo)
514 {
515 if (bo != batch->bo) {
516 for (int i = 0; i < batch->exec_count; i++) {
517 if (batch->exec_bos[i] == bo)
518 return;
519 }
520
521 brw_bo_reference(bo);
522 }
523
524 if (batch->exec_count == batch->exec_array_size) {
525 batch->exec_array_size *= 2;
526 batch->exec_bos =
527 realloc(batch->exec_bos,
528 batch->exec_array_size * sizeof(batch->exec_bos[0]));
529 batch->validation_list =
530 realloc(batch->validation_list,
531 batch->exec_array_size * sizeof(batch->validation_list[0]));
532 }
533
534 struct drm_i915_gem_exec_object2 *validation_entry =
535 &batch->validation_list[batch->exec_count];
536 validation_entry->handle = bo->gem_handle;
537 if (bo == batch->bo) {
538 validation_entry->relocation_count = batch->reloc_count;
539 validation_entry->relocs_ptr = (uintptr_t) batch->relocs;
540 } else {
541 validation_entry->relocation_count = 0;
542 validation_entry->relocs_ptr = 0;
543 }
544 validation_entry->alignment = bo->align;
545 validation_entry->offset = bo->offset64;
546 validation_entry->flags = bo->kflags;
547 validation_entry->rsvd1 = 0;
548 validation_entry->rsvd2 = 0;
549
550 batch->exec_bos[batch->exec_count] = bo;
551 batch->exec_count++;
552 batch->aperture_space += bo->size;
553 }
554
555 static int
556 execbuffer(int fd,
557 struct intel_batchbuffer *batch,
558 uint32_t ctx_id,
559 int used,
560 int in_fence,
561 int *out_fence,
562 int flags)
563 {
564 struct drm_i915_gem_execbuffer2 execbuf = {
565 .buffers_ptr = (uintptr_t) batch->validation_list,
566 .buffer_count = batch->exec_count,
567 .batch_start_offset = 0,
568 .batch_len = used,
569 .flags = flags,
570 .rsvd1 = ctx_id, /* rsvd1 is actually the context ID */
571 };
572
573 unsigned long cmd = DRM_IOCTL_I915_GEM_EXECBUFFER2;
574
575 if (in_fence != -1) {
576 execbuf.rsvd2 = in_fence;
577 execbuf.flags |= I915_EXEC_FENCE_IN;
578 }
579
580 if (out_fence != NULL) {
581 cmd = DRM_IOCTL_I915_GEM_EXECBUFFER2_WR;
582 *out_fence = -1;
583 execbuf.flags |= I915_EXEC_FENCE_OUT;
584 }
585
586 int ret = drmIoctl(fd, cmd, &execbuf);
587 if (ret != 0)
588 ret = -errno;
589
590 for (int i = 0; i < batch->exec_count; i++) {
591 struct brw_bo *bo = batch->exec_bos[i];
592
593 bo->idle = false;
594
595 /* Update brw_bo::offset64 */
596 if (batch->validation_list[i].offset != bo->offset64) {
597 DBG("BO %d migrated: 0x%" PRIx64 " -> 0x%llx\n",
598 bo->gem_handle, bo->offset64, batch->validation_list[i].offset);
599 bo->offset64 = batch->validation_list[i].offset;
600 }
601 }
602
603 if (ret == 0 && out_fence != NULL)
604 *out_fence = execbuf.rsvd2 >> 32;
605
606 return ret;
607 }
608
609 static int
610 do_flush_locked(struct brw_context *brw, int in_fence_fd, int *out_fence_fd)
611 {
612 __DRIscreen *dri_screen = brw->screen->driScrnPriv;
613 struct intel_batchbuffer *batch = &brw->batch;
614 int ret = 0;
615
616 if (brw->has_llc) {
617 brw_bo_unmap(batch->bo);
618 } else {
619 ret = brw_bo_subdata(batch->bo, 0, 4 * USED_BATCH(*batch), batch->map);
620 if (ret == 0 && batch->state_batch_offset != batch->bo->size) {
621 ret = brw_bo_subdata(batch->bo,
622 batch->state_batch_offset,
623 batch->bo->size - batch->state_batch_offset,
624 (char *)batch->map + batch->state_batch_offset);
625 }
626 }
627
628 if (!brw->screen->no_hw) {
629 int flags;
630
631 if (brw->gen >= 6 && batch->ring == BLT_RING) {
632 flags = I915_EXEC_BLT;
633 } else {
634 flags = I915_EXEC_RENDER;
635 }
636 if (batch->needs_sol_reset)
637 flags |= I915_EXEC_GEN7_SOL_RESET;
638
639 if (ret == 0) {
640 uint32_t hw_ctx = batch->ring == RENDER_RING ? brw->hw_ctx : 0;
641
642 /* Add the batch itself to the end of the validation list */
643 add_exec_bo(batch, batch->bo);
644
645 ret = execbuffer(dri_screen->fd, batch, hw_ctx,
646 4 * USED_BATCH(*batch),
647 in_fence_fd, out_fence_fd, flags);
648 }
649
650 throttle(brw);
651 }
652
653 if (unlikely(INTEL_DEBUG & DEBUG_BATCH))
654 do_batch_dump(brw);
655
656 if (brw->ctx.Const.ResetStrategy == GL_LOSE_CONTEXT_ON_RESET_ARB)
657 brw_check_for_reset(brw);
658
659 if (ret != 0) {
660 fprintf(stderr, "intel_do_flush_locked failed: %s\n", strerror(-ret));
661 exit(1);
662 }
663
664 return ret;
665 }
666
667 /**
668 * The in_fence_fd is ignored if -1. Otherwise this function takes ownership
669 * of the fd.
670 *
671 * The out_fence_fd is ignored if NULL. Otherwise, the caller takes ownership
672 * of the returned fd.
673 */
674 int
675 _intel_batchbuffer_flush_fence(struct brw_context *brw,
676 int in_fence_fd, int *out_fence_fd,
677 const char *file, int line)
678 {
679 int ret;
680
681 if (USED_BATCH(brw->batch) == 0)
682 return 0;
683
684 if (brw->throttle_batch[0] == NULL) {
685 brw->throttle_batch[0] = brw->batch.bo;
686 brw_bo_reference(brw->throttle_batch[0]);
687 }
688
689 if (unlikely(INTEL_DEBUG & DEBUG_BATCH)) {
690 int bytes_for_commands = 4 * USED_BATCH(brw->batch);
691 int bytes_for_state = brw->batch.bo->size - brw->batch.state_batch_offset;
692 int total_bytes = bytes_for_commands + bytes_for_state;
693 fprintf(stderr, "%s:%d: Batchbuffer flush with %4db (pkt) + "
694 "%4db (state) = %4db (%0.1f%%)\n", file, line,
695 bytes_for_commands, bytes_for_state,
696 total_bytes,
697 100.0f * total_bytes / BATCH_SZ);
698 }
699
700 brw->batch.reserved_space = 0;
701
702 brw_finish_batch(brw);
703
704 /* Mark the end of the buffer. */
705 intel_batchbuffer_emit_dword(&brw->batch, MI_BATCH_BUFFER_END);
706 if (USED_BATCH(brw->batch) & 1) {
707 /* Round batchbuffer usage to 2 DWORDs. */
708 intel_batchbuffer_emit_dword(&brw->batch, MI_NOOP);
709 }
710
711 intel_upload_finish(brw);
712
713 /* Check that we didn't just wrap our batchbuffer at a bad time. */
714 assert(!brw->no_batch_wrap);
715
716 ret = do_flush_locked(brw, in_fence_fd, out_fence_fd);
717
718 if (unlikely(INTEL_DEBUG & DEBUG_SYNC)) {
719 fprintf(stderr, "waiting for idle\n");
720 brw_bo_wait_rendering(brw->batch.bo);
721 }
722
723 /* Start a new batch buffer. */
724 brw_new_batch(brw);
725
726 return ret;
727 }
728
729 bool
730 brw_batch_has_aperture_space(struct brw_context *brw, unsigned extra_space)
731 {
732 return brw->batch.aperture_space + extra_space <=
733 brw->screen->aperture_threshold;
734 }
735
736 bool
737 brw_batch_references(struct intel_batchbuffer *batch, struct brw_bo *bo)
738 {
739 for (int i = 0; i < batch->exec_count; i++) {
740 if (batch->exec_bos[i] == bo)
741 return true;
742 }
743 return false;
744 }
745
746 /* This is the only way buffers get added to the validate list.
747 */
748 uint64_t
749 brw_emit_reloc(struct intel_batchbuffer *batch, uint32_t batch_offset,
750 struct brw_bo *target, uint32_t target_offset,
751 uint32_t read_domains, uint32_t write_domain)
752 {
753 assert(target != NULL);
754
755 uint64_t offset64;
756
757 if (batch->reloc_count == batch->reloc_array_size) {
758 batch->reloc_array_size *= 2;
759 batch->relocs = realloc(batch->relocs,
760 batch->reloc_array_size *
761 sizeof(struct drm_i915_gem_relocation_entry));
762 }
763
764 /* Check args */
765 assert(batch_offset <= BATCH_SZ - sizeof(uint32_t));
766 assert(_mesa_bitcount(write_domain) <= 1);
767
768 if (target != batch->bo)
769 add_exec_bo(batch, target);
770
771 struct drm_i915_gem_relocation_entry *reloc =
772 &batch->relocs[batch->reloc_count];
773
774 batch->reloc_count++;
775
776 /* ensure gcc doesn't reload */
777 offset64 = *((volatile uint64_t *)&target->offset64);
778 reloc->offset = batch_offset;
779 reloc->delta = target_offset;
780 reloc->target_handle = target->gem_handle;
781 reloc->read_domains = read_domains;
782 reloc->write_domain = write_domain;
783 reloc->presumed_offset = offset64;
784
785 /* Using the old buffer offset, write in what the right data would be, in
786 * case the buffer doesn't move and we can short-circuit the relocation
787 * processing in the kernel
788 */
789 return offset64 + target_offset;
790 }
791
792 void
793 intel_batchbuffer_data(struct brw_context *brw,
794 const void *data, GLuint bytes, enum brw_gpu_ring ring)
795 {
796 assert((bytes & 3) == 0);
797 intel_batchbuffer_require_space(brw, bytes, ring);
798 memcpy(brw->batch.map_next, data, bytes);
799 brw->batch.map_next += bytes >> 2;
800 }
801
802 static void
803 load_sized_register_mem(struct brw_context *brw,
804 uint32_t reg,
805 struct brw_bo *bo,
806 uint32_t read_domains, uint32_t write_domain,
807 uint32_t offset,
808 int size)
809 {
810 int i;
811
812 /* MI_LOAD_REGISTER_MEM only exists on Gen7+. */
813 assert(brw->gen >= 7);
814
815 if (brw->gen >= 8) {
816 BEGIN_BATCH(4 * size);
817 for (i = 0; i < size; i++) {
818 OUT_BATCH(GEN7_MI_LOAD_REGISTER_MEM | (4 - 2));
819 OUT_BATCH(reg + i * 4);
820 OUT_RELOC64(bo, read_domains, write_domain, offset + i * 4);
821 }
822 ADVANCE_BATCH();
823 } else {
824 BEGIN_BATCH(3 * size);
825 for (i = 0; i < size; i++) {
826 OUT_BATCH(GEN7_MI_LOAD_REGISTER_MEM | (3 - 2));
827 OUT_BATCH(reg + i * 4);
828 OUT_RELOC(bo, read_domains, write_domain, offset + i * 4);
829 }
830 ADVANCE_BATCH();
831 }
832 }
833
834 void
835 brw_load_register_mem(struct brw_context *brw,
836 uint32_t reg,
837 struct brw_bo *bo,
838 uint32_t read_domains, uint32_t write_domain,
839 uint32_t offset)
840 {
841 load_sized_register_mem(brw, reg, bo, read_domains, write_domain, offset, 1);
842 }
843
844 void
845 brw_load_register_mem64(struct brw_context *brw,
846 uint32_t reg,
847 struct brw_bo *bo,
848 uint32_t read_domains, uint32_t write_domain,
849 uint32_t offset)
850 {
851 load_sized_register_mem(brw, reg, bo, read_domains, write_domain, offset, 2);
852 }
853
854 /*
855 * Write an arbitrary 32-bit register to a buffer via MI_STORE_REGISTER_MEM.
856 */
857 void
858 brw_store_register_mem32(struct brw_context *brw,
859 struct brw_bo *bo, uint32_t reg, uint32_t offset)
860 {
861 assert(brw->gen >= 6);
862
863 if (brw->gen >= 8) {
864 BEGIN_BATCH(4);
865 OUT_BATCH(MI_STORE_REGISTER_MEM | (4 - 2));
866 OUT_BATCH(reg);
867 OUT_RELOC64(bo, I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
868 offset);
869 ADVANCE_BATCH();
870 } else {
871 BEGIN_BATCH(3);
872 OUT_BATCH(MI_STORE_REGISTER_MEM | (3 - 2));
873 OUT_BATCH(reg);
874 OUT_RELOC(bo, I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
875 offset);
876 ADVANCE_BATCH();
877 }
878 }
879
880 /*
881 * Write an arbitrary 64-bit register to a buffer via MI_STORE_REGISTER_MEM.
882 */
883 void
884 brw_store_register_mem64(struct brw_context *brw,
885 struct brw_bo *bo, uint32_t reg, uint32_t offset)
886 {
887 assert(brw->gen >= 6);
888
889 /* MI_STORE_REGISTER_MEM only stores a single 32-bit value, so to
890 * read a full 64-bit register, we need to do two of them.
891 */
892 if (brw->gen >= 8) {
893 BEGIN_BATCH(8);
894 OUT_BATCH(MI_STORE_REGISTER_MEM | (4 - 2));
895 OUT_BATCH(reg);
896 OUT_RELOC64(bo, I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
897 offset);
898 OUT_BATCH(MI_STORE_REGISTER_MEM | (4 - 2));
899 OUT_BATCH(reg + sizeof(uint32_t));
900 OUT_RELOC64(bo, I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
901 offset + sizeof(uint32_t));
902 ADVANCE_BATCH();
903 } else {
904 BEGIN_BATCH(6);
905 OUT_BATCH(MI_STORE_REGISTER_MEM | (3 - 2));
906 OUT_BATCH(reg);
907 OUT_RELOC(bo, I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
908 offset);
909 OUT_BATCH(MI_STORE_REGISTER_MEM | (3 - 2));
910 OUT_BATCH(reg + sizeof(uint32_t));
911 OUT_RELOC(bo, I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
912 offset + sizeof(uint32_t));
913 ADVANCE_BATCH();
914 }
915 }
916
917 /*
918 * Write a 32-bit register using immediate data.
919 */
920 void
921 brw_load_register_imm32(struct brw_context *brw, uint32_t reg, uint32_t imm)
922 {
923 assert(brw->gen >= 6);
924
925 BEGIN_BATCH(3);
926 OUT_BATCH(MI_LOAD_REGISTER_IMM | (3 - 2));
927 OUT_BATCH(reg);
928 OUT_BATCH(imm);
929 ADVANCE_BATCH();
930 }
931
932 /*
933 * Write a 64-bit register using immediate data.
934 */
935 void
936 brw_load_register_imm64(struct brw_context *brw, uint32_t reg, uint64_t imm)
937 {
938 assert(brw->gen >= 6);
939
940 BEGIN_BATCH(5);
941 OUT_BATCH(MI_LOAD_REGISTER_IMM | (5 - 2));
942 OUT_BATCH(reg);
943 OUT_BATCH(imm & 0xffffffff);
944 OUT_BATCH(reg + 4);
945 OUT_BATCH(imm >> 32);
946 ADVANCE_BATCH();
947 }
948
949 /*
950 * Copies a 32-bit register.
951 */
952 void
953 brw_load_register_reg(struct brw_context *brw, uint32_t src, uint32_t dest)
954 {
955 assert(brw->gen >= 8 || brw->is_haswell);
956
957 BEGIN_BATCH(3);
958 OUT_BATCH(MI_LOAD_REGISTER_REG | (3 - 2));
959 OUT_BATCH(src);
960 OUT_BATCH(dest);
961 ADVANCE_BATCH();
962 }
963
964 /*
965 * Copies a 64-bit register.
966 */
967 void
968 brw_load_register_reg64(struct brw_context *brw, uint32_t src, uint32_t dest)
969 {
970 assert(brw->gen >= 8 || brw->is_haswell);
971
972 BEGIN_BATCH(6);
973 OUT_BATCH(MI_LOAD_REGISTER_REG | (3 - 2));
974 OUT_BATCH(src);
975 OUT_BATCH(dest);
976 OUT_BATCH(MI_LOAD_REGISTER_REG | (3 - 2));
977 OUT_BATCH(src + sizeof(uint32_t));
978 OUT_BATCH(dest + sizeof(uint32_t));
979 ADVANCE_BATCH();
980 }
981
982 /*
983 * Write 32-bits of immediate data to a GPU memory buffer.
984 */
985 void
986 brw_store_data_imm32(struct brw_context *brw, struct brw_bo *bo,
987 uint32_t offset, uint32_t imm)
988 {
989 assert(brw->gen >= 6);
990
991 BEGIN_BATCH(4);
992 OUT_BATCH(MI_STORE_DATA_IMM | (4 - 2));
993 if (brw->gen >= 8)
994 OUT_RELOC64(bo, I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
995 offset);
996 else {
997 OUT_BATCH(0); /* MBZ */
998 OUT_RELOC(bo, I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
999 offset);
1000 }
1001 OUT_BATCH(imm);
1002 ADVANCE_BATCH();
1003 }
1004
1005 /*
1006 * Write 64-bits of immediate data to a GPU memory buffer.
1007 */
1008 void
1009 brw_store_data_imm64(struct brw_context *brw, struct brw_bo *bo,
1010 uint32_t offset, uint64_t imm)
1011 {
1012 assert(brw->gen >= 6);
1013
1014 BEGIN_BATCH(5);
1015 OUT_BATCH(MI_STORE_DATA_IMM | (5 - 2));
1016 if (brw->gen >= 8)
1017 OUT_RELOC64(bo, I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
1018 offset);
1019 else {
1020 OUT_BATCH(0); /* MBZ */
1021 OUT_RELOC(bo, I915_GEM_DOMAIN_INSTRUCTION, I915_GEM_DOMAIN_INSTRUCTION,
1022 offset);
1023 }
1024 OUT_BATCH(imm & 0xffffffffu);
1025 OUT_BATCH(imm >> 32);
1026 ADVANCE_BATCH();
1027 }