radv/sqtt: describe pipeline and wait events barriers
[mesa.git] / src / amd / vulkan / radv_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 DEALINGS
25 * IN THE SOFTWARE.
26 */
27
28 #ifndef RADV_PRIVATE_H
29 #define RADV_PRIVATE_H
30
31 #include <stdlib.h>
32 #include <stdio.h>
33 #include <stdbool.h>
34 #include <pthread.h>
35 #include <assert.h>
36 #include <stdint.h>
37 #include <string.h>
38 #ifdef HAVE_VALGRIND
39 #include <valgrind.h>
40 #include <memcheck.h>
41 #define VG(x) x
42 #else
43 #define VG(x) ((void)0)
44 #endif
45
46 #include "c11/threads.h"
47 #include <amdgpu.h>
48 #include "compiler/shader_enums.h"
49 #include "util/macros.h"
50 #include "util/list.h"
51 #include "util/xmlconfig.h"
52 #include "main/macros.h"
53 #include "vk_alloc.h"
54 #include "vk_debug_report.h"
55
56 #include "radv_radeon_winsys.h"
57 #include "ac_binary.h"
58 #include "ac_nir_to_llvm.h"
59 #include "ac_gpu_info.h"
60 #include "ac_surface.h"
61 #include "ac_llvm_build.h"
62 #include "ac_llvm_util.h"
63 #include "radv_constants.h"
64 #include "radv_descriptor_set.h"
65 #include "radv_extensions.h"
66 #include "sid.h"
67
68 #include <llvm-c/TargetMachine.h>
69
70 /* Pre-declarations needed for WSI entrypoints */
71 struct wl_surface;
72 struct wl_display;
73 typedef struct xcb_connection_t xcb_connection_t;
74 typedef uint32_t xcb_visualid_t;
75 typedef uint32_t xcb_window_t;
76
77 #include <vulkan/vulkan.h>
78 #include <vulkan/vulkan_intel.h>
79 #include <vulkan/vulkan_android.h>
80 #include <vulkan/vk_icd.h>
81 #include <vulkan/vk_android_native_buffer.h>
82
83 #include "radv_entrypoints.h"
84
85 #include "wsi_common.h"
86 #include "wsi_common_display.h"
87
88 /* Helper to determine if we should compile
89 * any of the Android AHB support.
90 *
91 * To actually enable the ext we also need
92 * the necessary kernel support.
93 */
94 #if defined(ANDROID) && ANDROID_API_LEVEL >= 26
95 #define RADV_SUPPORT_ANDROID_HARDWARE_BUFFER 1
96 #else
97 #define RADV_SUPPORT_ANDROID_HARDWARE_BUFFER 0
98 #endif
99
100
101 struct gfx10_format {
102 unsigned img_format:9;
103
104 /* Various formats are only supported with workarounds for vertex fetch,
105 * and some 32_32_32 formats are supported natively, but only for buffers
106 * (possibly with some image support, actually, but no filtering). */
107 bool buffers_only:1;
108 };
109
110 #include "gfx10_format_table.h"
111
112 enum radv_mem_heap {
113 RADV_MEM_HEAP_VRAM,
114 RADV_MEM_HEAP_VRAM_CPU_ACCESS,
115 RADV_MEM_HEAP_GTT,
116 RADV_MEM_HEAP_COUNT
117 };
118
119 enum radv_mem_type {
120 RADV_MEM_TYPE_VRAM,
121 RADV_MEM_TYPE_GTT_WRITE_COMBINE,
122 RADV_MEM_TYPE_VRAM_CPU_ACCESS,
123 RADV_MEM_TYPE_GTT_CACHED,
124 RADV_MEM_TYPE_VRAM_UNCACHED,
125 RADV_MEM_TYPE_GTT_WRITE_COMBINE_VRAM_UNCACHED,
126 RADV_MEM_TYPE_VRAM_CPU_ACCESS_UNCACHED,
127 RADV_MEM_TYPE_GTT_CACHED_VRAM_UNCACHED,
128 RADV_MEM_TYPE_COUNT
129 };
130
131 enum radv_secure_compile_type {
132 RADV_SC_TYPE_INIT_SUCCESS,
133 RADV_SC_TYPE_INIT_FAILURE,
134 RADV_SC_TYPE_COMPILE_PIPELINE,
135 RADV_SC_TYPE_COMPILE_PIPELINE_FINISHED,
136 RADV_SC_TYPE_READ_DISK_CACHE,
137 RADV_SC_TYPE_WRITE_DISK_CACHE,
138 RADV_SC_TYPE_FORK_DEVICE,
139 RADV_SC_TYPE_DESTROY_DEVICE,
140 RADV_SC_TYPE_COUNT
141 };
142
143 #define radv_printflike(a, b) __attribute__((__format__(__printf__, a, b)))
144
145 static inline uint32_t
146 align_u32(uint32_t v, uint32_t a)
147 {
148 assert(a != 0 && a == (a & -a));
149 return (v + a - 1) & ~(a - 1);
150 }
151
152 static inline uint32_t
153 align_u32_npot(uint32_t v, uint32_t a)
154 {
155 return (v + a - 1) / a * a;
156 }
157
158 static inline uint64_t
159 align_u64(uint64_t v, uint64_t a)
160 {
161 assert(a != 0 && a == (a & -a));
162 return (v + a - 1) & ~(a - 1);
163 }
164
165 static inline int32_t
166 align_i32(int32_t v, int32_t a)
167 {
168 assert(a != 0 && a == (a & -a));
169 return (v + a - 1) & ~(a - 1);
170 }
171
172 /** Alignment must be a power of 2. */
173 static inline bool
174 radv_is_aligned(uintmax_t n, uintmax_t a)
175 {
176 assert(a == (a & -a));
177 return (n & (a - 1)) == 0;
178 }
179
180 static inline uint32_t
181 round_up_u32(uint32_t v, uint32_t a)
182 {
183 return (v + a - 1) / a;
184 }
185
186 static inline uint64_t
187 round_up_u64(uint64_t v, uint64_t a)
188 {
189 return (v + a - 1) / a;
190 }
191
192 static inline uint32_t
193 radv_minify(uint32_t n, uint32_t levels)
194 {
195 if (unlikely(n == 0))
196 return 0;
197 else
198 return MAX2(n >> levels, 1);
199 }
200 static inline float
201 radv_clamp_f(float f, float min, float max)
202 {
203 assert(min < max);
204
205 if (f > max)
206 return max;
207 else if (f < min)
208 return min;
209 else
210 return f;
211 }
212
213 static inline bool
214 radv_clear_mask(uint32_t *inout_mask, uint32_t clear_mask)
215 {
216 if (*inout_mask & clear_mask) {
217 *inout_mask &= ~clear_mask;
218 return true;
219 } else {
220 return false;
221 }
222 }
223
224 #define for_each_bit(b, dword) \
225 for (uint32_t __dword = (dword); \
226 (b) = __builtin_ffs(__dword) - 1, __dword; \
227 __dword &= ~(1 << (b)))
228
229 #define typed_memcpy(dest, src, count) ({ \
230 STATIC_ASSERT(sizeof(*src) == sizeof(*dest)); \
231 memcpy((dest), (src), (count) * sizeof(*(src))); \
232 })
233
234 /* Whenever we generate an error, pass it through this function. Useful for
235 * debugging, where we can break on it. Only call at error site, not when
236 * propagating errors. Might be useful to plug in a stack trace here.
237 */
238
239 struct radv_image_view;
240 struct radv_instance;
241
242 VkResult __vk_errorf(struct radv_instance *instance, VkResult error, const char *file, int line, const char *format, ...);
243
244 #define vk_error(instance, error) __vk_errorf(instance, error, __FILE__, __LINE__, NULL);
245 #define vk_errorf(instance, error, format, ...) __vk_errorf(instance, error, __FILE__, __LINE__, format, ## __VA_ARGS__);
246
247 void __radv_finishme(const char *file, int line, const char *format, ...)
248 radv_printflike(3, 4);
249 void radv_loge(const char *format, ...) radv_printflike(1, 2);
250 void radv_loge_v(const char *format, va_list va);
251 void radv_logi(const char *format, ...) radv_printflike(1, 2);
252 void radv_logi_v(const char *format, va_list va);
253
254 /**
255 * Print a FINISHME message, including its source location.
256 */
257 #define radv_finishme(format, ...) \
258 do { \
259 static bool reported = false; \
260 if (!reported) { \
261 __radv_finishme(__FILE__, __LINE__, format, ##__VA_ARGS__); \
262 reported = true; \
263 } \
264 } while (0)
265
266 /* A non-fatal assert. Useful for debugging. */
267 #ifdef DEBUG
268 #define radv_assert(x) ({ \
269 if (unlikely(!(x))) \
270 fprintf(stderr, "%s:%d ASSERT: %s\n", __FILE__, __LINE__, #x); \
271 })
272 #else
273 #define radv_assert(x) do {} while(0)
274 #endif
275
276 #define stub_return(v) \
277 do { \
278 radv_finishme("stub %s", __func__); \
279 return (v); \
280 } while (0)
281
282 #define stub() \
283 do { \
284 radv_finishme("stub %s", __func__); \
285 return; \
286 } while (0)
287
288 int radv_get_instance_entrypoint_index(const char *name);
289 int radv_get_device_entrypoint_index(const char *name);
290 int radv_get_physical_device_entrypoint_index(const char *name);
291
292 const char *radv_get_instance_entry_name(int index);
293 const char *radv_get_physical_device_entry_name(int index);
294 const char *radv_get_device_entry_name(int index);
295
296 bool radv_instance_entrypoint_is_enabled(int index, uint32_t core_version,
297 const struct radv_instance_extension_table *instance);
298 bool radv_physical_device_entrypoint_is_enabled(int index, uint32_t core_version,
299 const struct radv_instance_extension_table *instance);
300 bool radv_device_entrypoint_is_enabled(int index, uint32_t core_version,
301 const struct radv_instance_extension_table *instance,
302 const struct radv_device_extension_table *device);
303
304 void *radv_lookup_entrypoint(const char *name);
305
306 struct radv_physical_device {
307 VK_LOADER_DATA _loader_data;
308
309 struct radv_instance * instance;
310
311 struct radeon_winsys *ws;
312 struct radeon_info rad_info;
313 char name[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
314 uint8_t driver_uuid[VK_UUID_SIZE];
315 uint8_t device_uuid[VK_UUID_SIZE];
316 uint8_t cache_uuid[VK_UUID_SIZE];
317
318 int local_fd;
319 int master_fd;
320 struct wsi_device wsi_device;
321
322 bool out_of_order_rast_allowed;
323
324 /* Whether DCC should be enabled for MSAA textures. */
325 bool dcc_msaa_allowed;
326
327 /* Whether to enable the AMD_shader_ballot extension */
328 bool use_shader_ballot;
329
330 /* Whether to enable NGG. */
331 bool use_ngg;
332
333 /* Whether to enable NGG streamout. */
334 bool use_ngg_streamout;
335
336 /* Number of threads per wave. */
337 uint8_t ps_wave_size;
338 uint8_t cs_wave_size;
339 uint8_t ge_wave_size;
340
341 /* Whether to use the experimental compiler backend */
342 bool use_aco;
343
344 /* This is the drivers on-disk cache used as a fallback as opposed to
345 * the pipeline cache defined by apps.
346 */
347 struct disk_cache * disk_cache;
348
349 VkPhysicalDeviceMemoryProperties memory_properties;
350 enum radv_mem_type mem_type_indices[RADV_MEM_TYPE_COUNT];
351
352 drmPciBusInfo bus_info;
353
354 struct radv_device_extension_table supported_extensions;
355 };
356
357 struct radv_instance {
358 VK_LOADER_DATA _loader_data;
359
360 VkAllocationCallbacks alloc;
361
362 uint32_t apiVersion;
363 int physicalDeviceCount;
364 struct radv_physical_device physicalDevices[RADV_MAX_DRM_DEVICES];
365
366 char * engineName;
367 uint32_t engineVersion;
368
369 uint64_t debug_flags;
370 uint64_t perftest_flags;
371 uint8_t num_sc_threads;
372
373 struct vk_debug_report_instance debug_report_callbacks;
374
375 struct radv_instance_extension_table enabled_extensions;
376 struct radv_instance_dispatch_table dispatch;
377 struct radv_physical_device_dispatch_table physical_device_dispatch;
378 struct radv_device_dispatch_table device_dispatch;
379
380 struct driOptionCache dri_options;
381 struct driOptionCache available_dri_options;
382 };
383
384 static inline
385 bool radv_device_use_secure_compile(struct radv_instance *instance)
386 {
387 return instance->num_sc_threads;
388 }
389
390 VkResult radv_init_wsi(struct radv_physical_device *physical_device);
391 void radv_finish_wsi(struct radv_physical_device *physical_device);
392
393 bool radv_instance_extension_supported(const char *name);
394 uint32_t radv_physical_device_api_version(struct radv_physical_device *dev);
395 bool radv_physical_device_extension_supported(struct radv_physical_device *dev,
396 const char *name);
397
398 struct cache_entry;
399
400 struct radv_pipeline_cache {
401 struct radv_device * device;
402 pthread_mutex_t mutex;
403
404 uint32_t total_size;
405 uint32_t table_size;
406 uint32_t kernel_count;
407 struct cache_entry ** hash_table;
408 bool modified;
409
410 VkAllocationCallbacks alloc;
411 };
412
413 struct radv_pipeline_key {
414 uint32_t instance_rate_inputs;
415 uint32_t instance_rate_divisors[MAX_VERTEX_ATTRIBS];
416 uint8_t vertex_attribute_formats[MAX_VERTEX_ATTRIBS];
417 uint32_t vertex_attribute_bindings[MAX_VERTEX_ATTRIBS];
418 uint32_t vertex_attribute_offsets[MAX_VERTEX_ATTRIBS];
419 uint32_t vertex_attribute_strides[MAX_VERTEX_ATTRIBS];
420 uint64_t vertex_alpha_adjust;
421 uint32_t vertex_post_shuffle;
422 unsigned tess_input_vertices;
423 uint32_t col_format;
424 uint32_t is_int8;
425 uint32_t is_int10;
426 uint8_t log2_ps_iter_samples;
427 uint8_t num_samples;
428 uint32_t has_multiview_view_index : 1;
429 uint32_t optimisations_disabled : 1;
430 uint8_t topology;
431
432 /* Non-zero if a required subgroup size is specified via
433 * VK_EXT_subgroup_size_control.
434 */
435 uint8_t compute_subgroup_size;
436 };
437
438 struct radv_shader_binary;
439 struct radv_shader_variant;
440
441 void
442 radv_pipeline_cache_init(struct radv_pipeline_cache *cache,
443 struct radv_device *device);
444 void
445 radv_pipeline_cache_finish(struct radv_pipeline_cache *cache);
446 bool
447 radv_pipeline_cache_load(struct radv_pipeline_cache *cache,
448 const void *data, size_t size);
449
450 bool
451 radv_create_shader_variants_from_pipeline_cache(struct radv_device *device,
452 struct radv_pipeline_cache *cache,
453 const unsigned char *sha1,
454 struct radv_shader_variant **variants,
455 bool *found_in_application_cache);
456
457 void
458 radv_pipeline_cache_insert_shaders(struct radv_device *device,
459 struct radv_pipeline_cache *cache,
460 const unsigned char *sha1,
461 struct radv_shader_variant **variants,
462 struct radv_shader_binary *const *binaries);
463
464 enum radv_blit_ds_layout {
465 RADV_BLIT_DS_LAYOUT_TILE_ENABLE,
466 RADV_BLIT_DS_LAYOUT_TILE_DISABLE,
467 RADV_BLIT_DS_LAYOUT_COUNT,
468 };
469
470 static inline enum radv_blit_ds_layout radv_meta_blit_ds_to_type(VkImageLayout layout)
471 {
472 return (layout == VK_IMAGE_LAYOUT_GENERAL) ? RADV_BLIT_DS_LAYOUT_TILE_DISABLE : RADV_BLIT_DS_LAYOUT_TILE_ENABLE;
473 }
474
475 static inline VkImageLayout radv_meta_blit_ds_to_layout(enum radv_blit_ds_layout ds_layout)
476 {
477 return ds_layout == RADV_BLIT_DS_LAYOUT_TILE_ENABLE ? VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL : VK_IMAGE_LAYOUT_GENERAL;
478 }
479
480 enum radv_meta_dst_layout {
481 RADV_META_DST_LAYOUT_GENERAL,
482 RADV_META_DST_LAYOUT_OPTIMAL,
483 RADV_META_DST_LAYOUT_COUNT,
484 };
485
486 static inline enum radv_meta_dst_layout radv_meta_dst_layout_from_layout(VkImageLayout layout)
487 {
488 return (layout == VK_IMAGE_LAYOUT_GENERAL) ? RADV_META_DST_LAYOUT_GENERAL : RADV_META_DST_LAYOUT_OPTIMAL;
489 }
490
491 static inline VkImageLayout radv_meta_dst_layout_to_layout(enum radv_meta_dst_layout layout)
492 {
493 return layout == RADV_META_DST_LAYOUT_OPTIMAL ? VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL : VK_IMAGE_LAYOUT_GENERAL;
494 }
495
496 struct radv_meta_state {
497 VkAllocationCallbacks alloc;
498
499 struct radv_pipeline_cache cache;
500
501 /*
502 * For on-demand pipeline creation, makes sure that
503 * only one thread tries to build a pipeline at the same time.
504 */
505 mtx_t mtx;
506
507 /**
508 * Use array element `i` for images with `2^i` samples.
509 */
510 struct {
511 VkRenderPass render_pass[NUM_META_FS_KEYS];
512 VkPipeline color_pipelines[NUM_META_FS_KEYS];
513
514 VkRenderPass depthstencil_rp;
515 VkPipeline depth_only_pipeline[NUM_DEPTH_CLEAR_PIPELINES];
516 VkPipeline stencil_only_pipeline[NUM_DEPTH_CLEAR_PIPELINES];
517 VkPipeline depthstencil_pipeline[NUM_DEPTH_CLEAR_PIPELINES];
518
519 VkPipeline depth_only_unrestricted_pipeline[NUM_DEPTH_CLEAR_PIPELINES];
520 VkPipeline stencil_only_unrestricted_pipeline[NUM_DEPTH_CLEAR_PIPELINES];
521 VkPipeline depthstencil_unrestricted_pipeline[NUM_DEPTH_CLEAR_PIPELINES];
522 } clear[MAX_SAMPLES_LOG2];
523
524 VkPipelineLayout clear_color_p_layout;
525 VkPipelineLayout clear_depth_p_layout;
526 VkPipelineLayout clear_depth_unrestricted_p_layout;
527
528 /* Optimized compute fast HTILE clear for stencil or depth only. */
529 VkPipeline clear_htile_mask_pipeline;
530 VkPipelineLayout clear_htile_mask_p_layout;
531 VkDescriptorSetLayout clear_htile_mask_ds_layout;
532
533 struct {
534 VkRenderPass render_pass[NUM_META_FS_KEYS][RADV_META_DST_LAYOUT_COUNT];
535
536 /** Pipeline that blits from a 1D image. */
537 VkPipeline pipeline_1d_src[NUM_META_FS_KEYS];
538
539 /** Pipeline that blits from a 2D image. */
540 VkPipeline pipeline_2d_src[NUM_META_FS_KEYS];
541
542 /** Pipeline that blits from a 3D image. */
543 VkPipeline pipeline_3d_src[NUM_META_FS_KEYS];
544
545 VkRenderPass depth_only_rp[RADV_BLIT_DS_LAYOUT_COUNT];
546 VkPipeline depth_only_1d_pipeline;
547 VkPipeline depth_only_2d_pipeline;
548 VkPipeline depth_only_3d_pipeline;
549
550 VkRenderPass stencil_only_rp[RADV_BLIT_DS_LAYOUT_COUNT];
551 VkPipeline stencil_only_1d_pipeline;
552 VkPipeline stencil_only_2d_pipeline;
553 VkPipeline stencil_only_3d_pipeline;
554 VkPipelineLayout pipeline_layout;
555 VkDescriptorSetLayout ds_layout;
556 } blit;
557
558 struct {
559 VkPipelineLayout p_layouts[5];
560 VkDescriptorSetLayout ds_layouts[5];
561 VkPipeline pipelines[5][NUM_META_FS_KEYS];
562
563 VkPipeline depth_only_pipeline[5];
564
565 VkPipeline stencil_only_pipeline[5];
566 } blit2d[MAX_SAMPLES_LOG2];
567
568 VkRenderPass blit2d_render_passes[NUM_META_FS_KEYS][RADV_META_DST_LAYOUT_COUNT];
569 VkRenderPass blit2d_depth_only_rp[RADV_BLIT_DS_LAYOUT_COUNT];
570 VkRenderPass blit2d_stencil_only_rp[RADV_BLIT_DS_LAYOUT_COUNT];
571
572 struct {
573 VkPipelineLayout img_p_layout;
574 VkDescriptorSetLayout img_ds_layout;
575 VkPipeline pipeline;
576 VkPipeline pipeline_3d;
577 } itob;
578 struct {
579 VkPipelineLayout img_p_layout;
580 VkDescriptorSetLayout img_ds_layout;
581 VkPipeline pipeline;
582 VkPipeline pipeline_3d;
583 } btoi;
584 struct {
585 VkPipelineLayout img_p_layout;
586 VkDescriptorSetLayout img_ds_layout;
587 VkPipeline pipeline;
588 } btoi_r32g32b32;
589 struct {
590 VkPipelineLayout img_p_layout;
591 VkDescriptorSetLayout img_ds_layout;
592 VkPipeline pipeline;
593 VkPipeline pipeline_3d;
594 } itoi;
595 struct {
596 VkPipelineLayout img_p_layout;
597 VkDescriptorSetLayout img_ds_layout;
598 VkPipeline pipeline;
599 } itoi_r32g32b32;
600 struct {
601 VkPipelineLayout img_p_layout;
602 VkDescriptorSetLayout img_ds_layout;
603 VkPipeline pipeline;
604 VkPipeline pipeline_3d;
605 } cleari;
606 struct {
607 VkPipelineLayout img_p_layout;
608 VkDescriptorSetLayout img_ds_layout;
609 VkPipeline pipeline;
610 } cleari_r32g32b32;
611
612 struct {
613 VkPipelineLayout p_layout;
614 VkPipeline pipeline[NUM_META_FS_KEYS];
615 VkRenderPass pass[NUM_META_FS_KEYS];
616 } resolve;
617
618 struct {
619 VkDescriptorSetLayout ds_layout;
620 VkPipelineLayout p_layout;
621 struct {
622 VkPipeline pipeline;
623 VkPipeline i_pipeline;
624 VkPipeline srgb_pipeline;
625 } rc[MAX_SAMPLES_LOG2];
626
627 VkPipeline depth_zero_pipeline;
628 struct {
629 VkPipeline average_pipeline;
630 VkPipeline max_pipeline;
631 VkPipeline min_pipeline;
632 } depth[MAX_SAMPLES_LOG2];
633
634 VkPipeline stencil_zero_pipeline;
635 struct {
636 VkPipeline max_pipeline;
637 VkPipeline min_pipeline;
638 } stencil[MAX_SAMPLES_LOG2];
639 } resolve_compute;
640
641 struct {
642 VkDescriptorSetLayout ds_layout;
643 VkPipelineLayout p_layout;
644
645 struct {
646 VkRenderPass render_pass[NUM_META_FS_KEYS][RADV_META_DST_LAYOUT_COUNT];
647 VkPipeline pipeline[NUM_META_FS_KEYS];
648 } rc[MAX_SAMPLES_LOG2];
649
650 VkRenderPass depth_render_pass;
651 VkPipeline depth_zero_pipeline;
652 struct {
653 VkPipeline average_pipeline;
654 VkPipeline max_pipeline;
655 VkPipeline min_pipeline;
656 } depth[MAX_SAMPLES_LOG2];
657
658 VkRenderPass stencil_render_pass;
659 VkPipeline stencil_zero_pipeline;
660 struct {
661 VkPipeline max_pipeline;
662 VkPipeline min_pipeline;
663 } stencil[MAX_SAMPLES_LOG2];
664 } resolve_fragment;
665
666 struct {
667 VkPipelineLayout p_layout;
668 VkPipeline decompress_pipeline[NUM_DEPTH_DECOMPRESS_PIPELINES];
669 VkPipeline resummarize_pipeline;
670 VkRenderPass pass;
671 } depth_decomp[MAX_SAMPLES_LOG2];
672
673 struct {
674 VkPipelineLayout p_layout;
675 VkPipeline cmask_eliminate_pipeline;
676 VkPipeline fmask_decompress_pipeline;
677 VkPipeline dcc_decompress_pipeline;
678 VkRenderPass pass;
679
680 VkDescriptorSetLayout dcc_decompress_compute_ds_layout;
681 VkPipelineLayout dcc_decompress_compute_p_layout;
682 VkPipeline dcc_decompress_compute_pipeline;
683 } fast_clear_flush;
684
685 struct {
686 VkPipelineLayout fill_p_layout;
687 VkPipelineLayout copy_p_layout;
688 VkDescriptorSetLayout fill_ds_layout;
689 VkDescriptorSetLayout copy_ds_layout;
690 VkPipeline fill_pipeline;
691 VkPipeline copy_pipeline;
692 } buffer;
693
694 struct {
695 VkDescriptorSetLayout ds_layout;
696 VkPipelineLayout p_layout;
697 VkPipeline occlusion_query_pipeline;
698 VkPipeline pipeline_statistics_query_pipeline;
699 VkPipeline tfb_query_pipeline;
700 VkPipeline timestamp_query_pipeline;
701 } query;
702
703 struct {
704 VkDescriptorSetLayout ds_layout;
705 VkPipelineLayout p_layout;
706 VkPipeline pipeline[MAX_SAMPLES_LOG2];
707 } fmask_expand;
708 };
709
710 /* queue types */
711 #define RADV_QUEUE_GENERAL 0
712 #define RADV_QUEUE_COMPUTE 1
713 #define RADV_QUEUE_TRANSFER 2
714
715 #define RADV_MAX_QUEUE_FAMILIES 3
716
717 enum ring_type radv_queue_family_to_ring(int f);
718
719 struct radv_queue {
720 VK_LOADER_DATA _loader_data;
721 struct radv_device * device;
722 struct radeon_winsys_ctx *hw_ctx;
723 enum radeon_ctx_priority priority;
724 uint32_t queue_family_index;
725 int queue_idx;
726 VkDeviceQueueCreateFlags flags;
727
728 uint32_t scratch_size_per_wave;
729 uint32_t scratch_waves;
730 uint32_t compute_scratch_size_per_wave;
731 uint32_t compute_scratch_waves;
732 uint32_t esgs_ring_size;
733 uint32_t gsvs_ring_size;
734 bool has_tess_rings;
735 bool has_gds;
736 bool has_gds_oa;
737 bool has_sample_positions;
738
739 struct radeon_winsys_bo *scratch_bo;
740 struct radeon_winsys_bo *descriptor_bo;
741 struct radeon_winsys_bo *compute_scratch_bo;
742 struct radeon_winsys_bo *esgs_ring_bo;
743 struct radeon_winsys_bo *gsvs_ring_bo;
744 struct radeon_winsys_bo *tess_rings_bo;
745 struct radeon_winsys_bo *gds_bo;
746 struct radeon_winsys_bo *gds_oa_bo;
747 struct radeon_cmdbuf *initial_preamble_cs;
748 struct radeon_cmdbuf *initial_full_flush_preamble_cs;
749 struct radeon_cmdbuf *continue_preamble_cs;
750
751 struct list_head pending_submissions;
752 pthread_mutex_t pending_mutex;
753 };
754
755 struct radv_bo_list {
756 struct radv_winsys_bo_list list;
757 unsigned capacity;
758 pthread_mutex_t mutex;
759 };
760
761 struct radv_secure_compile_process {
762 /* Secure process file descriptors. Used to communicate between the
763 * user facing device and the idle forked device used to fork a clean
764 * process for each new pipeline compile.
765 */
766 int fd_secure_input;
767 int fd_secure_output;
768
769 /* FIFO file descriptors used to communicate between the user facing
770 * device and the secure process that does the actual secure compile.
771 */
772 int fd_server;
773 int fd_client;
774
775 /* Secure compile process id */
776 pid_t sc_pid;
777
778 /* Is the secure compile process currently in use by a thread */
779 bool in_use;
780 };
781
782 struct radv_secure_compile_state {
783 struct radv_secure_compile_process *secure_compile_processes;
784 uint32_t secure_compile_thread_counter;
785 mtx_t secure_compile_mutex;
786
787 /* Unique process ID used to build name for FIFO file descriptor */
788 char *uid;
789 };
790
791 struct radv_device {
792 VK_LOADER_DATA _loader_data;
793
794 VkAllocationCallbacks alloc;
795
796 struct radv_instance * instance;
797 struct radeon_winsys *ws;
798
799 struct radv_meta_state meta_state;
800
801 struct radv_queue *queues[RADV_MAX_QUEUE_FAMILIES];
802 int queue_count[RADV_MAX_QUEUE_FAMILIES];
803 struct radeon_cmdbuf *empty_cs[RADV_MAX_QUEUE_FAMILIES];
804
805 bool always_use_syncobj;
806 bool pbb_allowed;
807 bool dfsm_allowed;
808 uint32_t tess_offchip_block_dw_size;
809 uint32_t scratch_waves;
810 uint32_t dispatch_initiator;
811
812 uint32_t gs_table_depth;
813
814 /* MSAA sample locations.
815 * The first index is the sample index.
816 * The second index is the coordinate: X, Y. */
817 float sample_locations_1x[1][2];
818 float sample_locations_2x[2][2];
819 float sample_locations_4x[4][2];
820 float sample_locations_8x[8][2];
821
822 /* GFX7 and later */
823 uint32_t gfx_init_size_dw;
824 struct radeon_winsys_bo *gfx_init;
825
826 struct radeon_winsys_bo *trace_bo;
827 uint32_t *trace_id_ptr;
828
829 /* Whether to keep shader debug info, for tracing or VK_AMD_shader_info */
830 bool keep_shader_info;
831
832 struct radv_physical_device *physical_device;
833
834 /* Backup in-memory cache to be used if the app doesn't provide one */
835 struct radv_pipeline_cache * mem_cache;
836
837 /*
838 * use different counters so MSAA MRTs get consecutive surface indices,
839 * even if MASK is allocated in between.
840 */
841 uint32_t image_mrt_offset_counter;
842 uint32_t fmask_mrt_offset_counter;
843 struct list_head shader_slabs;
844 mtx_t shader_slab_mutex;
845
846 /* For detecting VM faults reported by dmesg. */
847 uint64_t dmesg_timestamp;
848
849 struct radv_device_extension_table enabled_extensions;
850 struct radv_device_dispatch_table dispatch;
851
852 /* Whether the app has enabled the robustBufferAccess feature. */
853 bool robust_buffer_access;
854
855 /* Whether the driver uses a global BO list. */
856 bool use_global_bo_list;
857
858 struct radv_bo_list bo_list;
859
860 /* Whether anisotropy is forced with RADV_TEX_ANISO (-1 is disabled). */
861 int force_aniso;
862
863 struct radv_secure_compile_state *sc_state;
864
865 /* Condition variable for legacy timelines, to notify waiters when a
866 * new point gets submitted. */
867 pthread_cond_t timeline_cond;
868
869 /* Thread trace. */
870 struct radeon_cmdbuf *thread_trace_start_cs[2];
871 struct radeon_cmdbuf *thread_trace_stop_cs[2];
872 struct radeon_winsys_bo *thread_trace_bo;
873 void *thread_trace_ptr;
874 uint32_t thread_trace_buffer_size;
875 int thread_trace_start_frame;
876 };
877
878 struct radv_device_memory {
879 struct radeon_winsys_bo *bo;
880 /* for dedicated allocations */
881 struct radv_image *image;
882 struct radv_buffer *buffer;
883 uint32_t type_index;
884 VkDeviceSize map_size;
885 void * map;
886 void * user_ptr;
887
888 #if RADV_SUPPORT_ANDROID_HARDWARE_BUFFER
889 struct AHardwareBuffer * android_hardware_buffer;
890 #endif
891 };
892
893
894 struct radv_descriptor_range {
895 uint64_t va;
896 uint32_t size;
897 };
898
899 struct radv_descriptor_set {
900 const struct radv_descriptor_set_layout *layout;
901 uint32_t size;
902
903 struct radeon_winsys_bo *bo;
904 uint64_t va;
905 uint32_t *mapped_ptr;
906 struct radv_descriptor_range *dynamic_descriptors;
907
908 struct radeon_winsys_bo *descriptors[0];
909 };
910
911 struct radv_push_descriptor_set
912 {
913 struct radv_descriptor_set set;
914 uint32_t capacity;
915 };
916
917 struct radv_descriptor_pool_entry {
918 uint32_t offset;
919 uint32_t size;
920 struct radv_descriptor_set *set;
921 };
922
923 struct radv_descriptor_pool {
924 struct radeon_winsys_bo *bo;
925 uint8_t *mapped_ptr;
926 uint64_t current_offset;
927 uint64_t size;
928
929 uint8_t *host_memory_base;
930 uint8_t *host_memory_ptr;
931 uint8_t *host_memory_end;
932
933 uint32_t entry_count;
934 uint32_t max_entry_count;
935 struct radv_descriptor_pool_entry entries[0];
936 };
937
938 struct radv_descriptor_update_template_entry {
939 VkDescriptorType descriptor_type;
940
941 /* The number of descriptors to update */
942 uint32_t descriptor_count;
943
944 /* Into mapped_ptr or dynamic_descriptors, in units of the respective array */
945 uint32_t dst_offset;
946
947 /* In dwords. Not valid/used for dynamic descriptors */
948 uint32_t dst_stride;
949
950 uint32_t buffer_offset;
951
952 /* Only valid for combined image samplers and samplers */
953 uint8_t has_sampler;
954 uint8_t sampler_offset;
955
956 /* In bytes */
957 size_t src_offset;
958 size_t src_stride;
959
960 /* For push descriptors */
961 const uint32_t *immutable_samplers;
962 };
963
964 struct radv_descriptor_update_template {
965 uint32_t entry_count;
966 VkPipelineBindPoint bind_point;
967 struct radv_descriptor_update_template_entry entry[0];
968 };
969
970 struct radv_buffer {
971 VkDeviceSize size;
972
973 VkBufferUsageFlags usage;
974 VkBufferCreateFlags flags;
975
976 /* Set when bound */
977 struct radeon_winsys_bo * bo;
978 VkDeviceSize offset;
979
980 bool shareable;
981 };
982
983 enum radv_dynamic_state_bits {
984 RADV_DYNAMIC_VIEWPORT = 1 << 0,
985 RADV_DYNAMIC_SCISSOR = 1 << 1,
986 RADV_DYNAMIC_LINE_WIDTH = 1 << 2,
987 RADV_DYNAMIC_DEPTH_BIAS = 1 << 3,
988 RADV_DYNAMIC_BLEND_CONSTANTS = 1 << 4,
989 RADV_DYNAMIC_DEPTH_BOUNDS = 1 << 5,
990 RADV_DYNAMIC_STENCIL_COMPARE_MASK = 1 << 6,
991 RADV_DYNAMIC_STENCIL_WRITE_MASK = 1 << 7,
992 RADV_DYNAMIC_STENCIL_REFERENCE = 1 << 8,
993 RADV_DYNAMIC_DISCARD_RECTANGLE = 1 << 9,
994 RADV_DYNAMIC_SAMPLE_LOCATIONS = 1 << 10,
995 RADV_DYNAMIC_LINE_STIPPLE = 1 << 11,
996 RADV_DYNAMIC_ALL = (1 << 12) - 1,
997 };
998
999 enum radv_cmd_dirty_bits {
1000 /* Keep the dynamic state dirty bits in sync with
1001 * enum radv_dynamic_state_bits */
1002 RADV_CMD_DIRTY_DYNAMIC_VIEWPORT = 1 << 0,
1003 RADV_CMD_DIRTY_DYNAMIC_SCISSOR = 1 << 1,
1004 RADV_CMD_DIRTY_DYNAMIC_LINE_WIDTH = 1 << 2,
1005 RADV_CMD_DIRTY_DYNAMIC_DEPTH_BIAS = 1 << 3,
1006 RADV_CMD_DIRTY_DYNAMIC_BLEND_CONSTANTS = 1 << 4,
1007 RADV_CMD_DIRTY_DYNAMIC_DEPTH_BOUNDS = 1 << 5,
1008 RADV_CMD_DIRTY_DYNAMIC_STENCIL_COMPARE_MASK = 1 << 6,
1009 RADV_CMD_DIRTY_DYNAMIC_STENCIL_WRITE_MASK = 1 << 7,
1010 RADV_CMD_DIRTY_DYNAMIC_STENCIL_REFERENCE = 1 << 8,
1011 RADV_CMD_DIRTY_DYNAMIC_DISCARD_RECTANGLE = 1 << 9,
1012 RADV_CMD_DIRTY_DYNAMIC_SAMPLE_LOCATIONS = 1 << 10,
1013 RADV_CMD_DIRTY_DYNAMIC_LINE_STIPPLE = 1 << 11,
1014 RADV_CMD_DIRTY_DYNAMIC_ALL = (1 << 12) - 1,
1015 RADV_CMD_DIRTY_PIPELINE = 1 << 12,
1016 RADV_CMD_DIRTY_INDEX_BUFFER = 1 << 13,
1017 RADV_CMD_DIRTY_FRAMEBUFFER = 1 << 14,
1018 RADV_CMD_DIRTY_VERTEX_BUFFER = 1 << 15,
1019 RADV_CMD_DIRTY_STREAMOUT_BUFFER = 1 << 16,
1020 };
1021
1022 enum radv_cmd_flush_bits {
1023 /* Instruction cache. */
1024 RADV_CMD_FLAG_INV_ICACHE = 1 << 0,
1025 /* Scalar L1 cache. */
1026 RADV_CMD_FLAG_INV_SCACHE = 1 << 1,
1027 /* Vector L1 cache. */
1028 RADV_CMD_FLAG_INV_VCACHE = 1 << 2,
1029 /* L2 cache + L2 metadata cache writeback & invalidate.
1030 * GFX6-8: Used by shaders only. GFX9-10: Used by everything. */
1031 RADV_CMD_FLAG_INV_L2 = 1 << 3,
1032 /* L2 writeback (write dirty L2 lines to memory for non-L2 clients).
1033 * Only used for coherency with non-L2 clients like CB, DB, CP on GFX6-8.
1034 * GFX6-7 will do complete invalidation, because the writeback is unsupported. */
1035 RADV_CMD_FLAG_WB_L2 = 1 << 4,
1036 /* Framebuffer caches */
1037 RADV_CMD_FLAG_FLUSH_AND_INV_CB_META = 1 << 5,
1038 RADV_CMD_FLAG_FLUSH_AND_INV_DB_META = 1 << 6,
1039 RADV_CMD_FLAG_FLUSH_AND_INV_DB = 1 << 7,
1040 RADV_CMD_FLAG_FLUSH_AND_INV_CB = 1 << 8,
1041 /* Engine synchronization. */
1042 RADV_CMD_FLAG_VS_PARTIAL_FLUSH = 1 << 9,
1043 RADV_CMD_FLAG_PS_PARTIAL_FLUSH = 1 << 10,
1044 RADV_CMD_FLAG_CS_PARTIAL_FLUSH = 1 << 11,
1045 RADV_CMD_FLAG_VGT_FLUSH = 1 << 12,
1046 /* Pipeline query controls. */
1047 RADV_CMD_FLAG_START_PIPELINE_STATS = 1 << 13,
1048 RADV_CMD_FLAG_STOP_PIPELINE_STATS = 1 << 14,
1049 RADV_CMD_FLAG_VGT_STREAMOUT_SYNC = 1 << 15,
1050
1051 RADV_CMD_FLUSH_AND_INV_FRAMEBUFFER = (RADV_CMD_FLAG_FLUSH_AND_INV_CB |
1052 RADV_CMD_FLAG_FLUSH_AND_INV_CB_META |
1053 RADV_CMD_FLAG_FLUSH_AND_INV_DB |
1054 RADV_CMD_FLAG_FLUSH_AND_INV_DB_META)
1055 };
1056
1057 struct radv_vertex_binding {
1058 struct radv_buffer * buffer;
1059 VkDeviceSize offset;
1060 };
1061
1062 struct radv_streamout_binding {
1063 struct radv_buffer *buffer;
1064 VkDeviceSize offset;
1065 VkDeviceSize size;
1066 };
1067
1068 struct radv_streamout_state {
1069 /* Mask of bound streamout buffers. */
1070 uint8_t enabled_mask;
1071
1072 /* External state that comes from the last vertex stage, it must be
1073 * set explicitely when binding a new graphics pipeline.
1074 */
1075 uint16_t stride_in_dw[MAX_SO_BUFFERS];
1076 uint32_t enabled_stream_buffers_mask; /* stream0 buffers0-3 in 4 LSB */
1077
1078 /* State of VGT_STRMOUT_BUFFER_(CONFIG|END) */
1079 uint32_t hw_enabled_mask;
1080
1081 /* State of VGT_STRMOUT_(CONFIG|EN) */
1082 bool streamout_enabled;
1083 };
1084
1085 struct radv_viewport_state {
1086 uint32_t count;
1087 VkViewport viewports[MAX_VIEWPORTS];
1088 };
1089
1090 struct radv_scissor_state {
1091 uint32_t count;
1092 VkRect2D scissors[MAX_SCISSORS];
1093 };
1094
1095 struct radv_discard_rectangle_state {
1096 uint32_t count;
1097 VkRect2D rectangles[MAX_DISCARD_RECTANGLES];
1098 };
1099
1100 struct radv_sample_locations_state {
1101 VkSampleCountFlagBits per_pixel;
1102 VkExtent2D grid_size;
1103 uint32_t count;
1104 VkSampleLocationEXT locations[MAX_SAMPLE_LOCATIONS];
1105 };
1106
1107 struct radv_dynamic_state {
1108 /**
1109 * Bitmask of (1 << VK_DYNAMIC_STATE_*).
1110 * Defines the set of saved dynamic state.
1111 */
1112 uint32_t mask;
1113
1114 struct radv_viewport_state viewport;
1115
1116 struct radv_scissor_state scissor;
1117
1118 float line_width;
1119
1120 struct {
1121 float bias;
1122 float clamp;
1123 float slope;
1124 } depth_bias;
1125
1126 float blend_constants[4];
1127
1128 struct {
1129 float min;
1130 float max;
1131 } depth_bounds;
1132
1133 struct {
1134 uint32_t front;
1135 uint32_t back;
1136 } stencil_compare_mask;
1137
1138 struct {
1139 uint32_t front;
1140 uint32_t back;
1141 } stencil_write_mask;
1142
1143 struct {
1144 uint32_t front;
1145 uint32_t back;
1146 } stencil_reference;
1147
1148 struct radv_discard_rectangle_state discard_rectangle;
1149
1150 struct radv_sample_locations_state sample_location;
1151
1152 struct {
1153 uint32_t factor;
1154 uint16_t pattern;
1155 } line_stipple;
1156 };
1157
1158 extern const struct radv_dynamic_state default_dynamic_state;
1159
1160 const char *
1161 radv_get_debug_option_name(int id);
1162
1163 const char *
1164 radv_get_perftest_option_name(int id);
1165
1166 struct radv_color_buffer_info {
1167 uint64_t cb_color_base;
1168 uint64_t cb_color_cmask;
1169 uint64_t cb_color_fmask;
1170 uint64_t cb_dcc_base;
1171 uint32_t cb_color_slice;
1172 uint32_t cb_color_view;
1173 uint32_t cb_color_info;
1174 uint32_t cb_color_attrib;
1175 uint32_t cb_color_attrib2; /* GFX9 and later */
1176 uint32_t cb_color_attrib3; /* GFX10 and later */
1177 uint32_t cb_dcc_control;
1178 uint32_t cb_color_cmask_slice;
1179 uint32_t cb_color_fmask_slice;
1180 union {
1181 uint32_t cb_color_pitch; // GFX6-GFX8
1182 uint32_t cb_mrt_epitch; // GFX9+
1183 };
1184 };
1185
1186 struct radv_ds_buffer_info {
1187 uint64_t db_z_read_base;
1188 uint64_t db_stencil_read_base;
1189 uint64_t db_z_write_base;
1190 uint64_t db_stencil_write_base;
1191 uint64_t db_htile_data_base;
1192 uint32_t db_depth_info;
1193 uint32_t db_z_info;
1194 uint32_t db_stencil_info;
1195 uint32_t db_depth_view;
1196 uint32_t db_depth_size;
1197 uint32_t db_depth_slice;
1198 uint32_t db_htile_surface;
1199 uint32_t pa_su_poly_offset_db_fmt_cntl;
1200 uint32_t db_z_info2; /* GFX9 only */
1201 uint32_t db_stencil_info2; /* GFX9 only */
1202 float offset_scale;
1203 };
1204
1205 void
1206 radv_initialise_color_surface(struct radv_device *device,
1207 struct radv_color_buffer_info *cb,
1208 struct radv_image_view *iview);
1209 void
1210 radv_initialise_ds_surface(struct radv_device *device,
1211 struct radv_ds_buffer_info *ds,
1212 struct radv_image_view *iview);
1213
1214 bool
1215 radv_sc_read(int fd, void *buf, size_t size, bool timeout);
1216
1217 /**
1218 * Attachment state when recording a renderpass instance.
1219 *
1220 * The clear value is valid only if there exists a pending clear.
1221 */
1222 struct radv_attachment_state {
1223 VkImageAspectFlags pending_clear_aspects;
1224 uint32_t cleared_views;
1225 VkClearValue clear_value;
1226 VkImageLayout current_layout;
1227 VkImageLayout current_stencil_layout;
1228 bool current_in_render_loop;
1229 struct radv_sample_locations_state sample_location;
1230
1231 union {
1232 struct radv_color_buffer_info cb;
1233 struct radv_ds_buffer_info ds;
1234 };
1235 struct radv_image_view *iview;
1236 };
1237
1238 struct radv_descriptor_state {
1239 struct radv_descriptor_set *sets[MAX_SETS];
1240 uint32_t dirty;
1241 uint32_t valid;
1242 struct radv_push_descriptor_set push_set;
1243 bool push_dirty;
1244 uint32_t dynamic_buffers[4 * MAX_DYNAMIC_BUFFERS];
1245 };
1246
1247 struct radv_subpass_sample_locs_state {
1248 uint32_t subpass_idx;
1249 struct radv_sample_locations_state sample_location;
1250 };
1251
1252 struct radv_cmd_state {
1253 /* Vertex descriptors */
1254 uint64_t vb_va;
1255 unsigned vb_size;
1256
1257 bool predicating;
1258 uint32_t dirty;
1259
1260 uint32_t prefetch_L2_mask;
1261
1262 struct radv_pipeline * pipeline;
1263 struct radv_pipeline * emitted_pipeline;
1264 struct radv_pipeline * compute_pipeline;
1265 struct radv_pipeline * emitted_compute_pipeline;
1266 struct radv_framebuffer * framebuffer;
1267 struct radv_render_pass * pass;
1268 const struct radv_subpass * subpass;
1269 struct radv_dynamic_state dynamic;
1270 struct radv_attachment_state * attachments;
1271 struct radv_streamout_state streamout;
1272 VkRect2D render_area;
1273
1274 uint32_t num_subpass_sample_locs;
1275 struct radv_subpass_sample_locs_state * subpass_sample_locs;
1276
1277 /* Index buffer */
1278 struct radv_buffer *index_buffer;
1279 uint64_t index_offset;
1280 uint32_t index_type;
1281 uint32_t max_index_count;
1282 uint64_t index_va;
1283 int32_t last_index_type;
1284
1285 int32_t last_primitive_reset_en;
1286 uint32_t last_primitive_reset_index;
1287 enum radv_cmd_flush_bits flush_bits;
1288 unsigned active_occlusion_queries;
1289 bool perfect_occlusion_queries_enabled;
1290 unsigned active_pipeline_queries;
1291 unsigned active_pipeline_gds_queries;
1292 float offset_scale;
1293 uint32_t trace_id;
1294 uint32_t last_ia_multi_vgt_param;
1295
1296 uint32_t last_num_instances;
1297 uint32_t last_first_instance;
1298 uint32_t last_vertex_offset;
1299
1300 uint32_t last_sx_ps_downconvert;
1301 uint32_t last_sx_blend_opt_epsilon;
1302 uint32_t last_sx_blend_opt_control;
1303
1304 /* Whether CP DMA is busy/idle. */
1305 bool dma_is_busy;
1306
1307 /* Conditional rendering info. */
1308 int predication_type; /* -1: disabled, 0: normal, 1: inverted */
1309 uint64_t predication_va;
1310
1311 /* Inheritance info. */
1312 VkQueryPipelineStatisticFlags inherited_pipeline_statistics;
1313
1314 bool context_roll_without_scissor_emitted;
1315
1316 /* SQTT related state. */
1317 uint32_t current_event_type;
1318 uint32_t num_events;
1319 };
1320
1321 struct radv_cmd_pool {
1322 VkAllocationCallbacks alloc;
1323 struct list_head cmd_buffers;
1324 struct list_head free_cmd_buffers;
1325 uint32_t queue_family_index;
1326 };
1327
1328 struct radv_cmd_buffer_upload {
1329 uint8_t *map;
1330 unsigned offset;
1331 uint64_t size;
1332 struct radeon_winsys_bo *upload_bo;
1333 struct list_head list;
1334 };
1335
1336 enum radv_cmd_buffer_status {
1337 RADV_CMD_BUFFER_STATUS_INVALID,
1338 RADV_CMD_BUFFER_STATUS_INITIAL,
1339 RADV_CMD_BUFFER_STATUS_RECORDING,
1340 RADV_CMD_BUFFER_STATUS_EXECUTABLE,
1341 RADV_CMD_BUFFER_STATUS_PENDING,
1342 };
1343
1344 struct radv_cmd_buffer {
1345 VK_LOADER_DATA _loader_data;
1346
1347 struct radv_device * device;
1348
1349 struct radv_cmd_pool * pool;
1350 struct list_head pool_link;
1351
1352 VkCommandBufferUsageFlags usage_flags;
1353 VkCommandBufferLevel level;
1354 enum radv_cmd_buffer_status status;
1355 struct radeon_cmdbuf *cs;
1356 struct radv_cmd_state state;
1357 struct radv_vertex_binding vertex_bindings[MAX_VBS];
1358 struct radv_streamout_binding streamout_bindings[MAX_SO_BUFFERS];
1359 uint32_t queue_family_index;
1360
1361 uint8_t push_constants[MAX_PUSH_CONSTANTS_SIZE];
1362 VkShaderStageFlags push_constant_stages;
1363 struct radv_descriptor_set meta_push_descriptors;
1364
1365 struct radv_descriptor_state descriptors[VK_PIPELINE_BIND_POINT_RANGE_SIZE];
1366
1367 struct radv_cmd_buffer_upload upload;
1368
1369 uint32_t scratch_size_per_wave_needed;
1370 uint32_t scratch_waves_wanted;
1371 uint32_t compute_scratch_size_per_wave_needed;
1372 uint32_t compute_scratch_waves_wanted;
1373 uint32_t esgs_ring_size_needed;
1374 uint32_t gsvs_ring_size_needed;
1375 bool tess_rings_needed;
1376 bool gds_needed; /* for GFX10 streamout and NGG GS queries */
1377 bool gds_oa_needed; /* for GFX10 streamout */
1378 bool sample_positions_needed;
1379
1380 VkResult record_result;
1381
1382 uint64_t gfx9_fence_va;
1383 uint32_t gfx9_fence_idx;
1384 uint64_t gfx9_eop_bug_va;
1385
1386 /**
1387 * Whether a query pool has been resetted and we have to flush caches.
1388 */
1389 bool pending_reset_query;
1390
1391 /**
1392 * Bitmask of pending active query flushes.
1393 */
1394 enum radv_cmd_flush_bits active_query_flush_bits;
1395 };
1396
1397 struct radv_image;
1398 struct radv_image_view;
1399
1400 bool radv_cmd_buffer_uses_mec(struct radv_cmd_buffer *cmd_buffer);
1401
1402 void si_emit_graphics(struct radv_physical_device *physical_device,
1403 struct radeon_cmdbuf *cs);
1404 void si_emit_compute(struct radv_physical_device *physical_device,
1405 struct radeon_cmdbuf *cs);
1406
1407 void cik_create_gfx_config(struct radv_device *device);
1408
1409 void si_write_viewport(struct radeon_cmdbuf *cs, int first_vp,
1410 int count, const VkViewport *viewports);
1411 void si_write_scissors(struct radeon_cmdbuf *cs, int first,
1412 int count, const VkRect2D *scissors,
1413 const VkViewport *viewports, bool can_use_guardband);
1414 uint32_t si_get_ia_multi_vgt_param(struct radv_cmd_buffer *cmd_buffer,
1415 bool instanced_draw, bool indirect_draw,
1416 bool count_from_stream_output,
1417 uint32_t draw_vertex_count);
1418 void si_cs_emit_write_event_eop(struct radeon_cmdbuf *cs,
1419 enum chip_class chip_class,
1420 bool is_mec,
1421 unsigned event, unsigned event_flags,
1422 unsigned dst_sel, unsigned data_sel,
1423 uint64_t va,
1424 uint32_t new_fence,
1425 uint64_t gfx9_eop_bug_va);
1426
1427 void radv_cp_wait_mem(struct radeon_cmdbuf *cs, uint32_t op, uint64_t va,
1428 uint32_t ref, uint32_t mask);
1429 void si_cs_emit_cache_flush(struct radeon_cmdbuf *cs,
1430 enum chip_class chip_class,
1431 uint32_t *fence_ptr, uint64_t va,
1432 bool is_mec,
1433 enum radv_cmd_flush_bits flush_bits,
1434 uint64_t gfx9_eop_bug_va);
1435 void si_emit_cache_flush(struct radv_cmd_buffer *cmd_buffer);
1436 void si_emit_set_predication_state(struct radv_cmd_buffer *cmd_buffer,
1437 bool inverted, uint64_t va);
1438 void si_cp_dma_buffer_copy(struct radv_cmd_buffer *cmd_buffer,
1439 uint64_t src_va, uint64_t dest_va,
1440 uint64_t size);
1441 void si_cp_dma_prefetch(struct radv_cmd_buffer *cmd_buffer, uint64_t va,
1442 unsigned size);
1443 void si_cp_dma_clear_buffer(struct radv_cmd_buffer *cmd_buffer, uint64_t va,
1444 uint64_t size, unsigned value);
1445 void si_cp_dma_wait_for_idle(struct radv_cmd_buffer *cmd_buffer);
1446
1447 void radv_set_db_count_control(struct radv_cmd_buffer *cmd_buffer);
1448 bool
1449 radv_cmd_buffer_upload_alloc(struct radv_cmd_buffer *cmd_buffer,
1450 unsigned size,
1451 unsigned alignment,
1452 unsigned *out_offset,
1453 void **ptr);
1454 void
1455 radv_cmd_buffer_set_subpass(struct radv_cmd_buffer *cmd_buffer,
1456 const struct radv_subpass *subpass);
1457 bool
1458 radv_cmd_buffer_upload_data(struct radv_cmd_buffer *cmd_buffer,
1459 unsigned size, unsigned alignmnet,
1460 const void *data, unsigned *out_offset);
1461
1462 void radv_cmd_buffer_clear_subpass(struct radv_cmd_buffer *cmd_buffer);
1463 void radv_cmd_buffer_resolve_subpass(struct radv_cmd_buffer *cmd_buffer);
1464 void radv_cmd_buffer_resolve_subpass_cs(struct radv_cmd_buffer *cmd_buffer);
1465 void radv_depth_stencil_resolve_subpass_cs(struct radv_cmd_buffer *cmd_buffer,
1466 VkImageAspectFlags aspects,
1467 VkResolveModeFlagBits resolve_mode);
1468 void radv_cmd_buffer_resolve_subpass_fs(struct radv_cmd_buffer *cmd_buffer);
1469 void radv_depth_stencil_resolve_subpass_fs(struct radv_cmd_buffer *cmd_buffer,
1470 VkImageAspectFlags aspects,
1471 VkResolveModeFlagBits resolve_mode);
1472 void radv_emit_default_sample_locations(struct radeon_cmdbuf *cs, int nr_samples);
1473 unsigned radv_get_default_max_sample_dist(int log_samples);
1474 void radv_device_init_msaa(struct radv_device *device);
1475
1476 void radv_update_ds_clear_metadata(struct radv_cmd_buffer *cmd_buffer,
1477 const struct radv_image_view *iview,
1478 VkClearDepthStencilValue ds_clear_value,
1479 VkImageAspectFlags aspects);
1480
1481 void radv_update_color_clear_metadata(struct radv_cmd_buffer *cmd_buffer,
1482 const struct radv_image_view *iview,
1483 int cb_idx,
1484 uint32_t color_values[2]);
1485
1486 void radv_update_fce_metadata(struct radv_cmd_buffer *cmd_buffer,
1487 struct radv_image *image,
1488 const VkImageSubresourceRange *range, bool value);
1489
1490 void radv_update_dcc_metadata(struct radv_cmd_buffer *cmd_buffer,
1491 struct radv_image *image,
1492 const VkImageSubresourceRange *range, bool value);
1493
1494 uint32_t radv_fill_buffer(struct radv_cmd_buffer *cmd_buffer,
1495 struct radeon_winsys_bo *bo,
1496 uint64_t offset, uint64_t size, uint32_t value);
1497 void radv_cmd_buffer_trace_emit(struct radv_cmd_buffer *cmd_buffer);
1498 bool radv_get_memory_fd(struct radv_device *device,
1499 struct radv_device_memory *memory,
1500 int *pFD);
1501
1502 static inline void
1503 radv_emit_shader_pointer_head(struct radeon_cmdbuf *cs,
1504 unsigned sh_offset, unsigned pointer_count,
1505 bool use_32bit_pointers)
1506 {
1507 radeon_emit(cs, PKT3(PKT3_SET_SH_REG, pointer_count * (use_32bit_pointers ? 1 : 2), 0));
1508 radeon_emit(cs, (sh_offset - SI_SH_REG_OFFSET) >> 2);
1509 }
1510
1511 static inline void
1512 radv_emit_shader_pointer_body(struct radv_device *device,
1513 struct radeon_cmdbuf *cs,
1514 uint64_t va, bool use_32bit_pointers)
1515 {
1516 radeon_emit(cs, va);
1517
1518 if (use_32bit_pointers) {
1519 assert(va == 0 ||
1520 (va >> 32) == device->physical_device->rad_info.address32_hi);
1521 } else {
1522 radeon_emit(cs, va >> 32);
1523 }
1524 }
1525
1526 static inline void
1527 radv_emit_shader_pointer(struct radv_device *device,
1528 struct radeon_cmdbuf *cs,
1529 uint32_t sh_offset, uint64_t va, bool global)
1530 {
1531 bool use_32bit_pointers = !global;
1532
1533 radv_emit_shader_pointer_head(cs, sh_offset, 1, use_32bit_pointers);
1534 radv_emit_shader_pointer_body(device, cs, va, use_32bit_pointers);
1535 }
1536
1537 static inline struct radv_descriptor_state *
1538 radv_get_descriptors_state(struct radv_cmd_buffer *cmd_buffer,
1539 VkPipelineBindPoint bind_point)
1540 {
1541 assert(bind_point == VK_PIPELINE_BIND_POINT_GRAPHICS ||
1542 bind_point == VK_PIPELINE_BIND_POINT_COMPUTE);
1543 return &cmd_buffer->descriptors[bind_point];
1544 }
1545
1546 /*
1547 * Takes x,y,z as exact numbers of invocations, instead of blocks.
1548 *
1549 * Limitations: Can't call normal dispatch functions without binding or rebinding
1550 * the compute pipeline.
1551 */
1552 void radv_unaligned_dispatch(
1553 struct radv_cmd_buffer *cmd_buffer,
1554 uint32_t x,
1555 uint32_t y,
1556 uint32_t z);
1557
1558 struct radv_event {
1559 struct radeon_winsys_bo *bo;
1560 uint64_t *map;
1561 };
1562
1563 struct radv_shader_module;
1564
1565 #define RADV_HASH_SHADER_NO_NGG (1 << 0)
1566 #define RADV_HASH_SHADER_CS_WAVE32 (1 << 1)
1567 #define RADV_HASH_SHADER_PS_WAVE32 (1 << 2)
1568 #define RADV_HASH_SHADER_GE_WAVE32 (1 << 3)
1569 #define RADV_HASH_SHADER_ACO (1 << 4)
1570
1571 void
1572 radv_hash_shaders(unsigned char *hash,
1573 const VkPipelineShaderStageCreateInfo **stages,
1574 const struct radv_pipeline_layout *layout,
1575 const struct radv_pipeline_key *key,
1576 uint32_t flags);
1577
1578 static inline gl_shader_stage
1579 vk_to_mesa_shader_stage(VkShaderStageFlagBits vk_stage)
1580 {
1581 assert(__builtin_popcount(vk_stage) == 1);
1582 return ffs(vk_stage) - 1;
1583 }
1584
1585 static inline VkShaderStageFlagBits
1586 mesa_to_vk_shader_stage(gl_shader_stage mesa_stage)
1587 {
1588 return (1 << mesa_stage);
1589 }
1590
1591 #define RADV_STAGE_MASK ((1 << MESA_SHADER_STAGES) - 1)
1592
1593 #define radv_foreach_stage(stage, stage_bits) \
1594 for (gl_shader_stage stage, \
1595 __tmp = (gl_shader_stage)((stage_bits) & RADV_STAGE_MASK); \
1596 stage = __builtin_ffs(__tmp) - 1, __tmp; \
1597 __tmp &= ~(1 << (stage)))
1598
1599 extern const VkFormat radv_fs_key_format_exemplars[NUM_META_FS_KEYS];
1600 unsigned radv_format_meta_fs_key(VkFormat format);
1601
1602 struct radv_multisample_state {
1603 uint32_t db_eqaa;
1604 uint32_t pa_sc_line_cntl;
1605 uint32_t pa_sc_mode_cntl_0;
1606 uint32_t pa_sc_mode_cntl_1;
1607 uint32_t pa_sc_aa_config;
1608 uint32_t pa_sc_aa_mask[2];
1609 unsigned num_samples;
1610 };
1611
1612 struct radv_prim_vertex_count {
1613 uint8_t min;
1614 uint8_t incr;
1615 };
1616
1617 struct radv_vertex_elements_info {
1618 uint32_t format_size[MAX_VERTEX_ATTRIBS];
1619 };
1620
1621 struct radv_ia_multi_vgt_param_helpers {
1622 uint32_t base;
1623 bool partial_es_wave;
1624 uint8_t primgroup_size;
1625 bool wd_switch_on_eop;
1626 bool ia_switch_on_eoi;
1627 bool partial_vs_wave;
1628 };
1629
1630 struct radv_binning_state {
1631 uint32_t pa_sc_binner_cntl_0;
1632 uint32_t db_dfsm_control;
1633 };
1634
1635 #define SI_GS_PER_ES 128
1636
1637 struct radv_pipeline {
1638 struct radv_device * device;
1639 struct radv_dynamic_state dynamic_state;
1640
1641 struct radv_pipeline_layout * layout;
1642
1643 bool need_indirect_descriptor_sets;
1644 struct radv_shader_variant * shaders[MESA_SHADER_STAGES];
1645 struct radv_shader_variant *gs_copy_shader;
1646 VkShaderStageFlags active_stages;
1647
1648 struct radeon_cmdbuf cs;
1649 uint32_t ctx_cs_hash;
1650 struct radeon_cmdbuf ctx_cs;
1651
1652 struct radv_vertex_elements_info vertex_elements;
1653
1654 uint32_t binding_stride[MAX_VBS];
1655 uint8_t num_vertex_bindings;
1656
1657 uint32_t user_data_0[MESA_SHADER_STAGES];
1658 union {
1659 struct {
1660 struct radv_multisample_state ms;
1661 struct radv_binning_state binning;
1662 uint32_t spi_baryc_cntl;
1663 bool prim_restart_enable;
1664 unsigned esgs_ring_size;
1665 unsigned gsvs_ring_size;
1666 uint32_t vtx_base_sgpr;
1667 struct radv_ia_multi_vgt_param_helpers ia_multi_vgt_param;
1668 uint8_t vtx_emit_num;
1669 struct radv_prim_vertex_count prim_vertex_count;
1670 bool can_use_guardband;
1671 uint32_t needed_dynamic_state;
1672 bool disable_out_of_order_rast_for_occlusion;
1673 uint8_t topology;
1674
1675 /* Used for rbplus */
1676 uint32_t col_format;
1677 uint32_t cb_target_mask;
1678 } graphics;
1679 };
1680
1681 unsigned max_waves;
1682 unsigned scratch_bytes_per_wave;
1683
1684 /* Not NULL if graphics pipeline uses streamout. */
1685 struct radv_shader_variant *streamout_shader;
1686 };
1687
1688 static inline bool radv_pipeline_has_gs(const struct radv_pipeline *pipeline)
1689 {
1690 return pipeline->shaders[MESA_SHADER_GEOMETRY] ? true : false;
1691 }
1692
1693 static inline bool radv_pipeline_has_tess(const struct radv_pipeline *pipeline)
1694 {
1695 return pipeline->shaders[MESA_SHADER_TESS_CTRL] ? true : false;
1696 }
1697
1698 bool radv_pipeline_has_ngg(const struct radv_pipeline *pipeline);
1699
1700 bool radv_pipeline_has_ngg_passthrough(const struct radv_pipeline *pipeline);
1701
1702 bool radv_pipeline_has_gs_copy_shader(const struct radv_pipeline *pipeline);
1703
1704 struct radv_userdata_info *radv_lookup_user_sgpr(struct radv_pipeline *pipeline,
1705 gl_shader_stage stage,
1706 int idx);
1707
1708 struct radv_shader_variant *radv_get_shader(struct radv_pipeline *pipeline,
1709 gl_shader_stage stage);
1710
1711 struct radv_graphics_pipeline_create_info {
1712 bool use_rectlist;
1713 bool db_depth_clear;
1714 bool db_stencil_clear;
1715 bool db_depth_disable_expclear;
1716 bool db_stencil_disable_expclear;
1717 bool db_flush_depth_inplace;
1718 bool db_flush_stencil_inplace;
1719 bool db_resummarize;
1720 uint32_t custom_blend_mode;
1721 };
1722
1723 VkResult
1724 radv_graphics_pipeline_create(VkDevice device,
1725 VkPipelineCache cache,
1726 const VkGraphicsPipelineCreateInfo *pCreateInfo,
1727 const struct radv_graphics_pipeline_create_info *extra,
1728 const VkAllocationCallbacks *alloc,
1729 VkPipeline *pPipeline);
1730
1731 struct radv_binning_settings {
1732 unsigned context_states_per_bin; /* allowed range: [1, 6] */
1733 unsigned persistent_states_per_bin; /* allowed range: [1, 32] */
1734 unsigned fpovs_per_batch; /* allowed range: [0, 255], 0 = unlimited */
1735 };
1736
1737 struct radv_binning_settings
1738 radv_get_binning_settings(const struct radv_physical_device *pdev);
1739
1740 struct vk_format_description;
1741 uint32_t radv_translate_buffer_dataformat(const struct vk_format_description *desc,
1742 int first_non_void);
1743 uint32_t radv_translate_buffer_numformat(const struct vk_format_description *desc,
1744 int first_non_void);
1745 bool radv_is_buffer_format_supported(VkFormat format, bool *scaled);
1746 uint32_t radv_translate_colorformat(VkFormat format);
1747 uint32_t radv_translate_color_numformat(VkFormat format,
1748 const struct vk_format_description *desc,
1749 int first_non_void);
1750 uint32_t radv_colorformat_endian_swap(uint32_t colorformat);
1751 unsigned radv_translate_colorswap(VkFormat format, bool do_endian_swap);
1752 uint32_t radv_translate_dbformat(VkFormat format);
1753 uint32_t radv_translate_tex_dataformat(VkFormat format,
1754 const struct vk_format_description *desc,
1755 int first_non_void);
1756 uint32_t radv_translate_tex_numformat(VkFormat format,
1757 const struct vk_format_description *desc,
1758 int first_non_void);
1759 bool radv_format_pack_clear_color(VkFormat format,
1760 uint32_t clear_vals[2],
1761 VkClearColorValue *value);
1762 bool radv_is_colorbuffer_format_supported(VkFormat format, bool *blendable);
1763 bool radv_dcc_formats_compatible(VkFormat format1,
1764 VkFormat format2);
1765 bool radv_device_supports_etc(struct radv_physical_device *physical_device);
1766
1767 struct radv_image_plane {
1768 VkFormat format;
1769 struct radeon_surf surface;
1770 uint64_t offset;
1771 };
1772
1773 struct radv_image {
1774 VkImageType type;
1775 /* The original VkFormat provided by the client. This may not match any
1776 * of the actual surface formats.
1777 */
1778 VkFormat vk_format;
1779 VkImageAspectFlags aspects;
1780 VkImageUsageFlags usage; /**< Superset of VkImageCreateInfo::usage. */
1781 struct ac_surf_info info;
1782 VkImageTiling tiling; /** VkImageCreateInfo::tiling */
1783 VkImageCreateFlags flags; /** VkImageCreateInfo::flags */
1784
1785 VkDeviceSize size;
1786 uint32_t alignment;
1787
1788 unsigned queue_family_mask;
1789 bool exclusive;
1790 bool shareable;
1791
1792 /* Set when bound */
1793 struct radeon_winsys_bo *bo;
1794 VkDeviceSize offset;
1795 uint64_t dcc_offset;
1796 uint64_t htile_offset;
1797 bool tc_compatible_htile;
1798 bool tc_compatible_cmask;
1799
1800 uint64_t cmask_offset;
1801 uint64_t fmask_offset;
1802 uint64_t clear_value_offset;
1803 uint64_t fce_pred_offset;
1804 uint64_t dcc_pred_offset;
1805
1806 /*
1807 * Metadata for the TC-compat zrange workaround. If the 32-bit value
1808 * stored at this offset is UINT_MAX, the driver will emit
1809 * DB_Z_INFO.ZRANGE_PRECISION=0, otherwise it will skip the
1810 * SET_CONTEXT_REG packet.
1811 */
1812 uint64_t tc_compat_zrange_offset;
1813
1814 /* For VK_ANDROID_native_buffer, the WSI image owns the memory, */
1815 VkDeviceMemory owned_memory;
1816
1817 unsigned plane_count;
1818 struct radv_image_plane planes[0];
1819 };
1820
1821 /* Whether the image has a htile that is known consistent with the contents of
1822 * the image. */
1823 bool radv_layout_has_htile(const struct radv_image *image,
1824 VkImageLayout layout,
1825 bool in_render_loop,
1826 unsigned queue_mask);
1827
1828 /* Whether the image has a htile that is known consistent with the contents of
1829 * the image and is allowed to be in compressed form.
1830 *
1831 * If this is false reads that don't use the htile should be able to return
1832 * correct results.
1833 */
1834 bool radv_layout_is_htile_compressed(const struct radv_image *image,
1835 VkImageLayout layout,
1836 bool in_render_loop,
1837 unsigned queue_mask);
1838
1839 bool radv_layout_can_fast_clear(const struct radv_image *image,
1840 VkImageLayout layout,
1841 bool in_render_loop,
1842 unsigned queue_mask);
1843
1844 bool radv_layout_dcc_compressed(const struct radv_device *device,
1845 const struct radv_image *image,
1846 VkImageLayout layout,
1847 bool in_render_loop,
1848 unsigned queue_mask);
1849
1850 /**
1851 * Return whether the image has CMASK metadata for color surfaces.
1852 */
1853 static inline bool
1854 radv_image_has_cmask(const struct radv_image *image)
1855 {
1856 return image->cmask_offset;
1857 }
1858
1859 /**
1860 * Return whether the image has FMASK metadata for color surfaces.
1861 */
1862 static inline bool
1863 radv_image_has_fmask(const struct radv_image *image)
1864 {
1865 return image->fmask_offset;
1866 }
1867
1868 /**
1869 * Return whether the image has DCC metadata for color surfaces.
1870 */
1871 static inline bool
1872 radv_image_has_dcc(const struct radv_image *image)
1873 {
1874 return image->planes[0].surface.dcc_size;
1875 }
1876
1877 /**
1878 * Return whether the image is TC-compatible CMASK.
1879 */
1880 static inline bool
1881 radv_image_is_tc_compat_cmask(const struct radv_image *image)
1882 {
1883 return radv_image_has_fmask(image) && image->tc_compatible_cmask;
1884 }
1885
1886 /**
1887 * Return whether DCC metadata is enabled for a level.
1888 */
1889 static inline bool
1890 radv_dcc_enabled(const struct radv_image *image, unsigned level)
1891 {
1892 return radv_image_has_dcc(image) &&
1893 level < image->planes[0].surface.num_dcc_levels;
1894 }
1895
1896 /**
1897 * Return whether the image has CB metadata.
1898 */
1899 static inline bool
1900 radv_image_has_CB_metadata(const struct radv_image *image)
1901 {
1902 return radv_image_has_cmask(image) ||
1903 radv_image_has_fmask(image) ||
1904 radv_image_has_dcc(image);
1905 }
1906
1907 /**
1908 * Return whether the image has HTILE metadata for depth surfaces.
1909 */
1910 static inline bool
1911 radv_image_has_htile(const struct radv_image *image)
1912 {
1913 return image->planes[0].surface.htile_size;
1914 }
1915
1916 /**
1917 * Return whether HTILE metadata is enabled for a level.
1918 */
1919 static inline bool
1920 radv_htile_enabled(const struct radv_image *image, unsigned level)
1921 {
1922 return radv_image_has_htile(image) && level == 0;
1923 }
1924
1925 /**
1926 * Return whether the image is TC-compatible HTILE.
1927 */
1928 static inline bool
1929 radv_image_is_tc_compat_htile(const struct radv_image *image)
1930 {
1931 return radv_image_has_htile(image) && image->tc_compatible_htile;
1932 }
1933
1934 static inline uint64_t
1935 radv_image_get_fast_clear_va(const struct radv_image *image,
1936 uint32_t base_level)
1937 {
1938 uint64_t va = radv_buffer_get_va(image->bo);
1939 va += image->offset + image->clear_value_offset + base_level * 8;
1940 return va;
1941 }
1942
1943 static inline uint64_t
1944 radv_image_get_fce_pred_va(const struct radv_image *image,
1945 uint32_t base_level)
1946 {
1947 uint64_t va = radv_buffer_get_va(image->bo);
1948 va += image->offset + image->fce_pred_offset + base_level * 8;
1949 return va;
1950 }
1951
1952 static inline uint64_t
1953 radv_image_get_dcc_pred_va(const struct radv_image *image,
1954 uint32_t base_level)
1955 {
1956 uint64_t va = radv_buffer_get_va(image->bo);
1957 va += image->offset + image->dcc_pred_offset + base_level * 8;
1958 return va;
1959 }
1960
1961 static inline uint64_t
1962 radv_get_tc_compat_zrange_va(const struct radv_image *image,
1963 uint32_t base_level)
1964 {
1965 uint64_t va = radv_buffer_get_va(image->bo);
1966 va += image->offset + image->tc_compat_zrange_offset + base_level * 4;
1967 return va;
1968 }
1969
1970 static inline uint64_t
1971 radv_get_ds_clear_value_va(const struct radv_image *image,
1972 uint32_t base_level)
1973 {
1974 uint64_t va = radv_buffer_get_va(image->bo);
1975 va += image->offset + image->clear_value_offset + base_level * 8;
1976 return va;
1977 }
1978
1979 unsigned radv_image_queue_family_mask(const struct radv_image *image, uint32_t family, uint32_t queue_family);
1980
1981 static inline uint32_t
1982 radv_get_layerCount(const struct radv_image *image,
1983 const VkImageSubresourceRange *range)
1984 {
1985 return range->layerCount == VK_REMAINING_ARRAY_LAYERS ?
1986 image->info.array_size - range->baseArrayLayer : range->layerCount;
1987 }
1988
1989 static inline uint32_t
1990 radv_get_levelCount(const struct radv_image *image,
1991 const VkImageSubresourceRange *range)
1992 {
1993 return range->levelCount == VK_REMAINING_MIP_LEVELS ?
1994 image->info.levels - range->baseMipLevel : range->levelCount;
1995 }
1996
1997 struct radeon_bo_metadata;
1998 void
1999 radv_init_metadata(struct radv_device *device,
2000 struct radv_image *image,
2001 struct radeon_bo_metadata *metadata);
2002
2003 void
2004 radv_image_override_offset_stride(struct radv_device *device,
2005 struct radv_image *image,
2006 uint64_t offset, uint32_t stride);
2007
2008 union radv_descriptor {
2009 struct {
2010 uint32_t plane0_descriptor[8];
2011 uint32_t fmask_descriptor[8];
2012 };
2013 struct {
2014 uint32_t plane_descriptors[3][8];
2015 };
2016 };
2017
2018 struct radv_image_view {
2019 struct radv_image *image; /**< VkImageViewCreateInfo::image */
2020 struct radeon_winsys_bo *bo;
2021
2022 VkImageViewType type;
2023 VkImageAspectFlags aspect_mask;
2024 VkFormat vk_format;
2025 unsigned plane_id;
2026 bool multiple_planes;
2027 uint32_t base_layer;
2028 uint32_t layer_count;
2029 uint32_t base_mip;
2030 uint32_t level_count;
2031 VkExtent3D extent; /**< Extent of VkImageViewCreateInfo::baseMipLevel. */
2032
2033 union radv_descriptor descriptor;
2034
2035 /* Descriptor for use as a storage image as opposed to a sampled image.
2036 * This has a few differences for cube maps (e.g. type).
2037 */
2038 union radv_descriptor storage_descriptor;
2039 };
2040
2041 struct radv_image_create_info {
2042 const VkImageCreateInfo *vk_info;
2043 bool scanout;
2044 bool no_metadata_planes;
2045 const struct radeon_bo_metadata *bo_metadata;
2046 };
2047
2048 VkResult
2049 radv_image_create_layout(struct radv_device *device,
2050 struct radv_image_create_info create_info,
2051 struct radv_image *image);
2052
2053 VkResult radv_image_create(VkDevice _device,
2054 const struct radv_image_create_info *info,
2055 const VkAllocationCallbacks* alloc,
2056 VkImage *pImage);
2057
2058 bool vi_alpha_is_on_msb(struct radv_device *device, VkFormat format);
2059
2060 VkResult
2061 radv_image_from_gralloc(VkDevice device_h,
2062 const VkImageCreateInfo *base_info,
2063 const VkNativeBufferANDROID *gralloc_info,
2064 const VkAllocationCallbacks *alloc,
2065 VkImage *out_image_h);
2066 uint64_t
2067 radv_ahb_usage_from_vk_usage(const VkImageCreateFlags vk_create,
2068 const VkImageUsageFlags vk_usage);
2069 VkResult
2070 radv_import_ahb_memory(struct radv_device *device,
2071 struct radv_device_memory *mem,
2072 unsigned priority,
2073 const VkImportAndroidHardwareBufferInfoANDROID *info);
2074 VkResult
2075 radv_create_ahb_memory(struct radv_device *device,
2076 struct radv_device_memory *mem,
2077 unsigned priority,
2078 const VkMemoryAllocateInfo *pAllocateInfo);
2079
2080 VkFormat
2081 radv_select_android_external_format(const void *next, VkFormat default_format);
2082
2083 bool radv_android_gralloc_supports_format(VkFormat format, VkImageUsageFlagBits usage);
2084
2085 struct radv_image_view_extra_create_info {
2086 bool disable_compression;
2087 };
2088
2089 void radv_image_view_init(struct radv_image_view *view,
2090 struct radv_device *device,
2091 const VkImageViewCreateInfo *pCreateInfo,
2092 const struct radv_image_view_extra_create_info* extra_create_info);
2093
2094 VkFormat radv_get_aspect_format(struct radv_image *image, VkImageAspectFlags mask);
2095
2096 struct radv_sampler_ycbcr_conversion {
2097 VkFormat format;
2098 VkSamplerYcbcrModelConversion ycbcr_model;
2099 VkSamplerYcbcrRange ycbcr_range;
2100 VkComponentMapping components;
2101 VkChromaLocation chroma_offsets[2];
2102 VkFilter chroma_filter;
2103 };
2104
2105 struct radv_buffer_view {
2106 struct radeon_winsys_bo *bo;
2107 VkFormat vk_format;
2108 uint64_t range; /**< VkBufferViewCreateInfo::range */
2109 uint32_t state[4];
2110 };
2111 void radv_buffer_view_init(struct radv_buffer_view *view,
2112 struct radv_device *device,
2113 const VkBufferViewCreateInfo* pCreateInfo);
2114
2115 static inline struct VkExtent3D
2116 radv_sanitize_image_extent(const VkImageType imageType,
2117 const struct VkExtent3D imageExtent)
2118 {
2119 switch (imageType) {
2120 case VK_IMAGE_TYPE_1D:
2121 return (VkExtent3D) { imageExtent.width, 1, 1 };
2122 case VK_IMAGE_TYPE_2D:
2123 return (VkExtent3D) { imageExtent.width, imageExtent.height, 1 };
2124 case VK_IMAGE_TYPE_3D:
2125 return imageExtent;
2126 default:
2127 unreachable("invalid image type");
2128 }
2129 }
2130
2131 static inline struct VkOffset3D
2132 radv_sanitize_image_offset(const VkImageType imageType,
2133 const struct VkOffset3D imageOffset)
2134 {
2135 switch (imageType) {
2136 case VK_IMAGE_TYPE_1D:
2137 return (VkOffset3D) { imageOffset.x, 0, 0 };
2138 case VK_IMAGE_TYPE_2D:
2139 return (VkOffset3D) { imageOffset.x, imageOffset.y, 0 };
2140 case VK_IMAGE_TYPE_3D:
2141 return imageOffset;
2142 default:
2143 unreachable("invalid image type");
2144 }
2145 }
2146
2147 static inline bool
2148 radv_image_extent_compare(const struct radv_image *image,
2149 const VkExtent3D *extent)
2150 {
2151 if (extent->width != image->info.width ||
2152 extent->height != image->info.height ||
2153 extent->depth != image->info.depth)
2154 return false;
2155 return true;
2156 }
2157
2158 struct radv_sampler {
2159 uint32_t state[4];
2160 struct radv_sampler_ycbcr_conversion *ycbcr_sampler;
2161 };
2162
2163 struct radv_framebuffer {
2164 uint32_t width;
2165 uint32_t height;
2166 uint32_t layers;
2167
2168 uint32_t attachment_count;
2169 struct radv_image_view *attachments[0];
2170 };
2171
2172 struct radv_subpass_barrier {
2173 VkPipelineStageFlags src_stage_mask;
2174 VkAccessFlags src_access_mask;
2175 VkAccessFlags dst_access_mask;
2176 };
2177
2178 void radv_subpass_barrier(struct radv_cmd_buffer *cmd_buffer,
2179 const struct radv_subpass_barrier *barrier);
2180
2181 struct radv_subpass_attachment {
2182 uint32_t attachment;
2183 VkImageLayout layout;
2184 VkImageLayout stencil_layout;
2185 bool in_render_loop;
2186 };
2187
2188 struct radv_subpass {
2189 uint32_t attachment_count;
2190 struct radv_subpass_attachment * attachments;
2191
2192 uint32_t input_count;
2193 uint32_t color_count;
2194 struct radv_subpass_attachment * input_attachments;
2195 struct radv_subpass_attachment * color_attachments;
2196 struct radv_subpass_attachment * resolve_attachments;
2197 struct radv_subpass_attachment * depth_stencil_attachment;
2198 struct radv_subpass_attachment * ds_resolve_attachment;
2199 VkResolveModeFlagBits depth_resolve_mode;
2200 VkResolveModeFlagBits stencil_resolve_mode;
2201
2202 /** Subpass has at least one color resolve attachment */
2203 bool has_color_resolve;
2204
2205 /** Subpass has at least one color attachment */
2206 bool has_color_att;
2207
2208 struct radv_subpass_barrier start_barrier;
2209
2210 uint32_t view_mask;
2211
2212 VkSampleCountFlagBits color_sample_count;
2213 VkSampleCountFlagBits depth_sample_count;
2214 VkSampleCountFlagBits max_sample_count;
2215 };
2216
2217 uint32_t
2218 radv_get_subpass_id(struct radv_cmd_buffer *cmd_buffer);
2219
2220 struct radv_render_pass_attachment {
2221 VkFormat format;
2222 uint32_t samples;
2223 VkAttachmentLoadOp load_op;
2224 VkAttachmentLoadOp stencil_load_op;
2225 VkImageLayout initial_layout;
2226 VkImageLayout final_layout;
2227 VkImageLayout stencil_initial_layout;
2228 VkImageLayout stencil_final_layout;
2229
2230 /* The subpass id in which the attachment will be used first/last. */
2231 uint32_t first_subpass_idx;
2232 uint32_t last_subpass_idx;
2233 };
2234
2235 struct radv_render_pass {
2236 uint32_t attachment_count;
2237 uint32_t subpass_count;
2238 struct radv_subpass_attachment * subpass_attachments;
2239 struct radv_render_pass_attachment * attachments;
2240 struct radv_subpass_barrier end_barrier;
2241 struct radv_subpass subpasses[0];
2242 };
2243
2244 VkResult radv_device_init_meta(struct radv_device *device);
2245 void radv_device_finish_meta(struct radv_device *device);
2246
2247 struct radv_query_pool {
2248 struct radeon_winsys_bo *bo;
2249 uint32_t stride;
2250 uint32_t availability_offset;
2251 uint64_t size;
2252 char *ptr;
2253 VkQueryType type;
2254 uint32_t pipeline_stats_mask;
2255 };
2256
2257 typedef enum {
2258 RADV_SEMAPHORE_NONE,
2259 RADV_SEMAPHORE_WINSYS,
2260 RADV_SEMAPHORE_SYNCOBJ,
2261 RADV_SEMAPHORE_TIMELINE,
2262 } radv_semaphore_kind;
2263
2264 struct radv_deferred_queue_submission;
2265
2266 struct radv_timeline_waiter {
2267 struct list_head list;
2268 struct radv_deferred_queue_submission *submission;
2269 uint64_t value;
2270 };
2271
2272 struct radv_timeline_point {
2273 struct list_head list;
2274
2275 uint64_t value;
2276 uint32_t syncobj;
2277
2278 /* Separate from the list to accomodate CPU wait being async, as well
2279 * as prevent point deletion during submission. */
2280 unsigned wait_count;
2281 };
2282
2283 struct radv_timeline {
2284 /* Using a pthread mutex to be compatible with condition variables. */
2285 pthread_mutex_t mutex;
2286
2287 uint64_t highest_signaled;
2288 uint64_t highest_submitted;
2289
2290 struct list_head points;
2291
2292 /* Keep free points on hand so we do not have to recreate syncobjs all
2293 * the time. */
2294 struct list_head free_points;
2295
2296 /* Submissions that are deferred waiting for a specific value to be
2297 * submitted. */
2298 struct list_head waiters;
2299 };
2300
2301 struct radv_semaphore_part {
2302 radv_semaphore_kind kind;
2303 union {
2304 uint32_t syncobj;
2305 struct radeon_winsys_sem *ws_sem;
2306 struct radv_timeline timeline;
2307 };
2308 };
2309
2310 struct radv_semaphore {
2311 struct radv_semaphore_part permanent;
2312 struct radv_semaphore_part temporary;
2313 };
2314
2315 bool radv_queue_internal_submit(struct radv_queue *queue,
2316 struct radeon_cmdbuf *cs);
2317
2318 void radv_set_descriptor_set(struct radv_cmd_buffer *cmd_buffer,
2319 VkPipelineBindPoint bind_point,
2320 struct radv_descriptor_set *set,
2321 unsigned idx);
2322
2323 void
2324 radv_update_descriptor_sets(struct radv_device *device,
2325 struct radv_cmd_buffer *cmd_buffer,
2326 VkDescriptorSet overrideSet,
2327 uint32_t descriptorWriteCount,
2328 const VkWriteDescriptorSet *pDescriptorWrites,
2329 uint32_t descriptorCopyCount,
2330 const VkCopyDescriptorSet *pDescriptorCopies);
2331
2332 void
2333 radv_update_descriptor_set_with_template(struct radv_device *device,
2334 struct radv_cmd_buffer *cmd_buffer,
2335 struct radv_descriptor_set *set,
2336 VkDescriptorUpdateTemplate descriptorUpdateTemplate,
2337 const void *pData);
2338
2339 void radv_meta_push_descriptor_set(struct radv_cmd_buffer *cmd_buffer,
2340 VkPipelineBindPoint pipelineBindPoint,
2341 VkPipelineLayout _layout,
2342 uint32_t set,
2343 uint32_t descriptorWriteCount,
2344 const VkWriteDescriptorSet *pDescriptorWrites);
2345
2346 void radv_initialize_dcc(struct radv_cmd_buffer *cmd_buffer,
2347 struct radv_image *image,
2348 const VkImageSubresourceRange *range, uint32_t value);
2349
2350 void radv_initialize_fmask(struct radv_cmd_buffer *cmd_buffer,
2351 struct radv_image *image,
2352 const VkImageSubresourceRange *range);
2353
2354 struct radv_fence {
2355 struct radeon_winsys_fence *fence;
2356 struct wsi_fence *fence_wsi;
2357
2358 uint32_t syncobj;
2359 uint32_t temp_syncobj;
2360 };
2361
2362 /* radv_nir_to_llvm.c */
2363 struct radv_shader_args;
2364
2365 void radv_compile_gs_copy_shader(struct ac_llvm_compiler *ac_llvm,
2366 struct nir_shader *geom_shader,
2367 struct radv_shader_binary **rbinary,
2368 const struct radv_shader_args *args);
2369
2370 void radv_compile_nir_shader(struct ac_llvm_compiler *ac_llvm,
2371 struct radv_shader_binary **rbinary,
2372 const struct radv_shader_args *args,
2373 struct nir_shader *const *nir,
2374 int nir_count);
2375
2376 unsigned radv_nir_get_max_workgroup_size(enum chip_class chip_class,
2377 gl_shader_stage stage,
2378 const struct nir_shader *nir);
2379
2380 /* radv_shader_info.h */
2381 struct radv_shader_info;
2382 struct radv_shader_variant_key;
2383
2384 void radv_nir_shader_info_pass(const struct nir_shader *nir,
2385 const struct radv_pipeline_layout *layout,
2386 const struct radv_shader_variant_key *key,
2387 struct radv_shader_info *info);
2388
2389 void radv_nir_shader_info_init(struct radv_shader_info *info);
2390
2391 /* radv_sqtt.c */
2392 struct radv_thread_trace_info {
2393 uint32_t cur_offset;
2394 uint32_t trace_status;
2395 union {
2396 uint32_t gfx9_write_counter;
2397 uint32_t gfx10_dropped_cntr;
2398 };
2399 };
2400
2401 struct radv_thread_trace_se {
2402 struct radv_thread_trace_info info;
2403 void *data_ptr;
2404 uint32_t shader_engine;
2405 uint32_t compute_unit;
2406 };
2407
2408 struct radv_thread_trace {
2409 uint32_t num_traces;
2410 struct radv_thread_trace_se traces[4];
2411 };
2412
2413 bool radv_thread_trace_init(struct radv_device *device);
2414 void radv_thread_trace_finish(struct radv_device *device);
2415 bool radv_begin_thread_trace(struct radv_queue *queue);
2416 bool radv_end_thread_trace(struct radv_queue *queue);
2417 bool radv_get_thread_trace(struct radv_queue *queue,
2418 struct radv_thread_trace *thread_trace);
2419 void radv_emit_thread_trace_userdata(struct radeon_cmdbuf *cs,
2420 const void *data, uint32_t num_dwords);
2421
2422 /* radv_rgp.c */
2423 int radv_dump_thread_trace(struct radv_device *device,
2424 const struct radv_thread_trace *trace);
2425
2426 /* radv_sqtt_layer_.c */
2427 /**
2428 * Value for the reason field of an RGP barrier start marker originating from
2429 * the Vulkan client (does not include PAL-defined values). (Table 15)
2430 */
2431 enum rgp_barrier_reason {
2432 RGP_BARRIER_UNKNOWN_REASON = 0xFFFFFFFF,
2433
2434 /* External app-generated barrier reasons, i.e. API synchronization
2435 * commands Range of valid values: [0x00000001 ... 0x7FFFFFFF].
2436 */
2437 RGP_BARRIER_EXTERNAL_CMD_PIPELINE_BARRIER = 0x00000001,
2438 RGP_BARRIER_EXTERNAL_RENDER_PASS_SYNC = 0x00000002,
2439 RGP_BARRIER_EXTERNAL_CMD_WAIT_EVENTS = 0x00000003,
2440
2441 /* Internal barrier reasons, i.e. implicit synchronization inserted by
2442 * the Vulkan driver Range of valid values: [0xC0000000 ... 0xFFFFFFFE].
2443 */
2444 RGP_BARRIER_INTERNAL_BASE = 0xC0000000,
2445 RGP_BARRIER_INTERNAL_PRE_RESET_QUERY_POOL_SYNC = RGP_BARRIER_INTERNAL_BASE + 0,
2446 RGP_BARRIER_INTERNAL_POST_RESET_QUERY_POOL_SYNC = RGP_BARRIER_INTERNAL_BASE + 1,
2447 RGP_BARRIER_INTERNAL_GPU_EVENT_RECYCLE_STALL = RGP_BARRIER_INTERNAL_BASE + 2,
2448 RGP_BARRIER_INTERNAL_PRE_COPY_QUERY_POOL_RESULTS_SYNC = RGP_BARRIER_INTERNAL_BASE + 3
2449 };
2450
2451 void radv_describe_begin_cmd_buffer(struct radv_cmd_buffer *cmd_buffer);
2452 void radv_describe_end_cmd_buffer(struct radv_cmd_buffer *cmd_buffer);
2453 void radv_describe_draw(struct radv_cmd_buffer *cmd_buffer);
2454 void radv_describe_dispatch(struct radv_cmd_buffer *cmd_buffer, int x, int y, int z);
2455 void radv_describe_begin_render_pass_clear(struct radv_cmd_buffer *cmd_buffer,
2456 VkImageAspectFlagBits aspects);
2457 void radv_describe_end_render_pass_clear(struct radv_cmd_buffer *cmd_buffer);
2458 void radv_describe_barrier_start(struct radv_cmd_buffer *cmd_buffer,
2459 enum rgp_barrier_reason reason);
2460 void radv_describe_barrier_end(struct radv_cmd_buffer *cmd_buffer);
2461
2462 struct radeon_winsys_sem;
2463
2464 uint64_t radv_get_current_time(void);
2465
2466 static inline uint32_t
2467 si_conv_gl_prim_to_vertices(unsigned gl_prim)
2468 {
2469 switch (gl_prim) {
2470 case 0: /* GL_POINTS */
2471 return 1;
2472 case 1: /* GL_LINES */
2473 case 3: /* GL_LINE_STRIP */
2474 return 2;
2475 case 4: /* GL_TRIANGLES */
2476 case 5: /* GL_TRIANGLE_STRIP */
2477 return 3;
2478 case 0xA: /* GL_LINE_STRIP_ADJACENCY_ARB */
2479 return 4;
2480 case 0xc: /* GL_TRIANGLES_ADJACENCY_ARB */
2481 return 6;
2482 case 7: /* GL_QUADS */
2483 return V_028A6C_OUTPRIM_TYPE_TRISTRIP;
2484 default:
2485 assert(0);
2486 return 0;
2487 }
2488 }
2489
2490 #define RADV_DEFINE_HANDLE_CASTS(__radv_type, __VkType) \
2491 \
2492 static inline struct __radv_type * \
2493 __radv_type ## _from_handle(__VkType _handle) \
2494 { \
2495 return (struct __radv_type *) _handle; \
2496 } \
2497 \
2498 static inline __VkType \
2499 __radv_type ## _to_handle(struct __radv_type *_obj) \
2500 { \
2501 return (__VkType) _obj; \
2502 }
2503
2504 #define RADV_DEFINE_NONDISP_HANDLE_CASTS(__radv_type, __VkType) \
2505 \
2506 static inline struct __radv_type * \
2507 __radv_type ## _from_handle(__VkType _handle) \
2508 { \
2509 return (struct __radv_type *)(uintptr_t) _handle; \
2510 } \
2511 \
2512 static inline __VkType \
2513 __radv_type ## _to_handle(struct __radv_type *_obj) \
2514 { \
2515 return (__VkType)(uintptr_t) _obj; \
2516 }
2517
2518 #define RADV_FROM_HANDLE(__radv_type, __name, __handle) \
2519 struct __radv_type *__name = __radv_type ## _from_handle(__handle)
2520
2521 RADV_DEFINE_HANDLE_CASTS(radv_cmd_buffer, VkCommandBuffer)
2522 RADV_DEFINE_HANDLE_CASTS(radv_device, VkDevice)
2523 RADV_DEFINE_HANDLE_CASTS(radv_instance, VkInstance)
2524 RADV_DEFINE_HANDLE_CASTS(radv_physical_device, VkPhysicalDevice)
2525 RADV_DEFINE_HANDLE_CASTS(radv_queue, VkQueue)
2526
2527 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_cmd_pool, VkCommandPool)
2528 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_buffer, VkBuffer)
2529 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_buffer_view, VkBufferView)
2530 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_pool, VkDescriptorPool)
2531 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_set, VkDescriptorSet)
2532 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_set_layout, VkDescriptorSetLayout)
2533 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_update_template, VkDescriptorUpdateTemplate)
2534 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_device_memory, VkDeviceMemory)
2535 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_fence, VkFence)
2536 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_event, VkEvent)
2537 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_framebuffer, VkFramebuffer)
2538 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_image, VkImage)
2539 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_image_view, VkImageView);
2540 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_pipeline_cache, VkPipelineCache)
2541 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_pipeline, VkPipeline)
2542 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_pipeline_layout, VkPipelineLayout)
2543 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_query_pool, VkQueryPool)
2544 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_render_pass, VkRenderPass)
2545 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_sampler, VkSampler)
2546 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_sampler_ycbcr_conversion, VkSamplerYcbcrConversion)
2547 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_shader_module, VkShaderModule)
2548 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_semaphore, VkSemaphore)
2549
2550 #endif /* RADV_PRIVATE_H */