anv: don't fail userspace relocation with perf queries
[mesa.git] / src / intel / vulkan / anv_batch_chain.c
1 /*
2 * Copyright © 2015 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include <assert.h>
25 #include <stdbool.h>
26 #include <string.h>
27 #include <unistd.h>
28 #include <fcntl.h>
29
30 #include "anv_private.h"
31
32 #include "genxml/gen8_pack.h"
33 #include "genxml/genX_bits.h"
34 #include "perf/gen_perf.h"
35
36 #include "util/debug.h"
37
38 /** \file anv_batch_chain.c
39 *
40 * This file contains functions related to anv_cmd_buffer as a data
41 * structure. This involves everything required to create and destroy
42 * the actual batch buffers as well as link them together and handle
43 * relocations and surface state. It specifically does *not* contain any
44 * handling of actual vkCmd calls beyond vkCmdExecuteCommands.
45 */
46
47 /*-----------------------------------------------------------------------*
48 * Functions related to anv_reloc_list
49 *-----------------------------------------------------------------------*/
50
51 VkResult
52 anv_reloc_list_init(struct anv_reloc_list *list,
53 const VkAllocationCallbacks *alloc)
54 {
55 memset(list, 0, sizeof(*list));
56 return VK_SUCCESS;
57 }
58
59 static VkResult
60 anv_reloc_list_init_clone(struct anv_reloc_list *list,
61 const VkAllocationCallbacks *alloc,
62 const struct anv_reloc_list *other_list)
63 {
64 list->num_relocs = other_list->num_relocs;
65 list->array_length = other_list->array_length;
66
67 if (list->num_relocs > 0) {
68 list->relocs =
69 vk_alloc(alloc, list->array_length * sizeof(*list->relocs), 8,
70 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
71 if (list->relocs == NULL)
72 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
73
74 list->reloc_bos =
75 vk_alloc(alloc, list->array_length * sizeof(*list->reloc_bos), 8,
76 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
77 if (list->reloc_bos == NULL) {
78 vk_free(alloc, list->relocs);
79 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
80 }
81
82 memcpy(list->relocs, other_list->relocs,
83 list->array_length * sizeof(*list->relocs));
84 memcpy(list->reloc_bos, other_list->reloc_bos,
85 list->array_length * sizeof(*list->reloc_bos));
86 } else {
87 list->relocs = NULL;
88 list->reloc_bos = NULL;
89 }
90
91 list->dep_words = other_list->dep_words;
92
93 if (list->dep_words > 0) {
94 list->deps =
95 vk_alloc(alloc, list->dep_words * sizeof(BITSET_WORD), 8,
96 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
97 memcpy(list->deps, other_list->deps,
98 list->dep_words * sizeof(BITSET_WORD));
99 } else {
100 list->deps = NULL;
101 }
102
103 return VK_SUCCESS;
104 }
105
106 void
107 anv_reloc_list_finish(struct anv_reloc_list *list,
108 const VkAllocationCallbacks *alloc)
109 {
110 vk_free(alloc, list->relocs);
111 vk_free(alloc, list->reloc_bos);
112 vk_free(alloc, list->deps);
113 }
114
115 static VkResult
116 anv_reloc_list_grow(struct anv_reloc_list *list,
117 const VkAllocationCallbacks *alloc,
118 size_t num_additional_relocs)
119 {
120 if (list->num_relocs + num_additional_relocs <= list->array_length)
121 return VK_SUCCESS;
122
123 size_t new_length = MAX2(16, list->array_length * 2);
124 while (new_length < list->num_relocs + num_additional_relocs)
125 new_length *= 2;
126
127 struct drm_i915_gem_relocation_entry *new_relocs =
128 vk_realloc(alloc, list->relocs,
129 new_length * sizeof(*list->relocs), 8,
130 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
131 if (new_relocs == NULL)
132 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
133 list->relocs = new_relocs;
134
135 struct anv_bo **new_reloc_bos =
136 vk_realloc(alloc, list->reloc_bos,
137 new_length * sizeof(*list->reloc_bos), 8,
138 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
139 if (new_reloc_bos == NULL)
140 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
141 list->reloc_bos = new_reloc_bos;
142
143 list->array_length = new_length;
144
145 return VK_SUCCESS;
146 }
147
148 static VkResult
149 anv_reloc_list_grow_deps(struct anv_reloc_list *list,
150 const VkAllocationCallbacks *alloc,
151 uint32_t min_num_words)
152 {
153 if (min_num_words <= list->dep_words)
154 return VK_SUCCESS;
155
156 uint32_t new_length = MAX2(32, list->dep_words * 2);
157 while (new_length < min_num_words)
158 new_length *= 2;
159
160 BITSET_WORD *new_deps =
161 vk_realloc(alloc, list->deps, new_length * sizeof(BITSET_WORD), 8,
162 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
163 if (new_deps == NULL)
164 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
165 list->deps = new_deps;
166
167 /* Zero out the new data */
168 memset(list->deps + list->dep_words, 0,
169 (new_length - list->dep_words) * sizeof(BITSET_WORD));
170 list->dep_words = new_length;
171
172 return VK_SUCCESS;
173 }
174
175 #define READ_ONCE(x) (*(volatile __typeof__(x) *)&(x))
176
177 VkResult
178 anv_reloc_list_add(struct anv_reloc_list *list,
179 const VkAllocationCallbacks *alloc,
180 uint32_t offset, struct anv_bo *target_bo, uint32_t delta,
181 uint64_t *address_u64_out)
182 {
183 struct drm_i915_gem_relocation_entry *entry;
184 int index;
185
186 struct anv_bo *unwrapped_target_bo = anv_bo_unwrap(target_bo);
187 uint64_t target_bo_offset = READ_ONCE(unwrapped_target_bo->offset);
188 if (address_u64_out)
189 *address_u64_out = target_bo_offset + delta;
190
191 if (unwrapped_target_bo->flags & EXEC_OBJECT_PINNED) {
192 assert(!target_bo->is_wrapper);
193 uint32_t idx = unwrapped_target_bo->gem_handle;
194 anv_reloc_list_grow_deps(list, alloc, (idx / BITSET_WORDBITS) + 1);
195 BITSET_SET(list->deps, unwrapped_target_bo->gem_handle);
196 return VK_SUCCESS;
197 }
198
199 VkResult result = anv_reloc_list_grow(list, alloc, 1);
200 if (result != VK_SUCCESS)
201 return result;
202
203 /* XXX: Can we use I915_EXEC_HANDLE_LUT? */
204 index = list->num_relocs++;
205 list->reloc_bos[index] = target_bo;
206 entry = &list->relocs[index];
207 entry->target_handle = -1; /* See also anv_cmd_buffer_process_relocs() */
208 entry->delta = delta;
209 entry->offset = offset;
210 entry->presumed_offset = target_bo_offset;
211 entry->read_domains = 0;
212 entry->write_domain = 0;
213 VG(VALGRIND_CHECK_MEM_IS_DEFINED(entry, sizeof(*entry)));
214
215 return VK_SUCCESS;
216 }
217
218 static void
219 anv_reloc_list_clear(struct anv_reloc_list *list)
220 {
221 list->num_relocs = 0;
222 if (list->dep_words > 0)
223 memset(list->deps, 0, list->dep_words * sizeof(BITSET_WORD));
224 }
225
226 static VkResult
227 anv_reloc_list_append(struct anv_reloc_list *list,
228 const VkAllocationCallbacks *alloc,
229 struct anv_reloc_list *other, uint32_t offset)
230 {
231 VkResult result = anv_reloc_list_grow(list, alloc, other->num_relocs);
232 if (result != VK_SUCCESS)
233 return result;
234
235 if (other->num_relocs > 0) {
236 memcpy(&list->relocs[list->num_relocs], &other->relocs[0],
237 other->num_relocs * sizeof(other->relocs[0]));
238 memcpy(&list->reloc_bos[list->num_relocs], &other->reloc_bos[0],
239 other->num_relocs * sizeof(other->reloc_bos[0]));
240
241 for (uint32_t i = 0; i < other->num_relocs; i++)
242 list->relocs[i + list->num_relocs].offset += offset;
243
244 list->num_relocs += other->num_relocs;
245 }
246
247 anv_reloc_list_grow_deps(list, alloc, other->dep_words);
248 for (uint32_t w = 0; w < other->dep_words; w++)
249 list->deps[w] |= other->deps[w];
250
251 return VK_SUCCESS;
252 }
253
254 /*-----------------------------------------------------------------------*
255 * Functions related to anv_batch
256 *-----------------------------------------------------------------------*/
257
258 void *
259 anv_batch_emit_dwords(struct anv_batch *batch, int num_dwords)
260 {
261 if (batch->next + num_dwords * 4 > batch->end) {
262 VkResult result = batch->extend_cb(batch, batch->user_data);
263 if (result != VK_SUCCESS) {
264 anv_batch_set_error(batch, result);
265 return NULL;
266 }
267 }
268
269 void *p = batch->next;
270
271 batch->next += num_dwords * 4;
272 assert(batch->next <= batch->end);
273
274 return p;
275 }
276
277 uint64_t
278 anv_batch_emit_reloc(struct anv_batch *batch,
279 void *location, struct anv_bo *bo, uint32_t delta)
280 {
281 uint64_t address_u64 = 0;
282 VkResult result = anv_reloc_list_add(batch->relocs, batch->alloc,
283 location - batch->start, bo, delta,
284 &address_u64);
285 if (result != VK_SUCCESS) {
286 anv_batch_set_error(batch, result);
287 return 0;
288 }
289
290 return address_u64;
291 }
292
293 struct anv_address
294 anv_batch_address(struct anv_batch *batch, void *batch_location)
295 {
296 assert(batch->start < batch_location);
297
298 /* Allow a jump at the current location of the batch. */
299 assert(batch->next >= batch_location);
300
301 return anv_address_add(batch->start_addr, batch_location - batch->start);
302 }
303
304 void
305 anv_batch_emit_batch(struct anv_batch *batch, struct anv_batch *other)
306 {
307 uint32_t size, offset;
308
309 size = other->next - other->start;
310 assert(size % 4 == 0);
311
312 if (batch->next + size > batch->end) {
313 VkResult result = batch->extend_cb(batch, batch->user_data);
314 if (result != VK_SUCCESS) {
315 anv_batch_set_error(batch, result);
316 return;
317 }
318 }
319
320 assert(batch->next + size <= batch->end);
321
322 VG(VALGRIND_CHECK_MEM_IS_DEFINED(other->start, size));
323 memcpy(batch->next, other->start, size);
324
325 offset = batch->next - batch->start;
326 VkResult result = anv_reloc_list_append(batch->relocs, batch->alloc,
327 other->relocs, offset);
328 if (result != VK_SUCCESS) {
329 anv_batch_set_error(batch, result);
330 return;
331 }
332
333 batch->next += size;
334 }
335
336 /*-----------------------------------------------------------------------*
337 * Functions related to anv_batch_bo
338 *-----------------------------------------------------------------------*/
339
340 static VkResult
341 anv_batch_bo_create(struct anv_cmd_buffer *cmd_buffer,
342 struct anv_batch_bo **bbo_out)
343 {
344 VkResult result;
345
346 struct anv_batch_bo *bbo = vk_alloc(&cmd_buffer->pool->alloc, sizeof(*bbo),
347 8, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
348 if (bbo == NULL)
349 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
350
351 result = anv_bo_pool_alloc(&cmd_buffer->device->batch_bo_pool,
352 ANV_CMD_BUFFER_BATCH_SIZE, &bbo->bo);
353 if (result != VK_SUCCESS)
354 goto fail_alloc;
355
356 result = anv_reloc_list_init(&bbo->relocs, &cmd_buffer->pool->alloc);
357 if (result != VK_SUCCESS)
358 goto fail_bo_alloc;
359
360 *bbo_out = bbo;
361
362 return VK_SUCCESS;
363
364 fail_bo_alloc:
365 anv_bo_pool_free(&cmd_buffer->device->batch_bo_pool, bbo->bo);
366 fail_alloc:
367 vk_free(&cmd_buffer->pool->alloc, bbo);
368
369 return result;
370 }
371
372 static VkResult
373 anv_batch_bo_clone(struct anv_cmd_buffer *cmd_buffer,
374 const struct anv_batch_bo *other_bbo,
375 struct anv_batch_bo **bbo_out)
376 {
377 VkResult result;
378
379 struct anv_batch_bo *bbo = vk_alloc(&cmd_buffer->pool->alloc, sizeof(*bbo),
380 8, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
381 if (bbo == NULL)
382 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
383
384 result = anv_bo_pool_alloc(&cmd_buffer->device->batch_bo_pool,
385 other_bbo->bo->size, &bbo->bo);
386 if (result != VK_SUCCESS)
387 goto fail_alloc;
388
389 result = anv_reloc_list_init_clone(&bbo->relocs, &cmd_buffer->pool->alloc,
390 &other_bbo->relocs);
391 if (result != VK_SUCCESS)
392 goto fail_bo_alloc;
393
394 bbo->length = other_bbo->length;
395 memcpy(bbo->bo->map, other_bbo->bo->map, other_bbo->length);
396 *bbo_out = bbo;
397
398 return VK_SUCCESS;
399
400 fail_bo_alloc:
401 anv_bo_pool_free(&cmd_buffer->device->batch_bo_pool, bbo->bo);
402 fail_alloc:
403 vk_free(&cmd_buffer->pool->alloc, bbo);
404
405 return result;
406 }
407
408 static void
409 anv_batch_bo_start(struct anv_batch_bo *bbo, struct anv_batch *batch,
410 size_t batch_padding)
411 {
412 anv_batch_set_storage(batch, (struct anv_address) { .bo = bbo->bo, },
413 bbo->bo->map, bbo->bo->size - batch_padding);
414 batch->relocs = &bbo->relocs;
415 anv_reloc_list_clear(&bbo->relocs);
416 }
417
418 static void
419 anv_batch_bo_continue(struct anv_batch_bo *bbo, struct anv_batch *batch,
420 size_t batch_padding)
421 {
422 batch->start_addr = (struct anv_address) { .bo = bbo->bo, };
423 batch->start = bbo->bo->map;
424 batch->next = bbo->bo->map + bbo->length;
425 batch->end = bbo->bo->map + bbo->bo->size - batch_padding;
426 batch->relocs = &bbo->relocs;
427 }
428
429 static void
430 anv_batch_bo_finish(struct anv_batch_bo *bbo, struct anv_batch *batch)
431 {
432 assert(batch->start == bbo->bo->map);
433 bbo->length = batch->next - batch->start;
434 VG(VALGRIND_CHECK_MEM_IS_DEFINED(batch->start, bbo->length));
435 }
436
437 static VkResult
438 anv_batch_bo_grow(struct anv_cmd_buffer *cmd_buffer, struct anv_batch_bo *bbo,
439 struct anv_batch *batch, size_t aditional,
440 size_t batch_padding)
441 {
442 assert(batch->start == bbo->bo->map);
443 bbo->length = batch->next - batch->start;
444
445 size_t new_size = bbo->bo->size;
446 while (new_size <= bbo->length + aditional + batch_padding)
447 new_size *= 2;
448
449 if (new_size == bbo->bo->size)
450 return VK_SUCCESS;
451
452 struct anv_bo *new_bo;
453 VkResult result = anv_bo_pool_alloc(&cmd_buffer->device->batch_bo_pool,
454 new_size, &new_bo);
455 if (result != VK_SUCCESS)
456 return result;
457
458 memcpy(new_bo->map, bbo->bo->map, bbo->length);
459
460 anv_bo_pool_free(&cmd_buffer->device->batch_bo_pool, bbo->bo);
461
462 bbo->bo = new_bo;
463 anv_batch_bo_continue(bbo, batch, batch_padding);
464
465 return VK_SUCCESS;
466 }
467
468 static void
469 anv_batch_bo_link(struct anv_cmd_buffer *cmd_buffer,
470 struct anv_batch_bo *prev_bbo,
471 struct anv_batch_bo *next_bbo,
472 uint32_t next_bbo_offset)
473 {
474 const uint32_t bb_start_offset =
475 prev_bbo->length - GEN8_MI_BATCH_BUFFER_START_length * 4;
476 ASSERTED const uint32_t *bb_start = prev_bbo->bo->map + bb_start_offset;
477
478 /* Make sure we're looking at a MI_BATCH_BUFFER_START */
479 assert(((*bb_start >> 29) & 0x07) == 0);
480 assert(((*bb_start >> 23) & 0x3f) == 49);
481
482 if (cmd_buffer->device->physical->use_softpin) {
483 assert(prev_bbo->bo->flags & EXEC_OBJECT_PINNED);
484 assert(next_bbo->bo->flags & EXEC_OBJECT_PINNED);
485
486 write_reloc(cmd_buffer->device,
487 prev_bbo->bo->map + bb_start_offset + 4,
488 next_bbo->bo->offset + next_bbo_offset, true);
489 } else {
490 uint32_t reloc_idx = prev_bbo->relocs.num_relocs - 1;
491 assert(prev_bbo->relocs.relocs[reloc_idx].offset == bb_start_offset + 4);
492
493 prev_bbo->relocs.reloc_bos[reloc_idx] = next_bbo->bo;
494 prev_bbo->relocs.relocs[reloc_idx].delta = next_bbo_offset;
495
496 /* Use a bogus presumed offset to force a relocation */
497 prev_bbo->relocs.relocs[reloc_idx].presumed_offset = -1;
498 }
499 }
500
501 static void
502 anv_batch_bo_destroy(struct anv_batch_bo *bbo,
503 struct anv_cmd_buffer *cmd_buffer)
504 {
505 anv_reloc_list_finish(&bbo->relocs, &cmd_buffer->pool->alloc);
506 anv_bo_pool_free(&cmd_buffer->device->batch_bo_pool, bbo->bo);
507 vk_free(&cmd_buffer->pool->alloc, bbo);
508 }
509
510 static VkResult
511 anv_batch_bo_list_clone(const struct list_head *list,
512 struct anv_cmd_buffer *cmd_buffer,
513 struct list_head *new_list)
514 {
515 VkResult result = VK_SUCCESS;
516
517 list_inithead(new_list);
518
519 struct anv_batch_bo *prev_bbo = NULL;
520 list_for_each_entry(struct anv_batch_bo, bbo, list, link) {
521 struct anv_batch_bo *new_bbo = NULL;
522 result = anv_batch_bo_clone(cmd_buffer, bbo, &new_bbo);
523 if (result != VK_SUCCESS)
524 break;
525 list_addtail(&new_bbo->link, new_list);
526
527 if (prev_bbo)
528 anv_batch_bo_link(cmd_buffer, prev_bbo, new_bbo, 0);
529
530 prev_bbo = new_bbo;
531 }
532
533 if (result != VK_SUCCESS) {
534 list_for_each_entry_safe(struct anv_batch_bo, bbo, new_list, link) {
535 list_del(&bbo->link);
536 anv_batch_bo_destroy(bbo, cmd_buffer);
537 }
538 }
539
540 return result;
541 }
542
543 /*-----------------------------------------------------------------------*
544 * Functions related to anv_batch_bo
545 *-----------------------------------------------------------------------*/
546
547 static struct anv_batch_bo *
548 anv_cmd_buffer_current_batch_bo(struct anv_cmd_buffer *cmd_buffer)
549 {
550 return LIST_ENTRY(struct anv_batch_bo, cmd_buffer->batch_bos.prev, link);
551 }
552
553 struct anv_address
554 anv_cmd_buffer_surface_base_address(struct anv_cmd_buffer *cmd_buffer)
555 {
556 struct anv_state_pool *pool = anv_binding_table_pool(cmd_buffer->device);
557 struct anv_state *bt_block = u_vector_head(&cmd_buffer->bt_block_states);
558 return (struct anv_address) {
559 .bo = pool->block_pool.bo,
560 .offset = bt_block->offset - pool->start_offset,
561 };
562 }
563
564 static void
565 emit_batch_buffer_start(struct anv_cmd_buffer *cmd_buffer,
566 struct anv_bo *bo, uint32_t offset)
567 {
568 /* In gen8+ the address field grew to two dwords to accomodate 48 bit
569 * offsets. The high 16 bits are in the last dword, so we can use the gen8
570 * version in either case, as long as we set the instruction length in the
571 * header accordingly. This means that we always emit three dwords here
572 * and all the padding and adjustment we do in this file works for all
573 * gens.
574 */
575
576 #define GEN7_MI_BATCH_BUFFER_START_length 2
577 #define GEN7_MI_BATCH_BUFFER_START_length_bias 2
578
579 const uint32_t gen7_length =
580 GEN7_MI_BATCH_BUFFER_START_length - GEN7_MI_BATCH_BUFFER_START_length_bias;
581 const uint32_t gen8_length =
582 GEN8_MI_BATCH_BUFFER_START_length - GEN8_MI_BATCH_BUFFER_START_length_bias;
583
584 anv_batch_emit(&cmd_buffer->batch, GEN8_MI_BATCH_BUFFER_START, bbs) {
585 bbs.DWordLength = cmd_buffer->device->info.gen < 8 ?
586 gen7_length : gen8_length;
587 bbs.SecondLevelBatchBuffer = Firstlevelbatch;
588 bbs.AddressSpaceIndicator = ASI_PPGTT;
589 bbs.BatchBufferStartAddress = (struct anv_address) { bo, offset };
590 }
591 }
592
593 static void
594 cmd_buffer_chain_to_batch_bo(struct anv_cmd_buffer *cmd_buffer,
595 struct anv_batch_bo *bbo)
596 {
597 struct anv_batch *batch = &cmd_buffer->batch;
598 struct anv_batch_bo *current_bbo =
599 anv_cmd_buffer_current_batch_bo(cmd_buffer);
600
601 /* We set the end of the batch a little short so we would be sure we
602 * have room for the chaining command. Since we're about to emit the
603 * chaining command, let's set it back where it should go.
604 */
605 batch->end += GEN8_MI_BATCH_BUFFER_START_length * 4;
606 assert(batch->end == current_bbo->bo->map + current_bbo->bo->size);
607
608 emit_batch_buffer_start(cmd_buffer, bbo->bo, 0);
609
610 anv_batch_bo_finish(current_bbo, batch);
611 }
612
613 static VkResult
614 anv_cmd_buffer_chain_batch(struct anv_batch *batch, void *_data)
615 {
616 struct anv_cmd_buffer *cmd_buffer = _data;
617 struct anv_batch_bo *new_bbo;
618
619 VkResult result = anv_batch_bo_create(cmd_buffer, &new_bbo);
620 if (result != VK_SUCCESS)
621 return result;
622
623 struct anv_batch_bo **seen_bbo = u_vector_add(&cmd_buffer->seen_bbos);
624 if (seen_bbo == NULL) {
625 anv_batch_bo_destroy(new_bbo, cmd_buffer);
626 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
627 }
628 *seen_bbo = new_bbo;
629
630 cmd_buffer_chain_to_batch_bo(cmd_buffer, new_bbo);
631
632 list_addtail(&new_bbo->link, &cmd_buffer->batch_bos);
633
634 anv_batch_bo_start(new_bbo, batch, GEN8_MI_BATCH_BUFFER_START_length * 4);
635
636 return VK_SUCCESS;
637 }
638
639 static VkResult
640 anv_cmd_buffer_grow_batch(struct anv_batch *batch, void *_data)
641 {
642 struct anv_cmd_buffer *cmd_buffer = _data;
643 struct anv_batch_bo *bbo = anv_cmd_buffer_current_batch_bo(cmd_buffer);
644
645 anv_batch_bo_grow(cmd_buffer, bbo, &cmd_buffer->batch, 4096,
646 GEN8_MI_BATCH_BUFFER_START_length * 4);
647
648 return VK_SUCCESS;
649 }
650
651 /** Allocate a binding table
652 *
653 * This function allocates a binding table. This is a bit more complicated
654 * than one would think due to a combination of Vulkan driver design and some
655 * unfortunate hardware restrictions.
656 *
657 * The 3DSTATE_BINDING_TABLE_POINTERS_* packets only have a 16-bit field for
658 * the binding table pointer which means that all binding tables need to live
659 * in the bottom 64k of surface state base address. The way the GL driver has
660 * classically dealt with this restriction is to emit all surface states
661 * on-the-fly into the batch and have a batch buffer smaller than 64k. This
662 * isn't really an option in Vulkan for a couple of reasons:
663 *
664 * 1) In Vulkan, we have growing (or chaining) batches so surface states have
665 * to live in their own buffer and we have to be able to re-emit
666 * STATE_BASE_ADDRESS as needed which requires a full pipeline stall. In
667 * order to avoid emitting STATE_BASE_ADDRESS any more often than needed
668 * (it's not that hard to hit 64k of just binding tables), we allocate
669 * surface state objects up-front when VkImageView is created. In order
670 * for this to work, surface state objects need to be allocated from a
671 * global buffer.
672 *
673 * 2) We tried to design the surface state system in such a way that it's
674 * already ready for bindless texturing. The way bindless texturing works
675 * on our hardware is that you have a big pool of surface state objects
676 * (with its own state base address) and the bindless handles are simply
677 * offsets into that pool. With the architecture we chose, we already
678 * have that pool and it's exactly the same pool that we use for regular
679 * surface states so we should already be ready for bindless.
680 *
681 * 3) For render targets, we need to be able to fill out the surface states
682 * later in vkBeginRenderPass so that we can assign clear colors
683 * correctly. One way to do this would be to just create the surface
684 * state data and then repeatedly copy it into the surface state BO every
685 * time we have to re-emit STATE_BASE_ADDRESS. While this works, it's
686 * rather annoying and just being able to allocate them up-front and
687 * re-use them for the entire render pass.
688 *
689 * While none of these are technically blockers for emitting state on the fly
690 * like we do in GL, the ability to have a single surface state pool is
691 * simplifies things greatly. Unfortunately, it comes at a cost...
692 *
693 * Because of the 64k limitation of 3DSTATE_BINDING_TABLE_POINTERS_*, we can't
694 * place the binding tables just anywhere in surface state base address.
695 * Because 64k isn't a whole lot of space, we can't simply restrict the
696 * surface state buffer to 64k, we have to be more clever. The solution we've
697 * chosen is to have a block pool with a maximum size of 2G that starts at
698 * zero and grows in both directions. All surface states are allocated from
699 * the top of the pool (positive offsets) and we allocate blocks (< 64k) of
700 * binding tables from the bottom of the pool (negative offsets). Every time
701 * we allocate a new binding table block, we set surface state base address to
702 * point to the bottom of the binding table block. This way all of the
703 * binding tables in the block are in the bottom 64k of surface state base
704 * address. When we fill out the binding table, we add the distance between
705 * the bottom of our binding table block and zero of the block pool to the
706 * surface state offsets so that they are correct relative to out new surface
707 * state base address at the bottom of the binding table block.
708 *
709 * \see adjust_relocations_from_block_pool()
710 * \see adjust_relocations_too_block_pool()
711 *
712 * \param[in] entries The number of surface state entries the binding
713 * table should be able to hold.
714 *
715 * \param[out] state_offset The offset surface surface state base address
716 * where the surface states live. This must be
717 * added to the surface state offset when it is
718 * written into the binding table entry.
719 *
720 * \return An anv_state representing the binding table
721 */
722 struct anv_state
723 anv_cmd_buffer_alloc_binding_table(struct anv_cmd_buffer *cmd_buffer,
724 uint32_t entries, uint32_t *state_offset)
725 {
726 struct anv_state *bt_block = u_vector_head(&cmd_buffer->bt_block_states);
727
728 uint32_t bt_size = align_u32(entries * 4, 32);
729
730 struct anv_state state = cmd_buffer->bt_next;
731 if (bt_size > state.alloc_size)
732 return (struct anv_state) { 0 };
733
734 state.alloc_size = bt_size;
735 cmd_buffer->bt_next.offset += bt_size;
736 cmd_buffer->bt_next.map += bt_size;
737 cmd_buffer->bt_next.alloc_size -= bt_size;
738
739 assert(bt_block->offset < 0);
740 *state_offset = -bt_block->offset;
741
742 return state;
743 }
744
745 struct anv_state
746 anv_cmd_buffer_alloc_surface_state(struct anv_cmd_buffer *cmd_buffer)
747 {
748 struct isl_device *isl_dev = &cmd_buffer->device->isl_dev;
749 return anv_state_stream_alloc(&cmd_buffer->surface_state_stream,
750 isl_dev->ss.size, isl_dev->ss.align);
751 }
752
753 struct anv_state
754 anv_cmd_buffer_alloc_dynamic_state(struct anv_cmd_buffer *cmd_buffer,
755 uint32_t size, uint32_t alignment)
756 {
757 return anv_state_stream_alloc(&cmd_buffer->dynamic_state_stream,
758 size, alignment);
759 }
760
761 VkResult
762 anv_cmd_buffer_new_binding_table_block(struct anv_cmd_buffer *cmd_buffer)
763 {
764 struct anv_state *bt_block = u_vector_add(&cmd_buffer->bt_block_states);
765 if (bt_block == NULL) {
766 anv_batch_set_error(&cmd_buffer->batch, VK_ERROR_OUT_OF_HOST_MEMORY);
767 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
768 }
769
770 *bt_block = anv_binding_table_pool_alloc(cmd_buffer->device);
771
772 /* The bt_next state is a rolling state (we update it as we suballocate
773 * from it) which is relative to the start of the binding table block.
774 */
775 cmd_buffer->bt_next = *bt_block;
776 cmd_buffer->bt_next.offset = 0;
777
778 return VK_SUCCESS;
779 }
780
781 VkResult
782 anv_cmd_buffer_init_batch_bo_chain(struct anv_cmd_buffer *cmd_buffer)
783 {
784 struct anv_batch_bo *batch_bo;
785 VkResult result;
786
787 list_inithead(&cmd_buffer->batch_bos);
788
789 result = anv_batch_bo_create(cmd_buffer, &batch_bo);
790 if (result != VK_SUCCESS)
791 return result;
792
793 list_addtail(&batch_bo->link, &cmd_buffer->batch_bos);
794
795 cmd_buffer->batch.alloc = &cmd_buffer->pool->alloc;
796 cmd_buffer->batch.user_data = cmd_buffer;
797
798 if (cmd_buffer->device->can_chain_batches) {
799 cmd_buffer->batch.extend_cb = anv_cmd_buffer_chain_batch;
800 } else {
801 cmd_buffer->batch.extend_cb = anv_cmd_buffer_grow_batch;
802 }
803
804 anv_batch_bo_start(batch_bo, &cmd_buffer->batch,
805 GEN8_MI_BATCH_BUFFER_START_length * 4);
806
807 int success = u_vector_init(&cmd_buffer->seen_bbos,
808 sizeof(struct anv_bo *),
809 8 * sizeof(struct anv_bo *));
810 if (!success)
811 goto fail_batch_bo;
812
813 *(struct anv_batch_bo **)u_vector_add(&cmd_buffer->seen_bbos) = batch_bo;
814
815 /* u_vector requires power-of-two size elements */
816 unsigned pow2_state_size = util_next_power_of_two(sizeof(struct anv_state));
817 success = u_vector_init(&cmd_buffer->bt_block_states,
818 pow2_state_size, 8 * pow2_state_size);
819 if (!success)
820 goto fail_seen_bbos;
821
822 result = anv_reloc_list_init(&cmd_buffer->surface_relocs,
823 &cmd_buffer->pool->alloc);
824 if (result != VK_SUCCESS)
825 goto fail_bt_blocks;
826 cmd_buffer->last_ss_pool_center = 0;
827
828 result = anv_cmd_buffer_new_binding_table_block(cmd_buffer);
829 if (result != VK_SUCCESS)
830 goto fail_bt_blocks;
831
832 return VK_SUCCESS;
833
834 fail_bt_blocks:
835 u_vector_finish(&cmd_buffer->bt_block_states);
836 fail_seen_bbos:
837 u_vector_finish(&cmd_buffer->seen_bbos);
838 fail_batch_bo:
839 anv_batch_bo_destroy(batch_bo, cmd_buffer);
840
841 return result;
842 }
843
844 void
845 anv_cmd_buffer_fini_batch_bo_chain(struct anv_cmd_buffer *cmd_buffer)
846 {
847 struct anv_state *bt_block;
848 u_vector_foreach(bt_block, &cmd_buffer->bt_block_states)
849 anv_binding_table_pool_free(cmd_buffer->device, *bt_block);
850 u_vector_finish(&cmd_buffer->bt_block_states);
851
852 anv_reloc_list_finish(&cmd_buffer->surface_relocs, &cmd_buffer->pool->alloc);
853
854 u_vector_finish(&cmd_buffer->seen_bbos);
855
856 /* Destroy all of the batch buffers */
857 list_for_each_entry_safe(struct anv_batch_bo, bbo,
858 &cmd_buffer->batch_bos, link) {
859 list_del(&bbo->link);
860 anv_batch_bo_destroy(bbo, cmd_buffer);
861 }
862 }
863
864 void
865 anv_cmd_buffer_reset_batch_bo_chain(struct anv_cmd_buffer *cmd_buffer)
866 {
867 /* Delete all but the first batch bo */
868 assert(!list_is_empty(&cmd_buffer->batch_bos));
869 while (cmd_buffer->batch_bos.next != cmd_buffer->batch_bos.prev) {
870 struct anv_batch_bo *bbo = anv_cmd_buffer_current_batch_bo(cmd_buffer);
871 list_del(&bbo->link);
872 anv_batch_bo_destroy(bbo, cmd_buffer);
873 }
874 assert(!list_is_empty(&cmd_buffer->batch_bos));
875
876 anv_batch_bo_start(anv_cmd_buffer_current_batch_bo(cmd_buffer),
877 &cmd_buffer->batch,
878 GEN8_MI_BATCH_BUFFER_START_length * 4);
879
880 while (u_vector_length(&cmd_buffer->bt_block_states) > 1) {
881 struct anv_state *bt_block = u_vector_remove(&cmd_buffer->bt_block_states);
882 anv_binding_table_pool_free(cmd_buffer->device, *bt_block);
883 }
884 assert(u_vector_length(&cmd_buffer->bt_block_states) == 1);
885 cmd_buffer->bt_next = *(struct anv_state *)u_vector_head(&cmd_buffer->bt_block_states);
886 cmd_buffer->bt_next.offset = 0;
887
888 anv_reloc_list_clear(&cmd_buffer->surface_relocs);
889 cmd_buffer->last_ss_pool_center = 0;
890
891 /* Reset the list of seen buffers */
892 cmd_buffer->seen_bbos.head = 0;
893 cmd_buffer->seen_bbos.tail = 0;
894
895 *(struct anv_batch_bo **)u_vector_add(&cmd_buffer->seen_bbos) =
896 anv_cmd_buffer_current_batch_bo(cmd_buffer);
897 }
898
899 void
900 anv_cmd_buffer_end_batch_buffer(struct anv_cmd_buffer *cmd_buffer)
901 {
902 struct anv_batch_bo *batch_bo = anv_cmd_buffer_current_batch_bo(cmd_buffer);
903
904 if (cmd_buffer->level == VK_COMMAND_BUFFER_LEVEL_PRIMARY) {
905 /* When we start a batch buffer, we subtract a certain amount of
906 * padding from the end to ensure that we always have room to emit a
907 * BATCH_BUFFER_START to chain to the next BO. We need to remove
908 * that padding before we end the batch; otherwise, we may end up
909 * with our BATCH_BUFFER_END in another BO.
910 */
911 cmd_buffer->batch.end += GEN8_MI_BATCH_BUFFER_START_length * 4;
912 assert(cmd_buffer->batch.end == batch_bo->bo->map + batch_bo->bo->size);
913
914 anv_batch_emit(&cmd_buffer->batch, GEN8_MI_BATCH_BUFFER_END, bbe);
915
916 /* Round batch up to an even number of dwords. */
917 if ((cmd_buffer->batch.next - cmd_buffer->batch.start) & 4)
918 anv_batch_emit(&cmd_buffer->batch, GEN8_MI_NOOP, noop);
919
920 cmd_buffer->exec_mode = ANV_CMD_BUFFER_EXEC_MODE_PRIMARY;
921 } else {
922 assert(cmd_buffer->level == VK_COMMAND_BUFFER_LEVEL_SECONDARY);
923 /* If this is a secondary command buffer, we need to determine the
924 * mode in which it will be executed with vkExecuteCommands. We
925 * determine this statically here so that this stays in sync with the
926 * actual ExecuteCommands implementation.
927 */
928 const uint32_t length = cmd_buffer->batch.next - cmd_buffer->batch.start;
929 if (!cmd_buffer->device->can_chain_batches) {
930 cmd_buffer->exec_mode = ANV_CMD_BUFFER_EXEC_MODE_GROW_AND_EMIT;
931 } else if (cmd_buffer->device->physical->use_call_secondary) {
932 cmd_buffer->exec_mode = ANV_CMD_BUFFER_EXEC_MODE_CALL_AND_RETURN;
933 /* If the secondary command buffer begins & ends in the same BO and
934 * its length is less than the length of CS prefetch, add some NOOPs
935 * instructions so the last MI_BATCH_BUFFER_START is outside the CS
936 * prefetch.
937 */
938 if (cmd_buffer->batch_bos.next == cmd_buffer->batch_bos.prev) {
939 int32_t batch_len =
940 cmd_buffer->batch.next - cmd_buffer->batch.start;
941
942 for (int32_t i = 0; i < (512 - batch_len); i += 4)
943 anv_batch_emit(&cmd_buffer->batch, GEN8_MI_NOOP, noop);
944 }
945
946 void *jump_addr =
947 anv_batch_emitn(&cmd_buffer->batch,
948 GEN8_MI_BATCH_BUFFER_START_length,
949 GEN8_MI_BATCH_BUFFER_START,
950 .AddressSpaceIndicator = ASI_PPGTT,
951 .SecondLevelBatchBuffer = Firstlevelbatch) +
952 (GEN8_MI_BATCH_BUFFER_START_BatchBufferStartAddress_start / 8);
953 cmd_buffer->return_addr = anv_batch_address(&cmd_buffer->batch, jump_addr);
954 } else if ((cmd_buffer->batch_bos.next == cmd_buffer->batch_bos.prev) &&
955 (length < ANV_CMD_BUFFER_BATCH_SIZE / 2)) {
956 /* If the secondary has exactly one batch buffer in its list *and*
957 * that batch buffer is less than half of the maximum size, we're
958 * probably better of simply copying it into our batch.
959 */
960 cmd_buffer->exec_mode = ANV_CMD_BUFFER_EXEC_MODE_EMIT;
961 } else if (!(cmd_buffer->usage_flags &
962 VK_COMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT)) {
963 cmd_buffer->exec_mode = ANV_CMD_BUFFER_EXEC_MODE_CHAIN;
964
965 /* In order to chain, we need this command buffer to contain an
966 * MI_BATCH_BUFFER_START which will jump back to the calling batch.
967 * It doesn't matter where it points now so long as has a valid
968 * relocation. We'll adjust it later as part of the chaining
969 * process.
970 *
971 * We set the end of the batch a little short so we would be sure we
972 * have room for the chaining command. Since we're about to emit the
973 * chaining command, let's set it back where it should go.
974 */
975 cmd_buffer->batch.end += GEN8_MI_BATCH_BUFFER_START_length * 4;
976 assert(cmd_buffer->batch.start == batch_bo->bo->map);
977 assert(cmd_buffer->batch.end == batch_bo->bo->map + batch_bo->bo->size);
978
979 emit_batch_buffer_start(cmd_buffer, batch_bo->bo, 0);
980 assert(cmd_buffer->batch.start == batch_bo->bo->map);
981 } else {
982 cmd_buffer->exec_mode = ANV_CMD_BUFFER_EXEC_MODE_COPY_AND_CHAIN;
983 }
984 }
985
986 anv_batch_bo_finish(batch_bo, &cmd_buffer->batch);
987 }
988
989 static VkResult
990 anv_cmd_buffer_add_seen_bbos(struct anv_cmd_buffer *cmd_buffer,
991 struct list_head *list)
992 {
993 list_for_each_entry(struct anv_batch_bo, bbo, list, link) {
994 struct anv_batch_bo **bbo_ptr = u_vector_add(&cmd_buffer->seen_bbos);
995 if (bbo_ptr == NULL)
996 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
997
998 *bbo_ptr = bbo;
999 }
1000
1001 return VK_SUCCESS;
1002 }
1003
1004 void
1005 anv_cmd_buffer_add_secondary(struct anv_cmd_buffer *primary,
1006 struct anv_cmd_buffer *secondary)
1007 {
1008 switch (secondary->exec_mode) {
1009 case ANV_CMD_BUFFER_EXEC_MODE_EMIT:
1010 anv_batch_emit_batch(&primary->batch, &secondary->batch);
1011 break;
1012 case ANV_CMD_BUFFER_EXEC_MODE_GROW_AND_EMIT: {
1013 struct anv_batch_bo *bbo = anv_cmd_buffer_current_batch_bo(primary);
1014 unsigned length = secondary->batch.end - secondary->batch.start;
1015 anv_batch_bo_grow(primary, bbo, &primary->batch, length,
1016 GEN8_MI_BATCH_BUFFER_START_length * 4);
1017 anv_batch_emit_batch(&primary->batch, &secondary->batch);
1018 break;
1019 }
1020 case ANV_CMD_BUFFER_EXEC_MODE_CHAIN: {
1021 struct anv_batch_bo *first_bbo =
1022 list_first_entry(&secondary->batch_bos, struct anv_batch_bo, link);
1023 struct anv_batch_bo *last_bbo =
1024 list_last_entry(&secondary->batch_bos, struct anv_batch_bo, link);
1025
1026 emit_batch_buffer_start(primary, first_bbo->bo, 0);
1027
1028 struct anv_batch_bo *this_bbo = anv_cmd_buffer_current_batch_bo(primary);
1029 assert(primary->batch.start == this_bbo->bo->map);
1030 uint32_t offset = primary->batch.next - primary->batch.start;
1031
1032 /* Make the tail of the secondary point back to right after the
1033 * MI_BATCH_BUFFER_START in the primary batch.
1034 */
1035 anv_batch_bo_link(primary, last_bbo, this_bbo, offset);
1036
1037 anv_cmd_buffer_add_seen_bbos(primary, &secondary->batch_bos);
1038 break;
1039 }
1040 case ANV_CMD_BUFFER_EXEC_MODE_COPY_AND_CHAIN: {
1041 struct list_head copy_list;
1042 VkResult result = anv_batch_bo_list_clone(&secondary->batch_bos,
1043 secondary,
1044 &copy_list);
1045 if (result != VK_SUCCESS)
1046 return; /* FIXME */
1047
1048 anv_cmd_buffer_add_seen_bbos(primary, &copy_list);
1049
1050 struct anv_batch_bo *first_bbo =
1051 list_first_entry(&copy_list, struct anv_batch_bo, link);
1052 struct anv_batch_bo *last_bbo =
1053 list_last_entry(&copy_list, struct anv_batch_bo, link);
1054
1055 cmd_buffer_chain_to_batch_bo(primary, first_bbo);
1056
1057 list_splicetail(&copy_list, &primary->batch_bos);
1058
1059 anv_batch_bo_continue(last_bbo, &primary->batch,
1060 GEN8_MI_BATCH_BUFFER_START_length * 4);
1061 break;
1062 }
1063 case ANV_CMD_BUFFER_EXEC_MODE_CALL_AND_RETURN: {
1064 struct anv_batch_bo *first_bbo =
1065 list_first_entry(&secondary->batch_bos, struct anv_batch_bo, link);
1066
1067 uint64_t *write_return_addr =
1068 anv_batch_emitn(&primary->batch,
1069 GEN8_MI_STORE_DATA_IMM_length + 1 /* QWord write */,
1070 GEN8_MI_STORE_DATA_IMM,
1071 .Address = secondary->return_addr)
1072 + (GEN8_MI_STORE_DATA_IMM_ImmediateData_start / 8);
1073
1074 emit_batch_buffer_start(primary, first_bbo->bo, 0);
1075
1076 *write_return_addr =
1077 anv_address_physical(anv_batch_address(&primary->batch,
1078 primary->batch.next));
1079
1080 anv_cmd_buffer_add_seen_bbos(primary, &secondary->batch_bos);
1081 break;
1082 }
1083 default:
1084 assert(!"Invalid execution mode");
1085 }
1086
1087 anv_reloc_list_append(&primary->surface_relocs, &primary->pool->alloc,
1088 &secondary->surface_relocs, 0);
1089 }
1090
1091 struct anv_execbuf {
1092 struct drm_i915_gem_execbuffer2 execbuf;
1093
1094 struct drm_i915_gem_exec_object2 * objects;
1095 uint32_t bo_count;
1096 struct anv_bo ** bos;
1097
1098 /* Allocated length of the 'objects' and 'bos' arrays */
1099 uint32_t array_length;
1100
1101 bool has_relocs;
1102
1103 const VkAllocationCallbacks * alloc;
1104 VkSystemAllocationScope alloc_scope;
1105
1106 int perf_query_pass;
1107 };
1108
1109 static void
1110 anv_execbuf_init(struct anv_execbuf *exec)
1111 {
1112 memset(exec, 0, sizeof(*exec));
1113 }
1114
1115 static void
1116 anv_execbuf_finish(struct anv_execbuf *exec)
1117 {
1118 vk_free(exec->alloc, exec->objects);
1119 vk_free(exec->alloc, exec->bos);
1120 }
1121
1122 static VkResult
1123 anv_execbuf_add_bo_bitset(struct anv_device *device,
1124 struct anv_execbuf *exec,
1125 uint32_t dep_words,
1126 BITSET_WORD *deps,
1127 uint32_t extra_flags);
1128
1129 static VkResult
1130 anv_execbuf_add_bo(struct anv_device *device,
1131 struct anv_execbuf *exec,
1132 struct anv_bo *bo,
1133 struct anv_reloc_list *relocs,
1134 uint32_t extra_flags)
1135 {
1136 struct drm_i915_gem_exec_object2 *obj = NULL;
1137
1138 bo = anv_bo_unwrap(bo);
1139
1140 if (bo->index < exec->bo_count && exec->bos[bo->index] == bo)
1141 obj = &exec->objects[bo->index];
1142
1143 if (obj == NULL) {
1144 /* We've never seen this one before. Add it to the list and assign
1145 * an id that we can use later.
1146 */
1147 if (exec->bo_count >= exec->array_length) {
1148 uint32_t new_len = exec->objects ? exec->array_length * 2 : 64;
1149
1150 struct drm_i915_gem_exec_object2 *new_objects =
1151 vk_alloc(exec->alloc, new_len * sizeof(*new_objects), 8, exec->alloc_scope);
1152 if (new_objects == NULL)
1153 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
1154
1155 struct anv_bo **new_bos =
1156 vk_alloc(exec->alloc, new_len * sizeof(*new_bos), 8, exec->alloc_scope);
1157 if (new_bos == NULL) {
1158 vk_free(exec->alloc, new_objects);
1159 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
1160 }
1161
1162 if (exec->objects) {
1163 memcpy(new_objects, exec->objects,
1164 exec->bo_count * sizeof(*new_objects));
1165 memcpy(new_bos, exec->bos,
1166 exec->bo_count * sizeof(*new_bos));
1167 }
1168
1169 vk_free(exec->alloc, exec->objects);
1170 vk_free(exec->alloc, exec->bos);
1171
1172 exec->objects = new_objects;
1173 exec->bos = new_bos;
1174 exec->array_length = new_len;
1175 }
1176
1177 assert(exec->bo_count < exec->array_length);
1178
1179 bo->index = exec->bo_count++;
1180 obj = &exec->objects[bo->index];
1181 exec->bos[bo->index] = bo;
1182
1183 obj->handle = bo->gem_handle;
1184 obj->relocation_count = 0;
1185 obj->relocs_ptr = 0;
1186 obj->alignment = 0;
1187 obj->offset = bo->offset;
1188 obj->flags = bo->flags | extra_flags;
1189 obj->rsvd1 = 0;
1190 obj->rsvd2 = 0;
1191 }
1192
1193 if (extra_flags & EXEC_OBJECT_WRITE) {
1194 obj->flags |= EXEC_OBJECT_WRITE;
1195 obj->flags &= ~EXEC_OBJECT_ASYNC;
1196 }
1197
1198 if (relocs != NULL) {
1199 assert(obj->relocation_count == 0);
1200
1201 if (relocs->num_relocs > 0) {
1202 /* This is the first time we've ever seen a list of relocations for
1203 * this BO. Go ahead and set the relocations and then walk the list
1204 * of relocations and add them all.
1205 */
1206 exec->has_relocs = true;
1207 obj->relocation_count = relocs->num_relocs;
1208 obj->relocs_ptr = (uintptr_t) relocs->relocs;
1209
1210 for (size_t i = 0; i < relocs->num_relocs; i++) {
1211 VkResult result;
1212
1213 /* A quick sanity check on relocations */
1214 assert(relocs->relocs[i].offset < bo->size);
1215 result = anv_execbuf_add_bo(device, exec, relocs->reloc_bos[i],
1216 NULL, extra_flags);
1217 if (result != VK_SUCCESS)
1218 return result;
1219 }
1220 }
1221
1222 return anv_execbuf_add_bo_bitset(device, exec, relocs->dep_words,
1223 relocs->deps, extra_flags);
1224 }
1225
1226 return VK_SUCCESS;
1227 }
1228
1229 /* Add BO dependencies to execbuf */
1230 static VkResult
1231 anv_execbuf_add_bo_bitset(struct anv_device *device,
1232 struct anv_execbuf *exec,
1233 uint32_t dep_words,
1234 BITSET_WORD *deps,
1235 uint32_t extra_flags)
1236 {
1237 for (uint32_t w = 0; w < dep_words; w++) {
1238 BITSET_WORD mask = deps[w];
1239 while (mask) {
1240 int i = u_bit_scan(&mask);
1241 uint32_t gem_handle = w * BITSET_WORDBITS + i;
1242 struct anv_bo *bo = anv_device_lookup_bo(device, gem_handle);
1243 assert(bo->refcount > 0);
1244 VkResult result =
1245 anv_execbuf_add_bo(device, exec, bo, NULL, extra_flags);
1246 if (result != VK_SUCCESS)
1247 return result;
1248 }
1249 }
1250
1251 return VK_SUCCESS;
1252 }
1253
1254 static void
1255 anv_cmd_buffer_process_relocs(struct anv_cmd_buffer *cmd_buffer,
1256 struct anv_reloc_list *list)
1257 {
1258 for (size_t i = 0; i < list->num_relocs; i++)
1259 list->relocs[i].target_handle = anv_bo_unwrap(list->reloc_bos[i])->index;
1260 }
1261
1262 static void
1263 adjust_relocations_from_state_pool(struct anv_state_pool *pool,
1264 struct anv_reloc_list *relocs,
1265 uint32_t last_pool_center_bo_offset)
1266 {
1267 assert(last_pool_center_bo_offset <= pool->block_pool.center_bo_offset);
1268 uint32_t delta = pool->block_pool.center_bo_offset - last_pool_center_bo_offset;
1269
1270 for (size_t i = 0; i < relocs->num_relocs; i++) {
1271 /* All of the relocations from this block pool to other BO's should
1272 * have been emitted relative to the surface block pool center. We
1273 * need to add the center offset to make them relative to the
1274 * beginning of the actual GEM bo.
1275 */
1276 relocs->relocs[i].offset += delta;
1277 }
1278 }
1279
1280 static void
1281 adjust_relocations_to_state_pool(struct anv_state_pool *pool,
1282 struct anv_bo *from_bo,
1283 struct anv_reloc_list *relocs,
1284 uint32_t last_pool_center_bo_offset)
1285 {
1286 assert(!from_bo->is_wrapper);
1287 assert(last_pool_center_bo_offset <= pool->block_pool.center_bo_offset);
1288 uint32_t delta = pool->block_pool.center_bo_offset - last_pool_center_bo_offset;
1289
1290 /* When we initially emit relocations into a block pool, we don't
1291 * actually know what the final center_bo_offset will be so we just emit
1292 * it as if center_bo_offset == 0. Now that we know what the center
1293 * offset is, we need to walk the list of relocations and adjust any
1294 * relocations that point to the pool bo with the correct offset.
1295 */
1296 for (size_t i = 0; i < relocs->num_relocs; i++) {
1297 if (relocs->reloc_bos[i] == pool->block_pool.bo) {
1298 /* Adjust the delta value in the relocation to correctly
1299 * correspond to the new delta. Initially, this value may have
1300 * been negative (if treated as unsigned), but we trust in
1301 * uint32_t roll-over to fix that for us at this point.
1302 */
1303 relocs->relocs[i].delta += delta;
1304
1305 /* Since the delta has changed, we need to update the actual
1306 * relocated value with the new presumed value. This function
1307 * should only be called on batch buffers, so we know it isn't in
1308 * use by the GPU at the moment.
1309 */
1310 assert(relocs->relocs[i].offset < from_bo->size);
1311 write_reloc(pool->block_pool.device,
1312 from_bo->map + relocs->relocs[i].offset,
1313 relocs->relocs[i].presumed_offset +
1314 relocs->relocs[i].delta, false);
1315 }
1316 }
1317 }
1318
1319 static void
1320 anv_reloc_list_apply(struct anv_device *device,
1321 struct anv_reloc_list *list,
1322 struct anv_bo *bo,
1323 bool always_relocate)
1324 {
1325 bo = anv_bo_unwrap(bo);
1326
1327 for (size_t i = 0; i < list->num_relocs; i++) {
1328 struct anv_bo *target_bo = anv_bo_unwrap(list->reloc_bos[i]);
1329 if (list->relocs[i].presumed_offset == target_bo->offset &&
1330 !always_relocate)
1331 continue;
1332
1333 void *p = bo->map + list->relocs[i].offset;
1334 write_reloc(device, p, target_bo->offset + list->relocs[i].delta, true);
1335 list->relocs[i].presumed_offset = target_bo->offset;
1336 }
1337 }
1338
1339 /**
1340 * This function applies the relocation for a command buffer and writes the
1341 * actual addresses into the buffers as per what we were told by the kernel on
1342 * the previous execbuf2 call. This should be safe to do because, for each
1343 * relocated address, we have two cases:
1344 *
1345 * 1) The target BO is inactive (as seen by the kernel). In this case, it is
1346 * not in use by the GPU so updating the address is 100% ok. It won't be
1347 * in-use by the GPU (from our context) again until the next execbuf2
1348 * happens. If the kernel decides to move it in the next execbuf2, it
1349 * will have to do the relocations itself, but that's ok because it should
1350 * have all of the information needed to do so.
1351 *
1352 * 2) The target BO is active (as seen by the kernel). In this case, it
1353 * hasn't moved since the last execbuffer2 call because GTT shuffling
1354 * *only* happens when the BO is idle. (From our perspective, it only
1355 * happens inside the execbuffer2 ioctl, but the shuffling may be
1356 * triggered by another ioctl, with full-ppgtt this is limited to only
1357 * execbuffer2 ioctls on the same context, or memory pressure.) Since the
1358 * target BO hasn't moved, our anv_bo::offset exactly matches the BO's GTT
1359 * address and the relocated value we are writing into the BO will be the
1360 * same as the value that is already there.
1361 *
1362 * There is also a possibility that the target BO is active but the exact
1363 * RENDER_SURFACE_STATE object we are writing the relocation into isn't in
1364 * use. In this case, the address currently in the RENDER_SURFACE_STATE
1365 * may be stale but it's still safe to write the relocation because that
1366 * particular RENDER_SURFACE_STATE object isn't in-use by the GPU and
1367 * won't be until the next execbuf2 call.
1368 *
1369 * By doing relocations on the CPU, we can tell the kernel that it doesn't
1370 * need to bother. We want to do this because the surface state buffer is
1371 * used by every command buffer so, if the kernel does the relocations, it
1372 * will always be busy and the kernel will always stall. This is also
1373 * probably the fastest mechanism for doing relocations since the kernel would
1374 * have to make a full copy of all the relocations lists.
1375 */
1376 static bool
1377 relocate_cmd_buffer(struct anv_cmd_buffer *cmd_buffer,
1378 struct anv_execbuf *exec)
1379 {
1380 if (!exec->has_relocs)
1381 return true;
1382
1383 static int userspace_relocs = -1;
1384 if (userspace_relocs < 0)
1385 userspace_relocs = env_var_as_boolean("ANV_USERSPACE_RELOCS", true);
1386 if (!userspace_relocs)
1387 return false;
1388
1389 /* First, we have to check to see whether or not we can even do the
1390 * relocation. New buffers which have never been submitted to the kernel
1391 * don't have a valid offset so we need to let the kernel do relocations so
1392 * that we can get offsets for them. On future execbuf2 calls, those
1393 * buffers will have offsets and we will be able to skip relocating.
1394 * Invalid offsets are indicated by anv_bo::offset == (uint64_t)-1.
1395 */
1396 for (uint32_t i = 0; i < exec->bo_count; i++) {
1397 assert(!exec->bos[i]->is_wrapper);
1398 if (exec->bos[i]->offset == (uint64_t)-1)
1399 return false;
1400 }
1401
1402 /* Since surface states are shared between command buffers and we don't
1403 * know what order they will be submitted to the kernel, we don't know
1404 * what address is actually written in the surface state object at any
1405 * given time. The only option is to always relocate them.
1406 */
1407 struct anv_bo *surface_state_bo =
1408 anv_bo_unwrap(cmd_buffer->device->surface_state_pool.block_pool.bo);
1409 anv_reloc_list_apply(cmd_buffer->device, &cmd_buffer->surface_relocs,
1410 surface_state_bo,
1411 true /* always relocate surface states */);
1412
1413 /* Since we own all of the batch buffers, we know what values are stored
1414 * in the relocated addresses and only have to update them if the offsets
1415 * have changed.
1416 */
1417 struct anv_batch_bo **bbo;
1418 u_vector_foreach(bbo, &cmd_buffer->seen_bbos) {
1419 anv_reloc_list_apply(cmd_buffer->device,
1420 &(*bbo)->relocs, (*bbo)->bo, false);
1421 }
1422
1423 for (uint32_t i = 0; i < exec->bo_count; i++)
1424 exec->objects[i].offset = exec->bos[i]->offset;
1425
1426 return true;
1427 }
1428
1429 static VkResult
1430 setup_execbuf_for_cmd_buffer(struct anv_execbuf *execbuf,
1431 struct anv_cmd_buffer *cmd_buffer)
1432 {
1433 struct anv_batch *batch = &cmd_buffer->batch;
1434 struct anv_state_pool *ss_pool =
1435 &cmd_buffer->device->surface_state_pool;
1436
1437 adjust_relocations_from_state_pool(ss_pool, &cmd_buffer->surface_relocs,
1438 cmd_buffer->last_ss_pool_center);
1439 VkResult result;
1440 if (cmd_buffer->device->physical->use_softpin) {
1441 anv_block_pool_foreach_bo(bo, &ss_pool->block_pool) {
1442 result = anv_execbuf_add_bo(cmd_buffer->device, execbuf,
1443 bo, NULL, 0);
1444 if (result != VK_SUCCESS)
1445 return result;
1446 }
1447 /* Add surface dependencies (BOs) to the execbuf */
1448 anv_execbuf_add_bo_bitset(cmd_buffer->device, execbuf,
1449 cmd_buffer->surface_relocs.dep_words,
1450 cmd_buffer->surface_relocs.deps, 0);
1451
1452 /* Add the BOs for all memory objects */
1453 list_for_each_entry(struct anv_device_memory, mem,
1454 &cmd_buffer->device->memory_objects, link) {
1455 result = anv_execbuf_add_bo(cmd_buffer->device, execbuf,
1456 mem->bo, NULL, 0);
1457 if (result != VK_SUCCESS)
1458 return result;
1459 }
1460
1461 struct anv_block_pool *pool;
1462 pool = &cmd_buffer->device->dynamic_state_pool.block_pool;
1463 anv_block_pool_foreach_bo(bo, pool) {
1464 result = anv_execbuf_add_bo(cmd_buffer->device, execbuf,
1465 bo, NULL, 0);
1466 if (result != VK_SUCCESS)
1467 return result;
1468 }
1469
1470 pool = &cmd_buffer->device->instruction_state_pool.block_pool;
1471 anv_block_pool_foreach_bo(bo, pool) {
1472 result = anv_execbuf_add_bo(cmd_buffer->device, execbuf,
1473 bo, NULL, 0);
1474 if (result != VK_SUCCESS)
1475 return result;
1476 }
1477
1478 pool = &cmd_buffer->device->binding_table_pool.block_pool;
1479 anv_block_pool_foreach_bo(bo, pool) {
1480 result = anv_execbuf_add_bo(cmd_buffer->device, execbuf,
1481 bo, NULL, 0);
1482 if (result != VK_SUCCESS)
1483 return result;
1484 }
1485 } else {
1486 /* Since we aren't in the softpin case, all of our STATE_BASE_ADDRESS BOs
1487 * will get added automatically by processing relocations on the batch
1488 * buffer. We have to add the surface state BO manually because it has
1489 * relocations of its own that we need to be sure are processsed.
1490 */
1491 result = anv_execbuf_add_bo(cmd_buffer->device, execbuf,
1492 ss_pool->block_pool.bo,
1493 &cmd_buffer->surface_relocs, 0);
1494 if (result != VK_SUCCESS)
1495 return result;
1496 }
1497
1498 /* First, we walk over all of the bos we've seen and add them and their
1499 * relocations to the validate list.
1500 */
1501 struct anv_batch_bo **bbo;
1502 u_vector_foreach(bbo, &cmd_buffer->seen_bbos) {
1503 adjust_relocations_to_state_pool(ss_pool, (*bbo)->bo, &(*bbo)->relocs,
1504 cmd_buffer->last_ss_pool_center);
1505
1506 result = anv_execbuf_add_bo(cmd_buffer->device, execbuf,
1507 (*bbo)->bo, &(*bbo)->relocs, 0);
1508 if (result != VK_SUCCESS)
1509 return result;
1510 }
1511
1512 /* Now that we've adjusted all of the surface state relocations, we need to
1513 * record the surface state pool center so future executions of the command
1514 * buffer can adjust correctly.
1515 */
1516 cmd_buffer->last_ss_pool_center = ss_pool->block_pool.center_bo_offset;
1517
1518 struct anv_batch_bo *first_batch_bo =
1519 list_first_entry(&cmd_buffer->batch_bos, struct anv_batch_bo, link);
1520
1521 /* The kernel requires that the last entry in the validation list be the
1522 * batch buffer to execute. We can simply swap the element
1523 * corresponding to the first batch_bo in the chain with the last
1524 * element in the list.
1525 */
1526 if (first_batch_bo->bo->index != execbuf->bo_count - 1) {
1527 uint32_t idx = first_batch_bo->bo->index;
1528 uint32_t last_idx = execbuf->bo_count - 1;
1529
1530 struct drm_i915_gem_exec_object2 tmp_obj = execbuf->objects[idx];
1531 assert(execbuf->bos[idx] == first_batch_bo->bo);
1532
1533 execbuf->objects[idx] = execbuf->objects[last_idx];
1534 execbuf->bos[idx] = execbuf->bos[last_idx];
1535 execbuf->bos[idx]->index = idx;
1536
1537 execbuf->objects[last_idx] = tmp_obj;
1538 execbuf->bos[last_idx] = first_batch_bo->bo;
1539 first_batch_bo->bo->index = last_idx;
1540 }
1541
1542 /* If we are pinning our BOs, we shouldn't have to relocate anything */
1543 if (cmd_buffer->device->physical->use_softpin)
1544 assert(!execbuf->has_relocs);
1545
1546 /* Now we go through and fixup all of the relocation lists to point to
1547 * the correct indices in the object array. We have to do this after we
1548 * reorder the list above as some of the indices may have changed.
1549 */
1550 if (execbuf->has_relocs) {
1551 u_vector_foreach(bbo, &cmd_buffer->seen_bbos)
1552 anv_cmd_buffer_process_relocs(cmd_buffer, &(*bbo)->relocs);
1553
1554 anv_cmd_buffer_process_relocs(cmd_buffer, &cmd_buffer->surface_relocs);
1555 }
1556
1557 if (!cmd_buffer->device->info.has_llc) {
1558 __builtin_ia32_mfence();
1559 u_vector_foreach(bbo, &cmd_buffer->seen_bbos) {
1560 for (uint32_t i = 0; i < (*bbo)->length; i += CACHELINE_SIZE)
1561 __builtin_ia32_clflush((*bbo)->bo->map + i);
1562 }
1563 }
1564
1565 execbuf->execbuf = (struct drm_i915_gem_execbuffer2) {
1566 .buffers_ptr = (uintptr_t) execbuf->objects,
1567 .buffer_count = execbuf->bo_count,
1568 .batch_start_offset = 0,
1569 .batch_len = batch->next - batch->start,
1570 .cliprects_ptr = 0,
1571 .num_cliprects = 0,
1572 .DR1 = 0,
1573 .DR4 = 0,
1574 .flags = I915_EXEC_HANDLE_LUT | I915_EXEC_RENDER,
1575 .rsvd1 = cmd_buffer->device->context_id,
1576 .rsvd2 = 0,
1577 };
1578
1579 if (relocate_cmd_buffer(cmd_buffer, execbuf)) {
1580 /* If we were able to successfully relocate everything, tell the kernel
1581 * that it can skip doing relocations. The requirement for using
1582 * NO_RELOC is:
1583 *
1584 * 1) The addresses written in the objects must match the corresponding
1585 * reloc.presumed_offset which in turn must match the corresponding
1586 * execobject.offset.
1587 *
1588 * 2) To avoid stalling, execobject.offset should match the current
1589 * address of that object within the active context.
1590 *
1591 * In order to satisfy all of the invariants that make userspace
1592 * relocations to be safe (see relocate_cmd_buffer()), we need to
1593 * further ensure that the addresses we use match those used by the
1594 * kernel for the most recent execbuf2.
1595 *
1596 * The kernel may still choose to do relocations anyway if something has
1597 * moved in the GTT. In this case, the relocation list still needs to be
1598 * valid. All relocations on the batch buffers are already valid and
1599 * kept up-to-date. For surface state relocations, by applying the
1600 * relocations in relocate_cmd_buffer, we ensured that the address in
1601 * the RENDER_SURFACE_STATE matches presumed_offset, so it should be
1602 * safe for the kernel to relocate them as needed.
1603 */
1604 execbuf->execbuf.flags |= I915_EXEC_NO_RELOC;
1605 } else {
1606 /* In the case where we fall back to doing kernel relocations, we need
1607 * to ensure that the relocation list is valid. All relocations on the
1608 * batch buffers are already valid and kept up-to-date. Since surface
1609 * states are shared between command buffers and we don't know what
1610 * order they will be submitted to the kernel, we don't know what
1611 * address is actually written in the surface state object at any given
1612 * time. The only option is to set a bogus presumed offset and let the
1613 * kernel relocate them.
1614 */
1615 for (size_t i = 0; i < cmd_buffer->surface_relocs.num_relocs; i++)
1616 cmd_buffer->surface_relocs.relocs[i].presumed_offset = -1;
1617 }
1618
1619 return VK_SUCCESS;
1620 }
1621
1622 static VkResult
1623 setup_empty_execbuf(struct anv_execbuf *execbuf, struct anv_device *device)
1624 {
1625 VkResult result = anv_execbuf_add_bo(device, execbuf,
1626 device->trivial_batch_bo,
1627 NULL, 0);
1628 if (result != VK_SUCCESS)
1629 return result;
1630
1631 execbuf->execbuf = (struct drm_i915_gem_execbuffer2) {
1632 .buffers_ptr = (uintptr_t) execbuf->objects,
1633 .buffer_count = execbuf->bo_count,
1634 .batch_start_offset = 0,
1635 .batch_len = 8, /* GEN7_MI_BATCH_BUFFER_END and NOOP */
1636 .flags = I915_EXEC_HANDLE_LUT | I915_EXEC_RENDER | I915_EXEC_NO_RELOC,
1637 .rsvd1 = device->context_id,
1638 .rsvd2 = 0,
1639 };
1640
1641 return VK_SUCCESS;
1642 }
1643
1644 /* We lock around execbuf for three main reasons:
1645 *
1646 * 1) When a block pool is resized, we create a new gem handle with a
1647 * different size and, in the case of surface states, possibly a different
1648 * center offset but we re-use the same anv_bo struct when we do so. If
1649 * this happens in the middle of setting up an execbuf, we could end up
1650 * with our list of BOs out of sync with our list of gem handles.
1651 *
1652 * 2) The algorithm we use for building the list of unique buffers isn't
1653 * thread-safe. While the client is supposed to syncronize around
1654 * QueueSubmit, this would be extremely difficult to debug if it ever came
1655 * up in the wild due to a broken app. It's better to play it safe and
1656 * just lock around QueueSubmit.
1657 *
1658 * 3) The anv_cmd_buffer_execbuf function may perform relocations in
1659 * userspace. Due to the fact that the surface state buffer is shared
1660 * between batches, we can't afford to have that happen from multiple
1661 * threads at the same time. Even though the user is supposed to ensure
1662 * this doesn't happen, we play it safe as in (2) above.
1663 *
1664 * Since the only other things that ever take the device lock such as block
1665 * pool resize only rarely happen, this will almost never be contended so
1666 * taking a lock isn't really an expensive operation in this case.
1667 */
1668 VkResult
1669 anv_queue_execbuf_locked(struct anv_queue *queue,
1670 struct anv_queue_submit *submit)
1671 {
1672 struct anv_device *device = queue->device;
1673 struct anv_execbuf execbuf;
1674 anv_execbuf_init(&execbuf);
1675 execbuf.alloc = submit->alloc;
1676 execbuf.alloc_scope = submit->alloc_scope;
1677 execbuf.perf_query_pass = submit->perf_query_pass;
1678
1679 /* Always add the workaround BO as it includes a driver identifier for the
1680 * error_state.
1681 */
1682 VkResult result =
1683 anv_execbuf_add_bo(device, &execbuf, device->workaround_bo, NULL, 0);
1684 if (result != VK_SUCCESS)
1685 goto error;
1686
1687 for (uint32_t i = 0; i < submit->fence_bo_count; i++) {
1688 int signaled;
1689 struct anv_bo *bo = anv_unpack_ptr(submit->fence_bos[i], 1, &signaled);
1690
1691 result = anv_execbuf_add_bo(device, &execbuf, bo, NULL,
1692 signaled ? EXEC_OBJECT_WRITE : 0);
1693 if (result != VK_SUCCESS)
1694 goto error;
1695 }
1696
1697 if (submit->cmd_buffer) {
1698 result = setup_execbuf_for_cmd_buffer(&execbuf, submit->cmd_buffer);
1699 } else if (submit->simple_bo) {
1700 result = anv_execbuf_add_bo(device, &execbuf, submit->simple_bo, NULL, 0);
1701 if (result != VK_SUCCESS)
1702 goto error;
1703
1704 execbuf.execbuf = (struct drm_i915_gem_execbuffer2) {
1705 .buffers_ptr = (uintptr_t) execbuf.objects,
1706 .buffer_count = execbuf.bo_count,
1707 .batch_start_offset = 0,
1708 .batch_len = submit->simple_bo_size,
1709 .flags = I915_EXEC_HANDLE_LUT | I915_EXEC_RENDER | I915_EXEC_NO_RELOC,
1710 .rsvd1 = device->context_id,
1711 .rsvd2 = 0,
1712 };
1713 } else {
1714 result = setup_empty_execbuf(&execbuf, queue->device);
1715 }
1716
1717 if (result != VK_SUCCESS)
1718 goto error;
1719
1720 const bool has_perf_query =
1721 submit->perf_query_pass >= 0 &&
1722 submit->cmd_buffer &&
1723 submit->cmd_buffer->perf_query_pool;
1724
1725 if (unlikely(INTEL_DEBUG & DEBUG_BATCH)) {
1726 if (submit->cmd_buffer) {
1727 if (has_perf_query) {
1728 struct anv_query_pool *query_pool = submit->cmd_buffer->perf_query_pool;
1729 struct anv_bo *pass_batch_bo = query_pool->bo;
1730 uint64_t pass_batch_offset =
1731 khr_perf_query_preamble_offset(query_pool,
1732 submit->perf_query_pass);
1733
1734 gen_print_batch(&device->decoder_ctx,
1735 pass_batch_bo->map + pass_batch_offset, 64,
1736 pass_batch_bo->offset + pass_batch_offset, false);
1737 }
1738
1739 struct anv_batch_bo **bo = u_vector_tail(&submit->cmd_buffer->seen_bbos);
1740 device->cmd_buffer_being_decoded = submit->cmd_buffer;
1741 gen_print_batch(&device->decoder_ctx, (*bo)->bo->map,
1742 (*bo)->bo->size, (*bo)->bo->offset, false);
1743 device->cmd_buffer_being_decoded = NULL;
1744 } else if (submit->simple_bo) {
1745 gen_print_batch(&device->decoder_ctx, submit->simple_bo->map,
1746 submit->simple_bo->size, submit->simple_bo->offset, false);
1747 } else {
1748 gen_print_batch(&device->decoder_ctx,
1749 device->trivial_batch_bo->map,
1750 device->trivial_batch_bo->size,
1751 device->trivial_batch_bo->offset, false);
1752 }
1753 }
1754
1755 if (submit->fence_count > 0) {
1756 assert(device->physical->has_syncobj);
1757 execbuf.execbuf.flags |= I915_EXEC_FENCE_ARRAY;
1758 execbuf.execbuf.num_cliprects = submit->fence_count;
1759 execbuf.execbuf.cliprects_ptr = (uintptr_t)submit->fences;
1760 }
1761
1762 if (submit->in_fence != -1) {
1763 execbuf.execbuf.flags |= I915_EXEC_FENCE_IN;
1764 execbuf.execbuf.rsvd2 |= (uint32_t)submit->in_fence;
1765 }
1766
1767 if (submit->need_out_fence)
1768 execbuf.execbuf.flags |= I915_EXEC_FENCE_OUT;
1769
1770 if (has_perf_query) {
1771 struct anv_query_pool *query_pool = submit->cmd_buffer->perf_query_pool;
1772 assert(submit->perf_query_pass < query_pool->n_passes);
1773 struct gen_perf_query_info *query_info =
1774 query_pool->pass_query[submit->perf_query_pass];
1775
1776 /* Some performance queries just the pipeline statistic HW, no need for
1777 * OA in that case, so no need to reconfigure.
1778 */
1779 if (likely((INTEL_DEBUG & DEBUG_NO_OACONFIG) == 0) &&
1780 (query_info->kind == GEN_PERF_QUERY_TYPE_OA ||
1781 query_info->kind == GEN_PERF_QUERY_TYPE_RAW)) {
1782 int ret = gen_ioctl(device->perf_fd, I915_PERF_IOCTL_CONFIG,
1783 (void *)(uintptr_t) query_info->oa_metrics_set_id);
1784 if (ret < 0) {
1785 result = anv_device_set_lost(device,
1786 "i915-perf config failed: %s",
1787 strerror(ret));
1788 }
1789 }
1790
1791 struct anv_bo *pass_batch_bo = query_pool->bo;
1792
1793 struct drm_i915_gem_exec_object2 query_pass_object = {
1794 .handle = pass_batch_bo->gem_handle,
1795 .offset = pass_batch_bo->offset,
1796 .flags = pass_batch_bo->flags,
1797 };
1798 struct drm_i915_gem_execbuffer2 query_pass_execbuf = {
1799 .buffers_ptr = (uintptr_t) &query_pass_object,
1800 .buffer_count = 1,
1801 .batch_start_offset = khr_perf_query_preamble_offset(query_pool,
1802 submit->perf_query_pass),
1803 .flags = I915_EXEC_HANDLE_LUT | I915_EXEC_RENDER,
1804 .rsvd1 = device->context_id,
1805 };
1806
1807 int ret = queue->device->no_hw ? 0 :
1808 anv_gem_execbuffer(queue->device, &query_pass_execbuf);
1809 if (ret)
1810 result = anv_queue_set_lost(queue, "execbuf2 failed: %m");
1811 }
1812
1813 int ret = queue->device->no_hw ? 0 :
1814 anv_gem_execbuffer(queue->device, &execbuf.execbuf);
1815 if (ret)
1816 result = anv_queue_set_lost(queue, "execbuf2 failed: %m");
1817
1818 struct drm_i915_gem_exec_object2 *objects = execbuf.objects;
1819 for (uint32_t k = 0; k < execbuf.bo_count; k++) {
1820 if (execbuf.bos[k]->flags & EXEC_OBJECT_PINNED)
1821 assert(execbuf.bos[k]->offset == objects[k].offset);
1822 execbuf.bos[k]->offset = objects[k].offset;
1823 }
1824
1825 if (result == VK_SUCCESS && submit->need_out_fence)
1826 submit->out_fence = execbuf.execbuf.rsvd2 >> 32;
1827
1828 error:
1829 pthread_cond_broadcast(&device->queue_submit);
1830
1831 anv_execbuf_finish(&execbuf);
1832
1833 return result;
1834 }