turnip: Use Vulkan 1.1 names instead of KHR
[mesa.git] / src / freedreno / vulkan / tu_private.h
1 /*
2 * Copyright © 2016 Red Hat.
3 * Copyright © 2016 Bas Nieuwenhuizen
4 *
5 * based in part on anv driver which is:
6 * Copyright © 2015 Intel Corporation
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the next
16 * paragraph) shall be included in all copies or substantial portions of the
17 * Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25 * DEALINGS IN THE SOFTWARE.
26 */
27
28 #ifndef TU_PRIVATE_H
29 #define TU_PRIVATE_H
30
31 #include <assert.h>
32 #include <pthread.h>
33 #include <stdbool.h>
34 #include <stdint.h>
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #ifdef HAVE_VALGRIND
39 #include <memcheck.h>
40 #include <valgrind.h>
41 #define VG(x) x
42 #else
43 #define VG(x)
44 #endif
45
46 #include "c11/threads.h"
47 #include "compiler/shader_enums.h"
48 #include "main/macros.h"
49 #include "util/list.h"
50 #include "util/macros.h"
51 #include "vk_alloc.h"
52 #include "vk_debug_report.h"
53
54 #include "drm/msm_drm.h"
55 #include "ir3/ir3_compiler.h"
56 #include "ir3/ir3_shader.h"
57
58 #include "adreno_common.xml.h"
59 #include "adreno_pm4.xml.h"
60 #include "a6xx.xml.h"
61
62 #include "tu_descriptor_set.h"
63 #include "tu_extensions.h"
64
65 /* Pre-declarations needed for WSI entrypoints */
66 struct wl_surface;
67 struct wl_display;
68 typedef struct xcb_connection_t xcb_connection_t;
69 typedef uint32_t xcb_visualid_t;
70 typedef uint32_t xcb_window_t;
71
72 #include <vulkan/vk_android_native_buffer.h>
73 #include <vulkan/vk_icd.h>
74 #include <vulkan/vulkan.h>
75 #include <vulkan/vulkan_intel.h>
76
77 #include "tu_entrypoints.h"
78
79 #define MAX_VBS 32
80 #define MAX_VERTEX_ATTRIBS 32
81 #define MAX_RTS 8
82 #define MAX_VSC_PIPES 32
83 #define MAX_VIEWPORTS 1
84 #define MAX_SCISSORS 16
85 #define MAX_DISCARD_RECTANGLES 4
86 #define MAX_PUSH_CONSTANTS_SIZE 128
87 #define MAX_PUSH_DESCRIPTORS 32
88 #define MAX_DYNAMIC_UNIFORM_BUFFERS 16
89 #define MAX_DYNAMIC_STORAGE_BUFFERS 8
90 #define MAX_DYNAMIC_BUFFERS \
91 (MAX_DYNAMIC_UNIFORM_BUFFERS + MAX_DYNAMIC_STORAGE_BUFFERS)
92 #define MAX_SAMPLES_LOG2 4
93 #define NUM_META_FS_KEYS 13
94 #define TU_MAX_DRM_DEVICES 8
95 #define MAX_VIEWS 8
96
97 #define NUM_DEPTH_CLEAR_PIPELINES 3
98
99 /*
100 * This is the point we switch from using CP to compute shader
101 * for certain buffer operations.
102 */
103 #define TU_BUFFER_OPS_CS_THRESHOLD 4096
104
105 enum tu_mem_heap
106 {
107 TU_MEM_HEAP_VRAM,
108 TU_MEM_HEAP_VRAM_CPU_ACCESS,
109 TU_MEM_HEAP_GTT,
110 TU_MEM_HEAP_COUNT
111 };
112
113 enum tu_mem_type
114 {
115 TU_MEM_TYPE_VRAM,
116 TU_MEM_TYPE_GTT_WRITE_COMBINE,
117 TU_MEM_TYPE_VRAM_CPU_ACCESS,
118 TU_MEM_TYPE_GTT_CACHED,
119 TU_MEM_TYPE_COUNT
120 };
121
122 #define tu_printflike(a, b) __attribute__((__format__(__printf__, a, b)))
123
124 static inline uint32_t
125 align_u32(uint32_t v, uint32_t a)
126 {
127 assert(a != 0 && a == (a & -a));
128 return (v + a - 1) & ~(a - 1);
129 }
130
131 static inline uint32_t
132 align_u32_npot(uint32_t v, uint32_t a)
133 {
134 return (v + a - 1) / a * a;
135 }
136
137 static inline uint64_t
138 align_u64(uint64_t v, uint64_t a)
139 {
140 assert(a != 0 && a == (a & -a));
141 return (v + a - 1) & ~(a - 1);
142 }
143
144 static inline int32_t
145 align_i32(int32_t v, int32_t a)
146 {
147 assert(a != 0 && a == (a & -a));
148 return (v + a - 1) & ~(a - 1);
149 }
150
151 /** Alignment must be a power of 2. */
152 static inline bool
153 tu_is_aligned(uintmax_t n, uintmax_t a)
154 {
155 assert(a == (a & -a));
156 return (n & (a - 1)) == 0;
157 }
158
159 static inline uint32_t
160 round_up_u32(uint32_t v, uint32_t a)
161 {
162 return (v + a - 1) / a;
163 }
164
165 static inline uint64_t
166 round_up_u64(uint64_t v, uint64_t a)
167 {
168 return (v + a - 1) / a;
169 }
170
171 static inline uint32_t
172 tu_minify(uint32_t n, uint32_t levels)
173 {
174 if (unlikely(n == 0))
175 return 0;
176 else
177 return MAX2(n >> levels, 1);
178 }
179 static inline float
180 tu_clamp_f(float f, float min, float max)
181 {
182 assert(min < max);
183
184 if (f > max)
185 return max;
186 else if (f < min)
187 return min;
188 else
189 return f;
190 }
191
192 static inline bool
193 tu_clear_mask(uint32_t *inout_mask, uint32_t clear_mask)
194 {
195 if (*inout_mask & clear_mask) {
196 *inout_mask &= ~clear_mask;
197 return true;
198 } else {
199 return false;
200 }
201 }
202
203 #define for_each_bit(b, dword) \
204 for (uint32_t __dword = (dword); \
205 (b) = __builtin_ffs(__dword) - 1, __dword; __dword &= ~(1 << (b)))
206
207 #define typed_memcpy(dest, src, count) \
208 ({ \
209 STATIC_ASSERT(sizeof(*src) == sizeof(*dest)); \
210 memcpy((dest), (src), (count) * sizeof(*(src))); \
211 })
212
213 /* Whenever we generate an error, pass it through this function. Useful for
214 * debugging, where we can break on it. Only call at error site, not when
215 * propagating errors. Might be useful to plug in a stack trace here.
216 */
217
218 struct tu_instance;
219
220 VkResult
221 __vk_errorf(struct tu_instance *instance,
222 VkResult error,
223 const char *file,
224 int line,
225 const char *format,
226 ...);
227
228 #define vk_error(instance, error) \
229 __vk_errorf(instance, error, __FILE__, __LINE__, NULL);
230 #define vk_errorf(instance, error, format, ...) \
231 __vk_errorf(instance, error, __FILE__, __LINE__, format, ##__VA_ARGS__);
232
233 void
234 __tu_finishme(const char *file, int line, const char *format, ...)
235 tu_printflike(3, 4);
236 void
237 tu_loge(const char *format, ...) tu_printflike(1, 2);
238 void
239 tu_loge_v(const char *format, va_list va);
240 void
241 tu_logi(const char *format, ...) tu_printflike(1, 2);
242 void
243 tu_logi_v(const char *format, va_list va);
244
245 /**
246 * Print a FINISHME message, including its source location.
247 */
248 #define tu_finishme(format, ...) \
249 do { \
250 static bool reported = false; \
251 if (!reported) { \
252 __tu_finishme(__FILE__, __LINE__, format, ##__VA_ARGS__); \
253 reported = true; \
254 } \
255 } while (0)
256
257 /* A non-fatal assert. Useful for debugging. */
258 #ifdef DEBUG
259 #define tu_assert(x) \
260 ({ \
261 if (unlikely(!(x))) \
262 fprintf(stderr, "%s:%d ASSERT: %s\n", __FILE__, __LINE__, #x); \
263 })
264 #else
265 #define tu_assert(x)
266 #endif
267
268 /* Suppress -Wunused in stub functions */
269 #define tu_use_args(...) __tu_use_args(0, ##__VA_ARGS__)
270 static inline void
271 __tu_use_args(int ignore, ...)
272 {
273 }
274
275 #define tu_stub() \
276 do { \
277 tu_finishme("stub %s", __func__); \
278 } while (0)
279
280 void *
281 tu_lookup_entrypoint_unchecked(const char *name);
282 void *
283 tu_lookup_entrypoint_checked(
284 const char *name,
285 uint32_t core_version,
286 const struct tu_instance_extension_table *instance,
287 const struct tu_device_extension_table *device);
288
289 struct tu_physical_device
290 {
291 VK_LOADER_DATA _loader_data;
292
293 struct tu_instance *instance;
294
295 char path[20];
296 char name[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
297 uint8_t driver_uuid[VK_UUID_SIZE];
298 uint8_t device_uuid[VK_UUID_SIZE];
299 uint8_t cache_uuid[VK_UUID_SIZE];
300
301 int local_fd;
302 int master_fd;
303
304 unsigned gpu_id;
305 uint32_t gmem_size;
306 uint32_t tile_align_w;
307 uint32_t tile_align_h;
308
309 /* This is the drivers on-disk cache used as a fallback as opposed to
310 * the pipeline cache defined by apps.
311 */
312 struct disk_cache *disk_cache;
313
314 struct tu_device_extension_table supported_extensions;
315 };
316
317 enum tu_debug_flags
318 {
319 TU_DEBUG_STARTUP = 1 << 0,
320 TU_DEBUG_NIR = 1 << 1,
321 TU_DEBUG_IR3 = 1 << 2,
322 };
323
324 struct tu_instance
325 {
326 VK_LOADER_DATA _loader_data;
327
328 VkAllocationCallbacks alloc;
329
330 uint32_t api_version;
331 int physical_device_count;
332 struct tu_physical_device physical_devices[TU_MAX_DRM_DEVICES];
333
334 enum tu_debug_flags debug_flags;
335
336 struct vk_debug_report_instance debug_report_callbacks;
337
338 struct tu_instance_extension_table enabled_extensions;
339 };
340
341 bool
342 tu_instance_extension_supported(const char *name);
343 uint32_t
344 tu_physical_device_api_version(struct tu_physical_device *dev);
345 bool
346 tu_physical_device_extension_supported(struct tu_physical_device *dev,
347 const char *name);
348
349 struct cache_entry;
350
351 struct tu_pipeline_cache
352 {
353 struct tu_device *device;
354 pthread_mutex_t mutex;
355
356 uint32_t total_size;
357 uint32_t table_size;
358 uint32_t kernel_count;
359 struct cache_entry **hash_table;
360 bool modified;
361
362 VkAllocationCallbacks alloc;
363 };
364
365 struct tu_pipeline_key
366 {
367 };
368
369 void
370 tu_pipeline_cache_init(struct tu_pipeline_cache *cache,
371 struct tu_device *device);
372 void
373 tu_pipeline_cache_finish(struct tu_pipeline_cache *cache);
374 void
375 tu_pipeline_cache_load(struct tu_pipeline_cache *cache,
376 const void *data,
377 size_t size);
378
379 struct tu_shader_variant;
380
381 bool
382 tu_create_shader_variants_from_pipeline_cache(
383 struct tu_device *device,
384 struct tu_pipeline_cache *cache,
385 const unsigned char *sha1,
386 struct tu_shader_variant **variants);
387
388 void
389 tu_pipeline_cache_insert_shaders(struct tu_device *device,
390 struct tu_pipeline_cache *cache,
391 const unsigned char *sha1,
392 struct tu_shader_variant **variants,
393 const void *const *codes,
394 const unsigned *code_sizes);
395
396 struct tu_meta_state
397 {
398 VkAllocationCallbacks alloc;
399
400 struct tu_pipeline_cache cache;
401 };
402
403 /* queue types */
404 #define TU_QUEUE_GENERAL 0
405
406 #define TU_MAX_QUEUE_FAMILIES 1
407
408 struct tu_fence
409 {
410 bool signaled;
411 int fd;
412 };
413
414 void
415 tu_fence_init(struct tu_fence *fence, bool signaled);
416 void
417 tu_fence_finish(struct tu_fence *fence);
418 void
419 tu_fence_update_fd(struct tu_fence *fence, int fd);
420 void
421 tu_fence_copy(struct tu_fence *fence, const struct tu_fence *src);
422 void
423 tu_fence_signal(struct tu_fence *fence);
424 void
425 tu_fence_wait_idle(struct tu_fence *fence);
426
427 struct tu_queue
428 {
429 VK_LOADER_DATA _loader_data;
430 struct tu_device *device;
431 uint32_t queue_family_index;
432 int queue_idx;
433 VkDeviceQueueCreateFlags flags;
434
435 uint32_t msm_queue_id;
436 struct tu_fence submit_fence;
437 };
438
439 struct tu_device
440 {
441 VK_LOADER_DATA _loader_data;
442
443 VkAllocationCallbacks alloc;
444
445 struct tu_instance *instance;
446
447 struct tu_meta_state meta_state;
448
449 struct tu_queue *queues[TU_MAX_QUEUE_FAMILIES];
450 int queue_count[TU_MAX_QUEUE_FAMILIES];
451
452 struct tu_physical_device *physical_device;
453
454 struct ir3_compiler *compiler;
455
456 /* Backup in-memory cache to be used if the app doesn't provide one */
457 struct tu_pipeline_cache *mem_cache;
458
459 struct list_head shader_slabs;
460 mtx_t shader_slab_mutex;
461
462 struct tu_device_extension_table enabled_extensions;
463 };
464
465 struct tu_bo
466 {
467 uint32_t gem_handle;
468 uint64_t size;
469 uint64_t iova;
470 void *map;
471 };
472
473 VkResult
474 tu_bo_init_new(struct tu_device *dev, struct tu_bo *bo, uint64_t size);
475 VkResult
476 tu_bo_init_dmabuf(struct tu_device *dev,
477 struct tu_bo *bo,
478 uint64_t size,
479 int fd);
480 int
481 tu_bo_export_dmabuf(struct tu_device *dev, struct tu_bo *bo);
482 void
483 tu_bo_finish(struct tu_device *dev, struct tu_bo *bo);
484 VkResult
485 tu_bo_map(struct tu_device *dev, struct tu_bo *bo);
486
487 struct tu_cs_entry
488 {
489 /* No ownership */
490 const struct tu_bo *bo;
491
492 uint32_t size;
493 uint32_t offset;
494 };
495
496 enum tu_cs_mode
497 {
498
499 /*
500 * A command stream in TU_CS_MODE_GROW mode grows automatically whenever it
501 * is full. tu_cs_begin must be called before command packet emission and
502 * tu_cs_end must be called after.
503 *
504 * This mode may create multiple entries internally. The entries must be
505 * submitted together.
506 */
507 TU_CS_MODE_GROW,
508
509 /*
510 * A command stream in TU_CS_MODE_EXTERNAL mode wraps an external,
511 * fixed-size buffer. tu_cs_begin and tu_cs_end are optional and have no
512 * effect on it.
513 *
514 * This mode does not create any entry or any BO.
515 */
516 TU_CS_MODE_EXTERNAL,
517
518 /*
519 * A command stream in TU_CS_MODE_SUB_STREAM mode does not support direct
520 * command packet emission. tu_cs_begin_sub_stream must be called to get a
521 * sub-stream to emit comamnd packets to. When done with the sub-stream,
522 * tu_cs_end_sub_stream must be called.
523 *
524 * This mode does not create any entry internally.
525 */
526 TU_CS_MODE_SUB_STREAM,
527 };
528
529 struct tu_cs
530 {
531 uint32_t *start;
532 uint32_t *cur;
533 uint32_t *reserved_end;
534 uint32_t *end;
535
536 enum tu_cs_mode mode;
537 uint32_t next_bo_size;
538
539 struct tu_cs_entry *entries;
540 uint32_t entry_count;
541 uint32_t entry_capacity;
542
543 struct tu_bo **bos;
544 uint32_t bo_count;
545 uint32_t bo_capacity;
546 };
547
548 struct tu_device_memory
549 {
550 struct tu_bo bo;
551 VkDeviceSize size;
552
553 /* for dedicated allocations */
554 struct tu_image *image;
555 struct tu_buffer *buffer;
556
557 uint32_t type_index;
558 void *map;
559 void *user_ptr;
560 };
561
562 struct tu_descriptor_range
563 {
564 uint64_t va;
565 uint32_t size;
566 };
567
568 struct tu_descriptor_set
569 {
570 const struct tu_descriptor_set_layout *layout;
571 uint32_t size;
572
573 uint64_t va;
574 uint32_t *mapped_ptr;
575 struct tu_descriptor_range *dynamic_descriptors;
576 };
577
578 struct tu_push_descriptor_set
579 {
580 struct tu_descriptor_set set;
581 uint32_t capacity;
582 };
583
584 struct tu_descriptor_pool_entry
585 {
586 uint32_t offset;
587 uint32_t size;
588 struct tu_descriptor_set *set;
589 };
590
591 struct tu_descriptor_pool
592 {
593 uint8_t *mapped_ptr;
594 uint64_t current_offset;
595 uint64_t size;
596
597 uint8_t *host_memory_base;
598 uint8_t *host_memory_ptr;
599 uint8_t *host_memory_end;
600
601 uint32_t entry_count;
602 uint32_t max_entry_count;
603 struct tu_descriptor_pool_entry entries[0];
604 };
605
606 struct tu_descriptor_update_template_entry
607 {
608 VkDescriptorType descriptor_type;
609
610 /* The number of descriptors to update */
611 uint32_t descriptor_count;
612
613 /* Into mapped_ptr or dynamic_descriptors, in units of the respective array
614 */
615 uint32_t dst_offset;
616
617 /* In dwords. Not valid/used for dynamic descriptors */
618 uint32_t dst_stride;
619
620 uint32_t buffer_offset;
621
622 /* Only valid for combined image samplers and samplers */
623 uint16_t has_sampler;
624
625 /* In bytes */
626 size_t src_offset;
627 size_t src_stride;
628
629 /* For push descriptors */
630 const uint32_t *immutable_samplers;
631 };
632
633 struct tu_descriptor_update_template
634 {
635 uint32_t entry_count;
636 VkPipelineBindPoint bind_point;
637 struct tu_descriptor_update_template_entry entry[0];
638 };
639
640 struct tu_buffer
641 {
642 VkDeviceSize size;
643
644 VkBufferUsageFlags usage;
645 VkBufferCreateFlags flags;
646
647 struct tu_bo *bo;
648 VkDeviceSize bo_offset;
649 };
650
651 enum tu_dynamic_state_bits
652 {
653 TU_DYNAMIC_VIEWPORT = 1 << 0,
654 TU_DYNAMIC_SCISSOR = 1 << 1,
655 TU_DYNAMIC_LINE_WIDTH = 1 << 2,
656 TU_DYNAMIC_DEPTH_BIAS = 1 << 3,
657 TU_DYNAMIC_BLEND_CONSTANTS = 1 << 4,
658 TU_DYNAMIC_DEPTH_BOUNDS = 1 << 5,
659 TU_DYNAMIC_STENCIL_COMPARE_MASK = 1 << 6,
660 TU_DYNAMIC_STENCIL_WRITE_MASK = 1 << 7,
661 TU_DYNAMIC_STENCIL_REFERENCE = 1 << 8,
662 TU_DYNAMIC_DISCARD_RECTANGLE = 1 << 9,
663 TU_DYNAMIC_ALL = (1 << 10) - 1,
664 };
665
666 struct tu_vertex_binding
667 {
668 struct tu_buffer *buffer;
669 VkDeviceSize offset;
670 };
671
672 struct tu_viewport_state
673 {
674 uint32_t count;
675 VkViewport viewports[MAX_VIEWPORTS];
676 };
677
678 struct tu_scissor_state
679 {
680 uint32_t count;
681 VkRect2D scissors[MAX_SCISSORS];
682 };
683
684 struct tu_discard_rectangle_state
685 {
686 uint32_t count;
687 VkRect2D rectangles[MAX_DISCARD_RECTANGLES];
688 };
689
690 struct tu_dynamic_state
691 {
692 /**
693 * Bitmask of (1 << VK_DYNAMIC_STATE_*).
694 * Defines the set of saved dynamic state.
695 */
696 uint32_t mask;
697
698 struct tu_viewport_state viewport;
699
700 struct tu_scissor_state scissor;
701
702 float line_width;
703
704 struct
705 {
706 float bias;
707 float clamp;
708 float slope;
709 } depth_bias;
710
711 float blend_constants[4];
712
713 struct
714 {
715 float min;
716 float max;
717 } depth_bounds;
718
719 struct
720 {
721 uint32_t front;
722 uint32_t back;
723 } stencil_compare_mask;
724
725 struct
726 {
727 uint32_t front;
728 uint32_t back;
729 } stencil_write_mask;
730
731 struct
732 {
733 uint32_t front;
734 uint32_t back;
735 } stencil_reference;
736
737 struct tu_discard_rectangle_state discard_rectangle;
738 };
739
740 extern const struct tu_dynamic_state default_dynamic_state;
741
742 const char *
743 tu_get_debug_option_name(int id);
744
745 const char *
746 tu_get_perftest_option_name(int id);
747
748 /**
749 * Attachment state when recording a renderpass instance.
750 *
751 * The clear value is valid only if there exists a pending clear.
752 */
753 struct tu_attachment_state
754 {
755 VkImageAspectFlags pending_clear_aspects;
756 uint32_t cleared_views;
757 VkClearValue clear_value;
758 VkImageLayout current_layout;
759 };
760
761 struct tu_descriptor_state
762 {
763 struct tu_descriptor_set *sets[MAX_SETS];
764 uint32_t dirty;
765 uint32_t valid;
766 struct tu_push_descriptor_set push_set;
767 bool push_dirty;
768 uint32_t dynamic_buffers[4 * MAX_DYNAMIC_BUFFERS];
769 };
770
771 struct tu_tile
772 {
773 uint8_t pipe;
774 uint8_t slot;
775 VkOffset2D begin;
776 VkOffset2D end;
777 };
778
779 struct tu_tiling_config
780 {
781 VkRect2D render_area;
782 uint32_t buffer_cpp[MAX_RTS + 2];
783 uint32_t buffer_count;
784
785 /* position and size of the first tile */
786 VkRect2D tile0;
787 /* number of tiles */
788 VkExtent2D tile_count;
789
790 uint32_t gmem_offsets[MAX_RTS + 2];
791
792 /* size of the first VSC pipe */
793 VkExtent2D pipe0;
794 /* number of VSC pipes */
795 VkExtent2D pipe_count;
796
797 /* pipe register values */
798 uint32_t pipe_config[MAX_VSC_PIPES];
799 uint32_t pipe_sizes[MAX_VSC_PIPES];
800 };
801
802 enum tu_cmd_dirty_bits
803 {
804 TU_CMD_DIRTY_PIPELINE = 1 << 0,
805 TU_CMD_DIRTY_VERTEX_BUFFERS = 1 << 1,
806
807 TU_CMD_DIRTY_DYNAMIC_LINE_WIDTH = 1 << 16,
808 TU_CMD_DIRTY_DYNAMIC_STENCIL_COMPARE_MASK = 1 << 17,
809 TU_CMD_DIRTY_DYNAMIC_STENCIL_WRITE_MASK = 1 << 18,
810 TU_CMD_DIRTY_DYNAMIC_STENCIL_REFERENCE = 1 << 19,
811 };
812
813 struct tu_cmd_state
814 {
815 uint32_t dirty;
816
817 struct tu_pipeline *pipeline;
818
819 /* Vertex buffers */
820 struct
821 {
822 struct tu_buffer *buffers[MAX_VBS];
823 VkDeviceSize offsets[MAX_VBS];
824 } vb;
825
826 struct tu_dynamic_state dynamic;
827
828 /* Index buffer */
829 struct tu_buffer *index_buffer;
830 uint64_t index_offset;
831 uint32_t index_type;
832 uint32_t max_index_count;
833 uint64_t index_va;
834
835 const struct tu_render_pass *pass;
836 const struct tu_subpass *subpass;
837 const struct tu_framebuffer *framebuffer;
838 struct tu_attachment_state *attachments;
839
840 struct tu_tiling_config tiling_config;
841
842 struct tu_cs_entry tile_load_ib;
843 struct tu_cs_entry tile_store_ib;
844 };
845
846 struct tu_cmd_pool
847 {
848 VkAllocationCallbacks alloc;
849 struct list_head cmd_buffers;
850 struct list_head free_cmd_buffers;
851 uint32_t queue_family_index;
852 };
853
854 struct tu_cmd_buffer_upload
855 {
856 uint8_t *map;
857 unsigned offset;
858 uint64_t size;
859 struct list_head list;
860 };
861
862 enum tu_cmd_buffer_status
863 {
864 TU_CMD_BUFFER_STATUS_INVALID,
865 TU_CMD_BUFFER_STATUS_INITIAL,
866 TU_CMD_BUFFER_STATUS_RECORDING,
867 TU_CMD_BUFFER_STATUS_EXECUTABLE,
868 TU_CMD_BUFFER_STATUS_PENDING,
869 };
870
871 struct tu_bo_list
872 {
873 uint32_t count;
874 uint32_t capacity;
875 struct drm_msm_gem_submit_bo *bo_infos;
876 };
877
878 #define TU_BO_LIST_FAILED (~0)
879
880 void
881 tu_bo_list_init(struct tu_bo_list *list);
882 void
883 tu_bo_list_destroy(struct tu_bo_list *list);
884 void
885 tu_bo_list_reset(struct tu_bo_list *list);
886 uint32_t
887 tu_bo_list_add(struct tu_bo_list *list,
888 const struct tu_bo *bo,
889 uint32_t flags);
890 VkResult
891 tu_bo_list_merge(struct tu_bo_list *list, const struct tu_bo_list *other);
892
893 struct tu_cmd_buffer
894 {
895 VK_LOADER_DATA _loader_data;
896
897 struct tu_device *device;
898
899 struct tu_cmd_pool *pool;
900 struct list_head pool_link;
901
902 VkCommandBufferUsageFlags usage_flags;
903 VkCommandBufferLevel level;
904 enum tu_cmd_buffer_status status;
905
906 struct tu_cmd_state state;
907 struct tu_vertex_binding vertex_bindings[MAX_VBS];
908 uint32_t queue_family_index;
909
910 uint8_t push_constants[MAX_PUSH_CONSTANTS_SIZE];
911 VkShaderStageFlags push_constant_stages;
912 struct tu_descriptor_set meta_push_descriptors;
913
914 struct tu_descriptor_state descriptors[VK_PIPELINE_BIND_POINT_RANGE_SIZE];
915
916 struct tu_cmd_buffer_upload upload;
917
918 VkResult record_result;
919
920 struct tu_bo_list bo_list;
921 struct tu_cs cs;
922 struct tu_cs draw_cs;
923 struct tu_cs tile_cs;
924
925 uint16_t marker_reg;
926 uint32_t marker_seqno;
927
928 struct tu_bo scratch_bo;
929 uint32_t scratch_seqno;
930
931 bool wait_for_idle;
932 };
933
934 void
935 tu6_emit_event_write(struct tu_cmd_buffer *cmd,
936 struct tu_cs *cs,
937 enum vgt_event_type event,
938 bool need_seqno);
939
940 bool
941 tu_get_memory_fd(struct tu_device *device,
942 struct tu_device_memory *memory,
943 int *pFD);
944
945 /*
946 * Takes x,y,z as exact numbers of invocations, instead of blocks.
947 *
948 * Limitations: Can't call normal dispatch functions without binding or
949 * rebinding
950 * the compute pipeline.
951 */
952 void
953 tu_unaligned_dispatch(struct tu_cmd_buffer *cmd_buffer,
954 uint32_t x,
955 uint32_t y,
956 uint32_t z);
957
958 struct tu_event
959 {
960 uint64_t *map;
961 };
962
963 struct tu_shader_module;
964
965 #define TU_HASH_SHADER_IS_GEOM_COPY_SHADER (1 << 0)
966 #define TU_HASH_SHADER_SISCHED (1 << 1)
967 #define TU_HASH_SHADER_UNSAFE_MATH (1 << 2)
968 void
969 tu_hash_shaders(unsigned char *hash,
970 const VkPipelineShaderStageCreateInfo **stages,
971 const struct tu_pipeline_layout *layout,
972 const struct tu_pipeline_key *key,
973 uint32_t flags);
974
975 static inline gl_shader_stage
976 vk_to_mesa_shader_stage(VkShaderStageFlagBits vk_stage)
977 {
978 assert(__builtin_popcount(vk_stage) == 1);
979 return ffs(vk_stage) - 1;
980 }
981
982 static inline VkShaderStageFlagBits
983 mesa_to_vk_shader_stage(gl_shader_stage mesa_stage)
984 {
985 return (1 << mesa_stage);
986 }
987
988 #define TU_STAGE_MASK ((1 << MESA_SHADER_STAGES) - 1)
989
990 #define tu_foreach_stage(stage, stage_bits) \
991 for (gl_shader_stage stage, \
992 __tmp = (gl_shader_stage)((stage_bits) &TU_STAGE_MASK); \
993 stage = __builtin_ffs(__tmp) - 1, __tmp; __tmp &= ~(1 << (stage)))
994
995 struct tu_shader_module
996 {
997 unsigned char sha1[20];
998
999 uint32_t code_size;
1000 const uint32_t *code[0];
1001 };
1002
1003 struct tu_shader_compile_options
1004 {
1005 struct ir3_shader_key key;
1006
1007 bool optimize;
1008 bool include_binning_pass;
1009 };
1010
1011 struct tu_shader
1012 {
1013 struct ir3_shader ir3_shader;
1014
1015 /* This may be true for vertex shaders. When true, variants[1] is the
1016 * binning variant and binning_binary is non-NULL.
1017 */
1018 bool has_binning_pass;
1019
1020 void *binary;
1021 void *binning_binary;
1022
1023 struct ir3_shader_variant variants[0];
1024 };
1025
1026 struct tu_shader *
1027 tu_shader_create(struct tu_device *dev,
1028 gl_shader_stage stage,
1029 const VkPipelineShaderStageCreateInfo *stage_info,
1030 const VkAllocationCallbacks *alloc);
1031
1032 void
1033 tu_shader_destroy(struct tu_device *dev,
1034 struct tu_shader *shader,
1035 const VkAllocationCallbacks *alloc);
1036
1037 void
1038 tu_shader_compile_options_init(
1039 struct tu_shader_compile_options *options,
1040 const VkGraphicsPipelineCreateInfo *pipeline_info);
1041
1042 VkResult
1043 tu_shader_compile(struct tu_device *dev,
1044 struct tu_shader *shader,
1045 const struct tu_shader *next_stage,
1046 const struct tu_shader_compile_options *options,
1047 const VkAllocationCallbacks *alloc);
1048
1049 struct tu_pipeline
1050 {
1051 struct tu_cs cs;
1052
1053 struct tu_dynamic_state dynamic_state;
1054
1055 struct tu_pipeline_layout *layout;
1056
1057 bool need_indirect_descriptor_sets;
1058 VkShaderStageFlags active_stages;
1059
1060 struct
1061 {
1062 struct tu_bo binary_bo;
1063 struct tu_cs_entry state_ib;
1064 struct tu_cs_entry binning_state_ib;
1065 } program;
1066
1067 struct
1068 {
1069 uint8_t bindings[MAX_VERTEX_ATTRIBS];
1070 uint16_t strides[MAX_VERTEX_ATTRIBS];
1071 uint16_t offsets[MAX_VERTEX_ATTRIBS];
1072 uint32_t count;
1073
1074 uint8_t binning_bindings[MAX_VERTEX_ATTRIBS];
1075 uint16_t binning_strides[MAX_VERTEX_ATTRIBS];
1076 uint16_t binning_offsets[MAX_VERTEX_ATTRIBS];
1077 uint32_t binning_count;
1078
1079 struct tu_cs_entry state_ib;
1080 struct tu_cs_entry binning_state_ib;
1081 } vi;
1082
1083 struct
1084 {
1085 enum pc_di_primtype primtype;
1086 bool primitive_restart;
1087 } ia;
1088
1089 struct
1090 {
1091 struct tu_cs_entry state_ib;
1092 } vp;
1093
1094 struct
1095 {
1096 uint32_t gras_su_cntl;
1097 struct tu_cs_entry state_ib;
1098 } rast;
1099
1100 struct
1101 {
1102 struct tu_cs_entry state_ib;
1103 } ds;
1104
1105 struct
1106 {
1107 struct tu_cs_entry state_ib;
1108 } blend;
1109 };
1110
1111 void
1112 tu6_emit_viewport(struct tu_cs *cs, const VkViewport *viewport);
1113
1114 void
1115 tu6_emit_scissor(struct tu_cs *cs, const VkRect2D *scissor);
1116
1117 void
1118 tu6_emit_gras_su_cntl(struct tu_cs *cs,
1119 uint32_t gras_su_cntl,
1120 float line_width);
1121
1122 void
1123 tu6_emit_depth_bias(struct tu_cs *cs,
1124 float constant_factor,
1125 float clamp,
1126 float slope_factor);
1127
1128 void
1129 tu6_emit_stencil_compare_mask(struct tu_cs *cs,
1130 uint32_t front,
1131 uint32_t back);
1132
1133 void
1134 tu6_emit_stencil_write_mask(struct tu_cs *cs, uint32_t front, uint32_t back);
1135
1136 void
1137 tu6_emit_stencil_reference(struct tu_cs *cs, uint32_t front, uint32_t back);
1138
1139 void
1140 tu6_emit_blend_constants(struct tu_cs *cs, const float constants[4]);
1141
1142 struct tu_userdata_info *
1143 tu_lookup_user_sgpr(struct tu_pipeline *pipeline,
1144 gl_shader_stage stage,
1145 int idx);
1146
1147 struct tu_shader_variant *
1148 tu_get_shader(struct tu_pipeline *pipeline, gl_shader_stage stage);
1149
1150 struct tu_graphics_pipeline_create_info
1151 {
1152 bool use_rectlist;
1153 bool db_depth_clear;
1154 bool db_stencil_clear;
1155 bool db_depth_disable_expclear;
1156 bool db_stencil_disable_expclear;
1157 bool db_flush_depth_inplace;
1158 bool db_flush_stencil_inplace;
1159 bool db_resummarize;
1160 uint32_t custom_blend_mode;
1161 };
1162
1163 struct tu_native_format
1164 {
1165 int vtx; /* VFMTn_xxx or -1 */
1166 int tex; /* TFMTn_xxx or -1 */
1167 int rb; /* RBn_xxx or -1 */
1168 int swap; /* enum a3xx_color_swap */
1169 bool present; /* internal only; always true to external users */
1170 };
1171
1172 const struct tu_native_format *
1173 tu6_get_native_format(VkFormat format);
1174
1175 int
1176 tu_pack_clear_value(const VkClearValue *val,
1177 VkFormat format,
1178 uint32_t buf[4]);
1179 enum a6xx_2d_ifmt tu6_rb_fmt_to_ifmt(enum a6xx_color_fmt fmt);
1180
1181 struct tu_image_level
1182 {
1183 VkDeviceSize offset;
1184 VkDeviceSize size;
1185 uint32_t pitch;
1186 };
1187
1188 struct tu_image
1189 {
1190 VkImageType type;
1191 /* The original VkFormat provided by the client. This may not match any
1192 * of the actual surface formats.
1193 */
1194 VkFormat vk_format;
1195 VkImageAspectFlags aspects;
1196 VkImageUsageFlags usage; /**< Superset of VkImageCreateInfo::usage. */
1197 VkImageTiling tiling; /** VkImageCreateInfo::tiling */
1198 VkImageCreateFlags flags; /** VkImageCreateInfo::flags */
1199 VkExtent3D extent;
1200 uint32_t level_count;
1201 uint32_t layer_count;
1202
1203 VkDeviceSize size;
1204 uint32_t alignment;
1205
1206 /* memory layout */
1207 VkDeviceSize layer_size;
1208 struct tu_image_level levels[15];
1209 unsigned tile_mode;
1210
1211 unsigned queue_family_mask;
1212 bool exclusive;
1213 bool shareable;
1214
1215 /* For VK_ANDROID_native_buffer, the WSI image owns the memory, */
1216 VkDeviceMemory owned_memory;
1217
1218 /* Set when bound */
1219 const struct tu_bo *bo;
1220 VkDeviceSize bo_offset;
1221 };
1222
1223 unsigned
1224 tu_image_queue_family_mask(const struct tu_image *image,
1225 uint32_t family,
1226 uint32_t queue_family);
1227
1228 static inline uint32_t
1229 tu_get_layerCount(const struct tu_image *image,
1230 const VkImageSubresourceRange *range)
1231 {
1232 return range->layerCount == VK_REMAINING_ARRAY_LAYERS
1233 ? image->layer_count - range->baseArrayLayer
1234 : range->layerCount;
1235 }
1236
1237 static inline uint32_t
1238 tu_get_levelCount(const struct tu_image *image,
1239 const VkImageSubresourceRange *range)
1240 {
1241 return range->levelCount == VK_REMAINING_MIP_LEVELS
1242 ? image->level_count - range->baseMipLevel
1243 : range->levelCount;
1244 }
1245
1246 struct tu_image_view
1247 {
1248 struct tu_image *image; /**< VkImageViewCreateInfo::image */
1249
1250 VkImageViewType type;
1251 VkImageAspectFlags aspect_mask;
1252 VkFormat vk_format;
1253 uint32_t base_layer;
1254 uint32_t layer_count;
1255 uint32_t base_mip;
1256 uint32_t level_count;
1257 VkExtent3D extent; /**< Extent of VkImageViewCreateInfo::baseMipLevel. */
1258
1259 uint32_t descriptor[16];
1260
1261 /* Descriptor for use as a storage image as opposed to a sampled image.
1262 * This has a few differences for cube maps (e.g. type).
1263 */
1264 uint32_t storage_descriptor[16];
1265 };
1266
1267 struct tu_sampler
1268 {
1269 };
1270
1271 struct tu_image_create_info
1272 {
1273 const VkImageCreateInfo *vk_info;
1274 bool scanout;
1275 bool no_metadata_planes;
1276 };
1277
1278 VkResult
1279 tu_image_create(VkDevice _device,
1280 const struct tu_image_create_info *info,
1281 const VkAllocationCallbacks *alloc,
1282 VkImage *pImage);
1283
1284 VkResult
1285 tu_image_from_gralloc(VkDevice device_h,
1286 const VkImageCreateInfo *base_info,
1287 const VkNativeBufferANDROID *gralloc_info,
1288 const VkAllocationCallbacks *alloc,
1289 VkImage *out_image_h);
1290
1291 void
1292 tu_image_view_init(struct tu_image_view *view,
1293 struct tu_device *device,
1294 const VkImageViewCreateInfo *pCreateInfo);
1295
1296 struct tu_buffer_view
1297 {
1298 VkFormat vk_format;
1299 uint64_t range; /**< VkBufferViewCreateInfo::range */
1300 uint32_t state[4];
1301 };
1302 void
1303 tu_buffer_view_init(struct tu_buffer_view *view,
1304 struct tu_device *device,
1305 const VkBufferViewCreateInfo *pCreateInfo);
1306
1307 static inline struct VkExtent3D
1308 tu_sanitize_image_extent(const VkImageType imageType,
1309 const struct VkExtent3D imageExtent)
1310 {
1311 switch (imageType) {
1312 case VK_IMAGE_TYPE_1D:
1313 return (VkExtent3D) { imageExtent.width, 1, 1 };
1314 case VK_IMAGE_TYPE_2D:
1315 return (VkExtent3D) { imageExtent.width, imageExtent.height, 1 };
1316 case VK_IMAGE_TYPE_3D:
1317 return imageExtent;
1318 default:
1319 unreachable("invalid image type");
1320 }
1321 }
1322
1323 static inline struct VkOffset3D
1324 tu_sanitize_image_offset(const VkImageType imageType,
1325 const struct VkOffset3D imageOffset)
1326 {
1327 switch (imageType) {
1328 case VK_IMAGE_TYPE_1D:
1329 return (VkOffset3D) { imageOffset.x, 0, 0 };
1330 case VK_IMAGE_TYPE_2D:
1331 return (VkOffset3D) { imageOffset.x, imageOffset.y, 0 };
1332 case VK_IMAGE_TYPE_3D:
1333 return imageOffset;
1334 default:
1335 unreachable("invalid image type");
1336 }
1337 }
1338
1339 struct tu_attachment_info
1340 {
1341 struct tu_image_view *attachment;
1342 };
1343
1344 struct tu_framebuffer
1345 {
1346 uint32_t width;
1347 uint32_t height;
1348 uint32_t layers;
1349
1350 uint32_t attachment_count;
1351 struct tu_attachment_info attachments[0];
1352 };
1353
1354 struct tu_subpass_barrier
1355 {
1356 VkPipelineStageFlags src_stage_mask;
1357 VkAccessFlags src_access_mask;
1358 VkAccessFlags dst_access_mask;
1359 };
1360
1361 void
1362 tu_subpass_barrier(struct tu_cmd_buffer *cmd_buffer,
1363 const struct tu_subpass_barrier *barrier);
1364
1365 struct tu_subpass_attachment
1366 {
1367 uint32_t attachment;
1368 VkImageLayout layout;
1369 };
1370
1371 struct tu_subpass
1372 {
1373 uint32_t input_count;
1374 uint32_t color_count;
1375 struct tu_subpass_attachment *input_attachments;
1376 struct tu_subpass_attachment *color_attachments;
1377 struct tu_subpass_attachment *resolve_attachments;
1378 struct tu_subpass_attachment depth_stencil_attachment;
1379
1380 /** Subpass has at least one resolve attachment */
1381 bool has_resolve;
1382
1383 struct tu_subpass_barrier start_barrier;
1384
1385 uint32_t view_mask;
1386 VkSampleCountFlagBits max_sample_count;
1387 };
1388
1389 struct tu_render_pass_attachment
1390 {
1391 VkFormat format;
1392 uint32_t samples;
1393 VkAttachmentLoadOp load_op;
1394 VkAttachmentLoadOp stencil_load_op;
1395 VkImageLayout initial_layout;
1396 VkImageLayout final_layout;
1397 uint32_t view_mask;
1398 };
1399
1400 struct tu_render_pass
1401 {
1402 uint32_t attachment_count;
1403 uint32_t subpass_count;
1404 struct tu_subpass_attachment *subpass_attachments;
1405 struct tu_render_pass_attachment *attachments;
1406 struct tu_subpass_barrier end_barrier;
1407 struct tu_subpass subpasses[0];
1408 };
1409
1410 VkResult
1411 tu_device_init_meta(struct tu_device *device);
1412 void
1413 tu_device_finish_meta(struct tu_device *device);
1414
1415 struct tu_query_pool
1416 {
1417 uint32_t stride;
1418 uint32_t availability_offset;
1419 uint64_t size;
1420 char *ptr;
1421 VkQueryType type;
1422 uint32_t pipeline_stats_mask;
1423 };
1424
1425 struct tu_semaphore
1426 {
1427 uint32_t syncobj;
1428 uint32_t temp_syncobj;
1429 };
1430
1431 void
1432 tu_set_descriptor_set(struct tu_cmd_buffer *cmd_buffer,
1433 VkPipelineBindPoint bind_point,
1434 struct tu_descriptor_set *set,
1435 unsigned idx);
1436
1437 void
1438 tu_update_descriptor_sets(struct tu_device *device,
1439 struct tu_cmd_buffer *cmd_buffer,
1440 VkDescriptorSet overrideSet,
1441 uint32_t descriptorWriteCount,
1442 const VkWriteDescriptorSet *pDescriptorWrites,
1443 uint32_t descriptorCopyCount,
1444 const VkCopyDescriptorSet *pDescriptorCopies);
1445
1446 void
1447 tu_update_descriptor_set_with_template(
1448 struct tu_device *device,
1449 struct tu_cmd_buffer *cmd_buffer,
1450 struct tu_descriptor_set *set,
1451 VkDescriptorUpdateTemplate descriptorUpdateTemplate,
1452 const void *pData);
1453
1454 void
1455 tu_meta_push_descriptor_set(struct tu_cmd_buffer *cmd_buffer,
1456 VkPipelineBindPoint pipelineBindPoint,
1457 VkPipelineLayout _layout,
1458 uint32_t set,
1459 uint32_t descriptorWriteCount,
1460 const VkWriteDescriptorSet *pDescriptorWrites);
1461
1462 int
1463 tu_drm_get_gpu_id(const struct tu_physical_device *dev, uint32_t *id);
1464
1465 int
1466 tu_drm_get_gmem_size(const struct tu_physical_device *dev, uint32_t *size);
1467
1468 int
1469 tu_drm_submitqueue_new(const struct tu_device *dev,
1470 int priority,
1471 uint32_t *queue_id);
1472
1473 void
1474 tu_drm_submitqueue_close(const struct tu_device *dev, uint32_t queue_id);
1475
1476 uint32_t
1477 tu_gem_new(const struct tu_device *dev, uint64_t size, uint32_t flags);
1478 uint32_t
1479 tu_gem_import_dmabuf(const struct tu_device *dev,
1480 int prime_fd,
1481 uint64_t size);
1482 int
1483 tu_gem_export_dmabuf(const struct tu_device *dev, uint32_t gem_handle);
1484 void
1485 tu_gem_close(const struct tu_device *dev, uint32_t gem_handle);
1486 uint64_t
1487 tu_gem_info_offset(const struct tu_device *dev, uint32_t gem_handle);
1488 uint64_t
1489 tu_gem_info_iova(const struct tu_device *dev, uint32_t gem_handle);
1490
1491 #define TU_DEFINE_HANDLE_CASTS(__tu_type, __VkType) \
1492 \
1493 static inline struct __tu_type *__tu_type##_from_handle(__VkType _handle) \
1494 { \
1495 return (struct __tu_type *) _handle; \
1496 } \
1497 \
1498 static inline __VkType __tu_type##_to_handle(struct __tu_type *_obj) \
1499 { \
1500 return (__VkType) _obj; \
1501 }
1502
1503 #define TU_DEFINE_NONDISP_HANDLE_CASTS(__tu_type, __VkType) \
1504 \
1505 static inline struct __tu_type *__tu_type##_from_handle(__VkType _handle) \
1506 { \
1507 return (struct __tu_type *) (uintptr_t) _handle; \
1508 } \
1509 \
1510 static inline __VkType __tu_type##_to_handle(struct __tu_type *_obj) \
1511 { \
1512 return (__VkType)(uintptr_t) _obj; \
1513 }
1514
1515 #define TU_FROM_HANDLE(__tu_type, __name, __handle) \
1516 struct __tu_type *__name = __tu_type##_from_handle(__handle)
1517
1518 TU_DEFINE_HANDLE_CASTS(tu_cmd_buffer, VkCommandBuffer)
1519 TU_DEFINE_HANDLE_CASTS(tu_device, VkDevice)
1520 TU_DEFINE_HANDLE_CASTS(tu_instance, VkInstance)
1521 TU_DEFINE_HANDLE_CASTS(tu_physical_device, VkPhysicalDevice)
1522 TU_DEFINE_HANDLE_CASTS(tu_queue, VkQueue)
1523
1524 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_cmd_pool, VkCommandPool)
1525 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_buffer, VkBuffer)
1526 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_buffer_view, VkBufferView)
1527 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_descriptor_pool, VkDescriptorPool)
1528 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_descriptor_set, VkDescriptorSet)
1529 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_descriptor_set_layout,
1530 VkDescriptorSetLayout)
1531 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_descriptor_update_template,
1532 VkDescriptorUpdateTemplate)
1533 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_device_memory, VkDeviceMemory)
1534 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_fence, VkFence)
1535 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_event, VkEvent)
1536 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_framebuffer, VkFramebuffer)
1537 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_image, VkImage)
1538 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_image_view, VkImageView);
1539 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_pipeline_cache, VkPipelineCache)
1540 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_pipeline, VkPipeline)
1541 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_pipeline_layout, VkPipelineLayout)
1542 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_query_pool, VkQueryPool)
1543 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_render_pass, VkRenderPass)
1544 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_sampler, VkSampler)
1545 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_shader_module, VkShaderModule)
1546 TU_DEFINE_NONDISP_HANDLE_CASTS(tu_semaphore, VkSemaphore)
1547
1548 #endif /* TU_PRIVATE_H */