anv: Do relocations in userspace before execbuf ioctl
[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/gen7_pack.h"
33 #include "genxml/gen8_pack.h"
34
35 #include "util/debug.h"
36
37 /** \file anv_batch_chain.c
38 *
39 * This file contains functions related to anv_cmd_buffer as a data
40 * structure. This involves everything required to create and destroy
41 * the actual batch buffers as well as link them together and handle
42 * relocations and surface state. It specifically does *not* contain any
43 * handling of actual vkCmd calls beyond vkCmdExecuteCommands.
44 */
45
46 /*-----------------------------------------------------------------------*
47 * Functions related to anv_reloc_list
48 *-----------------------------------------------------------------------*/
49
50 static VkResult
51 anv_reloc_list_init_clone(struct anv_reloc_list *list,
52 const VkAllocationCallbacks *alloc,
53 const struct anv_reloc_list *other_list)
54 {
55 if (other_list) {
56 list->num_relocs = other_list->num_relocs;
57 list->array_length = other_list->array_length;
58 } else {
59 list->num_relocs = 0;
60 list->array_length = 256;
61 }
62
63 list->relocs =
64 vk_alloc(alloc, list->array_length * sizeof(*list->relocs), 8,
65 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
66
67 if (list->relocs == NULL)
68 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
69
70 list->reloc_bos =
71 vk_alloc(alloc, list->array_length * sizeof(*list->reloc_bos), 8,
72 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
73
74 if (list->reloc_bos == NULL) {
75 vk_free(alloc, list->relocs);
76 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
77 }
78
79 if (other_list) {
80 memcpy(list->relocs, other_list->relocs,
81 list->array_length * sizeof(*list->relocs));
82 memcpy(list->reloc_bos, other_list->reloc_bos,
83 list->array_length * sizeof(*list->reloc_bos));
84 }
85
86 return VK_SUCCESS;
87 }
88
89 VkResult
90 anv_reloc_list_init(struct anv_reloc_list *list,
91 const VkAllocationCallbacks *alloc)
92 {
93 return anv_reloc_list_init_clone(list, alloc, NULL);
94 }
95
96 void
97 anv_reloc_list_finish(struct anv_reloc_list *list,
98 const VkAllocationCallbacks *alloc)
99 {
100 vk_free(alloc, list->relocs);
101 vk_free(alloc, list->reloc_bos);
102 }
103
104 static VkResult
105 anv_reloc_list_grow(struct anv_reloc_list *list,
106 const VkAllocationCallbacks *alloc,
107 size_t num_additional_relocs)
108 {
109 if (list->num_relocs + num_additional_relocs <= list->array_length)
110 return VK_SUCCESS;
111
112 size_t new_length = list->array_length * 2;
113 while (new_length < list->num_relocs + num_additional_relocs)
114 new_length *= 2;
115
116 struct drm_i915_gem_relocation_entry *new_relocs =
117 vk_alloc(alloc, new_length * sizeof(*list->relocs), 8,
118 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
119 if (new_relocs == NULL)
120 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
121
122 struct anv_bo **new_reloc_bos =
123 vk_alloc(alloc, new_length * sizeof(*list->reloc_bos), 8,
124 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
125 if (new_reloc_bos == NULL) {
126 vk_free(alloc, new_relocs);
127 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
128 }
129
130 memcpy(new_relocs, list->relocs, list->num_relocs * sizeof(*list->relocs));
131 memcpy(new_reloc_bos, list->reloc_bos,
132 list->num_relocs * sizeof(*list->reloc_bos));
133
134 vk_free(alloc, list->relocs);
135 vk_free(alloc, list->reloc_bos);
136
137 list->array_length = new_length;
138 list->relocs = new_relocs;
139 list->reloc_bos = new_reloc_bos;
140
141 return VK_SUCCESS;
142 }
143
144 uint64_t
145 anv_reloc_list_add(struct anv_reloc_list *list,
146 const VkAllocationCallbacks *alloc,
147 uint32_t offset, struct anv_bo *target_bo, uint32_t delta)
148 {
149 struct drm_i915_gem_relocation_entry *entry;
150 int index;
151
152 const uint32_t domain =
153 target_bo->is_winsys_bo ? I915_GEM_DOMAIN_RENDER : 0;
154
155 anv_reloc_list_grow(list, alloc, 1);
156 /* TODO: Handle failure */
157
158 /* XXX: Can we use I915_EXEC_HANDLE_LUT? */
159 index = list->num_relocs++;
160 list->reloc_bos[index] = target_bo;
161 entry = &list->relocs[index];
162 entry->target_handle = target_bo->gem_handle;
163 entry->delta = delta;
164 entry->offset = offset;
165 entry->presumed_offset = target_bo->offset;
166 entry->read_domains = domain;
167 entry->write_domain = domain;
168 VG(VALGRIND_CHECK_MEM_IS_DEFINED(entry, sizeof(*entry)));
169
170 return target_bo->offset + delta;
171 }
172
173 static void
174 anv_reloc_list_append(struct anv_reloc_list *list,
175 const VkAllocationCallbacks *alloc,
176 struct anv_reloc_list *other, uint32_t offset)
177 {
178 anv_reloc_list_grow(list, alloc, other->num_relocs);
179 /* TODO: Handle failure */
180
181 memcpy(&list->relocs[list->num_relocs], &other->relocs[0],
182 other->num_relocs * sizeof(other->relocs[0]));
183 memcpy(&list->reloc_bos[list->num_relocs], &other->reloc_bos[0],
184 other->num_relocs * sizeof(other->reloc_bos[0]));
185
186 for (uint32_t i = 0; i < other->num_relocs; i++)
187 list->relocs[i + list->num_relocs].offset += offset;
188
189 list->num_relocs += other->num_relocs;
190 }
191
192 /*-----------------------------------------------------------------------*
193 * Functions related to anv_batch
194 *-----------------------------------------------------------------------*/
195
196 void *
197 anv_batch_emit_dwords(struct anv_batch *batch, int num_dwords)
198 {
199 if (batch->next + num_dwords * 4 > batch->end)
200 batch->extend_cb(batch, batch->user_data);
201
202 void *p = batch->next;
203
204 batch->next += num_dwords * 4;
205 assert(batch->next <= batch->end);
206
207 return p;
208 }
209
210 uint64_t
211 anv_batch_emit_reloc(struct anv_batch *batch,
212 void *location, struct anv_bo *bo, uint32_t delta)
213 {
214 return anv_reloc_list_add(batch->relocs, batch->alloc,
215 location - batch->start, bo, delta);
216 }
217
218 void
219 anv_batch_emit_batch(struct anv_batch *batch, struct anv_batch *other)
220 {
221 uint32_t size, offset;
222
223 size = other->next - other->start;
224 assert(size % 4 == 0);
225
226 if (batch->next + size > batch->end)
227 batch->extend_cb(batch, batch->user_data);
228
229 assert(batch->next + size <= batch->end);
230
231 VG(VALGRIND_CHECK_MEM_IS_DEFINED(other->start, size));
232 memcpy(batch->next, other->start, size);
233
234 offset = batch->next - batch->start;
235 anv_reloc_list_append(batch->relocs, batch->alloc,
236 other->relocs, offset);
237
238 batch->next += size;
239 }
240
241 /*-----------------------------------------------------------------------*
242 * Functions related to anv_batch_bo
243 *-----------------------------------------------------------------------*/
244
245 static VkResult
246 anv_batch_bo_create(struct anv_cmd_buffer *cmd_buffer,
247 struct anv_batch_bo **bbo_out)
248 {
249 VkResult result;
250
251 struct anv_batch_bo *bbo = vk_alloc(&cmd_buffer->pool->alloc, sizeof(*bbo),
252 8, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
253 if (bbo == NULL)
254 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
255
256 result = anv_bo_pool_alloc(&cmd_buffer->device->batch_bo_pool, &bbo->bo,
257 ANV_CMD_BUFFER_BATCH_SIZE);
258 if (result != VK_SUCCESS)
259 goto fail_alloc;
260
261 result = anv_reloc_list_init(&bbo->relocs, &cmd_buffer->pool->alloc);
262 if (result != VK_SUCCESS)
263 goto fail_bo_alloc;
264
265 *bbo_out = bbo;
266
267 return VK_SUCCESS;
268
269 fail_bo_alloc:
270 anv_bo_pool_free(&cmd_buffer->device->batch_bo_pool, &bbo->bo);
271 fail_alloc:
272 vk_free(&cmd_buffer->pool->alloc, bbo);
273
274 return result;
275 }
276
277 static VkResult
278 anv_batch_bo_clone(struct anv_cmd_buffer *cmd_buffer,
279 const struct anv_batch_bo *other_bbo,
280 struct anv_batch_bo **bbo_out)
281 {
282 VkResult result;
283
284 struct anv_batch_bo *bbo = vk_alloc(&cmd_buffer->pool->alloc, sizeof(*bbo),
285 8, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
286 if (bbo == NULL)
287 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
288
289 result = anv_bo_pool_alloc(&cmd_buffer->device->batch_bo_pool, &bbo->bo,
290 other_bbo->bo.size);
291 if (result != VK_SUCCESS)
292 goto fail_alloc;
293
294 result = anv_reloc_list_init_clone(&bbo->relocs, &cmd_buffer->pool->alloc,
295 &other_bbo->relocs);
296 if (result != VK_SUCCESS)
297 goto fail_bo_alloc;
298
299 bbo->length = other_bbo->length;
300 memcpy(bbo->bo.map, other_bbo->bo.map, other_bbo->length);
301
302 *bbo_out = bbo;
303
304 return VK_SUCCESS;
305
306 fail_bo_alloc:
307 anv_bo_pool_free(&cmd_buffer->device->batch_bo_pool, &bbo->bo);
308 fail_alloc:
309 vk_free(&cmd_buffer->pool->alloc, bbo);
310
311 return result;
312 }
313
314 static void
315 anv_batch_bo_start(struct anv_batch_bo *bbo, struct anv_batch *batch,
316 size_t batch_padding)
317 {
318 batch->next = batch->start = bbo->bo.map;
319 batch->end = bbo->bo.map + bbo->bo.size - batch_padding;
320 batch->relocs = &bbo->relocs;
321 bbo->relocs.num_relocs = 0;
322 }
323
324 static void
325 anv_batch_bo_continue(struct anv_batch_bo *bbo, struct anv_batch *batch,
326 size_t batch_padding)
327 {
328 batch->start = bbo->bo.map;
329 batch->next = bbo->bo.map + bbo->length;
330 batch->end = bbo->bo.map + bbo->bo.size - batch_padding;
331 batch->relocs = &bbo->relocs;
332 }
333
334 static void
335 anv_batch_bo_finish(struct anv_batch_bo *bbo, struct anv_batch *batch)
336 {
337 assert(batch->start == bbo->bo.map);
338 bbo->length = batch->next - batch->start;
339 VG(VALGRIND_CHECK_MEM_IS_DEFINED(batch->start, bbo->length));
340 }
341
342 static VkResult
343 anv_batch_bo_grow(struct anv_cmd_buffer *cmd_buffer, struct anv_batch_bo *bbo,
344 struct anv_batch *batch, size_t aditional,
345 size_t batch_padding)
346 {
347 assert(batch->start == bbo->bo.map);
348 bbo->length = batch->next - batch->start;
349
350 size_t new_size = bbo->bo.size;
351 while (new_size <= bbo->length + aditional + batch_padding)
352 new_size *= 2;
353
354 if (new_size == bbo->bo.size)
355 return VK_SUCCESS;
356
357 struct anv_bo new_bo;
358 VkResult result = anv_bo_pool_alloc(&cmd_buffer->device->batch_bo_pool,
359 &new_bo, new_size);
360 if (result != VK_SUCCESS)
361 return result;
362
363 memcpy(new_bo.map, bbo->bo.map, bbo->length);
364
365 anv_bo_pool_free(&cmd_buffer->device->batch_bo_pool, &bbo->bo);
366
367 bbo->bo = new_bo;
368 anv_batch_bo_continue(bbo, batch, batch_padding);
369
370 return VK_SUCCESS;
371 }
372
373 static void
374 anv_batch_bo_destroy(struct anv_batch_bo *bbo,
375 struct anv_cmd_buffer *cmd_buffer)
376 {
377 anv_reloc_list_finish(&bbo->relocs, &cmd_buffer->pool->alloc);
378 anv_bo_pool_free(&cmd_buffer->device->batch_bo_pool, &bbo->bo);
379 vk_free(&cmd_buffer->pool->alloc, bbo);
380 }
381
382 static VkResult
383 anv_batch_bo_list_clone(const struct list_head *list,
384 struct anv_cmd_buffer *cmd_buffer,
385 struct list_head *new_list)
386 {
387 VkResult result = VK_SUCCESS;
388
389 list_inithead(new_list);
390
391 struct anv_batch_bo *prev_bbo = NULL;
392 list_for_each_entry(struct anv_batch_bo, bbo, list, link) {
393 struct anv_batch_bo *new_bbo = NULL;
394 result = anv_batch_bo_clone(cmd_buffer, bbo, &new_bbo);
395 if (result != VK_SUCCESS)
396 break;
397 list_addtail(&new_bbo->link, new_list);
398
399 if (prev_bbo) {
400 /* As we clone this list of batch_bo's, they chain one to the
401 * other using MI_BATCH_BUFFER_START commands. We need to fix up
402 * those relocations as we go. Fortunately, this is pretty easy
403 * as it will always be the last relocation in the list.
404 */
405 uint32_t last_idx = prev_bbo->relocs.num_relocs - 1;
406 assert(prev_bbo->relocs.reloc_bos[last_idx] == &bbo->bo);
407 prev_bbo->relocs.reloc_bos[last_idx] = &new_bbo->bo;
408 }
409
410 prev_bbo = new_bbo;
411 }
412
413 if (result != VK_SUCCESS) {
414 list_for_each_entry_safe(struct anv_batch_bo, bbo, new_list, link)
415 anv_batch_bo_destroy(bbo, cmd_buffer);
416 }
417
418 return result;
419 }
420
421 /*-----------------------------------------------------------------------*
422 * Functions related to anv_batch_bo
423 *-----------------------------------------------------------------------*/
424
425 static inline struct anv_batch_bo *
426 anv_cmd_buffer_current_batch_bo(struct anv_cmd_buffer *cmd_buffer)
427 {
428 return LIST_ENTRY(struct anv_batch_bo, cmd_buffer->batch_bos.prev, link);
429 }
430
431 struct anv_address
432 anv_cmd_buffer_surface_base_address(struct anv_cmd_buffer *cmd_buffer)
433 {
434 return (struct anv_address) {
435 .bo = &cmd_buffer->device->surface_state_block_pool.bo,
436 .offset = *(int32_t *)u_vector_head(&cmd_buffer->bt_blocks),
437 };
438 }
439
440 static void
441 emit_batch_buffer_start(struct anv_cmd_buffer *cmd_buffer,
442 struct anv_bo *bo, uint32_t offset)
443 {
444 /* In gen8+ the address field grew to two dwords to accomodate 48 bit
445 * offsets. The high 16 bits are in the last dword, so we can use the gen8
446 * version in either case, as long as we set the instruction length in the
447 * header accordingly. This means that we always emit three dwords here
448 * and all the padding and adjustment we do in this file works for all
449 * gens.
450 */
451
452 const uint32_t gen7_length =
453 GEN7_MI_BATCH_BUFFER_START_length - GEN7_MI_BATCH_BUFFER_START_length_bias;
454 const uint32_t gen8_length =
455 GEN8_MI_BATCH_BUFFER_START_length - GEN8_MI_BATCH_BUFFER_START_length_bias;
456
457 anv_batch_emit(&cmd_buffer->batch, GEN8_MI_BATCH_BUFFER_START, bbs) {
458 bbs.DWordLength = cmd_buffer->device->info.gen < 8 ?
459 gen7_length : gen8_length;
460 bbs._2ndLevelBatchBuffer = _1stlevelbatch;
461 bbs.AddressSpaceIndicator = ASI_PPGTT;
462 bbs.BatchBufferStartAddress = (struct anv_address) { bo, offset };
463 }
464 }
465
466 static void
467 cmd_buffer_chain_to_batch_bo(struct anv_cmd_buffer *cmd_buffer,
468 struct anv_batch_bo *bbo)
469 {
470 struct anv_batch *batch = &cmd_buffer->batch;
471 struct anv_batch_bo *current_bbo =
472 anv_cmd_buffer_current_batch_bo(cmd_buffer);
473
474 /* We set the end of the batch a little short so we would be sure we
475 * have room for the chaining command. Since we're about to emit the
476 * chaining command, let's set it back where it should go.
477 */
478 batch->end += GEN8_MI_BATCH_BUFFER_START_length * 4;
479 assert(batch->end == current_bbo->bo.map + current_bbo->bo.size);
480
481 emit_batch_buffer_start(cmd_buffer, &bbo->bo, 0);
482
483 anv_batch_bo_finish(current_bbo, batch);
484 }
485
486 static VkResult
487 anv_cmd_buffer_chain_batch(struct anv_batch *batch, void *_data)
488 {
489 struct anv_cmd_buffer *cmd_buffer = _data;
490 struct anv_batch_bo *new_bbo;
491
492 VkResult result = anv_batch_bo_create(cmd_buffer, &new_bbo);
493 if (result != VK_SUCCESS)
494 return result;
495
496 struct anv_batch_bo **seen_bbo = u_vector_add(&cmd_buffer->seen_bbos);
497 if (seen_bbo == NULL) {
498 anv_batch_bo_destroy(new_bbo, cmd_buffer);
499 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
500 }
501 *seen_bbo = new_bbo;
502
503 cmd_buffer_chain_to_batch_bo(cmd_buffer, new_bbo);
504
505 list_addtail(&new_bbo->link, &cmd_buffer->batch_bos);
506
507 anv_batch_bo_start(new_bbo, batch, GEN8_MI_BATCH_BUFFER_START_length * 4);
508
509 return VK_SUCCESS;
510 }
511
512 static VkResult
513 anv_cmd_buffer_grow_batch(struct anv_batch *batch, void *_data)
514 {
515 struct anv_cmd_buffer *cmd_buffer = _data;
516 struct anv_batch_bo *bbo = anv_cmd_buffer_current_batch_bo(cmd_buffer);
517
518 anv_batch_bo_grow(cmd_buffer, bbo, &cmd_buffer->batch, 4096,
519 GEN8_MI_BATCH_BUFFER_START_length * 4);
520
521 return VK_SUCCESS;
522 }
523
524 /** Allocate a binding table
525 *
526 * This function allocates a binding table. This is a bit more complicated
527 * than one would think due to a combination of Vulkan driver design and some
528 * unfortunate hardware restrictions.
529 *
530 * The 3DSTATE_BINDING_TABLE_POINTERS_* packets only have a 16-bit field for
531 * the binding table pointer which means that all binding tables need to live
532 * in the bottom 64k of surface state base address. The way the GL driver has
533 * classically dealt with this restriction is to emit all surface states
534 * on-the-fly into the batch and have a batch buffer smaller than 64k. This
535 * isn't really an option in Vulkan for a couple of reasons:
536 *
537 * 1) In Vulkan, we have growing (or chaining) batches so surface states have
538 * to live in their own buffer and we have to be able to re-emit
539 * STATE_BASE_ADDRESS as needed which requires a full pipeline stall. In
540 * order to avoid emitting STATE_BASE_ADDRESS any more often than needed
541 * (it's not that hard to hit 64k of just binding tables), we allocate
542 * surface state objects up-front when VkImageView is created. In order
543 * for this to work, surface state objects need to be allocated from a
544 * global buffer.
545 *
546 * 2) We tried to design the surface state system in such a way that it's
547 * already ready for bindless texturing. The way bindless texturing works
548 * on our hardware is that you have a big pool of surface state objects
549 * (with its own state base address) and the bindless handles are simply
550 * offsets into that pool. With the architecture we chose, we already
551 * have that pool and it's exactly the same pool that we use for regular
552 * surface states so we should already be ready for bindless.
553 *
554 * 3) For render targets, we need to be able to fill out the surface states
555 * later in vkBeginRenderPass so that we can assign clear colors
556 * correctly. One way to do this would be to just create the surface
557 * state data and then repeatedly copy it into the surface state BO every
558 * time we have to re-emit STATE_BASE_ADDRESS. While this works, it's
559 * rather annoying and just being able to allocate them up-front and
560 * re-use them for the entire render pass.
561 *
562 * While none of these are technically blockers for emitting state on the fly
563 * like we do in GL, the ability to have a single surface state pool is
564 * simplifies things greatly. Unfortunately, it comes at a cost...
565 *
566 * Because of the 64k limitation of 3DSTATE_BINDING_TABLE_POINTERS_*, we can't
567 * place the binding tables just anywhere in surface state base address.
568 * Because 64k isn't a whole lot of space, we can't simply restrict the
569 * surface state buffer to 64k, we have to be more clever. The solution we've
570 * chosen is to have a block pool with a maximum size of 2G that starts at
571 * zero and grows in both directions. All surface states are allocated from
572 * the top of the pool (positive offsets) and we allocate blocks (< 64k) of
573 * binding tables from the bottom of the pool (negative offsets). Every time
574 * we allocate a new binding table block, we set surface state base address to
575 * point to the bottom of the binding table block. This way all of the
576 * binding tables in the block are in the bottom 64k of surface state base
577 * address. When we fill out the binding table, we add the distance between
578 * the bottom of our binding table block and zero of the block pool to the
579 * surface state offsets so that they are correct relative to out new surface
580 * state base address at the bottom of the binding table block.
581 *
582 * \see adjust_relocations_from_block_pool()
583 * \see adjust_relocations_too_block_pool()
584 *
585 * \param[in] entries The number of surface state entries the binding
586 * table should be able to hold.
587 *
588 * \param[out] state_offset The offset surface surface state base address
589 * where the surface states live. This must be
590 * added to the surface state offset when it is
591 * written into the binding table entry.
592 *
593 * \return An anv_state representing the binding table
594 */
595 struct anv_state
596 anv_cmd_buffer_alloc_binding_table(struct anv_cmd_buffer *cmd_buffer,
597 uint32_t entries, uint32_t *state_offset)
598 {
599 struct anv_block_pool *block_pool =
600 &cmd_buffer->device->surface_state_block_pool;
601 int32_t *bt_block = u_vector_head(&cmd_buffer->bt_blocks);
602 struct anv_state state;
603
604 state.alloc_size = align_u32(entries * 4, 32);
605
606 if (cmd_buffer->bt_next + state.alloc_size > block_pool->block_size)
607 return (struct anv_state) { 0 };
608
609 state.offset = cmd_buffer->bt_next;
610 state.map = block_pool->map + *bt_block + state.offset;
611
612 cmd_buffer->bt_next += state.alloc_size;
613
614 assert(*bt_block < 0);
615 *state_offset = -(*bt_block);
616
617 return state;
618 }
619
620 struct anv_state
621 anv_cmd_buffer_alloc_surface_state(struct anv_cmd_buffer *cmd_buffer)
622 {
623 return anv_state_stream_alloc(&cmd_buffer->surface_state_stream, 64, 64);
624 }
625
626 struct anv_state
627 anv_cmd_buffer_alloc_dynamic_state(struct anv_cmd_buffer *cmd_buffer,
628 uint32_t size, uint32_t alignment)
629 {
630 return anv_state_stream_alloc(&cmd_buffer->dynamic_state_stream,
631 size, alignment);
632 }
633
634 VkResult
635 anv_cmd_buffer_new_binding_table_block(struct anv_cmd_buffer *cmd_buffer)
636 {
637 struct anv_block_pool *block_pool =
638 &cmd_buffer->device->surface_state_block_pool;
639
640 int32_t *offset = u_vector_add(&cmd_buffer->bt_blocks);
641 if (offset == NULL)
642 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
643
644 *offset = anv_block_pool_alloc_back(block_pool);
645 cmd_buffer->bt_next = 0;
646
647 return VK_SUCCESS;
648 }
649
650 VkResult
651 anv_cmd_buffer_init_batch_bo_chain(struct anv_cmd_buffer *cmd_buffer)
652 {
653 struct anv_batch_bo *batch_bo;
654 VkResult result;
655
656 list_inithead(&cmd_buffer->batch_bos);
657
658 result = anv_batch_bo_create(cmd_buffer, &batch_bo);
659 if (result != VK_SUCCESS)
660 return result;
661
662 list_addtail(&batch_bo->link, &cmd_buffer->batch_bos);
663
664 cmd_buffer->batch.alloc = &cmd_buffer->pool->alloc;
665 cmd_buffer->batch.user_data = cmd_buffer;
666
667 if (cmd_buffer->device->can_chain_batches) {
668 cmd_buffer->batch.extend_cb = anv_cmd_buffer_chain_batch;
669 } else {
670 cmd_buffer->batch.extend_cb = anv_cmd_buffer_grow_batch;
671 }
672
673 anv_batch_bo_start(batch_bo, &cmd_buffer->batch,
674 GEN8_MI_BATCH_BUFFER_START_length * 4);
675
676 int success = u_vector_init(&cmd_buffer->seen_bbos,
677 sizeof(struct anv_bo *),
678 8 * sizeof(struct anv_bo *));
679 if (!success)
680 goto fail_batch_bo;
681
682 *(struct anv_batch_bo **)u_vector_add(&cmd_buffer->seen_bbos) = batch_bo;
683
684 success = u_vector_init(&cmd_buffer->bt_blocks, sizeof(int32_t),
685 8 * sizeof(int32_t));
686 if (!success)
687 goto fail_seen_bbos;
688
689 result = anv_reloc_list_init(&cmd_buffer->surface_relocs,
690 &cmd_buffer->pool->alloc);
691 if (result != VK_SUCCESS)
692 goto fail_bt_blocks;
693 cmd_buffer->last_ss_pool_center = 0;
694
695 anv_cmd_buffer_new_binding_table_block(cmd_buffer);
696
697 return VK_SUCCESS;
698
699 fail_bt_blocks:
700 u_vector_finish(&cmd_buffer->bt_blocks);
701 fail_seen_bbos:
702 u_vector_finish(&cmd_buffer->seen_bbos);
703 fail_batch_bo:
704 anv_batch_bo_destroy(batch_bo, cmd_buffer);
705
706 return result;
707 }
708
709 void
710 anv_cmd_buffer_fini_batch_bo_chain(struct anv_cmd_buffer *cmd_buffer)
711 {
712 int32_t *bt_block;
713 u_vector_foreach(bt_block, &cmd_buffer->bt_blocks) {
714 anv_block_pool_free(&cmd_buffer->device->surface_state_block_pool,
715 *bt_block);
716 }
717 u_vector_finish(&cmd_buffer->bt_blocks);
718
719 anv_reloc_list_finish(&cmd_buffer->surface_relocs, &cmd_buffer->pool->alloc);
720
721 u_vector_finish(&cmd_buffer->seen_bbos);
722
723 /* Destroy all of the batch buffers */
724 list_for_each_entry_safe(struct anv_batch_bo, bbo,
725 &cmd_buffer->batch_bos, link) {
726 anv_batch_bo_destroy(bbo, cmd_buffer);
727 }
728 }
729
730 void
731 anv_cmd_buffer_reset_batch_bo_chain(struct anv_cmd_buffer *cmd_buffer)
732 {
733 /* Delete all but the first batch bo */
734 assert(!list_empty(&cmd_buffer->batch_bos));
735 while (cmd_buffer->batch_bos.next != cmd_buffer->batch_bos.prev) {
736 struct anv_batch_bo *bbo = anv_cmd_buffer_current_batch_bo(cmd_buffer);
737 list_del(&bbo->link);
738 anv_batch_bo_destroy(bbo, cmd_buffer);
739 }
740 assert(!list_empty(&cmd_buffer->batch_bos));
741
742 anv_batch_bo_start(anv_cmd_buffer_current_batch_bo(cmd_buffer),
743 &cmd_buffer->batch,
744 GEN8_MI_BATCH_BUFFER_START_length * 4);
745
746 while (u_vector_length(&cmd_buffer->bt_blocks) > 1) {
747 int32_t *bt_block = u_vector_remove(&cmd_buffer->bt_blocks);
748 anv_block_pool_free(&cmd_buffer->device->surface_state_block_pool,
749 *bt_block);
750 }
751 assert(u_vector_length(&cmd_buffer->bt_blocks) == 1);
752 cmd_buffer->bt_next = 0;
753
754 cmd_buffer->surface_relocs.num_relocs = 0;
755 cmd_buffer->last_ss_pool_center = 0;
756
757 /* Reset the list of seen buffers */
758 cmd_buffer->seen_bbos.head = 0;
759 cmd_buffer->seen_bbos.tail = 0;
760
761 *(struct anv_batch_bo **)u_vector_add(&cmd_buffer->seen_bbos) =
762 anv_cmd_buffer_current_batch_bo(cmd_buffer);
763 }
764
765 void
766 anv_cmd_buffer_end_batch_buffer(struct anv_cmd_buffer *cmd_buffer)
767 {
768 struct anv_batch_bo *batch_bo = anv_cmd_buffer_current_batch_bo(cmd_buffer);
769
770 if (cmd_buffer->level == VK_COMMAND_BUFFER_LEVEL_PRIMARY) {
771 /* When we start a batch buffer, we subtract a certain amount of
772 * padding from the end to ensure that we always have room to emit a
773 * BATCH_BUFFER_START to chain to the next BO. We need to remove
774 * that padding before we end the batch; otherwise, we may end up
775 * with our BATCH_BUFFER_END in another BO.
776 */
777 cmd_buffer->batch.end += GEN8_MI_BATCH_BUFFER_START_length * 4;
778 assert(cmd_buffer->batch.end == batch_bo->bo.map + batch_bo->bo.size);
779
780 anv_batch_emit(&cmd_buffer->batch, GEN7_MI_BATCH_BUFFER_END, bbe);
781
782 /* Round batch up to an even number of dwords. */
783 if ((cmd_buffer->batch.next - cmd_buffer->batch.start) & 4)
784 anv_batch_emit(&cmd_buffer->batch, GEN7_MI_NOOP, noop);
785
786 cmd_buffer->exec_mode = ANV_CMD_BUFFER_EXEC_MODE_PRIMARY;
787 }
788
789 anv_batch_bo_finish(batch_bo, &cmd_buffer->batch);
790
791 if (cmd_buffer->level == VK_COMMAND_BUFFER_LEVEL_SECONDARY) {
792 /* If this is a secondary command buffer, we need to determine the
793 * mode in which it will be executed with vkExecuteCommands. We
794 * determine this statically here so that this stays in sync with the
795 * actual ExecuteCommands implementation.
796 */
797 if (!cmd_buffer->device->can_chain_batches) {
798 cmd_buffer->exec_mode = ANV_CMD_BUFFER_EXEC_MODE_GROW_AND_EMIT;
799 } else if ((cmd_buffer->batch_bos.next == cmd_buffer->batch_bos.prev) &&
800 (batch_bo->length < ANV_CMD_BUFFER_BATCH_SIZE / 2)) {
801 /* If the secondary has exactly one batch buffer in its list *and*
802 * that batch buffer is less than half of the maximum size, we're
803 * probably better of simply copying it into our batch.
804 */
805 cmd_buffer->exec_mode = ANV_CMD_BUFFER_EXEC_MODE_EMIT;
806 } else if (!(cmd_buffer->usage_flags &
807 VK_COMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT)) {
808 cmd_buffer->exec_mode = ANV_CMD_BUFFER_EXEC_MODE_CHAIN;
809
810 /* When we chain, we need to add an MI_BATCH_BUFFER_START command
811 * with its relocation. In order to handle this we'll increment here
812 * so we can unconditionally decrement right before adding the
813 * MI_BATCH_BUFFER_START command.
814 */
815 batch_bo->relocs.num_relocs++;
816 cmd_buffer->batch.next += GEN8_MI_BATCH_BUFFER_START_length * 4;
817 } else {
818 cmd_buffer->exec_mode = ANV_CMD_BUFFER_EXEC_MODE_COPY_AND_CHAIN;
819 }
820 }
821 }
822
823 static inline VkResult
824 anv_cmd_buffer_add_seen_bbos(struct anv_cmd_buffer *cmd_buffer,
825 struct list_head *list)
826 {
827 list_for_each_entry(struct anv_batch_bo, bbo, list, link) {
828 struct anv_batch_bo **bbo_ptr = u_vector_add(&cmd_buffer->seen_bbos);
829 if (bbo_ptr == NULL)
830 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
831
832 *bbo_ptr = bbo;
833 }
834
835 return VK_SUCCESS;
836 }
837
838 void
839 anv_cmd_buffer_add_secondary(struct anv_cmd_buffer *primary,
840 struct anv_cmd_buffer *secondary)
841 {
842 switch (secondary->exec_mode) {
843 case ANV_CMD_BUFFER_EXEC_MODE_EMIT:
844 anv_batch_emit_batch(&primary->batch, &secondary->batch);
845 break;
846 case ANV_CMD_BUFFER_EXEC_MODE_GROW_AND_EMIT: {
847 struct anv_batch_bo *bbo = anv_cmd_buffer_current_batch_bo(primary);
848 unsigned length = secondary->batch.end - secondary->batch.start;
849 anv_batch_bo_grow(primary, bbo, &primary->batch, length,
850 GEN8_MI_BATCH_BUFFER_START_length * 4);
851 anv_batch_emit_batch(&primary->batch, &secondary->batch);
852 break;
853 }
854 case ANV_CMD_BUFFER_EXEC_MODE_CHAIN: {
855 struct anv_batch_bo *first_bbo =
856 list_first_entry(&secondary->batch_bos, struct anv_batch_bo, link);
857 struct anv_batch_bo *last_bbo =
858 list_last_entry(&secondary->batch_bos, struct anv_batch_bo, link);
859
860 emit_batch_buffer_start(primary, &first_bbo->bo, 0);
861
862 struct anv_batch_bo *this_bbo = anv_cmd_buffer_current_batch_bo(primary);
863 assert(primary->batch.start == this_bbo->bo.map);
864 uint32_t offset = primary->batch.next - primary->batch.start;
865 const uint32_t inst_size = GEN8_MI_BATCH_BUFFER_START_length * 4;
866
867 /* Roll back the previous MI_BATCH_BUFFER_START and its relocation so we
868 * can emit a new command and relocation for the current splice. In
869 * order to handle the initial-use case, we incremented next and
870 * num_relocs in end_batch_buffer() so we can alyways just subtract
871 * here.
872 */
873 last_bbo->relocs.num_relocs--;
874 secondary->batch.next -= inst_size;
875 emit_batch_buffer_start(secondary, &this_bbo->bo, offset);
876 anv_cmd_buffer_add_seen_bbos(primary, &secondary->batch_bos);
877
878 /* After patching up the secondary buffer, we need to clflush the
879 * modified instruction in case we're on a !llc platform. We use a
880 * little loop to handle the case where the instruction crosses a cache
881 * line boundary.
882 */
883 if (!primary->device->info.has_llc) {
884 void *inst = secondary->batch.next - inst_size;
885 void *p = (void *) (((uintptr_t) inst) & ~CACHELINE_MASK);
886 __builtin_ia32_mfence();
887 while (p < secondary->batch.next) {
888 __builtin_ia32_clflush(p);
889 p += CACHELINE_SIZE;
890 }
891 }
892 break;
893 }
894 case ANV_CMD_BUFFER_EXEC_MODE_COPY_AND_CHAIN: {
895 struct list_head copy_list;
896 VkResult result = anv_batch_bo_list_clone(&secondary->batch_bos,
897 secondary,
898 &copy_list);
899 if (result != VK_SUCCESS)
900 return; /* FIXME */
901
902 anv_cmd_buffer_add_seen_bbos(primary, &copy_list);
903
904 struct anv_batch_bo *first_bbo =
905 list_first_entry(&copy_list, struct anv_batch_bo, link);
906 struct anv_batch_bo *last_bbo =
907 list_last_entry(&copy_list, struct anv_batch_bo, link);
908
909 cmd_buffer_chain_to_batch_bo(primary, first_bbo);
910
911 list_splicetail(&copy_list, &primary->batch_bos);
912
913 anv_batch_bo_continue(last_bbo, &primary->batch,
914 GEN8_MI_BATCH_BUFFER_START_length * 4);
915 break;
916 }
917 default:
918 assert(!"Invalid execution mode");
919 }
920
921 anv_reloc_list_append(&primary->surface_relocs, &primary->pool->alloc,
922 &secondary->surface_relocs, 0);
923 }
924
925 struct anv_execbuf {
926 struct drm_i915_gem_execbuffer2 execbuf;
927
928 struct drm_i915_gem_exec_object2 * objects;
929 uint32_t bo_count;
930 struct anv_bo ** bos;
931
932 /* Allocated length of the 'objects' and 'bos' arrays */
933 uint32_t array_length;
934 };
935
936 static void
937 anv_execbuf_init(struct anv_execbuf *exec)
938 {
939 memset(exec, 0, sizeof(*exec));
940 }
941
942 static void
943 anv_execbuf_finish(struct anv_execbuf *exec,
944 const VkAllocationCallbacks *alloc)
945 {
946 vk_free(alloc, exec->objects);
947 vk_free(alloc, exec->bos);
948 }
949
950 static VkResult
951 anv_execbuf_add_bo(struct anv_execbuf *exec,
952 struct anv_bo *bo,
953 struct anv_reloc_list *relocs,
954 const VkAllocationCallbacks *alloc)
955 {
956 struct drm_i915_gem_exec_object2 *obj = NULL;
957
958 if (bo->index < exec->bo_count && exec->bos[bo->index] == bo)
959 obj = &exec->objects[bo->index];
960
961 if (obj == NULL) {
962 /* We've never seen this one before. Add it to the list and assign
963 * an id that we can use later.
964 */
965 if (exec->bo_count >= exec->array_length) {
966 uint32_t new_len = exec->objects ? exec->array_length * 2 : 64;
967
968 struct drm_i915_gem_exec_object2 *new_objects =
969 vk_alloc(alloc, new_len * sizeof(*new_objects),
970 8, VK_SYSTEM_ALLOCATION_SCOPE_COMMAND);
971 if (new_objects == NULL)
972 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
973
974 struct anv_bo **new_bos =
975 vk_alloc(alloc, new_len * sizeof(*new_bos),
976 8, VK_SYSTEM_ALLOCATION_SCOPE_COMMAND);
977 if (new_bos == NULL) {
978 vk_free(alloc, new_objects);
979 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
980 }
981
982 if (exec->objects) {
983 memcpy(new_objects, exec->objects,
984 exec->bo_count * sizeof(*new_objects));
985 memcpy(new_bos, exec->bos,
986 exec->bo_count * sizeof(*new_bos));
987 }
988
989 vk_free(alloc, exec->objects);
990 vk_free(alloc, exec->bos);
991
992 exec->objects = new_objects;
993 exec->bos = new_bos;
994 exec->array_length = new_len;
995 }
996
997 assert(exec->bo_count < exec->array_length);
998
999 bo->index = exec->bo_count++;
1000 obj = &exec->objects[bo->index];
1001 exec->bos[bo->index] = bo;
1002
1003 obj->handle = bo->gem_handle;
1004 obj->relocation_count = 0;
1005 obj->relocs_ptr = 0;
1006 obj->alignment = 0;
1007 obj->offset = bo->offset;
1008 obj->flags = bo->is_winsys_bo ? EXEC_OBJECT_WRITE : 0;
1009 obj->rsvd1 = 0;
1010 obj->rsvd2 = 0;
1011 }
1012
1013 if (relocs != NULL && obj->relocation_count == 0) {
1014 /* This is the first time we've ever seen a list of relocations for
1015 * this BO. Go ahead and set the relocations and then walk the list
1016 * of relocations and add them all.
1017 */
1018 obj->relocation_count = relocs->num_relocs;
1019 obj->relocs_ptr = (uintptr_t) relocs->relocs;
1020
1021 for (size_t i = 0; i < relocs->num_relocs; i++) {
1022 /* A quick sanity check on relocations */
1023 assert(relocs->relocs[i].offset < bo->size);
1024 anv_execbuf_add_bo(exec, relocs->reloc_bos[i], NULL, alloc);
1025 }
1026 }
1027
1028 return VK_SUCCESS;
1029 }
1030
1031 static void
1032 anv_cmd_buffer_process_relocs(struct anv_cmd_buffer *cmd_buffer,
1033 struct anv_reloc_list *list)
1034 {
1035 for (size_t i = 0; i < list->num_relocs; i++)
1036 list->relocs[i].target_handle = list->reloc_bos[i]->index;
1037 }
1038
1039 static void
1040 write_reloc(const struct anv_device *device, void *p, uint64_t v, bool flush)
1041 {
1042 unsigned reloc_size = 0;
1043 if (device->info.gen >= 8) {
1044 /* From the Broadwell PRM Vol. 2a, MI_LOAD_REGISTER_MEM::MemoryAddress:
1045 *
1046 * "This field specifies the address of the memory location where the
1047 * register value specified in the DWord above will read from. The
1048 * address specifies the DWord location of the data. Range =
1049 * GraphicsVirtualAddress[63:2] for a DWord register GraphicsAddress
1050 * [63:48] are ignored by the HW and assumed to be in correct
1051 * canonical form [63:48] == [47]."
1052 */
1053 const int shift = 63 - 47;
1054 reloc_size = sizeof(uint64_t);
1055 *(uint64_t *)p = (((int64_t)v) << shift) >> shift;
1056 } else {
1057 reloc_size = sizeof(uint32_t);
1058 *(uint32_t *)p = v;
1059 }
1060
1061 if (flush && !device->info.has_llc)
1062 anv_clflush_range(p, reloc_size);
1063 }
1064
1065 static void
1066 adjust_relocations_from_state_pool(struct anv_block_pool *pool,
1067 struct anv_reloc_list *relocs,
1068 uint32_t last_pool_center_bo_offset)
1069 {
1070 assert(last_pool_center_bo_offset <= pool->center_bo_offset);
1071 uint32_t delta = pool->center_bo_offset - last_pool_center_bo_offset;
1072
1073 for (size_t i = 0; i < relocs->num_relocs; i++) {
1074 /* All of the relocations from this block pool to other BO's should
1075 * have been emitted relative to the surface block pool center. We
1076 * need to add the center offset to make them relative to the
1077 * beginning of the actual GEM bo.
1078 */
1079 relocs->relocs[i].offset += delta;
1080 }
1081 }
1082
1083 static void
1084 adjust_relocations_to_state_pool(struct anv_block_pool *pool,
1085 struct anv_bo *from_bo,
1086 struct anv_reloc_list *relocs,
1087 uint32_t last_pool_center_bo_offset)
1088 {
1089 assert(last_pool_center_bo_offset <= pool->center_bo_offset);
1090 uint32_t delta = pool->center_bo_offset - last_pool_center_bo_offset;
1091
1092 /* When we initially emit relocations into a block pool, we don't
1093 * actually know what the final center_bo_offset will be so we just emit
1094 * it as if center_bo_offset == 0. Now that we know what the center
1095 * offset is, we need to walk the list of relocations and adjust any
1096 * relocations that point to the pool bo with the correct offset.
1097 */
1098 for (size_t i = 0; i < relocs->num_relocs; i++) {
1099 if (relocs->reloc_bos[i] == &pool->bo) {
1100 /* Adjust the delta value in the relocation to correctly
1101 * correspond to the new delta. Initially, this value may have
1102 * been negative (if treated as unsigned), but we trust in
1103 * uint32_t roll-over to fix that for us at this point.
1104 */
1105 relocs->relocs[i].delta += delta;
1106
1107 /* Since the delta has changed, we need to update the actual
1108 * relocated value with the new presumed value. This function
1109 * should only be called on batch buffers, so we know it isn't in
1110 * use by the GPU at the moment.
1111 */
1112 assert(relocs->relocs[i].offset < from_bo->size);
1113 write_reloc(pool->device, from_bo->map + relocs->relocs[i].offset,
1114 relocs->relocs[i].presumed_offset +
1115 relocs->relocs[i].delta, false);
1116 }
1117 }
1118 }
1119
1120 static void
1121 anv_reloc_list_apply(struct anv_device *device,
1122 struct anv_reloc_list *list,
1123 struct anv_bo *bo,
1124 bool always_relocate)
1125 {
1126 for (size_t i = 0; i < list->num_relocs; i++) {
1127 struct anv_bo *target_bo = list->reloc_bos[i];
1128 if (list->relocs[i].presumed_offset == target_bo->offset &&
1129 !always_relocate)
1130 continue;
1131
1132 void *p = bo->map + list->relocs[i].offset;
1133 write_reloc(device, p, target_bo->offset + list->relocs[i].delta, true);
1134 list->relocs[i].presumed_offset = target_bo->offset;
1135 }
1136 }
1137
1138 /**
1139 * This function applies the relocation for a command buffer and writes the
1140 * actual addresses into the buffers as per what we were told by the kernel on
1141 * the previous execbuf2 call. This should be safe to do because, for each
1142 * relocated address, we have two cases:
1143 *
1144 * 1) The target BO is inactive (as seen by the kernel). In this case, it is
1145 * not in use by the GPU so updating the address is 100% ok. It won't be
1146 * in-use by the GPU (from our context) again until the next execbuf2
1147 * happens. If the kernel decides to move it in the next execbuf2, it
1148 * will have to do the relocations itself, but that's ok because it should
1149 * have all of the information needed to do so.
1150 *
1151 * 2) The target BO is active (as seen by the kernel). In this case, it
1152 * hasn't moved since the last execbuffer2 call because GTT shuffling
1153 * *only* happens when the BO is idle. (From our perspective, it only
1154 * happens inside the execbuffer2 ioctl, but the shuffling may be
1155 * triggered by another ioctl, with full-ppgtt this is limited to only
1156 * execbuffer2 ioctls on the same context, or memory pressure.) Since the
1157 * target BO hasn't moved, our anv_bo::offset exactly matches the BO's GTT
1158 * address and the relocated value we are writing into the BO will be the
1159 * same as the value that is already there.
1160 *
1161 * There is also a possibility that the target BO is active but the exact
1162 * RENDER_SURFACE_STATE object we are writing the relocation into isn't in
1163 * use. In this case, the address currently in the RENDER_SURFACE_STATE
1164 * may be stale but it's still safe to write the relocation because that
1165 * particular RENDER_SURFACE_STATE object isn't in-use by the GPU and
1166 * won't be until the next execbuf2 call.
1167 *
1168 * By doing relocations on the CPU, we can tell the kernel that it doesn't
1169 * need to bother. We want to do this because the surface state buffer is
1170 * used by every command buffer so, if the kernel does the relocations, it
1171 * will always be busy and the kernel will always stall. This is also
1172 * probably the fastest mechanism for doing relocations since the kernel would
1173 * have to make a full copy of all the relocations lists.
1174 */
1175 static bool
1176 relocate_cmd_buffer(struct anv_cmd_buffer *cmd_buffer,
1177 struct anv_execbuf *exec)
1178 {
1179 static int userspace_relocs = -1;
1180 if (userspace_relocs < 0)
1181 userspace_relocs = env_var_as_boolean("ANV_USERSPACE_RELOCS", true);
1182 if (!userspace_relocs)
1183 return false;
1184
1185 /* First, we have to check to see whether or not we can even do the
1186 * relocation. New buffers which have never been submitted to the kernel
1187 * don't have a valid offset so we need to let the kernel do relocations so
1188 * that we can get offsets for them. On future execbuf2 calls, those
1189 * buffers will have offsets and we will be able to skip relocating.
1190 * Invalid offsets are indicated by anv_bo::offset == (uint64_t)-1.
1191 */
1192 for (uint32_t i = 0; i < exec->bo_count; i++) {
1193 if (exec->bos[i]->offset == (uint64_t)-1)
1194 return false;
1195 }
1196
1197 /* Since surface states are shared between command buffers and we don't
1198 * know what order they will be submitted to the kernel, we don't know
1199 * what address is actually written in the surface state object at any
1200 * given time. The only option is to always relocate them.
1201 */
1202 anv_reloc_list_apply(cmd_buffer->device, &cmd_buffer->surface_relocs,
1203 &cmd_buffer->device->surface_state_block_pool.bo,
1204 true /* always relocate surface states */);
1205
1206 /* Since we own all of the batch buffers, we know what values are stored
1207 * in the relocated addresses and only have to update them if the offsets
1208 * have changed.
1209 */
1210 struct anv_batch_bo **bbo;
1211 u_vector_foreach(bbo, &cmd_buffer->seen_bbos) {
1212 anv_reloc_list_apply(cmd_buffer->device,
1213 &(*bbo)->relocs, &(*bbo)->bo, false);
1214 }
1215
1216 for (uint32_t i = 0; i < exec->bo_count; i++)
1217 exec->objects[i].offset = exec->bos[i]->offset;
1218
1219 return true;
1220 }
1221
1222 VkResult
1223 anv_cmd_buffer_execbuf(struct anv_device *device,
1224 struct anv_cmd_buffer *cmd_buffer)
1225 {
1226 struct anv_batch *batch = &cmd_buffer->batch;
1227 struct anv_block_pool *ss_pool =
1228 &cmd_buffer->device->surface_state_block_pool;
1229
1230 struct anv_execbuf execbuf;
1231 anv_execbuf_init(&execbuf);
1232
1233 adjust_relocations_from_state_pool(ss_pool, &cmd_buffer->surface_relocs,
1234 cmd_buffer->last_ss_pool_center);
1235 anv_execbuf_add_bo(&execbuf, &ss_pool->bo, &cmd_buffer->surface_relocs,
1236 &cmd_buffer->pool->alloc);
1237
1238 /* First, we walk over all of the bos we've seen and add them and their
1239 * relocations to the validate list.
1240 */
1241 struct anv_batch_bo **bbo;
1242 u_vector_foreach(bbo, &cmd_buffer->seen_bbos) {
1243 adjust_relocations_to_state_pool(ss_pool, &(*bbo)->bo, &(*bbo)->relocs,
1244 cmd_buffer->last_ss_pool_center);
1245
1246 anv_execbuf_add_bo(&execbuf, &(*bbo)->bo, &(*bbo)->relocs,
1247 &cmd_buffer->pool->alloc);
1248 }
1249
1250 /* Now that we've adjusted all of the surface state relocations, we need to
1251 * record the surface state pool center so future executions of the command
1252 * buffer can adjust correctly.
1253 */
1254 cmd_buffer->last_ss_pool_center = ss_pool->center_bo_offset;
1255
1256 struct anv_batch_bo *first_batch_bo =
1257 list_first_entry(&cmd_buffer->batch_bos, struct anv_batch_bo, link);
1258
1259 /* The kernel requires that the last entry in the validation list be the
1260 * batch buffer to execute. We can simply swap the element
1261 * corresponding to the first batch_bo in the chain with the last
1262 * element in the list.
1263 */
1264 if (first_batch_bo->bo.index != execbuf.bo_count - 1) {
1265 uint32_t idx = first_batch_bo->bo.index;
1266 uint32_t last_idx = execbuf.bo_count - 1;
1267
1268 struct drm_i915_gem_exec_object2 tmp_obj = execbuf.objects[idx];
1269 assert(execbuf.bos[idx] == &first_batch_bo->bo);
1270
1271 execbuf.objects[idx] = execbuf.objects[last_idx];
1272 execbuf.bos[idx] = execbuf.bos[last_idx];
1273 execbuf.bos[idx]->index = idx;
1274
1275 execbuf.objects[last_idx] = tmp_obj;
1276 execbuf.bos[last_idx] = &first_batch_bo->bo;
1277 first_batch_bo->bo.index = last_idx;
1278 }
1279
1280 /* Now we go through and fixup all of the relocation lists to point to
1281 * the correct indices in the object array. We have to do this after we
1282 * reorder the list above as some of the indices may have changed.
1283 */
1284 u_vector_foreach(bbo, &cmd_buffer->seen_bbos)
1285 anv_cmd_buffer_process_relocs(cmd_buffer, &(*bbo)->relocs);
1286
1287 anv_cmd_buffer_process_relocs(cmd_buffer, &cmd_buffer->surface_relocs);
1288
1289 if (!cmd_buffer->device->info.has_llc) {
1290 __builtin_ia32_mfence();
1291 u_vector_foreach(bbo, &cmd_buffer->seen_bbos) {
1292 for (uint32_t i = 0; i < (*bbo)->length; i += CACHELINE_SIZE)
1293 __builtin_ia32_clflush((*bbo)->bo.map + i);
1294 }
1295 }
1296
1297 execbuf.execbuf = (struct drm_i915_gem_execbuffer2) {
1298 .buffers_ptr = (uintptr_t) execbuf.objects,
1299 .buffer_count = execbuf.bo_count,
1300 .batch_start_offset = 0,
1301 .batch_len = batch->next - batch->start,
1302 .cliprects_ptr = 0,
1303 .num_cliprects = 0,
1304 .DR1 = 0,
1305 .DR4 = 0,
1306 .flags = I915_EXEC_HANDLE_LUT | I915_EXEC_RENDER |
1307 I915_EXEC_CONSTANTS_REL_GENERAL,
1308 .rsvd1 = cmd_buffer->device->context_id,
1309 .rsvd2 = 0,
1310 };
1311
1312 if (relocate_cmd_buffer(cmd_buffer, &execbuf)) {
1313 /* If we were able to successfully relocate everything, tell the kernel
1314 * that it can skip doing relocations. The requirement for using
1315 * NO_RELOC is:
1316 *
1317 * 1) The addresses written in the objects must match the corresponding
1318 * reloc.presumed_offset which in turn must match the corresponding
1319 * execobject.offset.
1320 *
1321 * 2) To avoid stalling, execobject.offset should match the current
1322 * address of that object within the active context.
1323 *
1324 * In order to satisfy all of the invariants that make userspace
1325 * relocations to be safe (see relocate_cmd_buffer()), we need to
1326 * further ensure that the addresses we use match those used by the
1327 * kernel for the most recent execbuf2.
1328 *
1329 * The kernel may still choose to do relocations anyway if something has
1330 * moved in the GTT. In this case, the relocation list still needs to be
1331 * valid. All relocations on the batch buffers are already valid and
1332 * kept up-to-date. For surface state relocations, by applying the
1333 * relocations in relocate_cmd_buffer, we ensured that the address in
1334 * the RENDER_SURFACE_STATE matches presumed_offset, so it should be
1335 * safe for the kernel to relocate them as needed.
1336 */
1337 execbuf.execbuf.flags |= I915_EXEC_NO_RELOC;
1338 } else {
1339 /* In the case where we fall back to doing kernel relocations, we need
1340 * to ensure that the relocation list is valid. All relocations on the
1341 * batch buffers are already valid and kept up-to-date. Since surface
1342 * states are shared between command buffers and we don't know what
1343 * order they will be submitted to the kernel, we don't know what
1344 * address is actually written in the surface state object at any given
1345 * time. The only option is to set a bogus presumed offset and let the
1346 * kernel relocate them.
1347 */
1348 for (size_t i = 0; i < cmd_buffer->surface_relocs.num_relocs; i++)
1349 cmd_buffer->surface_relocs.relocs[i].presumed_offset = -1;
1350 }
1351
1352 VkResult result = anv_device_execbuf(device, &execbuf.execbuf, execbuf.bos);
1353
1354 anv_execbuf_finish(&execbuf, &cmd_buffer->pool->alloc);
1355
1356 return result;
1357 }