anv: Return VK_ERROR_DEVICE_LOST from anv_device_set_lost
[mesa.git] / src / intel / vulkan / anv_private.h
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 #ifndef ANV_PRIVATE_H
25 #define ANV_PRIVATE_H
26
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <stdbool.h>
30 #include <pthread.h>
31 #include <assert.h>
32 #include <stdint.h>
33 #include <i915_drm.h>
34
35 #ifdef HAVE_VALGRIND
36 #include <valgrind.h>
37 #include <memcheck.h>
38 #define VG(x) x
39 #ifndef NDEBUG
40 #define __gen_validate_value(x) VALGRIND_CHECK_MEM_IS_DEFINED(&(x), sizeof(x))
41 #endif
42 #else
43 #define VG(x)
44 #endif
45
46 #include "common/gen_clflush.h"
47 #include "common/gen_gem.h"
48 #include "dev/gen_device_info.h"
49 #include "blorp/blorp.h"
50 #include "compiler/brw_compiler.h"
51 #include "util/macros.h"
52 #include "util/hash_table.h"
53 #include "util/list.h"
54 #include "util/set.h"
55 #include "util/u_atomic.h"
56 #include "util/u_vector.h"
57 #include "util/u_math.h"
58 #include "util/vma.h"
59 #include "vk_alloc.h"
60 #include "vk_debug_report.h"
61
62 /* Pre-declarations needed for WSI entrypoints */
63 struct wl_surface;
64 struct wl_display;
65 typedef struct xcb_connection_t xcb_connection_t;
66 typedef uint32_t xcb_visualid_t;
67 typedef uint32_t xcb_window_t;
68
69 struct anv_buffer;
70 struct anv_buffer_view;
71 struct anv_image_view;
72 struct anv_instance;
73
74 struct gen_l3_config;
75
76 #include <vulkan/vulkan.h>
77 #include <vulkan/vulkan_intel.h>
78 #include <vulkan/vk_icd.h>
79 #include <vulkan/vk_android_native_buffer.h>
80
81 #include "anv_entrypoints.h"
82 #include "anv_extensions.h"
83 #include "isl/isl.h"
84
85 #include "common/gen_debug.h"
86 #include "common/intel_log.h"
87 #include "wsi_common.h"
88
89 /* anv Virtual Memory Layout
90 * =========================
91 *
92 * When the anv driver is determining the virtual graphics addresses of memory
93 * objects itself using the softpin mechanism, the following memory ranges
94 * will be used.
95 *
96 * Three special considerations to notice:
97 *
98 * (1) the dynamic state pool is located within the same 4 GiB as the low
99 * heap. This is to work around a VF cache issue described in a comment in
100 * anv_physical_device_init_heaps.
101 *
102 * (2) the binding table pool is located at lower addresses than the surface
103 * state pool, within a 4 GiB range. This allows surface state base addresses
104 * to cover both binding tables (16 bit offsets) and surface states (32 bit
105 * offsets).
106 *
107 * (3) the last 4 GiB of the address space is withheld from the high
108 * heap. Various hardware units will read past the end of an object for
109 * various reasons. This healthy margin prevents reads from wrapping around
110 * 48-bit addresses.
111 */
112 #define LOW_HEAP_MIN_ADDRESS 0x000000001000ULL /* 4 KiB */
113 #define LOW_HEAP_MAX_ADDRESS 0x0000bfffffffULL
114 #define DYNAMIC_STATE_POOL_MIN_ADDRESS 0x0000c0000000ULL /* 3 GiB */
115 #define DYNAMIC_STATE_POOL_MAX_ADDRESS 0x0000ffffffffULL
116 #define BINDING_TABLE_POOL_MIN_ADDRESS 0x000100000000ULL /* 4 GiB */
117 #define BINDING_TABLE_POOL_MAX_ADDRESS 0x00013fffffffULL
118 #define SURFACE_STATE_POOL_MIN_ADDRESS 0x000140000000ULL /* 5 GiB */
119 #define SURFACE_STATE_POOL_MAX_ADDRESS 0x00017fffffffULL
120 #define INSTRUCTION_STATE_POOL_MIN_ADDRESS 0x000180000000ULL /* 6 GiB */
121 #define INSTRUCTION_STATE_POOL_MAX_ADDRESS 0x0001bfffffffULL
122 #define HIGH_HEAP_MIN_ADDRESS 0x0001c0000000ULL /* 7 GiB */
123 #define HIGH_HEAP_MAX_ADDRESS 0xfffeffffffffULL
124
125 #define LOW_HEAP_SIZE \
126 (LOW_HEAP_MAX_ADDRESS - LOW_HEAP_MIN_ADDRESS + 1)
127 #define HIGH_HEAP_SIZE \
128 (HIGH_HEAP_MAX_ADDRESS - HIGH_HEAP_MIN_ADDRESS + 1)
129 #define DYNAMIC_STATE_POOL_SIZE \
130 (DYNAMIC_STATE_POOL_MAX_ADDRESS - DYNAMIC_STATE_POOL_MIN_ADDRESS + 1)
131 #define BINDING_TABLE_POOL_SIZE \
132 (BINDING_TABLE_POOL_MAX_ADDRESS - BINDING_TABLE_POOL_MIN_ADDRESS + 1)
133 #define SURFACE_STATE_POOL_SIZE \
134 (SURFACE_STATE_POOL_MAX_ADDRESS - SURFACE_STATE_POOL_MIN_ADDRESS + 1)
135 #define INSTRUCTION_STATE_POOL_SIZE \
136 (INSTRUCTION_STATE_POOL_MAX_ADDRESS - INSTRUCTION_STATE_POOL_MIN_ADDRESS + 1)
137
138 /* Allowing different clear colors requires us to perform a depth resolve at
139 * the end of certain render passes. This is because while slow clears store
140 * the clear color in the HiZ buffer, fast clears (without a resolve) don't.
141 * See the PRMs for examples describing when additional resolves would be
142 * necessary. To enable fast clears without requiring extra resolves, we set
143 * the clear value to a globally-defined one. We could allow different values
144 * if the user doesn't expect coherent data during or after a render passes
145 * (VK_ATTACHMENT_STORE_OP_DONT_CARE), but such users (aside from the CTS)
146 * don't seem to exist yet. In almost all Vulkan applications tested thus far,
147 * 1.0f seems to be the only value used. The only application that doesn't set
148 * this value does so through the usage of an seemingly uninitialized clear
149 * value.
150 */
151 #define ANV_HZ_FC_VAL 1.0f
152
153 #define MAX_VBS 28
154 #define MAX_SETS 8
155 #define MAX_RTS 8
156 #define MAX_VIEWPORTS 16
157 #define MAX_SCISSORS 16
158 #define MAX_PUSH_CONSTANTS_SIZE 128
159 #define MAX_DYNAMIC_BUFFERS 16
160 #define MAX_IMAGES 8
161 #define MAX_PUSH_DESCRIPTORS 32 /* Minimum requirement */
162
163 /* The kernel relocation API has a limitation of a 32-bit delta value
164 * applied to the address before it is written which, in spite of it being
165 * unsigned, is treated as signed . Because of the way that this maps to
166 * the Vulkan API, we cannot handle an offset into a buffer that does not
167 * fit into a signed 32 bits. The only mechanism we have for dealing with
168 * this at the moment is to limit all VkDeviceMemory objects to a maximum
169 * of 2GB each. The Vulkan spec allows us to do this:
170 *
171 * "Some platforms may have a limit on the maximum size of a single
172 * allocation. For example, certain systems may fail to create
173 * allocations with a size greater than or equal to 4GB. Such a limit is
174 * implementation-dependent, and if such a failure occurs then the error
175 * VK_ERROR_OUT_OF_DEVICE_MEMORY should be returned."
176 *
177 * We don't use vk_error here because it's not an error so much as an
178 * indication to the application that the allocation is too large.
179 */
180 #define MAX_MEMORY_ALLOCATION_SIZE (1ull << 31)
181
182 #define ANV_SVGS_VB_INDEX MAX_VBS
183 #define ANV_DRAWID_VB_INDEX (MAX_VBS + 1)
184
185 #define anv_printflike(a, b) __attribute__((__format__(__printf__, a, b)))
186
187 static inline uint32_t
188 align_down_npot_u32(uint32_t v, uint32_t a)
189 {
190 return v - (v % a);
191 }
192
193 static inline uint32_t
194 align_u32(uint32_t v, uint32_t a)
195 {
196 assert(a != 0 && a == (a & -a));
197 return (v + a - 1) & ~(a - 1);
198 }
199
200 static inline uint64_t
201 align_u64(uint64_t v, uint64_t a)
202 {
203 assert(a != 0 && a == (a & -a));
204 return (v + a - 1) & ~(a - 1);
205 }
206
207 static inline int32_t
208 align_i32(int32_t v, int32_t a)
209 {
210 assert(a != 0 && a == (a & -a));
211 return (v + a - 1) & ~(a - 1);
212 }
213
214 /** Alignment must be a power of 2. */
215 static inline bool
216 anv_is_aligned(uintmax_t n, uintmax_t a)
217 {
218 assert(a == (a & -a));
219 return (n & (a - 1)) == 0;
220 }
221
222 static inline uint32_t
223 anv_minify(uint32_t n, uint32_t levels)
224 {
225 if (unlikely(n == 0))
226 return 0;
227 else
228 return MAX2(n >> levels, 1);
229 }
230
231 static inline float
232 anv_clamp_f(float f, float min, float max)
233 {
234 assert(min < max);
235
236 if (f > max)
237 return max;
238 else if (f < min)
239 return min;
240 else
241 return f;
242 }
243
244 static inline bool
245 anv_clear_mask(uint32_t *inout_mask, uint32_t clear_mask)
246 {
247 if (*inout_mask & clear_mask) {
248 *inout_mask &= ~clear_mask;
249 return true;
250 } else {
251 return false;
252 }
253 }
254
255 static inline union isl_color_value
256 vk_to_isl_color(VkClearColorValue color)
257 {
258 return (union isl_color_value) {
259 .u32 = {
260 color.uint32[0],
261 color.uint32[1],
262 color.uint32[2],
263 color.uint32[3],
264 },
265 };
266 }
267
268 #define for_each_bit(b, dword) \
269 for (uint32_t __dword = (dword); \
270 (b) = __builtin_ffs(__dword) - 1, __dword; \
271 __dword &= ~(1 << (b)))
272
273 #define typed_memcpy(dest, src, count) ({ \
274 STATIC_ASSERT(sizeof(*src) == sizeof(*dest)); \
275 memcpy((dest), (src), (count) * sizeof(*(src))); \
276 })
277
278 /* Mapping from anv object to VkDebugReportObjectTypeEXT. New types need
279 * to be added here in order to utilize mapping in debug/error/perf macros.
280 */
281 #define REPORT_OBJECT_TYPE(o) \
282 __builtin_choose_expr ( \
283 __builtin_types_compatible_p (__typeof (o), struct anv_instance*), \
284 VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT, \
285 __builtin_choose_expr ( \
286 __builtin_types_compatible_p (__typeof (o), struct anv_physical_device*), \
287 VK_DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT, \
288 __builtin_choose_expr ( \
289 __builtin_types_compatible_p (__typeof (o), struct anv_device*), \
290 VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT, \
291 __builtin_choose_expr ( \
292 __builtin_types_compatible_p (__typeof (o), const struct anv_device*), \
293 VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT, \
294 __builtin_choose_expr ( \
295 __builtin_types_compatible_p (__typeof (o), struct anv_queue*), \
296 VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT, \
297 __builtin_choose_expr ( \
298 __builtin_types_compatible_p (__typeof (o), struct anv_semaphore*), \
299 VK_DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT, \
300 __builtin_choose_expr ( \
301 __builtin_types_compatible_p (__typeof (o), struct anv_cmd_buffer*), \
302 VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT, \
303 __builtin_choose_expr ( \
304 __builtin_types_compatible_p (__typeof (o), struct anv_fence*), \
305 VK_DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT, \
306 __builtin_choose_expr ( \
307 __builtin_types_compatible_p (__typeof (o), struct anv_device_memory*), \
308 VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT, \
309 __builtin_choose_expr ( \
310 __builtin_types_compatible_p (__typeof (o), struct anv_buffer*), \
311 VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT, \
312 __builtin_choose_expr ( \
313 __builtin_types_compatible_p (__typeof (o), struct anv_image*), \
314 VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT, \
315 __builtin_choose_expr ( \
316 __builtin_types_compatible_p (__typeof (o), const struct anv_image*), \
317 VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT, \
318 __builtin_choose_expr ( \
319 __builtin_types_compatible_p (__typeof (o), struct anv_event*), \
320 VK_DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT, \
321 __builtin_choose_expr ( \
322 __builtin_types_compatible_p (__typeof (o), struct anv_query_pool*), \
323 VK_DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT, \
324 __builtin_choose_expr ( \
325 __builtin_types_compatible_p (__typeof (o), struct anv_buffer_view*), \
326 VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT, \
327 __builtin_choose_expr ( \
328 __builtin_types_compatible_p (__typeof (o), struct anv_image_view*), \
329 VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT, \
330 __builtin_choose_expr ( \
331 __builtin_types_compatible_p (__typeof (o), struct anv_shader_module*), \
332 VK_DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT, \
333 __builtin_choose_expr ( \
334 __builtin_types_compatible_p (__typeof (o), struct anv_pipeline_cache*), \
335 VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT, \
336 __builtin_choose_expr ( \
337 __builtin_types_compatible_p (__typeof (o), struct anv_pipeline_layout*), \
338 VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT, \
339 __builtin_choose_expr ( \
340 __builtin_types_compatible_p (__typeof (o), struct anv_render_pass*), \
341 VK_DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT, \
342 __builtin_choose_expr ( \
343 __builtin_types_compatible_p (__typeof (o), struct anv_pipeline*), \
344 VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT, \
345 __builtin_choose_expr ( \
346 __builtin_types_compatible_p (__typeof (o), struct anv_descriptor_set_layout*), \
347 VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT, \
348 __builtin_choose_expr ( \
349 __builtin_types_compatible_p (__typeof (o), struct anv_sampler*), \
350 VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT, \
351 __builtin_choose_expr ( \
352 __builtin_types_compatible_p (__typeof (o), struct anv_descriptor_pool*), \
353 VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT, \
354 __builtin_choose_expr ( \
355 __builtin_types_compatible_p (__typeof (o), struct anv_descriptor_set*), \
356 VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT, \
357 __builtin_choose_expr ( \
358 __builtin_types_compatible_p (__typeof (o), struct anv_framebuffer*), \
359 VK_DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT, \
360 __builtin_choose_expr ( \
361 __builtin_types_compatible_p (__typeof (o), struct anv_cmd_pool*), \
362 VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT, \
363 __builtin_choose_expr ( \
364 __builtin_types_compatible_p (__typeof (o), struct anv_surface*), \
365 VK_DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT, \
366 __builtin_choose_expr ( \
367 __builtin_types_compatible_p (__typeof (o), struct wsi_swapchain*), \
368 VK_DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT, \
369 __builtin_choose_expr ( \
370 __builtin_types_compatible_p (__typeof (o), struct vk_debug_callback*), \
371 VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT_EXT, \
372 __builtin_choose_expr ( \
373 __builtin_types_compatible_p (__typeof (o), void*), \
374 VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, \
375 /* The void expression results in a compile-time error \
376 when assigning the result to something. */ \
377 (void)0)))))))))))))))))))))))))))))))
378
379 /* Whenever we generate an error, pass it through this function. Useful for
380 * debugging, where we can break on it. Only call at error site, not when
381 * propagating errors. Might be useful to plug in a stack trace here.
382 */
383
384 VkResult __vk_errorv(struct anv_instance *instance, const void *object,
385 VkDebugReportObjectTypeEXT type, VkResult error,
386 const char *file, int line, const char *format,
387 va_list args);
388
389 VkResult __vk_errorf(struct anv_instance *instance, const void *object,
390 VkDebugReportObjectTypeEXT type, VkResult error,
391 const char *file, int line, const char *format, ...);
392
393 #ifdef DEBUG
394 #define vk_error(error) __vk_errorf(NULL, NULL,\
395 VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT,\
396 error, __FILE__, __LINE__, NULL)
397 #define vk_errorv(instance, obj, error, format, args)\
398 __vk_errorv(instance, obj, REPORT_OBJECT_TYPE(obj), error,\
399 __FILE__, __LINE__, format, args)
400 #define vk_errorf(instance, obj, error, format, ...)\
401 __vk_errorf(instance, obj, REPORT_OBJECT_TYPE(obj), error,\
402 __FILE__, __LINE__, format, ## __VA_ARGS__)
403 #else
404 #define vk_error(error) error
405 #define vk_errorf(instance, obj, error, format, ...) error
406 #endif
407
408 /**
409 * Warn on ignored extension structs.
410 *
411 * The Vulkan spec requires us to ignore unsupported or unknown structs in
412 * a pNext chain. In debug mode, emitting warnings for ignored structs may
413 * help us discover structs that we should not have ignored.
414 *
415 *
416 * From the Vulkan 1.0.38 spec:
417 *
418 * Any component of the implementation (the loader, any enabled layers,
419 * and drivers) must skip over, without processing (other than reading the
420 * sType and pNext members) any chained structures with sType values not
421 * defined by extensions supported by that component.
422 */
423 #define anv_debug_ignored_stype(sType) \
424 intel_logd("%s: ignored VkStructureType %u\n", __func__, (sType))
425
426 void __anv_perf_warn(struct anv_instance *instance, const void *object,
427 VkDebugReportObjectTypeEXT type, const char *file,
428 int line, const char *format, ...)
429 anv_printflike(6, 7);
430 void anv_loge(const char *format, ...) anv_printflike(1, 2);
431 void anv_loge_v(const char *format, va_list va);
432
433 /**
434 * Print a FINISHME message, including its source location.
435 */
436 #define anv_finishme(format, ...) \
437 do { \
438 static bool reported = false; \
439 if (!reported) { \
440 intel_logw("%s:%d: FINISHME: " format, __FILE__, __LINE__, \
441 ##__VA_ARGS__); \
442 reported = true; \
443 } \
444 } while (0)
445
446 /**
447 * Print a perf warning message. Set INTEL_DEBUG=perf to see these.
448 */
449 #define anv_perf_warn(instance, obj, format, ...) \
450 do { \
451 static bool reported = false; \
452 if (!reported && unlikely(INTEL_DEBUG & DEBUG_PERF)) { \
453 __anv_perf_warn(instance, obj, REPORT_OBJECT_TYPE(obj), __FILE__, __LINE__,\
454 format, ##__VA_ARGS__); \
455 reported = true; \
456 } \
457 } while (0)
458
459 /* A non-fatal assert. Useful for debugging. */
460 #ifdef DEBUG
461 #define anv_assert(x) ({ \
462 if (unlikely(!(x))) \
463 intel_loge("%s:%d ASSERT: %s", __FILE__, __LINE__, #x); \
464 })
465 #else
466 #define anv_assert(x)
467 #endif
468
469 /* A multi-pointer allocator
470 *
471 * When copying data structures from the user (such as a render pass), it's
472 * common to need to allocate data for a bunch of different things. Instead
473 * of doing several allocations and having to handle all of the error checking
474 * that entails, it can be easier to do a single allocation. This struct
475 * helps facilitate that. The intended usage looks like this:
476 *
477 * ANV_MULTIALLOC(ma)
478 * anv_multialloc_add(&ma, &main_ptr, 1);
479 * anv_multialloc_add(&ma, &substruct1, substruct1Count);
480 * anv_multialloc_add(&ma, &substruct2, substruct2Count);
481 *
482 * if (!anv_multialloc_alloc(&ma, pAllocator, VK_ALLOCATION_SCOPE_FOO))
483 * return vk_error(VK_ERROR_OUT_OF_HOST_MEORY);
484 */
485 struct anv_multialloc {
486 size_t size;
487 size_t align;
488
489 uint32_t ptr_count;
490 void **ptrs[8];
491 };
492
493 #define ANV_MULTIALLOC_INIT \
494 ((struct anv_multialloc) { 0, })
495
496 #define ANV_MULTIALLOC(_name) \
497 struct anv_multialloc _name = ANV_MULTIALLOC_INIT
498
499 __attribute__((always_inline))
500 static inline void
501 _anv_multialloc_add(struct anv_multialloc *ma,
502 void **ptr, size_t size, size_t align)
503 {
504 size_t offset = align_u64(ma->size, align);
505 ma->size = offset + size;
506 ma->align = MAX2(ma->align, align);
507
508 /* Store the offset in the pointer. */
509 *ptr = (void *)(uintptr_t)offset;
510
511 assert(ma->ptr_count < ARRAY_SIZE(ma->ptrs));
512 ma->ptrs[ma->ptr_count++] = ptr;
513 }
514
515 #define anv_multialloc_add_size(_ma, _ptr, _size) \
516 _anv_multialloc_add((_ma), (void **)(_ptr), (_size), __alignof__(**(_ptr)))
517
518 #define anv_multialloc_add(_ma, _ptr, _count) \
519 anv_multialloc_add_size(_ma, _ptr, (_count) * sizeof(**(_ptr)));
520
521 __attribute__((always_inline))
522 static inline void *
523 anv_multialloc_alloc(struct anv_multialloc *ma,
524 const VkAllocationCallbacks *alloc,
525 VkSystemAllocationScope scope)
526 {
527 void *ptr = vk_alloc(alloc, ma->size, ma->align, scope);
528 if (!ptr)
529 return NULL;
530
531 /* Fill out each of the pointers with their final value.
532 *
533 * for (uint32_t i = 0; i < ma->ptr_count; i++)
534 * *ma->ptrs[i] = ptr + (uintptr_t)*ma->ptrs[i];
535 *
536 * Unfortunately, even though ma->ptr_count is basically guaranteed to be a
537 * constant, GCC is incapable of figuring this out and unrolling the loop
538 * so we have to give it a little help.
539 */
540 STATIC_ASSERT(ARRAY_SIZE(ma->ptrs) == 8);
541 #define _ANV_MULTIALLOC_UPDATE_POINTER(_i) \
542 if ((_i) < ma->ptr_count) \
543 *ma->ptrs[_i] = ptr + (uintptr_t)*ma->ptrs[_i]
544 _ANV_MULTIALLOC_UPDATE_POINTER(0);
545 _ANV_MULTIALLOC_UPDATE_POINTER(1);
546 _ANV_MULTIALLOC_UPDATE_POINTER(2);
547 _ANV_MULTIALLOC_UPDATE_POINTER(3);
548 _ANV_MULTIALLOC_UPDATE_POINTER(4);
549 _ANV_MULTIALLOC_UPDATE_POINTER(5);
550 _ANV_MULTIALLOC_UPDATE_POINTER(6);
551 _ANV_MULTIALLOC_UPDATE_POINTER(7);
552 #undef _ANV_MULTIALLOC_UPDATE_POINTER
553
554 return ptr;
555 }
556
557 __attribute__((always_inline))
558 static inline void *
559 anv_multialloc_alloc2(struct anv_multialloc *ma,
560 const VkAllocationCallbacks *parent_alloc,
561 const VkAllocationCallbacks *alloc,
562 VkSystemAllocationScope scope)
563 {
564 return anv_multialloc_alloc(ma, alloc ? alloc : parent_alloc, scope);
565 }
566
567 /* Extra ANV-defined BO flags which won't be passed to the kernel */
568 #define ANV_BO_EXTERNAL (1ull << 31)
569 #define ANV_BO_FLAG_MASK (1ull << 31)
570
571 struct anv_bo {
572 uint32_t gem_handle;
573
574 /* Index into the current validation list. This is used by the
575 * validation list building alrogithm to track which buffers are already
576 * in the validation list so that we can ensure uniqueness.
577 */
578 uint32_t index;
579
580 /* Last known offset. This value is provided by the kernel when we
581 * execbuf and is used as the presumed offset for the next bunch of
582 * relocations.
583 */
584 uint64_t offset;
585
586 uint64_t size;
587 void *map;
588
589 /** Flags to pass to the kernel through drm_i915_exec_object2::flags */
590 uint32_t flags;
591 };
592
593 static inline void
594 anv_bo_init(struct anv_bo *bo, uint32_t gem_handle, uint64_t size)
595 {
596 bo->gem_handle = gem_handle;
597 bo->index = 0;
598 bo->offset = -1;
599 bo->size = size;
600 bo->map = NULL;
601 bo->flags = 0;
602 }
603
604 /* Represents a lock-free linked list of "free" things. This is used by
605 * both the block pool and the state pools. Unfortunately, in order to
606 * solve the ABA problem, we can't use a single uint32_t head.
607 */
608 union anv_free_list {
609 struct {
610 int32_t offset;
611
612 /* A simple count that is incremented every time the head changes. */
613 uint32_t count;
614 };
615 uint64_t u64;
616 };
617
618 #define ANV_FREE_LIST_EMPTY ((union anv_free_list) { { 1, 0 } })
619
620 struct anv_block_state {
621 union {
622 struct {
623 uint32_t next;
624 uint32_t end;
625 };
626 uint64_t u64;
627 };
628 };
629
630 struct anv_block_pool {
631 struct anv_device *device;
632
633 uint64_t bo_flags;
634
635 struct anv_bo bo;
636
637 /* The address where the start of the pool is pinned. The various bos that
638 * are created as the pool grows will have addresses in the range
639 * [start_address, start_address + BLOCK_POOL_MEMFD_SIZE).
640 */
641 uint64_t start_address;
642
643 /* The offset from the start of the bo to the "center" of the block
644 * pool. Pointers to allocated blocks are given by
645 * bo.map + center_bo_offset + offsets.
646 */
647 uint32_t center_bo_offset;
648
649 /* Current memory map of the block pool. This pointer may or may not
650 * point to the actual beginning of the block pool memory. If
651 * anv_block_pool_alloc_back has ever been called, then this pointer
652 * will point to the "center" position of the buffer and all offsets
653 * (negative or positive) given out by the block pool alloc functions
654 * will be valid relative to this pointer.
655 *
656 * In particular, map == bo.map + center_offset
657 */
658 void *map;
659 int fd;
660
661 /**
662 * Array of mmaps and gem handles owned by the block pool, reclaimed when
663 * the block pool is destroyed.
664 */
665 struct u_vector mmap_cleanups;
666
667 struct anv_block_state state;
668
669 struct anv_block_state back_state;
670 };
671
672 /* Block pools are backed by a fixed-size 1GB memfd */
673 #define BLOCK_POOL_MEMFD_SIZE (1ul << 30)
674
675 /* The center of the block pool is also the middle of the memfd. This may
676 * change in the future if we decide differently for some reason.
677 */
678 #define BLOCK_POOL_MEMFD_CENTER (BLOCK_POOL_MEMFD_SIZE / 2)
679
680 static inline uint32_t
681 anv_block_pool_size(struct anv_block_pool *pool)
682 {
683 return pool->state.end + pool->back_state.end;
684 }
685
686 struct anv_state {
687 int32_t offset;
688 uint32_t alloc_size;
689 void *map;
690 };
691
692 #define ANV_STATE_NULL ((struct anv_state) { .alloc_size = 0 })
693
694 struct anv_fixed_size_state_pool {
695 union anv_free_list free_list;
696 struct anv_block_state block;
697 };
698
699 #define ANV_MIN_STATE_SIZE_LOG2 6
700 #define ANV_MAX_STATE_SIZE_LOG2 20
701
702 #define ANV_STATE_BUCKETS (ANV_MAX_STATE_SIZE_LOG2 - ANV_MIN_STATE_SIZE_LOG2 + 1)
703
704 struct anv_state_pool {
705 struct anv_block_pool block_pool;
706
707 /* The size of blocks which will be allocated from the block pool */
708 uint32_t block_size;
709
710 /** Free list for "back" allocations */
711 union anv_free_list back_alloc_free_list;
712
713 struct anv_fixed_size_state_pool buckets[ANV_STATE_BUCKETS];
714 };
715
716 struct anv_state_stream_block;
717
718 struct anv_state_stream {
719 struct anv_state_pool *state_pool;
720
721 /* The size of blocks to allocate from the state pool */
722 uint32_t block_size;
723
724 /* Current block we're allocating from */
725 struct anv_state block;
726
727 /* Offset into the current block at which to allocate the next state */
728 uint32_t next;
729
730 /* List of all blocks allocated from this pool */
731 struct anv_state_stream_block *block_list;
732 };
733
734 /* The block_pool functions exported for testing only. The block pool should
735 * only be used via a state pool (see below).
736 */
737 VkResult anv_block_pool_init(struct anv_block_pool *pool,
738 struct anv_device *device,
739 uint64_t start_address,
740 uint32_t initial_size,
741 uint64_t bo_flags);
742 void anv_block_pool_finish(struct anv_block_pool *pool);
743 int32_t anv_block_pool_alloc(struct anv_block_pool *pool,
744 uint32_t block_size);
745 int32_t anv_block_pool_alloc_back(struct anv_block_pool *pool,
746 uint32_t block_size);
747
748 VkResult anv_state_pool_init(struct anv_state_pool *pool,
749 struct anv_device *device,
750 uint64_t start_address,
751 uint32_t block_size,
752 uint64_t bo_flags);
753 void anv_state_pool_finish(struct anv_state_pool *pool);
754 struct anv_state anv_state_pool_alloc(struct anv_state_pool *pool,
755 uint32_t state_size, uint32_t alignment);
756 struct anv_state anv_state_pool_alloc_back(struct anv_state_pool *pool);
757 void anv_state_pool_free(struct anv_state_pool *pool, struct anv_state state);
758 void anv_state_stream_init(struct anv_state_stream *stream,
759 struct anv_state_pool *state_pool,
760 uint32_t block_size);
761 void anv_state_stream_finish(struct anv_state_stream *stream);
762 struct anv_state anv_state_stream_alloc(struct anv_state_stream *stream,
763 uint32_t size, uint32_t alignment);
764
765 /**
766 * Implements a pool of re-usable BOs. The interface is identical to that
767 * of block_pool except that each block is its own BO.
768 */
769 struct anv_bo_pool {
770 struct anv_device *device;
771
772 uint64_t bo_flags;
773
774 void *free_list[16];
775 };
776
777 void anv_bo_pool_init(struct anv_bo_pool *pool, struct anv_device *device,
778 uint64_t bo_flags);
779 void anv_bo_pool_finish(struct anv_bo_pool *pool);
780 VkResult anv_bo_pool_alloc(struct anv_bo_pool *pool, struct anv_bo *bo,
781 uint32_t size);
782 void anv_bo_pool_free(struct anv_bo_pool *pool, const struct anv_bo *bo);
783
784 struct anv_scratch_bo {
785 bool exists;
786 struct anv_bo bo;
787 };
788
789 struct anv_scratch_pool {
790 /* Indexed by Per-Thread Scratch Space number (the hardware value) and stage */
791 struct anv_scratch_bo bos[16][MESA_SHADER_STAGES];
792 };
793
794 void anv_scratch_pool_init(struct anv_device *device,
795 struct anv_scratch_pool *pool);
796 void anv_scratch_pool_finish(struct anv_device *device,
797 struct anv_scratch_pool *pool);
798 struct anv_bo *anv_scratch_pool_alloc(struct anv_device *device,
799 struct anv_scratch_pool *pool,
800 gl_shader_stage stage,
801 unsigned per_thread_scratch);
802
803 /** Implements a BO cache that ensures a 1-1 mapping of GEM BOs to anv_bos */
804 struct anv_bo_cache {
805 struct hash_table *bo_map;
806 pthread_mutex_t mutex;
807 };
808
809 VkResult anv_bo_cache_init(struct anv_bo_cache *cache);
810 void anv_bo_cache_finish(struct anv_bo_cache *cache);
811 VkResult anv_bo_cache_alloc(struct anv_device *device,
812 struct anv_bo_cache *cache,
813 uint64_t size, uint64_t bo_flags,
814 struct anv_bo **bo);
815 VkResult anv_bo_cache_import(struct anv_device *device,
816 struct anv_bo_cache *cache,
817 int fd, uint64_t bo_flags,
818 struct anv_bo **bo);
819 VkResult anv_bo_cache_export(struct anv_device *device,
820 struct anv_bo_cache *cache,
821 struct anv_bo *bo_in, int *fd_out);
822 void anv_bo_cache_release(struct anv_device *device,
823 struct anv_bo_cache *cache,
824 struct anv_bo *bo);
825
826 struct anv_memory_type {
827 /* Standard bits passed on to the client */
828 VkMemoryPropertyFlags propertyFlags;
829 uint32_t heapIndex;
830
831 /* Driver-internal book-keeping */
832 VkBufferUsageFlags valid_buffer_usage;
833 };
834
835 struct anv_memory_heap {
836 /* Standard bits passed on to the client */
837 VkDeviceSize size;
838 VkMemoryHeapFlags flags;
839
840 /* Driver-internal book-keeping */
841 bool supports_48bit_addresses;
842 };
843
844 struct anv_physical_device {
845 VK_LOADER_DATA _loader_data;
846
847 struct anv_instance * instance;
848 uint32_t chipset_id;
849 bool no_hw;
850 char path[20];
851 const char * name;
852 struct {
853 uint16_t domain;
854 uint8_t bus;
855 uint8_t device;
856 uint8_t function;
857 } pci_info;
858 struct gen_device_info info;
859 /** Amount of "GPU memory" we want to advertise
860 *
861 * Clearly, this value is bogus since Intel is a UMA architecture. On
862 * gen7 platforms, we are limited by GTT size unless we want to implement
863 * fine-grained tracking and GTT splitting. On Broadwell and above we are
864 * practically unlimited. However, we will never report more than 3/4 of
865 * the total system ram to try and avoid running out of RAM.
866 */
867 bool supports_48bit_addresses;
868 struct brw_compiler * compiler;
869 struct isl_device isl_dev;
870 int cmd_parser_version;
871 bool has_exec_async;
872 bool has_exec_capture;
873 bool has_exec_fence;
874 bool has_syncobj;
875 bool has_syncobj_wait;
876 bool has_context_priority;
877 bool use_softpin;
878 bool has_context_isolation;
879
880 struct anv_device_extension_table supported_extensions;
881
882 uint32_t eu_total;
883 uint32_t subslice_total;
884
885 struct {
886 uint32_t type_count;
887 struct anv_memory_type types[VK_MAX_MEMORY_TYPES];
888 uint32_t heap_count;
889 struct anv_memory_heap heaps[VK_MAX_MEMORY_HEAPS];
890 } memory;
891
892 uint8_t driver_build_sha1[20];
893 uint8_t pipeline_cache_uuid[VK_UUID_SIZE];
894 uint8_t driver_uuid[VK_UUID_SIZE];
895 uint8_t device_uuid[VK_UUID_SIZE];
896
897 struct disk_cache * disk_cache;
898
899 struct wsi_device wsi_device;
900 int local_fd;
901 int master_fd;
902 };
903
904 struct anv_app_info {
905 const char* app_name;
906 uint32_t app_version;
907 const char* engine_name;
908 uint32_t engine_version;
909 uint32_t api_version;
910 };
911
912 struct anv_instance {
913 VK_LOADER_DATA _loader_data;
914
915 VkAllocationCallbacks alloc;
916
917 struct anv_app_info app_info;
918
919 struct anv_instance_extension_table enabled_extensions;
920 struct anv_instance_dispatch_table dispatch;
921 struct anv_device_dispatch_table device_dispatch;
922
923 int physicalDeviceCount;
924 struct anv_physical_device physicalDevice;
925
926 bool pipeline_cache_enabled;
927
928 struct vk_debug_report_instance debug_report_callbacks;
929 };
930
931 VkResult anv_init_wsi(struct anv_physical_device *physical_device);
932 void anv_finish_wsi(struct anv_physical_device *physical_device);
933
934 uint32_t anv_physical_device_api_version(struct anv_physical_device *dev);
935 bool anv_physical_device_extension_supported(struct anv_physical_device *dev,
936 const char *name);
937
938 struct anv_queue {
939 VK_LOADER_DATA _loader_data;
940
941 struct anv_device * device;
942
943 VkDeviceQueueCreateFlags flags;
944 };
945
946 struct anv_pipeline_cache {
947 struct anv_device * device;
948 pthread_mutex_t mutex;
949
950 struct hash_table * cache;
951 };
952
953 struct anv_pipeline_bind_map;
954
955 void anv_pipeline_cache_init(struct anv_pipeline_cache *cache,
956 struct anv_device *device,
957 bool cache_enabled);
958 void anv_pipeline_cache_finish(struct anv_pipeline_cache *cache);
959
960 struct anv_shader_bin *
961 anv_pipeline_cache_search(struct anv_pipeline_cache *cache,
962 const void *key, uint32_t key_size);
963 struct anv_shader_bin *
964 anv_pipeline_cache_upload_kernel(struct anv_pipeline_cache *cache,
965 const void *key_data, uint32_t key_size,
966 const void *kernel_data, uint32_t kernel_size,
967 const void *constant_data,
968 uint32_t constant_data_size,
969 const struct brw_stage_prog_data *prog_data,
970 uint32_t prog_data_size,
971 const struct anv_pipeline_bind_map *bind_map);
972
973 struct anv_shader_bin *
974 anv_device_search_for_kernel(struct anv_device *device,
975 struct anv_pipeline_cache *cache,
976 const void *key_data, uint32_t key_size);
977
978 struct anv_shader_bin *
979 anv_device_upload_kernel(struct anv_device *device,
980 struct anv_pipeline_cache *cache,
981 const void *key_data, uint32_t key_size,
982 const void *kernel_data, uint32_t kernel_size,
983 const void *constant_data,
984 uint32_t constant_data_size,
985 const struct brw_stage_prog_data *prog_data,
986 uint32_t prog_data_size,
987 const struct anv_pipeline_bind_map *bind_map);
988
989 struct anv_device {
990 VK_LOADER_DATA _loader_data;
991
992 VkAllocationCallbacks alloc;
993
994 struct anv_instance * instance;
995 uint32_t chipset_id;
996 bool no_hw;
997 struct gen_device_info info;
998 struct isl_device isl_dev;
999 int context_id;
1000 int fd;
1001 bool can_chain_batches;
1002 bool robust_buffer_access;
1003 struct anv_device_extension_table enabled_extensions;
1004 struct anv_device_dispatch_table dispatch;
1005
1006 pthread_mutex_t vma_mutex;
1007 struct util_vma_heap vma_lo;
1008 struct util_vma_heap vma_hi;
1009 uint64_t vma_lo_available;
1010 uint64_t vma_hi_available;
1011
1012 struct anv_bo_pool batch_bo_pool;
1013
1014 struct anv_bo_cache bo_cache;
1015
1016 struct anv_state_pool dynamic_state_pool;
1017 struct anv_state_pool instruction_state_pool;
1018 struct anv_state_pool binding_table_pool;
1019 struct anv_state_pool surface_state_pool;
1020
1021 struct anv_bo workaround_bo;
1022 struct anv_bo trivial_batch_bo;
1023 struct anv_bo hiz_clear_bo;
1024
1025 struct anv_pipeline_cache default_pipeline_cache;
1026 struct blorp_context blorp;
1027
1028 struct anv_state border_colors;
1029
1030 struct anv_queue queue;
1031
1032 struct anv_scratch_pool scratch_pool;
1033
1034 uint32_t default_mocs;
1035 uint32_t external_mocs;
1036
1037 pthread_mutex_t mutex;
1038 pthread_cond_t queue_submit;
1039 bool _lost;
1040 };
1041
1042 static inline struct anv_state_pool *
1043 anv_binding_table_pool(struct anv_device *device)
1044 {
1045 if (device->instance->physicalDevice.use_softpin)
1046 return &device->binding_table_pool;
1047 else
1048 return &device->surface_state_pool;
1049 }
1050
1051 static inline struct anv_state
1052 anv_binding_table_pool_alloc(struct anv_device *device) {
1053 if (device->instance->physicalDevice.use_softpin)
1054 return anv_state_pool_alloc(&device->binding_table_pool,
1055 device->binding_table_pool.block_size, 0);
1056 else
1057 return anv_state_pool_alloc_back(&device->surface_state_pool);
1058 }
1059
1060 static inline void
1061 anv_binding_table_pool_free(struct anv_device *device, struct anv_state state) {
1062 anv_state_pool_free(anv_binding_table_pool(device), state);
1063 }
1064
1065 static inline uint32_t
1066 anv_mocs_for_bo(const struct anv_device *device, const struct anv_bo *bo)
1067 {
1068 if (bo->flags & ANV_BO_EXTERNAL)
1069 return device->external_mocs;
1070 else
1071 return device->default_mocs;
1072 }
1073
1074 static void inline
1075 anv_state_flush(struct anv_device *device, struct anv_state state)
1076 {
1077 if (device->info.has_llc)
1078 return;
1079
1080 gen_flush_range(state.map, state.alloc_size);
1081 }
1082
1083 void anv_device_init_blorp(struct anv_device *device);
1084 void anv_device_finish_blorp(struct anv_device *device);
1085
1086 VkResult _anv_device_set_lost(struct anv_device *device,
1087 const char *file, int line,
1088 const char *msg, ...);
1089 #define anv_device_set_lost(dev, ...) \
1090 _anv_device_set_lost(dev, __FILE__, __LINE__, __VA_ARGS__)
1091
1092 static inline bool
1093 anv_device_is_lost(struct anv_device *device)
1094 {
1095 return unlikely(device->_lost);
1096 }
1097
1098 VkResult anv_device_execbuf(struct anv_device *device,
1099 struct drm_i915_gem_execbuffer2 *execbuf,
1100 struct anv_bo **execbuf_bos);
1101 VkResult anv_device_query_status(struct anv_device *device);
1102 VkResult anv_device_bo_busy(struct anv_device *device, struct anv_bo *bo);
1103 VkResult anv_device_wait(struct anv_device *device, struct anv_bo *bo,
1104 int64_t timeout);
1105
1106 void* anv_gem_mmap(struct anv_device *device,
1107 uint32_t gem_handle, uint64_t offset, uint64_t size, uint32_t flags);
1108 void anv_gem_munmap(void *p, uint64_t size);
1109 uint32_t anv_gem_create(struct anv_device *device, uint64_t size);
1110 void anv_gem_close(struct anv_device *device, uint32_t gem_handle);
1111 uint32_t anv_gem_userptr(struct anv_device *device, void *mem, size_t size);
1112 int anv_gem_busy(struct anv_device *device, uint32_t gem_handle);
1113 int anv_gem_wait(struct anv_device *device, uint32_t gem_handle, int64_t *timeout_ns);
1114 int anv_gem_execbuffer(struct anv_device *device,
1115 struct drm_i915_gem_execbuffer2 *execbuf);
1116 int anv_gem_set_tiling(struct anv_device *device, uint32_t gem_handle,
1117 uint32_t stride, uint32_t tiling);
1118 int anv_gem_create_context(struct anv_device *device);
1119 bool anv_gem_has_context_priority(int fd);
1120 int anv_gem_destroy_context(struct anv_device *device, int context);
1121 int anv_gem_set_context_param(int fd, int context, uint32_t param,
1122 uint64_t value);
1123 int anv_gem_get_context_param(int fd, int context, uint32_t param,
1124 uint64_t *value);
1125 int anv_gem_get_param(int fd, uint32_t param);
1126 int anv_gem_get_tiling(struct anv_device *device, uint32_t gem_handle);
1127 bool anv_gem_get_bit6_swizzle(int fd, uint32_t tiling);
1128 int anv_gem_get_aperture(int fd, uint64_t *size);
1129 int anv_gem_gpu_get_reset_stats(struct anv_device *device,
1130 uint32_t *active, uint32_t *pending);
1131 int anv_gem_handle_to_fd(struct anv_device *device, uint32_t gem_handle);
1132 int anv_gem_reg_read(struct anv_device *device,
1133 uint32_t offset, uint64_t *result);
1134 uint32_t anv_gem_fd_to_handle(struct anv_device *device, int fd);
1135 int anv_gem_set_caching(struct anv_device *device, uint32_t gem_handle, uint32_t caching);
1136 int anv_gem_set_domain(struct anv_device *device, uint32_t gem_handle,
1137 uint32_t read_domains, uint32_t write_domain);
1138 int anv_gem_sync_file_merge(struct anv_device *device, int fd1, int fd2);
1139 uint32_t anv_gem_syncobj_create(struct anv_device *device, uint32_t flags);
1140 void anv_gem_syncobj_destroy(struct anv_device *device, uint32_t handle);
1141 int anv_gem_syncobj_handle_to_fd(struct anv_device *device, uint32_t handle);
1142 uint32_t anv_gem_syncobj_fd_to_handle(struct anv_device *device, int fd);
1143 int anv_gem_syncobj_export_sync_file(struct anv_device *device,
1144 uint32_t handle);
1145 int anv_gem_syncobj_import_sync_file(struct anv_device *device,
1146 uint32_t handle, int fd);
1147 void anv_gem_syncobj_reset(struct anv_device *device, uint32_t handle);
1148 bool anv_gem_supports_syncobj_wait(int fd);
1149 int anv_gem_syncobj_wait(struct anv_device *device,
1150 uint32_t *handles, uint32_t num_handles,
1151 int64_t abs_timeout_ns, bool wait_all);
1152
1153 bool anv_vma_alloc(struct anv_device *device, struct anv_bo *bo);
1154 void anv_vma_free(struct anv_device *device, struct anv_bo *bo);
1155
1156 VkResult anv_bo_init_new(struct anv_bo *bo, struct anv_device *device, uint64_t size);
1157
1158 struct anv_reloc_list {
1159 uint32_t num_relocs;
1160 uint32_t array_length;
1161 struct drm_i915_gem_relocation_entry * relocs;
1162 struct anv_bo ** reloc_bos;
1163 struct set * deps;
1164 };
1165
1166 VkResult anv_reloc_list_init(struct anv_reloc_list *list,
1167 const VkAllocationCallbacks *alloc);
1168 void anv_reloc_list_finish(struct anv_reloc_list *list,
1169 const VkAllocationCallbacks *alloc);
1170
1171 VkResult anv_reloc_list_add(struct anv_reloc_list *list,
1172 const VkAllocationCallbacks *alloc,
1173 uint32_t offset, struct anv_bo *target_bo,
1174 uint32_t delta);
1175
1176 struct anv_batch_bo {
1177 /* Link in the anv_cmd_buffer.owned_batch_bos list */
1178 struct list_head link;
1179
1180 struct anv_bo bo;
1181
1182 /* Bytes actually consumed in this batch BO */
1183 uint32_t length;
1184
1185 struct anv_reloc_list relocs;
1186 };
1187
1188 struct anv_batch {
1189 const VkAllocationCallbacks * alloc;
1190
1191 void * start;
1192 void * end;
1193 void * next;
1194
1195 struct anv_reloc_list * relocs;
1196
1197 /* This callback is called (with the associated user data) in the event
1198 * that the batch runs out of space.
1199 */
1200 VkResult (*extend_cb)(struct anv_batch *, void *);
1201 void * user_data;
1202
1203 /**
1204 * Current error status of the command buffer. Used to track inconsistent
1205 * or incomplete command buffer states that are the consequence of run-time
1206 * errors such as out of memory scenarios. We want to track this in the
1207 * batch because the command buffer object is not visible to some parts
1208 * of the driver.
1209 */
1210 VkResult status;
1211 };
1212
1213 void *anv_batch_emit_dwords(struct anv_batch *batch, int num_dwords);
1214 void anv_batch_emit_batch(struct anv_batch *batch, struct anv_batch *other);
1215 uint64_t anv_batch_emit_reloc(struct anv_batch *batch,
1216 void *location, struct anv_bo *bo, uint32_t offset);
1217 VkResult anv_device_submit_simple_batch(struct anv_device *device,
1218 struct anv_batch *batch);
1219
1220 static inline VkResult
1221 anv_batch_set_error(struct anv_batch *batch, VkResult error)
1222 {
1223 assert(error != VK_SUCCESS);
1224 if (batch->status == VK_SUCCESS)
1225 batch->status = error;
1226 return batch->status;
1227 }
1228
1229 static inline bool
1230 anv_batch_has_error(struct anv_batch *batch)
1231 {
1232 return batch->status != VK_SUCCESS;
1233 }
1234
1235 struct anv_address {
1236 struct anv_bo *bo;
1237 uint32_t offset;
1238 };
1239
1240 #define ANV_NULL_ADDRESS ((struct anv_address) { NULL, 0 })
1241
1242 static inline bool
1243 anv_address_is_null(struct anv_address addr)
1244 {
1245 return addr.bo == NULL && addr.offset == 0;
1246 }
1247
1248 static inline uint64_t
1249 anv_address_physical(struct anv_address addr)
1250 {
1251 if (addr.bo && (addr.bo->flags & EXEC_OBJECT_PINNED))
1252 return gen_canonical_address(addr.bo->offset + addr.offset);
1253 else
1254 return gen_canonical_address(addr.offset);
1255 }
1256
1257 static inline struct anv_address
1258 anv_address_add(struct anv_address addr, uint64_t offset)
1259 {
1260 addr.offset += offset;
1261 return addr;
1262 }
1263
1264 static inline void
1265 write_reloc(const struct anv_device *device, void *p, uint64_t v, bool flush)
1266 {
1267 unsigned reloc_size = 0;
1268 if (device->info.gen >= 8) {
1269 reloc_size = sizeof(uint64_t);
1270 *(uint64_t *)p = gen_canonical_address(v);
1271 } else {
1272 reloc_size = sizeof(uint32_t);
1273 *(uint32_t *)p = v;
1274 }
1275
1276 if (flush && !device->info.has_llc)
1277 gen_flush_range(p, reloc_size);
1278 }
1279
1280 static inline uint64_t
1281 _anv_combine_address(struct anv_batch *batch, void *location,
1282 const struct anv_address address, uint32_t delta)
1283 {
1284 if (address.bo == NULL) {
1285 return address.offset + delta;
1286 } else {
1287 assert(batch->start <= location && location < batch->end);
1288
1289 return anv_batch_emit_reloc(batch, location, address.bo, address.offset + delta);
1290 }
1291 }
1292
1293 #define __gen_address_type struct anv_address
1294 #define __gen_user_data struct anv_batch
1295 #define __gen_combine_address _anv_combine_address
1296
1297 /* Wrapper macros needed to work around preprocessor argument issues. In
1298 * particular, arguments don't get pre-evaluated if they are concatenated.
1299 * This means that, if you pass GENX(3DSTATE_PS) into the emit macro, the
1300 * GENX macro won't get evaluated if the emit macro contains "cmd ## foo".
1301 * We can work around this easily enough with these helpers.
1302 */
1303 #define __anv_cmd_length(cmd) cmd ## _length
1304 #define __anv_cmd_length_bias(cmd) cmd ## _length_bias
1305 #define __anv_cmd_header(cmd) cmd ## _header
1306 #define __anv_cmd_pack(cmd) cmd ## _pack
1307 #define __anv_reg_num(reg) reg ## _num
1308
1309 #define anv_pack_struct(dst, struc, ...) do { \
1310 struct struc __template = { \
1311 __VA_ARGS__ \
1312 }; \
1313 __anv_cmd_pack(struc)(NULL, dst, &__template); \
1314 VG(VALGRIND_CHECK_MEM_IS_DEFINED(dst, __anv_cmd_length(struc) * 4)); \
1315 } while (0)
1316
1317 #define anv_batch_emitn(batch, n, cmd, ...) ({ \
1318 void *__dst = anv_batch_emit_dwords(batch, n); \
1319 if (__dst) { \
1320 struct cmd __template = { \
1321 __anv_cmd_header(cmd), \
1322 .DWordLength = n - __anv_cmd_length_bias(cmd), \
1323 __VA_ARGS__ \
1324 }; \
1325 __anv_cmd_pack(cmd)(batch, __dst, &__template); \
1326 } \
1327 __dst; \
1328 })
1329
1330 #define anv_batch_emit_merge(batch, dwords0, dwords1) \
1331 do { \
1332 uint32_t *dw; \
1333 \
1334 STATIC_ASSERT(ARRAY_SIZE(dwords0) == ARRAY_SIZE(dwords1)); \
1335 dw = anv_batch_emit_dwords((batch), ARRAY_SIZE(dwords0)); \
1336 if (!dw) \
1337 break; \
1338 for (uint32_t i = 0; i < ARRAY_SIZE(dwords0); i++) \
1339 dw[i] = (dwords0)[i] | (dwords1)[i]; \
1340 VG(VALGRIND_CHECK_MEM_IS_DEFINED(dw, ARRAY_SIZE(dwords0) * 4));\
1341 } while (0)
1342
1343 #define anv_batch_emit(batch, cmd, name) \
1344 for (struct cmd name = { __anv_cmd_header(cmd) }, \
1345 *_dst = anv_batch_emit_dwords(batch, __anv_cmd_length(cmd)); \
1346 __builtin_expect(_dst != NULL, 1); \
1347 ({ __anv_cmd_pack(cmd)(batch, _dst, &name); \
1348 VG(VALGRIND_CHECK_MEM_IS_DEFINED(_dst, __anv_cmd_length(cmd) * 4)); \
1349 _dst = NULL; \
1350 }))
1351
1352 #define GEN7_MOCS (struct GEN7_MEMORY_OBJECT_CONTROL_STATE) { \
1353 .GraphicsDataTypeGFDT = 0, \
1354 .LLCCacheabilityControlLLCCC = 0, \
1355 .L3CacheabilityControlL3CC = 1, \
1356 }
1357
1358 #define GEN75_MOCS (struct GEN75_MEMORY_OBJECT_CONTROL_STATE) { \
1359 .LLCeLLCCacheabilityControlLLCCC = 0, \
1360 .L3CacheabilityControlL3CC = 1, \
1361 }
1362
1363 #define GEN8_MOCS (struct GEN8_MEMORY_OBJECT_CONTROL_STATE) { \
1364 .MemoryTypeLLCeLLCCacheabilityControl = WB, \
1365 .TargetCache = L3DefertoPATforLLCeLLCselection, \
1366 .AgeforQUADLRU = 0 \
1367 }
1368
1369 #define GEN8_EXTERNAL_MOCS (struct GEN8_MEMORY_OBJECT_CONTROL_STATE) { \
1370 .MemoryTypeLLCeLLCCacheabilityControl = UCwithFenceifcoherentcycle, \
1371 .TargetCache = L3DefertoPATforLLCeLLCselection, \
1372 .AgeforQUADLRU = 0 \
1373 }
1374
1375 /* Skylake: MOCS is now an index into an array of 62 different caching
1376 * configurations programmed by the kernel.
1377 */
1378
1379 #define GEN9_MOCS (struct GEN9_MEMORY_OBJECT_CONTROL_STATE) { \
1380 /* TC=LLC/eLLC, LeCC=WB, LRUM=3, L3CC=WB */ \
1381 .IndextoMOCSTables = 2 \
1382 }
1383
1384 #define GEN9_EXTERNAL_MOCS (struct GEN9_MEMORY_OBJECT_CONTROL_STATE) { \
1385 /* TC=LLC/eLLC, LeCC=WB, LRUM=3, L3CC=WB */ \
1386 .IndextoMOCSTables = 1 \
1387 }
1388
1389 /* Cannonlake MOCS defines are duplicates of Skylake MOCS defines. */
1390 #define GEN10_MOCS (struct GEN10_MEMORY_OBJECT_CONTROL_STATE) { \
1391 /* TC=LLC/eLLC, LeCC=WB, LRUM=3, L3CC=WB */ \
1392 .IndextoMOCSTables = 2 \
1393 }
1394
1395 #define GEN10_EXTERNAL_MOCS (struct GEN10_MEMORY_OBJECT_CONTROL_STATE) { \
1396 /* TC=LLC/eLLC, LeCC=WB, LRUM=3, L3CC=WB */ \
1397 .IndextoMOCSTables = 1 \
1398 }
1399
1400 /* Ice Lake MOCS defines are duplicates of Skylake MOCS defines. */
1401 #define GEN11_MOCS (struct GEN11_MEMORY_OBJECT_CONTROL_STATE) { \
1402 /* TC=LLC/eLLC, LeCC=WB, LRUM=3, L3CC=WB */ \
1403 .IndextoMOCSTables = 2 \
1404 }
1405
1406 #define GEN11_EXTERNAL_MOCS (struct GEN11_MEMORY_OBJECT_CONTROL_STATE) { \
1407 /* TC=LLC/eLLC, LeCC=WB, LRUM=3, L3CC=WB */ \
1408 .IndextoMOCSTables = 1 \
1409 }
1410
1411 struct anv_device_memory {
1412 struct anv_bo * bo;
1413 struct anv_memory_type * type;
1414 VkDeviceSize map_size;
1415 void * map;
1416 };
1417
1418 /**
1419 * Header for Vertex URB Entry (VUE)
1420 */
1421 struct anv_vue_header {
1422 uint32_t Reserved;
1423 uint32_t RTAIndex; /* RenderTargetArrayIndex */
1424 uint32_t ViewportIndex;
1425 float PointWidth;
1426 };
1427
1428 struct anv_descriptor_set_binding_layout {
1429 #ifndef NDEBUG
1430 /* The type of the descriptors in this binding */
1431 VkDescriptorType type;
1432 #endif
1433
1434 /* Number of array elements in this binding */
1435 uint16_t array_size;
1436
1437 /* Index into the flattend descriptor set */
1438 uint16_t descriptor_index;
1439
1440 /* Index into the dynamic state array for a dynamic buffer */
1441 int16_t dynamic_offset_index;
1442
1443 /* Index into the descriptor set buffer views */
1444 int16_t buffer_index;
1445
1446 struct {
1447 /* Index into the binding table for the associated surface */
1448 int16_t surface_index;
1449
1450 /* Index into the sampler table for the associated sampler */
1451 int16_t sampler_index;
1452
1453 /* Index into the image table for the associated image */
1454 int16_t image_index;
1455 } stage[MESA_SHADER_STAGES];
1456
1457 /* Immutable samplers (or NULL if no immutable samplers) */
1458 struct anv_sampler **immutable_samplers;
1459 };
1460
1461 struct anv_descriptor_set_layout {
1462 /* Descriptor set layouts can be destroyed at almost any time */
1463 uint32_t ref_cnt;
1464
1465 /* Number of bindings in this descriptor set */
1466 uint16_t binding_count;
1467
1468 /* Total size of the descriptor set with room for all array entries */
1469 uint16_t size;
1470
1471 /* Shader stages affected by this descriptor set */
1472 uint16_t shader_stages;
1473
1474 /* Number of buffers in this descriptor set */
1475 uint16_t buffer_count;
1476
1477 /* Number of dynamic offsets used by this descriptor set */
1478 uint16_t dynamic_offset_count;
1479
1480 /* Bindings in this descriptor set */
1481 struct anv_descriptor_set_binding_layout binding[0];
1482 };
1483
1484 static inline void
1485 anv_descriptor_set_layout_ref(struct anv_descriptor_set_layout *layout)
1486 {
1487 assert(layout && layout->ref_cnt >= 1);
1488 p_atomic_inc(&layout->ref_cnt);
1489 }
1490
1491 static inline void
1492 anv_descriptor_set_layout_unref(struct anv_device *device,
1493 struct anv_descriptor_set_layout *layout)
1494 {
1495 assert(layout && layout->ref_cnt >= 1);
1496 if (p_atomic_dec_zero(&layout->ref_cnt))
1497 vk_free(&device->alloc, layout);
1498 }
1499
1500 struct anv_descriptor {
1501 VkDescriptorType type;
1502
1503 union {
1504 struct {
1505 VkImageLayout layout;
1506 struct anv_image_view *image_view;
1507 struct anv_sampler *sampler;
1508 };
1509
1510 struct {
1511 struct anv_buffer *buffer;
1512 uint64_t offset;
1513 uint64_t range;
1514 };
1515
1516 struct anv_buffer_view *buffer_view;
1517 };
1518 };
1519
1520 struct anv_descriptor_set {
1521 struct anv_descriptor_set_layout *layout;
1522 uint32_t size;
1523 uint32_t buffer_count;
1524 struct anv_buffer_view *buffer_views;
1525 struct anv_descriptor descriptors[0];
1526 };
1527
1528 struct anv_buffer_view {
1529 enum isl_format format; /**< VkBufferViewCreateInfo::format */
1530 uint64_t range; /**< VkBufferViewCreateInfo::range */
1531
1532 struct anv_address address;
1533
1534 struct anv_state surface_state;
1535 struct anv_state storage_surface_state;
1536 struct anv_state writeonly_storage_surface_state;
1537
1538 struct brw_image_param storage_image_param;
1539 };
1540
1541 struct anv_push_descriptor_set {
1542 struct anv_descriptor_set set;
1543
1544 /* Put this field right behind anv_descriptor_set so it fills up the
1545 * descriptors[0] field. */
1546 struct anv_descriptor descriptors[MAX_PUSH_DESCRIPTORS];
1547 struct anv_buffer_view buffer_views[MAX_PUSH_DESCRIPTORS];
1548 };
1549
1550 struct anv_descriptor_pool {
1551 uint32_t size;
1552 uint32_t next;
1553 uint32_t free_list;
1554
1555 struct anv_state_stream surface_state_stream;
1556 void *surface_state_free_list;
1557
1558 char data[0];
1559 };
1560
1561 enum anv_descriptor_template_entry_type {
1562 ANV_DESCRIPTOR_TEMPLATE_ENTRY_TYPE_IMAGE,
1563 ANV_DESCRIPTOR_TEMPLATE_ENTRY_TYPE_BUFFER,
1564 ANV_DESCRIPTOR_TEMPLATE_ENTRY_TYPE_BUFFER_VIEW
1565 };
1566
1567 struct anv_descriptor_template_entry {
1568 /* The type of descriptor in this entry */
1569 VkDescriptorType type;
1570
1571 /* Binding in the descriptor set */
1572 uint32_t binding;
1573
1574 /* Offset at which to write into the descriptor set binding */
1575 uint32_t array_element;
1576
1577 /* Number of elements to write into the descriptor set binding */
1578 uint32_t array_count;
1579
1580 /* Offset into the user provided data */
1581 size_t offset;
1582
1583 /* Stride between elements into the user provided data */
1584 size_t stride;
1585 };
1586
1587 struct anv_descriptor_update_template {
1588 VkPipelineBindPoint bind_point;
1589
1590 /* The descriptor set this template corresponds to. This value is only
1591 * valid if the template was created with the templateType
1592 * VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET_KHR.
1593 */
1594 uint8_t set;
1595
1596 /* Number of entries in this template */
1597 uint32_t entry_count;
1598
1599 /* Entries of the template */
1600 struct anv_descriptor_template_entry entries[0];
1601 };
1602
1603 size_t
1604 anv_descriptor_set_layout_size(const struct anv_descriptor_set_layout *layout);
1605
1606 void
1607 anv_descriptor_set_write_image_view(struct anv_descriptor_set *set,
1608 const struct gen_device_info * const devinfo,
1609 const VkDescriptorImageInfo * const info,
1610 VkDescriptorType type,
1611 uint32_t binding,
1612 uint32_t element);
1613
1614 void
1615 anv_descriptor_set_write_buffer_view(struct anv_descriptor_set *set,
1616 VkDescriptorType type,
1617 struct anv_buffer_view *buffer_view,
1618 uint32_t binding,
1619 uint32_t element);
1620
1621 void
1622 anv_descriptor_set_write_buffer(struct anv_descriptor_set *set,
1623 struct anv_device *device,
1624 struct anv_state_stream *alloc_stream,
1625 VkDescriptorType type,
1626 struct anv_buffer *buffer,
1627 uint32_t binding,
1628 uint32_t element,
1629 VkDeviceSize offset,
1630 VkDeviceSize range);
1631
1632 void
1633 anv_descriptor_set_write_template(struct anv_descriptor_set *set,
1634 struct anv_device *device,
1635 struct anv_state_stream *alloc_stream,
1636 const struct anv_descriptor_update_template *template,
1637 const void *data);
1638
1639 VkResult
1640 anv_descriptor_set_create(struct anv_device *device,
1641 struct anv_descriptor_pool *pool,
1642 struct anv_descriptor_set_layout *layout,
1643 struct anv_descriptor_set **out_set);
1644
1645 void
1646 anv_descriptor_set_destroy(struct anv_device *device,
1647 struct anv_descriptor_pool *pool,
1648 struct anv_descriptor_set *set);
1649
1650 #define ANV_DESCRIPTOR_SET_SHADER_CONSTANTS (UINT8_MAX - 1)
1651 #define ANV_DESCRIPTOR_SET_COLOR_ATTACHMENTS UINT8_MAX
1652
1653 struct anv_pipeline_binding {
1654 /* The descriptor set this surface corresponds to. The special value of
1655 * ANV_DESCRIPTOR_SET_COLOR_ATTACHMENTS indicates that the offset refers
1656 * to a color attachment and not a regular descriptor.
1657 */
1658 uint8_t set;
1659
1660 /* Binding in the descriptor set */
1661 uint32_t binding;
1662
1663 /* Index in the binding */
1664 uint32_t index;
1665
1666 /* Plane in the binding index */
1667 uint8_t plane;
1668
1669 /* Input attachment index (relative to the subpass) */
1670 uint8_t input_attachment_index;
1671
1672 /* For a storage image, whether it is write-only */
1673 bool write_only;
1674 };
1675
1676 struct anv_pipeline_layout {
1677 struct {
1678 struct anv_descriptor_set_layout *layout;
1679 uint32_t dynamic_offset_start;
1680 } set[MAX_SETS];
1681
1682 uint32_t num_sets;
1683
1684 struct {
1685 bool has_dynamic_offsets;
1686 } stage[MESA_SHADER_STAGES];
1687
1688 unsigned char sha1[20];
1689 };
1690
1691 struct anv_buffer {
1692 struct anv_device * device;
1693 VkDeviceSize size;
1694
1695 VkBufferUsageFlags usage;
1696
1697 /* Set when bound */
1698 struct anv_address address;
1699 };
1700
1701 static inline uint64_t
1702 anv_buffer_get_range(struct anv_buffer *buffer, uint64_t offset, uint64_t range)
1703 {
1704 assert(offset <= buffer->size);
1705 if (range == VK_WHOLE_SIZE) {
1706 return buffer->size - offset;
1707 } else {
1708 assert(range <= buffer->size);
1709 return range;
1710 }
1711 }
1712
1713 enum anv_cmd_dirty_bits {
1714 ANV_CMD_DIRTY_DYNAMIC_VIEWPORT = 1 << 0, /* VK_DYNAMIC_STATE_VIEWPORT */
1715 ANV_CMD_DIRTY_DYNAMIC_SCISSOR = 1 << 1, /* VK_DYNAMIC_STATE_SCISSOR */
1716 ANV_CMD_DIRTY_DYNAMIC_LINE_WIDTH = 1 << 2, /* VK_DYNAMIC_STATE_LINE_WIDTH */
1717 ANV_CMD_DIRTY_DYNAMIC_DEPTH_BIAS = 1 << 3, /* VK_DYNAMIC_STATE_DEPTH_BIAS */
1718 ANV_CMD_DIRTY_DYNAMIC_BLEND_CONSTANTS = 1 << 4, /* VK_DYNAMIC_STATE_BLEND_CONSTANTS */
1719 ANV_CMD_DIRTY_DYNAMIC_DEPTH_BOUNDS = 1 << 5, /* VK_DYNAMIC_STATE_DEPTH_BOUNDS */
1720 ANV_CMD_DIRTY_DYNAMIC_STENCIL_COMPARE_MASK = 1 << 6, /* VK_DYNAMIC_STATE_STENCIL_COMPARE_MASK */
1721 ANV_CMD_DIRTY_DYNAMIC_STENCIL_WRITE_MASK = 1 << 7, /* VK_DYNAMIC_STATE_STENCIL_WRITE_MASK */
1722 ANV_CMD_DIRTY_DYNAMIC_STENCIL_REFERENCE = 1 << 8, /* VK_DYNAMIC_STATE_STENCIL_REFERENCE */
1723 ANV_CMD_DIRTY_DYNAMIC_ALL = (1 << 9) - 1,
1724 ANV_CMD_DIRTY_PIPELINE = 1 << 9,
1725 ANV_CMD_DIRTY_INDEX_BUFFER = 1 << 10,
1726 ANV_CMD_DIRTY_RENDER_TARGETS = 1 << 11,
1727 };
1728 typedef uint32_t anv_cmd_dirty_mask_t;
1729
1730 enum anv_pipe_bits {
1731 ANV_PIPE_DEPTH_CACHE_FLUSH_BIT = (1 << 0),
1732 ANV_PIPE_STALL_AT_SCOREBOARD_BIT = (1 << 1),
1733 ANV_PIPE_STATE_CACHE_INVALIDATE_BIT = (1 << 2),
1734 ANV_PIPE_CONSTANT_CACHE_INVALIDATE_BIT = (1 << 3),
1735 ANV_PIPE_VF_CACHE_INVALIDATE_BIT = (1 << 4),
1736 ANV_PIPE_DATA_CACHE_FLUSH_BIT = (1 << 5),
1737 ANV_PIPE_TEXTURE_CACHE_INVALIDATE_BIT = (1 << 10),
1738 ANV_PIPE_INSTRUCTION_CACHE_INVALIDATE_BIT = (1 << 11),
1739 ANV_PIPE_RENDER_TARGET_CACHE_FLUSH_BIT = (1 << 12),
1740 ANV_PIPE_DEPTH_STALL_BIT = (1 << 13),
1741 ANV_PIPE_CS_STALL_BIT = (1 << 20),
1742
1743 /* This bit does not exist directly in PIPE_CONTROL. Instead it means that
1744 * a flush has happened but not a CS stall. The next time we do any sort
1745 * of invalidation we need to insert a CS stall at that time. Otherwise,
1746 * we would have to CS stall on every flush which could be bad.
1747 */
1748 ANV_PIPE_NEEDS_CS_STALL_BIT = (1 << 21),
1749 };
1750
1751 #define ANV_PIPE_FLUSH_BITS ( \
1752 ANV_PIPE_DEPTH_CACHE_FLUSH_BIT | \
1753 ANV_PIPE_DATA_CACHE_FLUSH_BIT | \
1754 ANV_PIPE_RENDER_TARGET_CACHE_FLUSH_BIT)
1755
1756 #define ANV_PIPE_STALL_BITS ( \
1757 ANV_PIPE_STALL_AT_SCOREBOARD_BIT | \
1758 ANV_PIPE_DEPTH_STALL_BIT | \
1759 ANV_PIPE_CS_STALL_BIT)
1760
1761 #define ANV_PIPE_INVALIDATE_BITS ( \
1762 ANV_PIPE_STATE_CACHE_INVALIDATE_BIT | \
1763 ANV_PIPE_CONSTANT_CACHE_INVALIDATE_BIT | \
1764 ANV_PIPE_VF_CACHE_INVALIDATE_BIT | \
1765 ANV_PIPE_DATA_CACHE_FLUSH_BIT | \
1766 ANV_PIPE_TEXTURE_CACHE_INVALIDATE_BIT | \
1767 ANV_PIPE_INSTRUCTION_CACHE_INVALIDATE_BIT)
1768
1769 static inline enum anv_pipe_bits
1770 anv_pipe_flush_bits_for_access_flags(VkAccessFlags flags)
1771 {
1772 enum anv_pipe_bits pipe_bits = 0;
1773
1774 unsigned b;
1775 for_each_bit(b, flags) {
1776 switch ((VkAccessFlagBits)(1 << b)) {
1777 case VK_ACCESS_SHADER_WRITE_BIT:
1778 pipe_bits |= ANV_PIPE_DATA_CACHE_FLUSH_BIT;
1779 break;
1780 case VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT:
1781 pipe_bits |= ANV_PIPE_RENDER_TARGET_CACHE_FLUSH_BIT;
1782 break;
1783 case VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT:
1784 pipe_bits |= ANV_PIPE_DEPTH_CACHE_FLUSH_BIT;
1785 break;
1786 case VK_ACCESS_TRANSFER_WRITE_BIT:
1787 pipe_bits |= ANV_PIPE_RENDER_TARGET_CACHE_FLUSH_BIT;
1788 pipe_bits |= ANV_PIPE_DEPTH_CACHE_FLUSH_BIT;
1789 break;
1790 case VK_ACCESS_MEMORY_WRITE_BIT:
1791 pipe_bits |= ANV_PIPE_FLUSH_BITS;
1792 break;
1793 default:
1794 break; /* Nothing to do */
1795 }
1796 }
1797
1798 return pipe_bits;
1799 }
1800
1801 static inline enum anv_pipe_bits
1802 anv_pipe_invalidate_bits_for_access_flags(VkAccessFlags flags)
1803 {
1804 enum anv_pipe_bits pipe_bits = 0;
1805
1806 unsigned b;
1807 for_each_bit(b, flags) {
1808 switch ((VkAccessFlagBits)(1 << b)) {
1809 case VK_ACCESS_INDIRECT_COMMAND_READ_BIT:
1810 case VK_ACCESS_INDEX_READ_BIT:
1811 case VK_ACCESS_VERTEX_ATTRIBUTE_READ_BIT:
1812 pipe_bits |= ANV_PIPE_VF_CACHE_INVALIDATE_BIT;
1813 break;
1814 case VK_ACCESS_UNIFORM_READ_BIT:
1815 pipe_bits |= ANV_PIPE_CONSTANT_CACHE_INVALIDATE_BIT;
1816 pipe_bits |= ANV_PIPE_TEXTURE_CACHE_INVALIDATE_BIT;
1817 break;
1818 case VK_ACCESS_SHADER_READ_BIT:
1819 case VK_ACCESS_INPUT_ATTACHMENT_READ_BIT:
1820 case VK_ACCESS_TRANSFER_READ_BIT:
1821 pipe_bits |= ANV_PIPE_TEXTURE_CACHE_INVALIDATE_BIT;
1822 break;
1823 case VK_ACCESS_MEMORY_READ_BIT:
1824 pipe_bits |= ANV_PIPE_INVALIDATE_BITS;
1825 break;
1826 case VK_ACCESS_MEMORY_WRITE_BIT:
1827 pipe_bits |= ANV_PIPE_FLUSH_BITS;
1828 break;
1829 default:
1830 break; /* Nothing to do */
1831 }
1832 }
1833
1834 return pipe_bits;
1835 }
1836
1837 #define VK_IMAGE_ASPECT_ANY_COLOR_BIT_ANV ( \
1838 VK_IMAGE_ASPECT_COLOR_BIT | \
1839 VK_IMAGE_ASPECT_PLANE_0_BIT | \
1840 VK_IMAGE_ASPECT_PLANE_1_BIT | \
1841 VK_IMAGE_ASPECT_PLANE_2_BIT)
1842 #define VK_IMAGE_ASPECT_PLANES_BITS_ANV ( \
1843 VK_IMAGE_ASPECT_PLANE_0_BIT | \
1844 VK_IMAGE_ASPECT_PLANE_1_BIT | \
1845 VK_IMAGE_ASPECT_PLANE_2_BIT)
1846
1847 struct anv_vertex_binding {
1848 struct anv_buffer * buffer;
1849 VkDeviceSize offset;
1850 };
1851
1852 #define ANV_PARAM_PUSH(offset) ((1 << 16) | (uint32_t)(offset))
1853 #define ANV_PARAM_PUSH_OFFSET(param) ((param) & 0xffff)
1854
1855 struct anv_push_constants {
1856 /* Current allocated size of this push constants data structure.
1857 * Because a decent chunk of it may not be used (images on SKL, for
1858 * instance), we won't actually allocate the entire structure up-front.
1859 */
1860 uint32_t size;
1861
1862 /* Push constant data provided by the client through vkPushConstants */
1863 uint8_t client_data[MAX_PUSH_CONSTANTS_SIZE];
1864
1865 /* Used for vkCmdDispatchBase */
1866 uint32_t base_work_group_id[3];
1867
1868 /* Image data for image_load_store on pre-SKL */
1869 struct brw_image_param images[MAX_IMAGES];
1870 };
1871
1872 struct anv_dynamic_state {
1873 struct {
1874 uint32_t count;
1875 VkViewport viewports[MAX_VIEWPORTS];
1876 } viewport;
1877
1878 struct {
1879 uint32_t count;
1880 VkRect2D scissors[MAX_SCISSORS];
1881 } scissor;
1882
1883 float line_width;
1884
1885 struct {
1886 float bias;
1887 float clamp;
1888 float slope;
1889 } depth_bias;
1890
1891 float blend_constants[4];
1892
1893 struct {
1894 float min;
1895 float max;
1896 } depth_bounds;
1897
1898 struct {
1899 uint32_t front;
1900 uint32_t back;
1901 } stencil_compare_mask;
1902
1903 struct {
1904 uint32_t front;
1905 uint32_t back;
1906 } stencil_write_mask;
1907
1908 struct {
1909 uint32_t front;
1910 uint32_t back;
1911 } stencil_reference;
1912 };
1913
1914 extern const struct anv_dynamic_state default_dynamic_state;
1915
1916 void anv_dynamic_state_copy(struct anv_dynamic_state *dest,
1917 const struct anv_dynamic_state *src,
1918 uint32_t copy_mask);
1919
1920 struct anv_surface_state {
1921 struct anv_state state;
1922 /** Address of the surface referred to by this state
1923 *
1924 * This address is relative to the start of the BO.
1925 */
1926 struct anv_address address;
1927 /* Address of the aux surface, if any
1928 *
1929 * This field is ANV_NULL_ADDRESS if and only if no aux surface exists.
1930 *
1931 * With the exception of gen8, the bottom 12 bits of this address' offset
1932 * include extra aux information.
1933 */
1934 struct anv_address aux_address;
1935 /* Address of the clear color, if any
1936 *
1937 * This address is relative to the start of the BO.
1938 */
1939 struct anv_address clear_address;
1940 };
1941
1942 /**
1943 * Attachment state when recording a renderpass instance.
1944 *
1945 * The clear value is valid only if there exists a pending clear.
1946 */
1947 struct anv_attachment_state {
1948 enum isl_aux_usage aux_usage;
1949 enum isl_aux_usage input_aux_usage;
1950 struct anv_surface_state color;
1951 struct anv_surface_state input;
1952
1953 VkImageLayout current_layout;
1954 VkImageAspectFlags pending_clear_aspects;
1955 VkImageAspectFlags pending_load_aspects;
1956 bool fast_clear;
1957 VkClearValue clear_value;
1958 bool clear_color_is_zero_one;
1959 bool clear_color_is_zero;
1960
1961 /* When multiview is active, attachments with a renderpass clear
1962 * operation have their respective layers cleared on the first
1963 * subpass that uses them, and only in that subpass. We keep track
1964 * of this using a bitfield to indicate which layers of an attachment
1965 * have not been cleared yet when multiview is active.
1966 */
1967 uint32_t pending_clear_views;
1968 };
1969
1970 /** State tracking for particular pipeline bind point
1971 *
1972 * This struct is the base struct for anv_cmd_graphics_state and
1973 * anv_cmd_compute_state. These are used to track state which is bound to a
1974 * particular type of pipeline. Generic state that applies per-stage such as
1975 * binding table offsets and push constants is tracked generically with a
1976 * per-stage array in anv_cmd_state.
1977 */
1978 struct anv_cmd_pipeline_state {
1979 struct anv_pipeline *pipeline;
1980 struct anv_pipeline_layout *layout;
1981
1982 struct anv_descriptor_set *descriptors[MAX_SETS];
1983 uint32_t dynamic_offsets[MAX_DYNAMIC_BUFFERS];
1984
1985 struct anv_push_descriptor_set *push_descriptors[MAX_SETS];
1986 };
1987
1988 /** State tracking for graphics pipeline
1989 *
1990 * This has anv_cmd_pipeline_state as a base struct to track things which get
1991 * bound to a graphics pipeline. Along with general pipeline bind point state
1992 * which is in the anv_cmd_pipeline_state base struct, it also contains other
1993 * state which is graphics-specific.
1994 */
1995 struct anv_cmd_graphics_state {
1996 struct anv_cmd_pipeline_state base;
1997
1998 anv_cmd_dirty_mask_t dirty;
1999 uint32_t vb_dirty;
2000
2001 struct anv_dynamic_state dynamic;
2002
2003 struct {
2004 struct anv_buffer *index_buffer;
2005 uint32_t index_type; /**< 3DSTATE_INDEX_BUFFER.IndexFormat */
2006 uint32_t index_offset;
2007 } gen7;
2008 };
2009
2010 /** State tracking for compute pipeline
2011 *
2012 * This has anv_cmd_pipeline_state as a base struct to track things which get
2013 * bound to a compute pipeline. Along with general pipeline bind point state
2014 * which is in the anv_cmd_pipeline_state base struct, it also contains other
2015 * state which is compute-specific.
2016 */
2017 struct anv_cmd_compute_state {
2018 struct anv_cmd_pipeline_state base;
2019
2020 bool pipeline_dirty;
2021
2022 struct anv_address num_workgroups;
2023 };
2024
2025 /** State required while building cmd buffer */
2026 struct anv_cmd_state {
2027 /* PIPELINE_SELECT.PipelineSelection */
2028 uint32_t current_pipeline;
2029 const struct gen_l3_config * current_l3_config;
2030
2031 struct anv_cmd_graphics_state gfx;
2032 struct anv_cmd_compute_state compute;
2033
2034 enum anv_pipe_bits pending_pipe_bits;
2035 VkShaderStageFlags descriptors_dirty;
2036 VkShaderStageFlags push_constants_dirty;
2037
2038 struct anv_framebuffer * framebuffer;
2039 struct anv_render_pass * pass;
2040 struct anv_subpass * subpass;
2041 VkRect2D render_area;
2042 uint32_t restart_index;
2043 struct anv_vertex_binding vertex_bindings[MAX_VBS];
2044 VkShaderStageFlags push_constant_stages;
2045 struct anv_push_constants * push_constants[MESA_SHADER_STAGES];
2046 struct anv_state binding_tables[MESA_SHADER_STAGES];
2047 struct anv_state samplers[MESA_SHADER_STAGES];
2048
2049 /**
2050 * Whether or not the gen8 PMA fix is enabled. We ensure that, at the top
2051 * of any command buffer it is disabled by disabling it in EndCommandBuffer
2052 * and before invoking the secondary in ExecuteCommands.
2053 */
2054 bool pma_fix_enabled;
2055
2056 /**
2057 * Whether or not we know for certain that HiZ is enabled for the current
2058 * subpass. If, for whatever reason, we are unsure as to whether HiZ is
2059 * enabled or not, this will be false.
2060 */
2061 bool hiz_enabled;
2062
2063 /**
2064 * Array length is anv_cmd_state::pass::attachment_count. Array content is
2065 * valid only when recording a render pass instance.
2066 */
2067 struct anv_attachment_state * attachments;
2068
2069 /**
2070 * Surface states for color render targets. These are stored in a single
2071 * flat array. For depth-stencil attachments, the surface state is simply
2072 * left blank.
2073 */
2074 struct anv_state render_pass_states;
2075
2076 /**
2077 * A null surface state of the right size to match the framebuffer. This
2078 * is one of the states in render_pass_states.
2079 */
2080 struct anv_state null_surface_state;
2081 };
2082
2083 struct anv_cmd_pool {
2084 VkAllocationCallbacks alloc;
2085 struct list_head cmd_buffers;
2086 };
2087
2088 #define ANV_CMD_BUFFER_BATCH_SIZE 8192
2089
2090 enum anv_cmd_buffer_exec_mode {
2091 ANV_CMD_BUFFER_EXEC_MODE_PRIMARY,
2092 ANV_CMD_BUFFER_EXEC_MODE_EMIT,
2093 ANV_CMD_BUFFER_EXEC_MODE_GROW_AND_EMIT,
2094 ANV_CMD_BUFFER_EXEC_MODE_CHAIN,
2095 ANV_CMD_BUFFER_EXEC_MODE_COPY_AND_CHAIN,
2096 };
2097
2098 struct anv_cmd_buffer {
2099 VK_LOADER_DATA _loader_data;
2100
2101 struct anv_device * device;
2102
2103 struct anv_cmd_pool * pool;
2104 struct list_head pool_link;
2105
2106 struct anv_batch batch;
2107
2108 /* Fields required for the actual chain of anv_batch_bo's.
2109 *
2110 * These fields are initialized by anv_cmd_buffer_init_batch_bo_chain().
2111 */
2112 struct list_head batch_bos;
2113 enum anv_cmd_buffer_exec_mode exec_mode;
2114
2115 /* A vector of anv_batch_bo pointers for every batch or surface buffer
2116 * referenced by this command buffer
2117 *
2118 * initialized by anv_cmd_buffer_init_batch_bo_chain()
2119 */
2120 struct u_vector seen_bbos;
2121
2122 /* A vector of int32_t's for every block of binding tables.
2123 *
2124 * initialized by anv_cmd_buffer_init_batch_bo_chain()
2125 */
2126 struct u_vector bt_block_states;
2127 uint32_t bt_next;
2128
2129 struct anv_reloc_list surface_relocs;
2130 /** Last seen surface state block pool center bo offset */
2131 uint32_t last_ss_pool_center;
2132
2133 /* Serial for tracking buffer completion */
2134 uint32_t serial;
2135
2136 /* Stream objects for storing temporary data */
2137 struct anv_state_stream surface_state_stream;
2138 struct anv_state_stream dynamic_state_stream;
2139
2140 VkCommandBufferUsageFlags usage_flags;
2141 VkCommandBufferLevel level;
2142
2143 struct anv_cmd_state state;
2144 };
2145
2146 VkResult anv_cmd_buffer_init_batch_bo_chain(struct anv_cmd_buffer *cmd_buffer);
2147 void anv_cmd_buffer_fini_batch_bo_chain(struct anv_cmd_buffer *cmd_buffer);
2148 void anv_cmd_buffer_reset_batch_bo_chain(struct anv_cmd_buffer *cmd_buffer);
2149 void anv_cmd_buffer_end_batch_buffer(struct anv_cmd_buffer *cmd_buffer);
2150 void anv_cmd_buffer_add_secondary(struct anv_cmd_buffer *primary,
2151 struct anv_cmd_buffer *secondary);
2152 void anv_cmd_buffer_prepare_execbuf(struct anv_cmd_buffer *cmd_buffer);
2153 VkResult anv_cmd_buffer_execbuf(struct anv_device *device,
2154 struct anv_cmd_buffer *cmd_buffer,
2155 const VkSemaphore *in_semaphores,
2156 uint32_t num_in_semaphores,
2157 const VkSemaphore *out_semaphores,
2158 uint32_t num_out_semaphores,
2159 VkFence fence);
2160
2161 VkResult anv_cmd_buffer_reset(struct anv_cmd_buffer *cmd_buffer);
2162
2163 VkResult
2164 anv_cmd_buffer_ensure_push_constants_size(struct anv_cmd_buffer *cmd_buffer,
2165 gl_shader_stage stage, uint32_t size);
2166 #define anv_cmd_buffer_ensure_push_constant_field(cmd_buffer, stage, field) \
2167 anv_cmd_buffer_ensure_push_constants_size(cmd_buffer, stage, \
2168 (offsetof(struct anv_push_constants, field) + \
2169 sizeof(cmd_buffer->state.push_constants[0]->field)))
2170
2171 struct anv_state anv_cmd_buffer_emit_dynamic(struct anv_cmd_buffer *cmd_buffer,
2172 const void *data, uint32_t size, uint32_t alignment);
2173 struct anv_state anv_cmd_buffer_merge_dynamic(struct anv_cmd_buffer *cmd_buffer,
2174 uint32_t *a, uint32_t *b,
2175 uint32_t dwords, uint32_t alignment);
2176
2177 struct anv_address
2178 anv_cmd_buffer_surface_base_address(struct anv_cmd_buffer *cmd_buffer);
2179 struct anv_state
2180 anv_cmd_buffer_alloc_binding_table(struct anv_cmd_buffer *cmd_buffer,
2181 uint32_t entries, uint32_t *state_offset);
2182 struct anv_state
2183 anv_cmd_buffer_alloc_surface_state(struct anv_cmd_buffer *cmd_buffer);
2184 struct anv_state
2185 anv_cmd_buffer_alloc_dynamic_state(struct anv_cmd_buffer *cmd_buffer,
2186 uint32_t size, uint32_t alignment);
2187
2188 VkResult
2189 anv_cmd_buffer_new_binding_table_block(struct anv_cmd_buffer *cmd_buffer);
2190
2191 void gen8_cmd_buffer_emit_viewport(struct anv_cmd_buffer *cmd_buffer);
2192 void gen8_cmd_buffer_emit_depth_viewport(struct anv_cmd_buffer *cmd_buffer,
2193 bool depth_clamp_enable);
2194 void gen7_cmd_buffer_emit_scissor(struct anv_cmd_buffer *cmd_buffer);
2195
2196 void anv_cmd_buffer_setup_attachments(struct anv_cmd_buffer *cmd_buffer,
2197 struct anv_render_pass *pass,
2198 struct anv_framebuffer *framebuffer,
2199 const VkClearValue *clear_values);
2200
2201 void anv_cmd_buffer_emit_state_base_address(struct anv_cmd_buffer *cmd_buffer);
2202
2203 struct anv_state
2204 anv_cmd_buffer_push_constants(struct anv_cmd_buffer *cmd_buffer,
2205 gl_shader_stage stage);
2206 struct anv_state
2207 anv_cmd_buffer_cs_push_constants(struct anv_cmd_buffer *cmd_buffer);
2208
2209 void anv_cmd_buffer_resolve_subpass(struct anv_cmd_buffer *cmd_buffer);
2210
2211 const struct anv_image_view *
2212 anv_cmd_buffer_get_depth_stencil_view(const struct anv_cmd_buffer *cmd_buffer);
2213
2214 VkResult
2215 anv_cmd_buffer_alloc_blorp_binding_table(struct anv_cmd_buffer *cmd_buffer,
2216 uint32_t num_entries,
2217 uint32_t *state_offset,
2218 struct anv_state *bt_state);
2219
2220 void anv_cmd_buffer_dump(struct anv_cmd_buffer *cmd_buffer);
2221
2222 enum anv_fence_type {
2223 ANV_FENCE_TYPE_NONE = 0,
2224 ANV_FENCE_TYPE_BO,
2225 ANV_FENCE_TYPE_SYNCOBJ,
2226 ANV_FENCE_TYPE_WSI,
2227 };
2228
2229 enum anv_bo_fence_state {
2230 /** Indicates that this is a new (or newly reset fence) */
2231 ANV_BO_FENCE_STATE_RESET,
2232
2233 /** Indicates that this fence has been submitted to the GPU but is still
2234 * (as far as we know) in use by the GPU.
2235 */
2236 ANV_BO_FENCE_STATE_SUBMITTED,
2237
2238 ANV_BO_FENCE_STATE_SIGNALED,
2239 };
2240
2241 struct anv_fence_impl {
2242 enum anv_fence_type type;
2243
2244 union {
2245 /** Fence implementation for BO fences
2246 *
2247 * These fences use a BO and a set of CPU-tracked state flags. The BO
2248 * is added to the object list of the last execbuf call in a QueueSubmit
2249 * and is marked EXEC_WRITE. The state flags track when the BO has been
2250 * submitted to the kernel. We need to do this because Vulkan lets you
2251 * wait on a fence that has not yet been submitted and I915_GEM_BUSY
2252 * will say it's idle in this case.
2253 */
2254 struct {
2255 struct anv_bo bo;
2256 enum anv_bo_fence_state state;
2257 } bo;
2258
2259 /** DRM syncobj handle for syncobj-based fences */
2260 uint32_t syncobj;
2261
2262 /** WSI fence */
2263 struct wsi_fence *fence_wsi;
2264 };
2265 };
2266
2267 struct anv_fence {
2268 /* Permanent fence state. Every fence has some form of permanent state
2269 * (type != ANV_SEMAPHORE_TYPE_NONE). This may be a BO to fence on (for
2270 * cross-process fences) or it could just be a dummy for use internally.
2271 */
2272 struct anv_fence_impl permanent;
2273
2274 /* Temporary fence state. A fence *may* have temporary state. That state
2275 * is added to the fence by an import operation and is reset back to
2276 * ANV_SEMAPHORE_TYPE_NONE when the fence is reset. A fence with temporary
2277 * state cannot be signaled because the fence must already be signaled
2278 * before the temporary state can be exported from the fence in the other
2279 * process and imported here.
2280 */
2281 struct anv_fence_impl temporary;
2282 };
2283
2284 struct anv_event {
2285 uint64_t semaphore;
2286 struct anv_state state;
2287 };
2288
2289 enum anv_semaphore_type {
2290 ANV_SEMAPHORE_TYPE_NONE = 0,
2291 ANV_SEMAPHORE_TYPE_DUMMY,
2292 ANV_SEMAPHORE_TYPE_BO,
2293 ANV_SEMAPHORE_TYPE_SYNC_FILE,
2294 ANV_SEMAPHORE_TYPE_DRM_SYNCOBJ,
2295 };
2296
2297 struct anv_semaphore_impl {
2298 enum anv_semaphore_type type;
2299
2300 union {
2301 /* A BO representing this semaphore when type == ANV_SEMAPHORE_TYPE_BO.
2302 * This BO will be added to the object list on any execbuf2 calls for
2303 * which this semaphore is used as a wait or signal fence. When used as
2304 * a signal fence, the EXEC_OBJECT_WRITE flag will be set.
2305 */
2306 struct anv_bo *bo;
2307
2308 /* The sync file descriptor when type == ANV_SEMAPHORE_TYPE_SYNC_FILE.
2309 * If the semaphore is in the unsignaled state due to either just being
2310 * created or because it has been used for a wait, fd will be -1.
2311 */
2312 int fd;
2313
2314 /* Sync object handle when type == ANV_SEMAPHORE_TYPE_DRM_SYNCOBJ.
2315 * Unlike GEM BOs, DRM sync objects aren't deduplicated by the kernel on
2316 * import so we don't need to bother with a userspace cache.
2317 */
2318 uint32_t syncobj;
2319 };
2320 };
2321
2322 struct anv_semaphore {
2323 /* Permanent semaphore state. Every semaphore has some form of permanent
2324 * state (type != ANV_SEMAPHORE_TYPE_NONE). This may be a BO to fence on
2325 * (for cross-process semaphores0 or it could just be a dummy for use
2326 * internally.
2327 */
2328 struct anv_semaphore_impl permanent;
2329
2330 /* Temporary semaphore state. A semaphore *may* have temporary state.
2331 * That state is added to the semaphore by an import operation and is reset
2332 * back to ANV_SEMAPHORE_TYPE_NONE when the semaphore is waited on. A
2333 * semaphore with temporary state cannot be signaled because the semaphore
2334 * must already be signaled before the temporary state can be exported from
2335 * the semaphore in the other process and imported here.
2336 */
2337 struct anv_semaphore_impl temporary;
2338 };
2339
2340 void anv_semaphore_reset_temporary(struct anv_device *device,
2341 struct anv_semaphore *semaphore);
2342
2343 struct anv_shader_module {
2344 unsigned char sha1[20];
2345 uint32_t size;
2346 char data[0];
2347 };
2348
2349 static inline gl_shader_stage
2350 vk_to_mesa_shader_stage(VkShaderStageFlagBits vk_stage)
2351 {
2352 assert(__builtin_popcount(vk_stage) == 1);
2353 return ffs(vk_stage) - 1;
2354 }
2355
2356 static inline VkShaderStageFlagBits
2357 mesa_to_vk_shader_stage(gl_shader_stage mesa_stage)
2358 {
2359 return (1 << mesa_stage);
2360 }
2361
2362 #define ANV_STAGE_MASK ((1 << MESA_SHADER_STAGES) - 1)
2363
2364 #define anv_foreach_stage(stage, stage_bits) \
2365 for (gl_shader_stage stage, \
2366 __tmp = (gl_shader_stage)((stage_bits) & ANV_STAGE_MASK); \
2367 stage = __builtin_ffs(__tmp) - 1, __tmp; \
2368 __tmp &= ~(1 << (stage)))
2369
2370 struct anv_pipeline_bind_map {
2371 uint32_t surface_count;
2372 uint32_t sampler_count;
2373 uint32_t image_count;
2374
2375 struct anv_pipeline_binding * surface_to_descriptor;
2376 struct anv_pipeline_binding * sampler_to_descriptor;
2377 };
2378
2379 struct anv_shader_bin_key {
2380 uint32_t size;
2381 uint8_t data[0];
2382 };
2383
2384 struct anv_shader_bin {
2385 uint32_t ref_cnt;
2386
2387 const struct anv_shader_bin_key *key;
2388
2389 struct anv_state kernel;
2390 uint32_t kernel_size;
2391
2392 struct anv_state constant_data;
2393 uint32_t constant_data_size;
2394
2395 const struct brw_stage_prog_data *prog_data;
2396 uint32_t prog_data_size;
2397
2398 struct anv_pipeline_bind_map bind_map;
2399 };
2400
2401 struct anv_shader_bin *
2402 anv_shader_bin_create(struct anv_device *device,
2403 const void *key, uint32_t key_size,
2404 const void *kernel, uint32_t kernel_size,
2405 const void *constant_data, uint32_t constant_data_size,
2406 const struct brw_stage_prog_data *prog_data,
2407 uint32_t prog_data_size, const void *prog_data_param,
2408 const struct anv_pipeline_bind_map *bind_map);
2409
2410 void
2411 anv_shader_bin_destroy(struct anv_device *device, struct anv_shader_bin *shader);
2412
2413 static inline void
2414 anv_shader_bin_ref(struct anv_shader_bin *shader)
2415 {
2416 assert(shader && shader->ref_cnt >= 1);
2417 p_atomic_inc(&shader->ref_cnt);
2418 }
2419
2420 static inline void
2421 anv_shader_bin_unref(struct anv_device *device, struct anv_shader_bin *shader)
2422 {
2423 assert(shader && shader->ref_cnt >= 1);
2424 if (p_atomic_dec_zero(&shader->ref_cnt))
2425 anv_shader_bin_destroy(device, shader);
2426 }
2427
2428 struct anv_pipeline {
2429 struct anv_device * device;
2430 struct anv_batch batch;
2431 uint32_t batch_data[512];
2432 struct anv_reloc_list batch_relocs;
2433 uint32_t dynamic_state_mask;
2434 struct anv_dynamic_state dynamic_state;
2435
2436 struct anv_subpass * subpass;
2437
2438 bool needs_data_cache;
2439
2440 struct anv_shader_bin * shaders[MESA_SHADER_STAGES];
2441
2442 struct {
2443 const struct gen_l3_config * l3_config;
2444 uint32_t total_size;
2445 } urb;
2446
2447 VkShaderStageFlags active_stages;
2448 struct anv_state blend_state;
2449
2450 uint32_t vb_used;
2451 struct anv_pipeline_vertex_binding {
2452 uint32_t stride;
2453 bool instanced;
2454 uint32_t instance_divisor;
2455 } vb[MAX_VBS];
2456
2457 bool primitive_restart;
2458 uint32_t topology;
2459
2460 uint32_t cs_right_mask;
2461
2462 bool writes_depth;
2463 bool depth_test_enable;
2464 bool writes_stencil;
2465 bool stencil_test_enable;
2466 bool depth_clamp_enable;
2467 bool sample_shading_enable;
2468 bool kill_pixel;
2469
2470 struct {
2471 uint32_t sf[7];
2472 uint32_t depth_stencil_state[3];
2473 } gen7;
2474
2475 struct {
2476 uint32_t sf[4];
2477 uint32_t raster[5];
2478 uint32_t wm_depth_stencil[3];
2479 } gen8;
2480
2481 struct {
2482 uint32_t wm_depth_stencil[4];
2483 } gen9;
2484
2485 uint32_t interface_descriptor_data[8];
2486 };
2487
2488 static inline bool
2489 anv_pipeline_has_stage(const struct anv_pipeline *pipeline,
2490 gl_shader_stage stage)
2491 {
2492 return (pipeline->active_stages & mesa_to_vk_shader_stage(stage)) != 0;
2493 }
2494
2495 #define ANV_DECL_GET_PROG_DATA_FUNC(prefix, stage) \
2496 static inline const struct brw_##prefix##_prog_data * \
2497 get_##prefix##_prog_data(const struct anv_pipeline *pipeline) \
2498 { \
2499 if (anv_pipeline_has_stage(pipeline, stage)) { \
2500 return (const struct brw_##prefix##_prog_data *) \
2501 pipeline->shaders[stage]->prog_data; \
2502 } else { \
2503 return NULL; \
2504 } \
2505 }
2506
2507 ANV_DECL_GET_PROG_DATA_FUNC(vs, MESA_SHADER_VERTEX)
2508 ANV_DECL_GET_PROG_DATA_FUNC(tcs, MESA_SHADER_TESS_CTRL)
2509 ANV_DECL_GET_PROG_DATA_FUNC(tes, MESA_SHADER_TESS_EVAL)
2510 ANV_DECL_GET_PROG_DATA_FUNC(gs, MESA_SHADER_GEOMETRY)
2511 ANV_DECL_GET_PROG_DATA_FUNC(wm, MESA_SHADER_FRAGMENT)
2512 ANV_DECL_GET_PROG_DATA_FUNC(cs, MESA_SHADER_COMPUTE)
2513
2514 static inline const struct brw_vue_prog_data *
2515 anv_pipeline_get_last_vue_prog_data(const struct anv_pipeline *pipeline)
2516 {
2517 if (anv_pipeline_has_stage(pipeline, MESA_SHADER_GEOMETRY))
2518 return &get_gs_prog_data(pipeline)->base;
2519 else if (anv_pipeline_has_stage(pipeline, MESA_SHADER_TESS_EVAL))
2520 return &get_tes_prog_data(pipeline)->base;
2521 else
2522 return &get_vs_prog_data(pipeline)->base;
2523 }
2524
2525 VkResult
2526 anv_pipeline_init(struct anv_pipeline *pipeline, struct anv_device *device,
2527 struct anv_pipeline_cache *cache,
2528 const VkGraphicsPipelineCreateInfo *pCreateInfo,
2529 const VkAllocationCallbacks *alloc);
2530
2531 VkResult
2532 anv_pipeline_compile_cs(struct anv_pipeline *pipeline,
2533 struct anv_pipeline_cache *cache,
2534 const VkComputePipelineCreateInfo *info,
2535 const struct anv_shader_module *module,
2536 const char *entrypoint,
2537 const VkSpecializationInfo *spec_info);
2538
2539 struct anv_format_plane {
2540 enum isl_format isl_format:16;
2541 struct isl_swizzle swizzle;
2542
2543 /* Whether this plane contains chroma channels */
2544 bool has_chroma;
2545
2546 /* For downscaling of YUV planes */
2547 uint8_t denominator_scales[2];
2548
2549 /* How to map sampled ycbcr planes to a single 4 component element. */
2550 struct isl_swizzle ycbcr_swizzle;
2551 };
2552
2553
2554 struct anv_format {
2555 struct anv_format_plane planes[3];
2556 uint8_t n_planes;
2557 bool can_ycbcr;
2558 };
2559
2560 static inline uint32_t
2561 anv_image_aspect_to_plane(VkImageAspectFlags image_aspects,
2562 VkImageAspectFlags aspect_mask)
2563 {
2564 switch (aspect_mask) {
2565 case VK_IMAGE_ASPECT_COLOR_BIT:
2566 case VK_IMAGE_ASPECT_DEPTH_BIT:
2567 case VK_IMAGE_ASPECT_PLANE_0_BIT:
2568 return 0;
2569 case VK_IMAGE_ASPECT_STENCIL_BIT:
2570 if ((image_aspects & VK_IMAGE_ASPECT_DEPTH_BIT) == 0)
2571 return 0;
2572 /* Fall-through */
2573 case VK_IMAGE_ASPECT_PLANE_1_BIT:
2574 return 1;
2575 case VK_IMAGE_ASPECT_PLANE_2_BIT:
2576 return 2;
2577 default:
2578 /* Purposefully assert with depth/stencil aspects. */
2579 unreachable("invalid image aspect");
2580 }
2581 }
2582
2583 static inline uint32_t
2584 anv_image_aspect_get_planes(VkImageAspectFlags aspect_mask)
2585 {
2586 uint32_t planes = 0;
2587
2588 if (aspect_mask & (VK_IMAGE_ASPECT_COLOR_BIT |
2589 VK_IMAGE_ASPECT_DEPTH_BIT |
2590 VK_IMAGE_ASPECT_STENCIL_BIT |
2591 VK_IMAGE_ASPECT_PLANE_0_BIT))
2592 planes++;
2593 if (aspect_mask & VK_IMAGE_ASPECT_PLANE_1_BIT)
2594 planes++;
2595 if (aspect_mask & VK_IMAGE_ASPECT_PLANE_2_BIT)
2596 planes++;
2597
2598 if ((aspect_mask & VK_IMAGE_ASPECT_DEPTH_BIT) != 0 &&
2599 (aspect_mask & VK_IMAGE_ASPECT_STENCIL_BIT) != 0)
2600 planes++;
2601
2602 return planes;
2603 }
2604
2605 static inline VkImageAspectFlags
2606 anv_plane_to_aspect(VkImageAspectFlags image_aspects,
2607 uint32_t plane)
2608 {
2609 if (image_aspects & VK_IMAGE_ASPECT_ANY_COLOR_BIT_ANV) {
2610 if (util_bitcount(image_aspects) > 1)
2611 return VK_IMAGE_ASPECT_PLANE_0_BIT << plane;
2612 return VK_IMAGE_ASPECT_COLOR_BIT;
2613 }
2614 if (image_aspects & VK_IMAGE_ASPECT_DEPTH_BIT)
2615 return VK_IMAGE_ASPECT_DEPTH_BIT << plane;
2616 assert(image_aspects == VK_IMAGE_ASPECT_STENCIL_BIT);
2617 return VK_IMAGE_ASPECT_STENCIL_BIT;
2618 }
2619
2620 #define anv_foreach_image_aspect_bit(b, image, aspects) \
2621 for_each_bit(b, anv_image_expand_aspects(image, aspects))
2622
2623 const struct anv_format *
2624 anv_get_format(VkFormat format);
2625
2626 static inline uint32_t
2627 anv_get_format_planes(VkFormat vk_format)
2628 {
2629 const struct anv_format *format = anv_get_format(vk_format);
2630
2631 return format != NULL ? format->n_planes : 0;
2632 }
2633
2634 struct anv_format_plane
2635 anv_get_format_plane(const struct gen_device_info *devinfo, VkFormat vk_format,
2636 VkImageAspectFlagBits aspect, VkImageTiling tiling);
2637
2638 static inline enum isl_format
2639 anv_get_isl_format(const struct gen_device_info *devinfo, VkFormat vk_format,
2640 VkImageAspectFlags aspect, VkImageTiling tiling)
2641 {
2642 return anv_get_format_plane(devinfo, vk_format, aspect, tiling).isl_format;
2643 }
2644
2645 static inline struct isl_swizzle
2646 anv_swizzle_for_render(struct isl_swizzle swizzle)
2647 {
2648 /* Sometimes the swizzle will have alpha map to one. We do this to fake
2649 * RGB as RGBA for texturing
2650 */
2651 assert(swizzle.a == ISL_CHANNEL_SELECT_ONE ||
2652 swizzle.a == ISL_CHANNEL_SELECT_ALPHA);
2653
2654 /* But it doesn't matter what we render to that channel */
2655 swizzle.a = ISL_CHANNEL_SELECT_ALPHA;
2656
2657 return swizzle;
2658 }
2659
2660 void
2661 anv_pipeline_setup_l3_config(struct anv_pipeline *pipeline, bool needs_slm);
2662
2663 /**
2664 * Subsurface of an anv_image.
2665 */
2666 struct anv_surface {
2667 /** Valid only if isl_surf::size_B > 0. */
2668 struct isl_surf isl;
2669
2670 /**
2671 * Offset from VkImage's base address, as bound by vkBindImageMemory().
2672 */
2673 uint32_t offset;
2674 };
2675
2676 struct anv_image {
2677 VkImageType type;
2678 /* The original VkFormat provided by the client. This may not match any
2679 * of the actual surface formats.
2680 */
2681 VkFormat vk_format;
2682 const struct anv_format *format;
2683
2684 VkImageAspectFlags aspects;
2685 VkExtent3D extent;
2686 uint32_t levels;
2687 uint32_t array_size;
2688 uint32_t samples; /**< VkImageCreateInfo::samples */
2689 uint32_t n_planes;
2690 VkImageUsageFlags usage; /**< Superset of VkImageCreateInfo::usage. */
2691 VkImageTiling tiling; /** VkImageCreateInfo::tiling */
2692
2693 /** True if this is needs to be bound to an appropriately tiled BO.
2694 *
2695 * When not using modifiers, consumers such as X11, Wayland, and KMS need
2696 * the tiling passed via I915_GEM_SET_TILING. When exporting these buffers
2697 * we require a dedicated allocation so that we can know to allocate a
2698 * tiled buffer.
2699 */
2700 bool needs_set_tiling;
2701
2702 /**
2703 * Must be DRM_FORMAT_MOD_INVALID unless tiling is
2704 * VK_IMAGE_TILING_DRM_FORMAT_MODIFIER_EXT.
2705 */
2706 uint64_t drm_format_mod;
2707
2708 VkDeviceSize size;
2709 uint32_t alignment;
2710
2711 /* Whether the image is made of several underlying buffer objects rather a
2712 * single one with different offsets.
2713 */
2714 bool disjoint;
2715
2716 /**
2717 * Image subsurfaces
2718 *
2719 * For each foo, anv_image::planes[x].surface is valid if and only if
2720 * anv_image::aspects has a x aspect. Refer to anv_image_aspect_to_plane()
2721 * to figure the number associated with a given aspect.
2722 *
2723 * The hardware requires that the depth buffer and stencil buffer be
2724 * separate surfaces. From Vulkan's perspective, though, depth and stencil
2725 * reside in the same VkImage. To satisfy both the hardware and Vulkan, we
2726 * allocate the depth and stencil buffers as separate surfaces in the same
2727 * bo.
2728 *
2729 * Memory layout :
2730 *
2731 * -----------------------
2732 * | surface0 | /|\
2733 * ----------------------- |
2734 * | shadow surface0 | |
2735 * ----------------------- | Plane 0
2736 * | aux surface0 | |
2737 * ----------------------- |
2738 * | fast clear colors0 | \|/
2739 * -----------------------
2740 * | surface1 | /|\
2741 * ----------------------- |
2742 * | shadow surface1 | |
2743 * ----------------------- | Plane 1
2744 * | aux surface1 | |
2745 * ----------------------- |
2746 * | fast clear colors1 | \|/
2747 * -----------------------
2748 * | ... |
2749 * | |
2750 * -----------------------
2751 */
2752 struct {
2753 /**
2754 * Offset of the entire plane (whenever the image is disjoint this is
2755 * set to 0).
2756 */
2757 uint32_t offset;
2758
2759 VkDeviceSize size;
2760 uint32_t alignment;
2761
2762 struct anv_surface surface;
2763
2764 /**
2765 * A surface which shadows the main surface and may have different
2766 * tiling. This is used for sampling using a tiling that isn't supported
2767 * for other operations.
2768 */
2769 struct anv_surface shadow_surface;
2770
2771 /**
2772 * For color images, this is the aux usage for this image when not used
2773 * as a color attachment.
2774 *
2775 * For depth/stencil images, this is set to ISL_AUX_USAGE_HIZ if the
2776 * image has a HiZ buffer.
2777 */
2778 enum isl_aux_usage aux_usage;
2779
2780 struct anv_surface aux_surface;
2781
2782 /**
2783 * Offset of the fast clear state (used to compute the
2784 * fast_clear_state_offset of the following planes).
2785 */
2786 uint32_t fast_clear_state_offset;
2787
2788 /**
2789 * BO associated with this plane, set when bound.
2790 */
2791 struct anv_address address;
2792
2793 /**
2794 * When destroying the image, also free the bo.
2795 * */
2796 bool bo_is_owned;
2797 } planes[3];
2798 };
2799
2800 /* The ordering of this enum is important */
2801 enum anv_fast_clear_type {
2802 /** Image does not have/support any fast-clear blocks */
2803 ANV_FAST_CLEAR_NONE = 0,
2804 /** Image has/supports fast-clear but only to the default value */
2805 ANV_FAST_CLEAR_DEFAULT_VALUE = 1,
2806 /** Image has/supports fast-clear with an arbitrary fast-clear value */
2807 ANV_FAST_CLEAR_ANY = 2,
2808 };
2809
2810 /* Returns the number of auxiliary buffer levels attached to an image. */
2811 static inline uint8_t
2812 anv_image_aux_levels(const struct anv_image * const image,
2813 VkImageAspectFlagBits aspect)
2814 {
2815 uint32_t plane = anv_image_aspect_to_plane(image->aspects, aspect);
2816 return image->planes[plane].aux_surface.isl.size_B > 0 ?
2817 image->planes[plane].aux_surface.isl.levels : 0;
2818 }
2819
2820 /* Returns the number of auxiliary buffer layers attached to an image. */
2821 static inline uint32_t
2822 anv_image_aux_layers(const struct anv_image * const image,
2823 VkImageAspectFlagBits aspect,
2824 const uint8_t miplevel)
2825 {
2826 assert(image);
2827
2828 /* The miplevel must exist in the main buffer. */
2829 assert(miplevel < image->levels);
2830
2831 if (miplevel >= anv_image_aux_levels(image, aspect)) {
2832 /* There are no layers with auxiliary data because the miplevel has no
2833 * auxiliary data.
2834 */
2835 return 0;
2836 } else {
2837 uint32_t plane = anv_image_aspect_to_plane(image->aspects, aspect);
2838 return MAX2(image->planes[plane].aux_surface.isl.logical_level0_px.array_len,
2839 image->planes[plane].aux_surface.isl.logical_level0_px.depth >> miplevel);
2840 }
2841 }
2842
2843 static inline struct anv_address
2844 anv_image_get_clear_color_addr(const struct anv_device *device,
2845 const struct anv_image *image,
2846 VkImageAspectFlagBits aspect)
2847 {
2848 assert(image->aspects & VK_IMAGE_ASPECT_ANY_COLOR_BIT_ANV);
2849
2850 uint32_t plane = anv_image_aspect_to_plane(image->aspects, aspect);
2851 return anv_address_add(image->planes[plane].address,
2852 image->planes[plane].fast_clear_state_offset);
2853 }
2854
2855 static inline struct anv_address
2856 anv_image_get_fast_clear_type_addr(const struct anv_device *device,
2857 const struct anv_image *image,
2858 VkImageAspectFlagBits aspect)
2859 {
2860 struct anv_address addr =
2861 anv_image_get_clear_color_addr(device, image, aspect);
2862
2863 const unsigned clear_color_state_size = device->info.gen >= 10 ?
2864 device->isl_dev.ss.clear_color_state_size :
2865 device->isl_dev.ss.clear_value_size;
2866 addr.offset += clear_color_state_size;
2867 return addr;
2868 }
2869
2870 static inline struct anv_address
2871 anv_image_get_compression_state_addr(const struct anv_device *device,
2872 const struct anv_image *image,
2873 VkImageAspectFlagBits aspect,
2874 uint32_t level, uint32_t array_layer)
2875 {
2876 assert(level < anv_image_aux_levels(image, aspect));
2877 assert(array_layer < anv_image_aux_layers(image, aspect, level));
2878 UNUSED uint32_t plane = anv_image_aspect_to_plane(image->aspects, aspect);
2879 assert(image->planes[plane].aux_usage == ISL_AUX_USAGE_CCS_E);
2880
2881 struct anv_address addr =
2882 anv_image_get_fast_clear_type_addr(device, image, aspect);
2883 addr.offset += 4; /* Go past the fast clear type */
2884
2885 if (image->type == VK_IMAGE_TYPE_3D) {
2886 for (uint32_t l = 0; l < level; l++)
2887 addr.offset += anv_minify(image->extent.depth, l) * 4;
2888 } else {
2889 addr.offset += level * image->array_size * 4;
2890 }
2891 addr.offset += array_layer * 4;
2892
2893 return addr;
2894 }
2895
2896 /* Returns true if a HiZ-enabled depth buffer can be sampled from. */
2897 static inline bool
2898 anv_can_sample_with_hiz(const struct gen_device_info * const devinfo,
2899 const struct anv_image *image)
2900 {
2901 if (!(image->aspects & VK_IMAGE_ASPECT_DEPTH_BIT))
2902 return false;
2903
2904 if (devinfo->gen < 8)
2905 return false;
2906
2907 return image->samples == 1;
2908 }
2909
2910 void
2911 anv_cmd_buffer_mark_image_written(struct anv_cmd_buffer *cmd_buffer,
2912 const struct anv_image *image,
2913 VkImageAspectFlagBits aspect,
2914 enum isl_aux_usage aux_usage,
2915 uint32_t level,
2916 uint32_t base_layer,
2917 uint32_t layer_count);
2918
2919 void
2920 anv_image_clear_color(struct anv_cmd_buffer *cmd_buffer,
2921 const struct anv_image *image,
2922 VkImageAspectFlagBits aspect,
2923 enum isl_aux_usage aux_usage,
2924 enum isl_format format, struct isl_swizzle swizzle,
2925 uint32_t level, uint32_t base_layer, uint32_t layer_count,
2926 VkRect2D area, union isl_color_value clear_color);
2927 void
2928 anv_image_clear_depth_stencil(struct anv_cmd_buffer *cmd_buffer,
2929 const struct anv_image *image,
2930 VkImageAspectFlags aspects,
2931 enum isl_aux_usage depth_aux_usage,
2932 uint32_t level,
2933 uint32_t base_layer, uint32_t layer_count,
2934 VkRect2D area,
2935 float depth_value, uint8_t stencil_value);
2936 void
2937 anv_image_hiz_op(struct anv_cmd_buffer *cmd_buffer,
2938 const struct anv_image *image,
2939 VkImageAspectFlagBits aspect, uint32_t level,
2940 uint32_t base_layer, uint32_t layer_count,
2941 enum isl_aux_op hiz_op);
2942 void
2943 anv_image_hiz_clear(struct anv_cmd_buffer *cmd_buffer,
2944 const struct anv_image *image,
2945 VkImageAspectFlags aspects,
2946 uint32_t level,
2947 uint32_t base_layer, uint32_t layer_count,
2948 VkRect2D area, uint8_t stencil_value);
2949 void
2950 anv_image_mcs_op(struct anv_cmd_buffer *cmd_buffer,
2951 const struct anv_image *image,
2952 VkImageAspectFlagBits aspect,
2953 uint32_t base_layer, uint32_t layer_count,
2954 enum isl_aux_op mcs_op, union isl_color_value *clear_value,
2955 bool predicate);
2956 void
2957 anv_image_ccs_op(struct anv_cmd_buffer *cmd_buffer,
2958 const struct anv_image *image,
2959 VkImageAspectFlagBits aspect, uint32_t level,
2960 uint32_t base_layer, uint32_t layer_count,
2961 enum isl_aux_op ccs_op, union isl_color_value *clear_value,
2962 bool predicate);
2963
2964 void
2965 anv_image_copy_to_shadow(struct anv_cmd_buffer *cmd_buffer,
2966 const struct anv_image *image,
2967 uint32_t base_level, uint32_t level_count,
2968 uint32_t base_layer, uint32_t layer_count);
2969
2970 enum isl_aux_usage
2971 anv_layout_to_aux_usage(const struct gen_device_info * const devinfo,
2972 const struct anv_image *image,
2973 const VkImageAspectFlagBits aspect,
2974 const VkImageLayout layout);
2975
2976 enum anv_fast_clear_type
2977 anv_layout_to_fast_clear_type(const struct gen_device_info * const devinfo,
2978 const struct anv_image * const image,
2979 const VkImageAspectFlagBits aspect,
2980 const VkImageLayout layout);
2981
2982 /* This is defined as a macro so that it works for both
2983 * VkImageSubresourceRange and VkImageSubresourceLayers
2984 */
2985 #define anv_get_layerCount(_image, _range) \
2986 ((_range)->layerCount == VK_REMAINING_ARRAY_LAYERS ? \
2987 (_image)->array_size - (_range)->baseArrayLayer : (_range)->layerCount)
2988
2989 static inline uint32_t
2990 anv_get_levelCount(const struct anv_image *image,
2991 const VkImageSubresourceRange *range)
2992 {
2993 return range->levelCount == VK_REMAINING_MIP_LEVELS ?
2994 image->levels - range->baseMipLevel : range->levelCount;
2995 }
2996
2997 static inline VkImageAspectFlags
2998 anv_image_expand_aspects(const struct anv_image *image,
2999 VkImageAspectFlags aspects)
3000 {
3001 /* If the underlying image has color plane aspects and
3002 * VK_IMAGE_ASPECT_COLOR_BIT has been requested, then return the aspects of
3003 * the underlying image. */
3004 if ((image->aspects & VK_IMAGE_ASPECT_PLANES_BITS_ANV) != 0 &&
3005 aspects == VK_IMAGE_ASPECT_COLOR_BIT)
3006 return image->aspects;
3007
3008 return aspects;
3009 }
3010
3011 static inline bool
3012 anv_image_aspects_compatible(VkImageAspectFlags aspects1,
3013 VkImageAspectFlags aspects2)
3014 {
3015 if (aspects1 == aspects2)
3016 return true;
3017
3018 /* Only 1 color aspects are compatibles. */
3019 if ((aspects1 & VK_IMAGE_ASPECT_ANY_COLOR_BIT_ANV) != 0 &&
3020 (aspects2 & VK_IMAGE_ASPECT_ANY_COLOR_BIT_ANV) != 0 &&
3021 util_bitcount(aspects1) == util_bitcount(aspects2))
3022 return true;
3023
3024 return false;
3025 }
3026
3027 struct anv_image_view {
3028 const struct anv_image *image; /**< VkImageViewCreateInfo::image */
3029
3030 VkImageAspectFlags aspect_mask;
3031 VkFormat vk_format;
3032 VkExtent3D extent; /**< Extent of VkImageViewCreateInfo::baseMipLevel. */
3033
3034 unsigned n_planes;
3035 struct {
3036 uint32_t image_plane;
3037
3038 struct isl_view isl;
3039
3040 /**
3041 * RENDER_SURFACE_STATE when using image as a sampler surface with an
3042 * image layout of SHADER_READ_ONLY_OPTIMAL or
3043 * DEPTH_STENCIL_READ_ONLY_OPTIMAL.
3044 */
3045 struct anv_surface_state optimal_sampler_surface_state;
3046
3047 /**
3048 * RENDER_SURFACE_STATE when using image as a sampler surface with an
3049 * image layout of GENERAL.
3050 */
3051 struct anv_surface_state general_sampler_surface_state;
3052
3053 /**
3054 * RENDER_SURFACE_STATE when using image as a storage image. Separate
3055 * states for write-only and readable, using the real format for
3056 * write-only and the lowered format for readable.
3057 */
3058 struct anv_surface_state storage_surface_state;
3059 struct anv_surface_state writeonly_storage_surface_state;
3060
3061 struct brw_image_param storage_image_param;
3062 } planes[3];
3063 };
3064
3065 enum anv_image_view_state_flags {
3066 ANV_IMAGE_VIEW_STATE_STORAGE_WRITE_ONLY = (1 << 0),
3067 ANV_IMAGE_VIEW_STATE_TEXTURE_OPTIMAL = (1 << 1),
3068 };
3069
3070 void anv_image_fill_surface_state(struct anv_device *device,
3071 const struct anv_image *image,
3072 VkImageAspectFlagBits aspect,
3073 const struct isl_view *view,
3074 isl_surf_usage_flags_t view_usage,
3075 enum isl_aux_usage aux_usage,
3076 const union isl_color_value *clear_color,
3077 enum anv_image_view_state_flags flags,
3078 struct anv_surface_state *state_inout,
3079 struct brw_image_param *image_param_out);
3080
3081 struct anv_image_create_info {
3082 const VkImageCreateInfo *vk_info;
3083
3084 /** An opt-in bitmask which filters an ISL-mapping of the Vulkan tiling. */
3085 isl_tiling_flags_t isl_tiling_flags;
3086
3087 /** These flags will be added to any derived from VkImageCreateInfo. */
3088 isl_surf_usage_flags_t isl_extra_usage_flags;
3089
3090 uint32_t stride;
3091 };
3092
3093 VkResult anv_image_create(VkDevice _device,
3094 const struct anv_image_create_info *info,
3095 const VkAllocationCallbacks* alloc,
3096 VkImage *pImage);
3097
3098 #ifdef ANDROID
3099 VkResult anv_image_from_gralloc(VkDevice device_h,
3100 const VkImageCreateInfo *base_info,
3101 const VkNativeBufferANDROID *gralloc_info,
3102 const VkAllocationCallbacks *alloc,
3103 VkImage *pImage);
3104 #endif
3105
3106 const struct anv_surface *
3107 anv_image_get_surface_for_aspect_mask(const struct anv_image *image,
3108 VkImageAspectFlags aspect_mask);
3109
3110 enum isl_format
3111 anv_isl_format_for_descriptor_type(VkDescriptorType type);
3112
3113 static inline struct VkExtent3D
3114 anv_sanitize_image_extent(const VkImageType imageType,
3115 const struct VkExtent3D imageExtent)
3116 {
3117 switch (imageType) {
3118 case VK_IMAGE_TYPE_1D:
3119 return (VkExtent3D) { imageExtent.width, 1, 1 };
3120 case VK_IMAGE_TYPE_2D:
3121 return (VkExtent3D) { imageExtent.width, imageExtent.height, 1 };
3122 case VK_IMAGE_TYPE_3D:
3123 return imageExtent;
3124 default:
3125 unreachable("invalid image type");
3126 }
3127 }
3128
3129 static inline struct VkOffset3D
3130 anv_sanitize_image_offset(const VkImageType imageType,
3131 const struct VkOffset3D imageOffset)
3132 {
3133 switch (imageType) {
3134 case VK_IMAGE_TYPE_1D:
3135 return (VkOffset3D) { imageOffset.x, 0, 0 };
3136 case VK_IMAGE_TYPE_2D:
3137 return (VkOffset3D) { imageOffset.x, imageOffset.y, 0 };
3138 case VK_IMAGE_TYPE_3D:
3139 return imageOffset;
3140 default:
3141 unreachable("invalid image type");
3142 }
3143 }
3144
3145
3146 void anv_fill_buffer_surface_state(struct anv_device *device,
3147 struct anv_state state,
3148 enum isl_format format,
3149 struct anv_address address,
3150 uint32_t range, uint32_t stride);
3151
3152 static inline void
3153 anv_clear_color_from_att_state(union isl_color_value *clear_color,
3154 const struct anv_attachment_state *att_state,
3155 const struct anv_image_view *iview)
3156 {
3157 const struct isl_format_layout *view_fmtl =
3158 isl_format_get_layout(iview->planes[0].isl.format);
3159
3160 #define COPY_CLEAR_COLOR_CHANNEL(c, i) \
3161 if (view_fmtl->channels.c.bits) \
3162 clear_color->u32[i] = att_state->clear_value.color.uint32[i]
3163
3164 COPY_CLEAR_COLOR_CHANNEL(r, 0);
3165 COPY_CLEAR_COLOR_CHANNEL(g, 1);
3166 COPY_CLEAR_COLOR_CHANNEL(b, 2);
3167 COPY_CLEAR_COLOR_CHANNEL(a, 3);
3168
3169 #undef COPY_CLEAR_COLOR_CHANNEL
3170 }
3171
3172
3173 struct anv_ycbcr_conversion {
3174 const struct anv_format * format;
3175 VkSamplerYcbcrModelConversion ycbcr_model;
3176 VkSamplerYcbcrRange ycbcr_range;
3177 VkComponentSwizzle mapping[4];
3178 VkChromaLocation chroma_offsets[2];
3179 VkFilter chroma_filter;
3180 bool chroma_reconstruction;
3181 };
3182
3183 struct anv_sampler {
3184 uint32_t state[3][4];
3185 uint32_t n_planes;
3186 struct anv_ycbcr_conversion *conversion;
3187 };
3188
3189 struct anv_framebuffer {
3190 uint32_t width;
3191 uint32_t height;
3192 uint32_t layers;
3193
3194 uint32_t attachment_count;
3195 struct anv_image_view * attachments[0];
3196 };
3197
3198 struct anv_subpass_attachment {
3199 VkImageUsageFlagBits usage;
3200 uint32_t attachment;
3201 VkImageLayout layout;
3202 };
3203
3204 struct anv_subpass {
3205 uint32_t attachment_count;
3206
3207 /**
3208 * A pointer to all attachment references used in this subpass.
3209 * Only valid if ::attachment_count > 0.
3210 */
3211 struct anv_subpass_attachment * attachments;
3212 uint32_t input_count;
3213 struct anv_subpass_attachment * input_attachments;
3214 uint32_t color_count;
3215 struct anv_subpass_attachment * color_attachments;
3216 struct anv_subpass_attachment * resolve_attachments;
3217
3218 struct anv_subpass_attachment * depth_stencil_attachment;
3219
3220 uint32_t view_mask;
3221
3222 /** Subpass has a depth/stencil self-dependency */
3223 bool has_ds_self_dep;
3224
3225 /** Subpass has at least one resolve attachment */
3226 bool has_resolve;
3227 };
3228
3229 static inline unsigned
3230 anv_subpass_view_count(const struct anv_subpass *subpass)
3231 {
3232 return MAX2(1, util_bitcount(subpass->view_mask));
3233 }
3234
3235 struct anv_render_pass_attachment {
3236 /* TODO: Consider using VkAttachmentDescription instead of storing each of
3237 * its members individually.
3238 */
3239 VkFormat format;
3240 uint32_t samples;
3241 VkImageUsageFlags usage;
3242 VkAttachmentLoadOp load_op;
3243 VkAttachmentStoreOp store_op;
3244 VkAttachmentLoadOp stencil_load_op;
3245 VkImageLayout initial_layout;
3246 VkImageLayout final_layout;
3247 VkImageLayout first_subpass_layout;
3248
3249 /* The subpass id in which the attachment will be used last. */
3250 uint32_t last_subpass_idx;
3251 };
3252
3253 struct anv_render_pass {
3254 uint32_t attachment_count;
3255 uint32_t subpass_count;
3256 /* An array of subpass_count+1 flushes, one per subpass boundary */
3257 enum anv_pipe_bits * subpass_flushes;
3258 struct anv_render_pass_attachment * attachments;
3259 struct anv_subpass subpasses[0];
3260 };
3261
3262 #define ANV_PIPELINE_STATISTICS_MASK 0x000007ff
3263
3264 struct anv_query_pool {
3265 VkQueryType type;
3266 VkQueryPipelineStatisticFlags pipeline_statistics;
3267 /** Stride between slots, in bytes */
3268 uint32_t stride;
3269 /** Number of slots in this query pool */
3270 uint32_t slots;
3271 struct anv_bo bo;
3272 };
3273
3274 int anv_get_instance_entrypoint_index(const char *name);
3275 int anv_get_device_entrypoint_index(const char *name);
3276
3277 bool
3278 anv_instance_entrypoint_is_enabled(int index, uint32_t core_version,
3279 const struct anv_instance_extension_table *instance);
3280
3281 bool
3282 anv_device_entrypoint_is_enabled(int index, uint32_t core_version,
3283 const struct anv_instance_extension_table *instance,
3284 const struct anv_device_extension_table *device);
3285
3286 void *anv_lookup_entrypoint(const struct gen_device_info *devinfo,
3287 const char *name);
3288
3289 void anv_dump_image_to_ppm(struct anv_device *device,
3290 struct anv_image *image, unsigned miplevel,
3291 unsigned array_layer, VkImageAspectFlagBits aspect,
3292 const char *filename);
3293
3294 enum anv_dump_action {
3295 ANV_DUMP_FRAMEBUFFERS_BIT = 0x1,
3296 };
3297
3298 void anv_dump_start(struct anv_device *device, enum anv_dump_action actions);
3299 void anv_dump_finish(void);
3300
3301 void anv_dump_add_framebuffer(struct anv_cmd_buffer *cmd_buffer,
3302 struct anv_framebuffer *fb);
3303
3304 static inline uint32_t
3305 anv_get_subpass_id(const struct anv_cmd_state * const cmd_state)
3306 {
3307 /* This function must be called from within a subpass. */
3308 assert(cmd_state->pass && cmd_state->subpass);
3309
3310 const uint32_t subpass_id = cmd_state->subpass - cmd_state->pass->subpasses;
3311
3312 /* The id of this subpass shouldn't exceed the number of subpasses in this
3313 * render pass minus 1.
3314 */
3315 assert(subpass_id < cmd_state->pass->subpass_count);
3316 return subpass_id;
3317 }
3318
3319 #define ANV_DEFINE_HANDLE_CASTS(__anv_type, __VkType) \
3320 \
3321 static inline struct __anv_type * \
3322 __anv_type ## _from_handle(__VkType _handle) \
3323 { \
3324 return (struct __anv_type *) _handle; \
3325 } \
3326 \
3327 static inline __VkType \
3328 __anv_type ## _to_handle(struct __anv_type *_obj) \
3329 { \
3330 return (__VkType) _obj; \
3331 }
3332
3333 #define ANV_DEFINE_NONDISP_HANDLE_CASTS(__anv_type, __VkType) \
3334 \
3335 static inline struct __anv_type * \
3336 __anv_type ## _from_handle(__VkType _handle) \
3337 { \
3338 return (struct __anv_type *)(uintptr_t) _handle; \
3339 } \
3340 \
3341 static inline __VkType \
3342 __anv_type ## _to_handle(struct __anv_type *_obj) \
3343 { \
3344 return (__VkType)(uintptr_t) _obj; \
3345 }
3346
3347 #define ANV_FROM_HANDLE(__anv_type, __name, __handle) \
3348 struct __anv_type *__name = __anv_type ## _from_handle(__handle)
3349
3350 ANV_DEFINE_HANDLE_CASTS(anv_cmd_buffer, VkCommandBuffer)
3351 ANV_DEFINE_HANDLE_CASTS(anv_device, VkDevice)
3352 ANV_DEFINE_HANDLE_CASTS(anv_instance, VkInstance)
3353 ANV_DEFINE_HANDLE_CASTS(anv_physical_device, VkPhysicalDevice)
3354 ANV_DEFINE_HANDLE_CASTS(anv_queue, VkQueue)
3355
3356 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_cmd_pool, VkCommandPool)
3357 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_buffer, VkBuffer)
3358 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_buffer_view, VkBufferView)
3359 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_descriptor_pool, VkDescriptorPool)
3360 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_descriptor_set, VkDescriptorSet)
3361 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_descriptor_set_layout, VkDescriptorSetLayout)
3362 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_descriptor_update_template, VkDescriptorUpdateTemplateKHR)
3363 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_device_memory, VkDeviceMemory)
3364 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_fence, VkFence)
3365 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_event, VkEvent)
3366 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_framebuffer, VkFramebuffer)
3367 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_image, VkImage)
3368 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_image_view, VkImageView);
3369 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_pipeline_cache, VkPipelineCache)
3370 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_pipeline, VkPipeline)
3371 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_pipeline_layout, VkPipelineLayout)
3372 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_query_pool, VkQueryPool)
3373 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_render_pass, VkRenderPass)
3374 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_sampler, VkSampler)
3375 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_semaphore, VkSemaphore)
3376 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_shader_module, VkShaderModule)
3377 ANV_DEFINE_NONDISP_HANDLE_CASTS(vk_debug_report_callback, VkDebugReportCallbackEXT)
3378 ANV_DEFINE_NONDISP_HANDLE_CASTS(anv_ycbcr_conversion, VkSamplerYcbcrConversion)
3379
3380 /* Gen-specific function declarations */
3381 #ifdef genX
3382 # include "anv_genX.h"
3383 #else
3384 # define genX(x) gen7_##x
3385 # include "anv_genX.h"
3386 # undef genX
3387 # define genX(x) gen75_##x
3388 # include "anv_genX.h"
3389 # undef genX
3390 # define genX(x) gen8_##x
3391 # include "anv_genX.h"
3392 # undef genX
3393 # define genX(x) gen9_##x
3394 # include "anv_genX.h"
3395 # undef genX
3396 # define genX(x) gen10_##x
3397 # include "anv_genX.h"
3398 # undef genX
3399 # define genX(x) gen11_##x
3400 # include "anv_genX.h"
3401 # undef genX
3402 #endif
3403
3404 #endif /* ANV_PRIVATE_H */