6eedf910bf41d94187988c24097bd32ebc4f78c5
[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
1317 struct radv_cmd_pool {
1318 VkAllocationCallbacks alloc;
1319 struct list_head cmd_buffers;
1320 struct list_head free_cmd_buffers;
1321 uint32_t queue_family_index;
1322 };
1323
1324 struct radv_cmd_buffer_upload {
1325 uint8_t *map;
1326 unsigned offset;
1327 uint64_t size;
1328 struct radeon_winsys_bo *upload_bo;
1329 struct list_head list;
1330 };
1331
1332 enum radv_cmd_buffer_status {
1333 RADV_CMD_BUFFER_STATUS_INVALID,
1334 RADV_CMD_BUFFER_STATUS_INITIAL,
1335 RADV_CMD_BUFFER_STATUS_RECORDING,
1336 RADV_CMD_BUFFER_STATUS_EXECUTABLE,
1337 RADV_CMD_BUFFER_STATUS_PENDING,
1338 };
1339
1340 struct radv_cmd_buffer {
1341 VK_LOADER_DATA _loader_data;
1342
1343 struct radv_device * device;
1344
1345 struct radv_cmd_pool * pool;
1346 struct list_head pool_link;
1347
1348 VkCommandBufferUsageFlags usage_flags;
1349 VkCommandBufferLevel level;
1350 enum radv_cmd_buffer_status status;
1351 struct radeon_cmdbuf *cs;
1352 struct radv_cmd_state state;
1353 struct radv_vertex_binding vertex_bindings[MAX_VBS];
1354 struct radv_streamout_binding streamout_bindings[MAX_SO_BUFFERS];
1355 uint32_t queue_family_index;
1356
1357 uint8_t push_constants[MAX_PUSH_CONSTANTS_SIZE];
1358 VkShaderStageFlags push_constant_stages;
1359 struct radv_descriptor_set meta_push_descriptors;
1360
1361 struct radv_descriptor_state descriptors[VK_PIPELINE_BIND_POINT_RANGE_SIZE];
1362
1363 struct radv_cmd_buffer_upload upload;
1364
1365 uint32_t scratch_size_per_wave_needed;
1366 uint32_t scratch_waves_wanted;
1367 uint32_t compute_scratch_size_per_wave_needed;
1368 uint32_t compute_scratch_waves_wanted;
1369 uint32_t esgs_ring_size_needed;
1370 uint32_t gsvs_ring_size_needed;
1371 bool tess_rings_needed;
1372 bool gds_needed; /* for GFX10 streamout and NGG GS queries */
1373 bool gds_oa_needed; /* for GFX10 streamout */
1374 bool sample_positions_needed;
1375
1376 VkResult record_result;
1377
1378 uint64_t gfx9_fence_va;
1379 uint32_t gfx9_fence_idx;
1380 uint64_t gfx9_eop_bug_va;
1381
1382 /**
1383 * Whether a query pool has been resetted and we have to flush caches.
1384 */
1385 bool pending_reset_query;
1386
1387 /**
1388 * Bitmask of pending active query flushes.
1389 */
1390 enum radv_cmd_flush_bits active_query_flush_bits;
1391 };
1392
1393 struct radv_image;
1394 struct radv_image_view;
1395
1396 bool radv_cmd_buffer_uses_mec(struct radv_cmd_buffer *cmd_buffer);
1397
1398 void si_emit_graphics(struct radv_physical_device *physical_device,
1399 struct radeon_cmdbuf *cs);
1400 void si_emit_compute(struct radv_physical_device *physical_device,
1401 struct radeon_cmdbuf *cs);
1402
1403 void cik_create_gfx_config(struct radv_device *device);
1404
1405 void si_write_viewport(struct radeon_cmdbuf *cs, int first_vp,
1406 int count, const VkViewport *viewports);
1407 void si_write_scissors(struct radeon_cmdbuf *cs, int first,
1408 int count, const VkRect2D *scissors,
1409 const VkViewport *viewports, bool can_use_guardband);
1410 uint32_t si_get_ia_multi_vgt_param(struct radv_cmd_buffer *cmd_buffer,
1411 bool instanced_draw, bool indirect_draw,
1412 bool count_from_stream_output,
1413 uint32_t draw_vertex_count);
1414 void si_cs_emit_write_event_eop(struct radeon_cmdbuf *cs,
1415 enum chip_class chip_class,
1416 bool is_mec,
1417 unsigned event, unsigned event_flags,
1418 unsigned dst_sel, unsigned data_sel,
1419 uint64_t va,
1420 uint32_t new_fence,
1421 uint64_t gfx9_eop_bug_va);
1422
1423 void radv_cp_wait_mem(struct radeon_cmdbuf *cs, uint32_t op, uint64_t va,
1424 uint32_t ref, uint32_t mask);
1425 void si_cs_emit_cache_flush(struct radeon_cmdbuf *cs,
1426 enum chip_class chip_class,
1427 uint32_t *fence_ptr, uint64_t va,
1428 bool is_mec,
1429 enum radv_cmd_flush_bits flush_bits,
1430 uint64_t gfx9_eop_bug_va);
1431 void si_emit_cache_flush(struct radv_cmd_buffer *cmd_buffer);
1432 void si_emit_set_predication_state(struct radv_cmd_buffer *cmd_buffer,
1433 bool inverted, uint64_t va);
1434 void si_cp_dma_buffer_copy(struct radv_cmd_buffer *cmd_buffer,
1435 uint64_t src_va, uint64_t dest_va,
1436 uint64_t size);
1437 void si_cp_dma_prefetch(struct radv_cmd_buffer *cmd_buffer, uint64_t va,
1438 unsigned size);
1439 void si_cp_dma_clear_buffer(struct radv_cmd_buffer *cmd_buffer, uint64_t va,
1440 uint64_t size, unsigned value);
1441 void si_cp_dma_wait_for_idle(struct radv_cmd_buffer *cmd_buffer);
1442
1443 void radv_set_db_count_control(struct radv_cmd_buffer *cmd_buffer);
1444 bool
1445 radv_cmd_buffer_upload_alloc(struct radv_cmd_buffer *cmd_buffer,
1446 unsigned size,
1447 unsigned alignment,
1448 unsigned *out_offset,
1449 void **ptr);
1450 void
1451 radv_cmd_buffer_set_subpass(struct radv_cmd_buffer *cmd_buffer,
1452 const struct radv_subpass *subpass);
1453 bool
1454 radv_cmd_buffer_upload_data(struct radv_cmd_buffer *cmd_buffer,
1455 unsigned size, unsigned alignmnet,
1456 const void *data, unsigned *out_offset);
1457
1458 void radv_cmd_buffer_clear_subpass(struct radv_cmd_buffer *cmd_buffer);
1459 void radv_cmd_buffer_resolve_subpass(struct radv_cmd_buffer *cmd_buffer);
1460 void radv_cmd_buffer_resolve_subpass_cs(struct radv_cmd_buffer *cmd_buffer);
1461 void radv_depth_stencil_resolve_subpass_cs(struct radv_cmd_buffer *cmd_buffer,
1462 VkImageAspectFlags aspects,
1463 VkResolveModeFlagBits resolve_mode);
1464 void radv_cmd_buffer_resolve_subpass_fs(struct radv_cmd_buffer *cmd_buffer);
1465 void radv_depth_stencil_resolve_subpass_fs(struct radv_cmd_buffer *cmd_buffer,
1466 VkImageAspectFlags aspects,
1467 VkResolveModeFlagBits resolve_mode);
1468 void radv_emit_default_sample_locations(struct radeon_cmdbuf *cs, int nr_samples);
1469 unsigned radv_get_default_max_sample_dist(int log_samples);
1470 void radv_device_init_msaa(struct radv_device *device);
1471
1472 void radv_update_ds_clear_metadata(struct radv_cmd_buffer *cmd_buffer,
1473 const struct radv_image_view *iview,
1474 VkClearDepthStencilValue ds_clear_value,
1475 VkImageAspectFlags aspects);
1476
1477 void radv_update_color_clear_metadata(struct radv_cmd_buffer *cmd_buffer,
1478 const struct radv_image_view *iview,
1479 int cb_idx,
1480 uint32_t color_values[2]);
1481
1482 void radv_update_fce_metadata(struct radv_cmd_buffer *cmd_buffer,
1483 struct radv_image *image,
1484 const VkImageSubresourceRange *range, bool value);
1485
1486 void radv_update_dcc_metadata(struct radv_cmd_buffer *cmd_buffer,
1487 struct radv_image *image,
1488 const VkImageSubresourceRange *range, bool value);
1489
1490 uint32_t radv_fill_buffer(struct radv_cmd_buffer *cmd_buffer,
1491 struct radeon_winsys_bo *bo,
1492 uint64_t offset, uint64_t size, uint32_t value);
1493 void radv_cmd_buffer_trace_emit(struct radv_cmd_buffer *cmd_buffer);
1494 bool radv_get_memory_fd(struct radv_device *device,
1495 struct radv_device_memory *memory,
1496 int *pFD);
1497
1498 static inline void
1499 radv_emit_shader_pointer_head(struct radeon_cmdbuf *cs,
1500 unsigned sh_offset, unsigned pointer_count,
1501 bool use_32bit_pointers)
1502 {
1503 radeon_emit(cs, PKT3(PKT3_SET_SH_REG, pointer_count * (use_32bit_pointers ? 1 : 2), 0));
1504 radeon_emit(cs, (sh_offset - SI_SH_REG_OFFSET) >> 2);
1505 }
1506
1507 static inline void
1508 radv_emit_shader_pointer_body(struct radv_device *device,
1509 struct radeon_cmdbuf *cs,
1510 uint64_t va, bool use_32bit_pointers)
1511 {
1512 radeon_emit(cs, va);
1513
1514 if (use_32bit_pointers) {
1515 assert(va == 0 ||
1516 (va >> 32) == device->physical_device->rad_info.address32_hi);
1517 } else {
1518 radeon_emit(cs, va >> 32);
1519 }
1520 }
1521
1522 static inline void
1523 radv_emit_shader_pointer(struct radv_device *device,
1524 struct radeon_cmdbuf *cs,
1525 uint32_t sh_offset, uint64_t va, bool global)
1526 {
1527 bool use_32bit_pointers = !global;
1528
1529 radv_emit_shader_pointer_head(cs, sh_offset, 1, use_32bit_pointers);
1530 radv_emit_shader_pointer_body(device, cs, va, use_32bit_pointers);
1531 }
1532
1533 static inline struct radv_descriptor_state *
1534 radv_get_descriptors_state(struct radv_cmd_buffer *cmd_buffer,
1535 VkPipelineBindPoint bind_point)
1536 {
1537 assert(bind_point == VK_PIPELINE_BIND_POINT_GRAPHICS ||
1538 bind_point == VK_PIPELINE_BIND_POINT_COMPUTE);
1539 return &cmd_buffer->descriptors[bind_point];
1540 }
1541
1542 /*
1543 * Takes x,y,z as exact numbers of invocations, instead of blocks.
1544 *
1545 * Limitations: Can't call normal dispatch functions without binding or rebinding
1546 * the compute pipeline.
1547 */
1548 void radv_unaligned_dispatch(
1549 struct radv_cmd_buffer *cmd_buffer,
1550 uint32_t x,
1551 uint32_t y,
1552 uint32_t z);
1553
1554 struct radv_event {
1555 struct radeon_winsys_bo *bo;
1556 uint64_t *map;
1557 };
1558
1559 struct radv_shader_module;
1560
1561 #define RADV_HASH_SHADER_NO_NGG (1 << 0)
1562 #define RADV_HASH_SHADER_CS_WAVE32 (1 << 1)
1563 #define RADV_HASH_SHADER_PS_WAVE32 (1 << 2)
1564 #define RADV_HASH_SHADER_GE_WAVE32 (1 << 3)
1565 #define RADV_HASH_SHADER_ACO (1 << 4)
1566
1567 void
1568 radv_hash_shaders(unsigned char *hash,
1569 const VkPipelineShaderStageCreateInfo **stages,
1570 const struct radv_pipeline_layout *layout,
1571 const struct radv_pipeline_key *key,
1572 uint32_t flags);
1573
1574 static inline gl_shader_stage
1575 vk_to_mesa_shader_stage(VkShaderStageFlagBits vk_stage)
1576 {
1577 assert(__builtin_popcount(vk_stage) == 1);
1578 return ffs(vk_stage) - 1;
1579 }
1580
1581 static inline VkShaderStageFlagBits
1582 mesa_to_vk_shader_stage(gl_shader_stage mesa_stage)
1583 {
1584 return (1 << mesa_stage);
1585 }
1586
1587 #define RADV_STAGE_MASK ((1 << MESA_SHADER_STAGES) - 1)
1588
1589 #define radv_foreach_stage(stage, stage_bits) \
1590 for (gl_shader_stage stage, \
1591 __tmp = (gl_shader_stage)((stage_bits) & RADV_STAGE_MASK); \
1592 stage = __builtin_ffs(__tmp) - 1, __tmp; \
1593 __tmp &= ~(1 << (stage)))
1594
1595 extern const VkFormat radv_fs_key_format_exemplars[NUM_META_FS_KEYS];
1596 unsigned radv_format_meta_fs_key(VkFormat format);
1597
1598 struct radv_multisample_state {
1599 uint32_t db_eqaa;
1600 uint32_t pa_sc_line_cntl;
1601 uint32_t pa_sc_mode_cntl_0;
1602 uint32_t pa_sc_mode_cntl_1;
1603 uint32_t pa_sc_aa_config;
1604 uint32_t pa_sc_aa_mask[2];
1605 unsigned num_samples;
1606 };
1607
1608 struct radv_prim_vertex_count {
1609 uint8_t min;
1610 uint8_t incr;
1611 };
1612
1613 struct radv_vertex_elements_info {
1614 uint32_t format_size[MAX_VERTEX_ATTRIBS];
1615 };
1616
1617 struct radv_ia_multi_vgt_param_helpers {
1618 uint32_t base;
1619 bool partial_es_wave;
1620 uint8_t primgroup_size;
1621 bool wd_switch_on_eop;
1622 bool ia_switch_on_eoi;
1623 bool partial_vs_wave;
1624 };
1625
1626 struct radv_binning_state {
1627 uint32_t pa_sc_binner_cntl_0;
1628 uint32_t db_dfsm_control;
1629 };
1630
1631 #define SI_GS_PER_ES 128
1632
1633 struct radv_pipeline {
1634 struct radv_device * device;
1635 struct radv_dynamic_state dynamic_state;
1636
1637 struct radv_pipeline_layout * layout;
1638
1639 bool need_indirect_descriptor_sets;
1640 struct radv_shader_variant * shaders[MESA_SHADER_STAGES];
1641 struct radv_shader_variant *gs_copy_shader;
1642 VkShaderStageFlags active_stages;
1643
1644 struct radeon_cmdbuf cs;
1645 uint32_t ctx_cs_hash;
1646 struct radeon_cmdbuf ctx_cs;
1647
1648 struct radv_vertex_elements_info vertex_elements;
1649
1650 uint32_t binding_stride[MAX_VBS];
1651 uint8_t num_vertex_bindings;
1652
1653 uint32_t user_data_0[MESA_SHADER_STAGES];
1654 union {
1655 struct {
1656 struct radv_multisample_state ms;
1657 struct radv_binning_state binning;
1658 uint32_t spi_baryc_cntl;
1659 bool prim_restart_enable;
1660 unsigned esgs_ring_size;
1661 unsigned gsvs_ring_size;
1662 uint32_t vtx_base_sgpr;
1663 struct radv_ia_multi_vgt_param_helpers ia_multi_vgt_param;
1664 uint8_t vtx_emit_num;
1665 struct radv_prim_vertex_count prim_vertex_count;
1666 bool can_use_guardband;
1667 uint32_t needed_dynamic_state;
1668 bool disable_out_of_order_rast_for_occlusion;
1669 uint8_t topology;
1670
1671 /* Used for rbplus */
1672 uint32_t col_format;
1673 uint32_t cb_target_mask;
1674 } graphics;
1675 };
1676
1677 unsigned max_waves;
1678 unsigned scratch_bytes_per_wave;
1679
1680 /* Not NULL if graphics pipeline uses streamout. */
1681 struct radv_shader_variant *streamout_shader;
1682 };
1683
1684 static inline bool radv_pipeline_has_gs(const struct radv_pipeline *pipeline)
1685 {
1686 return pipeline->shaders[MESA_SHADER_GEOMETRY] ? true : false;
1687 }
1688
1689 static inline bool radv_pipeline_has_tess(const struct radv_pipeline *pipeline)
1690 {
1691 return pipeline->shaders[MESA_SHADER_TESS_CTRL] ? true : false;
1692 }
1693
1694 bool radv_pipeline_has_ngg(const struct radv_pipeline *pipeline);
1695
1696 bool radv_pipeline_has_ngg_passthrough(const struct radv_pipeline *pipeline);
1697
1698 bool radv_pipeline_has_gs_copy_shader(const struct radv_pipeline *pipeline);
1699
1700 struct radv_userdata_info *radv_lookup_user_sgpr(struct radv_pipeline *pipeline,
1701 gl_shader_stage stage,
1702 int idx);
1703
1704 struct radv_shader_variant *radv_get_shader(struct radv_pipeline *pipeline,
1705 gl_shader_stage stage);
1706
1707 struct radv_graphics_pipeline_create_info {
1708 bool use_rectlist;
1709 bool db_depth_clear;
1710 bool db_stencil_clear;
1711 bool db_depth_disable_expclear;
1712 bool db_stencil_disable_expclear;
1713 bool db_flush_depth_inplace;
1714 bool db_flush_stencil_inplace;
1715 bool db_resummarize;
1716 uint32_t custom_blend_mode;
1717 };
1718
1719 VkResult
1720 radv_graphics_pipeline_create(VkDevice device,
1721 VkPipelineCache cache,
1722 const VkGraphicsPipelineCreateInfo *pCreateInfo,
1723 const struct radv_graphics_pipeline_create_info *extra,
1724 const VkAllocationCallbacks *alloc,
1725 VkPipeline *pPipeline);
1726
1727 struct radv_binning_settings {
1728 unsigned context_states_per_bin; /* allowed range: [1, 6] */
1729 unsigned persistent_states_per_bin; /* allowed range: [1, 32] */
1730 unsigned fpovs_per_batch; /* allowed range: [0, 255], 0 = unlimited */
1731 };
1732
1733 struct radv_binning_settings
1734 radv_get_binning_settings(const struct radv_physical_device *pdev);
1735
1736 struct vk_format_description;
1737 uint32_t radv_translate_buffer_dataformat(const struct vk_format_description *desc,
1738 int first_non_void);
1739 uint32_t radv_translate_buffer_numformat(const struct vk_format_description *desc,
1740 int first_non_void);
1741 bool radv_is_buffer_format_supported(VkFormat format, bool *scaled);
1742 uint32_t radv_translate_colorformat(VkFormat format);
1743 uint32_t radv_translate_color_numformat(VkFormat format,
1744 const struct vk_format_description *desc,
1745 int first_non_void);
1746 uint32_t radv_colorformat_endian_swap(uint32_t colorformat);
1747 unsigned radv_translate_colorswap(VkFormat format, bool do_endian_swap);
1748 uint32_t radv_translate_dbformat(VkFormat format);
1749 uint32_t radv_translate_tex_dataformat(VkFormat format,
1750 const struct vk_format_description *desc,
1751 int first_non_void);
1752 uint32_t radv_translate_tex_numformat(VkFormat format,
1753 const struct vk_format_description *desc,
1754 int first_non_void);
1755 bool radv_format_pack_clear_color(VkFormat format,
1756 uint32_t clear_vals[2],
1757 VkClearColorValue *value);
1758 bool radv_is_colorbuffer_format_supported(VkFormat format, bool *blendable);
1759 bool radv_dcc_formats_compatible(VkFormat format1,
1760 VkFormat format2);
1761 bool radv_device_supports_etc(struct radv_physical_device *physical_device);
1762
1763 struct radv_image_plane {
1764 VkFormat format;
1765 struct radeon_surf surface;
1766 uint64_t offset;
1767 };
1768
1769 struct radv_image {
1770 VkImageType type;
1771 /* The original VkFormat provided by the client. This may not match any
1772 * of the actual surface formats.
1773 */
1774 VkFormat vk_format;
1775 VkImageAspectFlags aspects;
1776 VkImageUsageFlags usage; /**< Superset of VkImageCreateInfo::usage. */
1777 struct ac_surf_info info;
1778 VkImageTiling tiling; /** VkImageCreateInfo::tiling */
1779 VkImageCreateFlags flags; /** VkImageCreateInfo::flags */
1780
1781 VkDeviceSize size;
1782 uint32_t alignment;
1783
1784 unsigned queue_family_mask;
1785 bool exclusive;
1786 bool shareable;
1787
1788 /* Set when bound */
1789 struct radeon_winsys_bo *bo;
1790 VkDeviceSize offset;
1791 uint64_t dcc_offset;
1792 uint64_t htile_offset;
1793 bool tc_compatible_htile;
1794 bool tc_compatible_cmask;
1795
1796 uint64_t cmask_offset;
1797 uint64_t fmask_offset;
1798 uint64_t clear_value_offset;
1799 uint64_t fce_pred_offset;
1800 uint64_t dcc_pred_offset;
1801
1802 /*
1803 * Metadata for the TC-compat zrange workaround. If the 32-bit value
1804 * stored at this offset is UINT_MAX, the driver will emit
1805 * DB_Z_INFO.ZRANGE_PRECISION=0, otherwise it will skip the
1806 * SET_CONTEXT_REG packet.
1807 */
1808 uint64_t tc_compat_zrange_offset;
1809
1810 /* For VK_ANDROID_native_buffer, the WSI image owns the memory, */
1811 VkDeviceMemory owned_memory;
1812
1813 unsigned plane_count;
1814 struct radv_image_plane planes[0];
1815 };
1816
1817 /* Whether the image has a htile that is known consistent with the contents of
1818 * the image. */
1819 bool radv_layout_has_htile(const struct radv_image *image,
1820 VkImageLayout layout,
1821 bool in_render_loop,
1822 unsigned queue_mask);
1823
1824 /* Whether the image has a htile that is known consistent with the contents of
1825 * the image and is allowed to be in compressed form.
1826 *
1827 * If this is false reads that don't use the htile should be able to return
1828 * correct results.
1829 */
1830 bool radv_layout_is_htile_compressed(const struct radv_image *image,
1831 VkImageLayout layout,
1832 bool in_render_loop,
1833 unsigned queue_mask);
1834
1835 bool radv_layout_can_fast_clear(const struct radv_image *image,
1836 VkImageLayout layout,
1837 bool in_render_loop,
1838 unsigned queue_mask);
1839
1840 bool radv_layout_dcc_compressed(const struct radv_device *device,
1841 const struct radv_image *image,
1842 VkImageLayout layout,
1843 bool in_render_loop,
1844 unsigned queue_mask);
1845
1846 /**
1847 * Return whether the image has CMASK metadata for color surfaces.
1848 */
1849 static inline bool
1850 radv_image_has_cmask(const struct radv_image *image)
1851 {
1852 return image->cmask_offset;
1853 }
1854
1855 /**
1856 * Return whether the image has FMASK metadata for color surfaces.
1857 */
1858 static inline bool
1859 radv_image_has_fmask(const struct radv_image *image)
1860 {
1861 return image->fmask_offset;
1862 }
1863
1864 /**
1865 * Return whether the image has DCC metadata for color surfaces.
1866 */
1867 static inline bool
1868 radv_image_has_dcc(const struct radv_image *image)
1869 {
1870 return image->planes[0].surface.dcc_size;
1871 }
1872
1873 /**
1874 * Return whether the image is TC-compatible CMASK.
1875 */
1876 static inline bool
1877 radv_image_is_tc_compat_cmask(const struct radv_image *image)
1878 {
1879 return radv_image_has_fmask(image) && image->tc_compatible_cmask;
1880 }
1881
1882 /**
1883 * Return whether DCC metadata is enabled for a level.
1884 */
1885 static inline bool
1886 radv_dcc_enabled(const struct radv_image *image, unsigned level)
1887 {
1888 return radv_image_has_dcc(image) &&
1889 level < image->planes[0].surface.num_dcc_levels;
1890 }
1891
1892 /**
1893 * Return whether the image has CB metadata.
1894 */
1895 static inline bool
1896 radv_image_has_CB_metadata(const struct radv_image *image)
1897 {
1898 return radv_image_has_cmask(image) ||
1899 radv_image_has_fmask(image) ||
1900 radv_image_has_dcc(image);
1901 }
1902
1903 /**
1904 * Return whether the image has HTILE metadata for depth surfaces.
1905 */
1906 static inline bool
1907 radv_image_has_htile(const struct radv_image *image)
1908 {
1909 return image->planes[0].surface.htile_size;
1910 }
1911
1912 /**
1913 * Return whether HTILE metadata is enabled for a level.
1914 */
1915 static inline bool
1916 radv_htile_enabled(const struct radv_image *image, unsigned level)
1917 {
1918 return radv_image_has_htile(image) && level == 0;
1919 }
1920
1921 /**
1922 * Return whether the image is TC-compatible HTILE.
1923 */
1924 static inline bool
1925 radv_image_is_tc_compat_htile(const struct radv_image *image)
1926 {
1927 return radv_image_has_htile(image) && image->tc_compatible_htile;
1928 }
1929
1930 static inline uint64_t
1931 radv_image_get_fast_clear_va(const struct radv_image *image,
1932 uint32_t base_level)
1933 {
1934 uint64_t va = radv_buffer_get_va(image->bo);
1935 va += image->offset + image->clear_value_offset + base_level * 8;
1936 return va;
1937 }
1938
1939 static inline uint64_t
1940 radv_image_get_fce_pred_va(const struct radv_image *image,
1941 uint32_t base_level)
1942 {
1943 uint64_t va = radv_buffer_get_va(image->bo);
1944 va += image->offset + image->fce_pred_offset + base_level * 8;
1945 return va;
1946 }
1947
1948 static inline uint64_t
1949 radv_image_get_dcc_pred_va(const struct radv_image *image,
1950 uint32_t base_level)
1951 {
1952 uint64_t va = radv_buffer_get_va(image->bo);
1953 va += image->offset + image->dcc_pred_offset + base_level * 8;
1954 return va;
1955 }
1956
1957 static inline uint64_t
1958 radv_get_tc_compat_zrange_va(const struct radv_image *image,
1959 uint32_t base_level)
1960 {
1961 uint64_t va = radv_buffer_get_va(image->bo);
1962 va += image->offset + image->tc_compat_zrange_offset + base_level * 4;
1963 return va;
1964 }
1965
1966 static inline uint64_t
1967 radv_get_ds_clear_value_va(const struct radv_image *image,
1968 uint32_t base_level)
1969 {
1970 uint64_t va = radv_buffer_get_va(image->bo);
1971 va += image->offset + image->clear_value_offset + base_level * 8;
1972 return va;
1973 }
1974
1975 unsigned radv_image_queue_family_mask(const struct radv_image *image, uint32_t family, uint32_t queue_family);
1976
1977 static inline uint32_t
1978 radv_get_layerCount(const struct radv_image *image,
1979 const VkImageSubresourceRange *range)
1980 {
1981 return range->layerCount == VK_REMAINING_ARRAY_LAYERS ?
1982 image->info.array_size - range->baseArrayLayer : range->layerCount;
1983 }
1984
1985 static inline uint32_t
1986 radv_get_levelCount(const struct radv_image *image,
1987 const VkImageSubresourceRange *range)
1988 {
1989 return range->levelCount == VK_REMAINING_MIP_LEVELS ?
1990 image->info.levels - range->baseMipLevel : range->levelCount;
1991 }
1992
1993 struct radeon_bo_metadata;
1994 void
1995 radv_init_metadata(struct radv_device *device,
1996 struct radv_image *image,
1997 struct radeon_bo_metadata *metadata);
1998
1999 void
2000 radv_image_override_offset_stride(struct radv_device *device,
2001 struct radv_image *image,
2002 uint64_t offset, uint32_t stride);
2003
2004 union radv_descriptor {
2005 struct {
2006 uint32_t plane0_descriptor[8];
2007 uint32_t fmask_descriptor[8];
2008 };
2009 struct {
2010 uint32_t plane_descriptors[3][8];
2011 };
2012 };
2013
2014 struct radv_image_view {
2015 struct radv_image *image; /**< VkImageViewCreateInfo::image */
2016 struct radeon_winsys_bo *bo;
2017
2018 VkImageViewType type;
2019 VkImageAspectFlags aspect_mask;
2020 VkFormat vk_format;
2021 unsigned plane_id;
2022 bool multiple_planes;
2023 uint32_t base_layer;
2024 uint32_t layer_count;
2025 uint32_t base_mip;
2026 uint32_t level_count;
2027 VkExtent3D extent; /**< Extent of VkImageViewCreateInfo::baseMipLevel. */
2028
2029 union radv_descriptor descriptor;
2030
2031 /* Descriptor for use as a storage image as opposed to a sampled image.
2032 * This has a few differences for cube maps (e.g. type).
2033 */
2034 union radv_descriptor storage_descriptor;
2035 };
2036
2037 struct radv_image_create_info {
2038 const VkImageCreateInfo *vk_info;
2039 bool scanout;
2040 bool no_metadata_planes;
2041 const struct radeon_bo_metadata *bo_metadata;
2042 };
2043
2044 VkResult
2045 radv_image_create_layout(struct radv_device *device,
2046 struct radv_image_create_info create_info,
2047 struct radv_image *image);
2048
2049 VkResult radv_image_create(VkDevice _device,
2050 const struct radv_image_create_info *info,
2051 const VkAllocationCallbacks* alloc,
2052 VkImage *pImage);
2053
2054 bool vi_alpha_is_on_msb(struct radv_device *device, VkFormat format);
2055
2056 VkResult
2057 radv_image_from_gralloc(VkDevice device_h,
2058 const VkImageCreateInfo *base_info,
2059 const VkNativeBufferANDROID *gralloc_info,
2060 const VkAllocationCallbacks *alloc,
2061 VkImage *out_image_h);
2062 uint64_t
2063 radv_ahb_usage_from_vk_usage(const VkImageCreateFlags vk_create,
2064 const VkImageUsageFlags vk_usage);
2065 VkResult
2066 radv_import_ahb_memory(struct radv_device *device,
2067 struct radv_device_memory *mem,
2068 unsigned priority,
2069 const VkImportAndroidHardwareBufferInfoANDROID *info);
2070 VkResult
2071 radv_create_ahb_memory(struct radv_device *device,
2072 struct radv_device_memory *mem,
2073 unsigned priority,
2074 const VkMemoryAllocateInfo *pAllocateInfo);
2075
2076 VkFormat
2077 radv_select_android_external_format(const void *next, VkFormat default_format);
2078
2079 bool radv_android_gralloc_supports_format(VkFormat format, VkImageUsageFlagBits usage);
2080
2081 struct radv_image_view_extra_create_info {
2082 bool disable_compression;
2083 };
2084
2085 void radv_image_view_init(struct radv_image_view *view,
2086 struct radv_device *device,
2087 const VkImageViewCreateInfo *pCreateInfo,
2088 const struct radv_image_view_extra_create_info* extra_create_info);
2089
2090 VkFormat radv_get_aspect_format(struct radv_image *image, VkImageAspectFlags mask);
2091
2092 struct radv_sampler_ycbcr_conversion {
2093 VkFormat format;
2094 VkSamplerYcbcrModelConversion ycbcr_model;
2095 VkSamplerYcbcrRange ycbcr_range;
2096 VkComponentMapping components;
2097 VkChromaLocation chroma_offsets[2];
2098 VkFilter chroma_filter;
2099 };
2100
2101 struct radv_buffer_view {
2102 struct radeon_winsys_bo *bo;
2103 VkFormat vk_format;
2104 uint64_t range; /**< VkBufferViewCreateInfo::range */
2105 uint32_t state[4];
2106 };
2107 void radv_buffer_view_init(struct radv_buffer_view *view,
2108 struct radv_device *device,
2109 const VkBufferViewCreateInfo* pCreateInfo);
2110
2111 static inline struct VkExtent3D
2112 radv_sanitize_image_extent(const VkImageType imageType,
2113 const struct VkExtent3D imageExtent)
2114 {
2115 switch (imageType) {
2116 case VK_IMAGE_TYPE_1D:
2117 return (VkExtent3D) { imageExtent.width, 1, 1 };
2118 case VK_IMAGE_TYPE_2D:
2119 return (VkExtent3D) { imageExtent.width, imageExtent.height, 1 };
2120 case VK_IMAGE_TYPE_3D:
2121 return imageExtent;
2122 default:
2123 unreachable("invalid image type");
2124 }
2125 }
2126
2127 static inline struct VkOffset3D
2128 radv_sanitize_image_offset(const VkImageType imageType,
2129 const struct VkOffset3D imageOffset)
2130 {
2131 switch (imageType) {
2132 case VK_IMAGE_TYPE_1D:
2133 return (VkOffset3D) { imageOffset.x, 0, 0 };
2134 case VK_IMAGE_TYPE_2D:
2135 return (VkOffset3D) { imageOffset.x, imageOffset.y, 0 };
2136 case VK_IMAGE_TYPE_3D:
2137 return imageOffset;
2138 default:
2139 unreachable("invalid image type");
2140 }
2141 }
2142
2143 static inline bool
2144 radv_image_extent_compare(const struct radv_image *image,
2145 const VkExtent3D *extent)
2146 {
2147 if (extent->width != image->info.width ||
2148 extent->height != image->info.height ||
2149 extent->depth != image->info.depth)
2150 return false;
2151 return true;
2152 }
2153
2154 struct radv_sampler {
2155 uint32_t state[4];
2156 struct radv_sampler_ycbcr_conversion *ycbcr_sampler;
2157 };
2158
2159 struct radv_framebuffer {
2160 uint32_t width;
2161 uint32_t height;
2162 uint32_t layers;
2163
2164 uint32_t attachment_count;
2165 struct radv_image_view *attachments[0];
2166 };
2167
2168 struct radv_subpass_barrier {
2169 VkPipelineStageFlags src_stage_mask;
2170 VkAccessFlags src_access_mask;
2171 VkAccessFlags dst_access_mask;
2172 };
2173
2174 void radv_subpass_barrier(struct radv_cmd_buffer *cmd_buffer,
2175 const struct radv_subpass_barrier *barrier);
2176
2177 struct radv_subpass_attachment {
2178 uint32_t attachment;
2179 VkImageLayout layout;
2180 VkImageLayout stencil_layout;
2181 bool in_render_loop;
2182 };
2183
2184 struct radv_subpass {
2185 uint32_t attachment_count;
2186 struct radv_subpass_attachment * attachments;
2187
2188 uint32_t input_count;
2189 uint32_t color_count;
2190 struct radv_subpass_attachment * input_attachments;
2191 struct radv_subpass_attachment * color_attachments;
2192 struct radv_subpass_attachment * resolve_attachments;
2193 struct radv_subpass_attachment * depth_stencil_attachment;
2194 struct radv_subpass_attachment * ds_resolve_attachment;
2195 VkResolveModeFlagBits depth_resolve_mode;
2196 VkResolveModeFlagBits stencil_resolve_mode;
2197
2198 /** Subpass has at least one color resolve attachment */
2199 bool has_color_resolve;
2200
2201 /** Subpass has at least one color attachment */
2202 bool has_color_att;
2203
2204 struct radv_subpass_barrier start_barrier;
2205
2206 uint32_t view_mask;
2207
2208 VkSampleCountFlagBits color_sample_count;
2209 VkSampleCountFlagBits depth_sample_count;
2210 VkSampleCountFlagBits max_sample_count;
2211 };
2212
2213 uint32_t
2214 radv_get_subpass_id(struct radv_cmd_buffer *cmd_buffer);
2215
2216 struct radv_render_pass_attachment {
2217 VkFormat format;
2218 uint32_t samples;
2219 VkAttachmentLoadOp load_op;
2220 VkAttachmentLoadOp stencil_load_op;
2221 VkImageLayout initial_layout;
2222 VkImageLayout final_layout;
2223 VkImageLayout stencil_initial_layout;
2224 VkImageLayout stencil_final_layout;
2225
2226 /* The subpass id in which the attachment will be used first/last. */
2227 uint32_t first_subpass_idx;
2228 uint32_t last_subpass_idx;
2229 };
2230
2231 struct radv_render_pass {
2232 uint32_t attachment_count;
2233 uint32_t subpass_count;
2234 struct radv_subpass_attachment * subpass_attachments;
2235 struct radv_render_pass_attachment * attachments;
2236 struct radv_subpass_barrier end_barrier;
2237 struct radv_subpass subpasses[0];
2238 };
2239
2240 VkResult radv_device_init_meta(struct radv_device *device);
2241 void radv_device_finish_meta(struct radv_device *device);
2242
2243 struct radv_query_pool {
2244 struct radeon_winsys_bo *bo;
2245 uint32_t stride;
2246 uint32_t availability_offset;
2247 uint64_t size;
2248 char *ptr;
2249 VkQueryType type;
2250 uint32_t pipeline_stats_mask;
2251 };
2252
2253 typedef enum {
2254 RADV_SEMAPHORE_NONE,
2255 RADV_SEMAPHORE_WINSYS,
2256 RADV_SEMAPHORE_SYNCOBJ,
2257 RADV_SEMAPHORE_TIMELINE,
2258 } radv_semaphore_kind;
2259
2260 struct radv_deferred_queue_submission;
2261
2262 struct radv_timeline_waiter {
2263 struct list_head list;
2264 struct radv_deferred_queue_submission *submission;
2265 uint64_t value;
2266 };
2267
2268 struct radv_timeline_point {
2269 struct list_head list;
2270
2271 uint64_t value;
2272 uint32_t syncobj;
2273
2274 /* Separate from the list to accomodate CPU wait being async, as well
2275 * as prevent point deletion during submission. */
2276 unsigned wait_count;
2277 };
2278
2279 struct radv_timeline {
2280 /* Using a pthread mutex to be compatible with condition variables. */
2281 pthread_mutex_t mutex;
2282
2283 uint64_t highest_signaled;
2284 uint64_t highest_submitted;
2285
2286 struct list_head points;
2287
2288 /* Keep free points on hand so we do not have to recreate syncobjs all
2289 * the time. */
2290 struct list_head free_points;
2291
2292 /* Submissions that are deferred waiting for a specific value to be
2293 * submitted. */
2294 struct list_head waiters;
2295 };
2296
2297 struct radv_semaphore_part {
2298 radv_semaphore_kind kind;
2299 union {
2300 uint32_t syncobj;
2301 struct radeon_winsys_sem *ws_sem;
2302 struct radv_timeline timeline;
2303 };
2304 };
2305
2306 struct radv_semaphore {
2307 struct radv_semaphore_part permanent;
2308 struct radv_semaphore_part temporary;
2309 };
2310
2311 bool radv_queue_internal_submit(struct radv_queue *queue,
2312 struct radeon_cmdbuf *cs);
2313
2314 void radv_set_descriptor_set(struct radv_cmd_buffer *cmd_buffer,
2315 VkPipelineBindPoint bind_point,
2316 struct radv_descriptor_set *set,
2317 unsigned idx);
2318
2319 void
2320 radv_update_descriptor_sets(struct radv_device *device,
2321 struct radv_cmd_buffer *cmd_buffer,
2322 VkDescriptorSet overrideSet,
2323 uint32_t descriptorWriteCount,
2324 const VkWriteDescriptorSet *pDescriptorWrites,
2325 uint32_t descriptorCopyCount,
2326 const VkCopyDescriptorSet *pDescriptorCopies);
2327
2328 void
2329 radv_update_descriptor_set_with_template(struct radv_device *device,
2330 struct radv_cmd_buffer *cmd_buffer,
2331 struct radv_descriptor_set *set,
2332 VkDescriptorUpdateTemplate descriptorUpdateTemplate,
2333 const void *pData);
2334
2335 void radv_meta_push_descriptor_set(struct radv_cmd_buffer *cmd_buffer,
2336 VkPipelineBindPoint pipelineBindPoint,
2337 VkPipelineLayout _layout,
2338 uint32_t set,
2339 uint32_t descriptorWriteCount,
2340 const VkWriteDescriptorSet *pDescriptorWrites);
2341
2342 void radv_initialize_dcc(struct radv_cmd_buffer *cmd_buffer,
2343 struct radv_image *image,
2344 const VkImageSubresourceRange *range, uint32_t value);
2345
2346 void radv_initialize_fmask(struct radv_cmd_buffer *cmd_buffer,
2347 struct radv_image *image,
2348 const VkImageSubresourceRange *range);
2349
2350 struct radv_fence {
2351 struct radeon_winsys_fence *fence;
2352 struct wsi_fence *fence_wsi;
2353
2354 uint32_t syncobj;
2355 uint32_t temp_syncobj;
2356 };
2357
2358 /* radv_nir_to_llvm.c */
2359 struct radv_shader_args;
2360
2361 void radv_compile_gs_copy_shader(struct ac_llvm_compiler *ac_llvm,
2362 struct nir_shader *geom_shader,
2363 struct radv_shader_binary **rbinary,
2364 const struct radv_shader_args *args);
2365
2366 void radv_compile_nir_shader(struct ac_llvm_compiler *ac_llvm,
2367 struct radv_shader_binary **rbinary,
2368 const struct radv_shader_args *args,
2369 struct nir_shader *const *nir,
2370 int nir_count);
2371
2372 unsigned radv_nir_get_max_workgroup_size(enum chip_class chip_class,
2373 gl_shader_stage stage,
2374 const struct nir_shader *nir);
2375
2376 /* radv_shader_info.h */
2377 struct radv_shader_info;
2378 struct radv_shader_variant_key;
2379
2380 void radv_nir_shader_info_pass(const struct nir_shader *nir,
2381 const struct radv_pipeline_layout *layout,
2382 const struct radv_shader_variant_key *key,
2383 struct radv_shader_info *info);
2384
2385 void radv_nir_shader_info_init(struct radv_shader_info *info);
2386
2387 /* radv_sqtt.c */
2388 struct radv_thread_trace_info {
2389 uint32_t cur_offset;
2390 uint32_t trace_status;
2391 union {
2392 uint32_t gfx9_write_counter;
2393 uint32_t gfx10_dropped_cntr;
2394 };
2395 };
2396
2397 struct radv_thread_trace_se {
2398 struct radv_thread_trace_info info;
2399 void *data_ptr;
2400 uint32_t shader_engine;
2401 uint32_t compute_unit;
2402 };
2403
2404 struct radv_thread_trace {
2405 uint32_t num_traces;
2406 struct radv_thread_trace_se traces[4];
2407 };
2408
2409 bool radv_thread_trace_init(struct radv_device *device);
2410 void radv_thread_trace_finish(struct radv_device *device);
2411 bool radv_begin_thread_trace(struct radv_queue *queue);
2412 bool radv_end_thread_trace(struct radv_queue *queue);
2413 bool radv_get_thread_trace(struct radv_queue *queue,
2414 struct radv_thread_trace *thread_trace);
2415 void radv_emit_thread_trace_userdata(struct radeon_cmdbuf *cs,
2416 const void *data, uint32_t num_dwords);
2417
2418 /* radv_rgp.c */
2419 int radv_dump_thread_trace(struct radv_device *device,
2420 const struct radv_thread_trace *trace);
2421
2422 /* radv_sqtt_layer_.c */
2423 void radv_describe_begin_cmd_buffer(struct radv_cmd_buffer *cmd_buffer);
2424 void radv_describe_end_cmd_buffer(struct radv_cmd_buffer *cmd_buffer);
2425
2426 struct radeon_winsys_sem;
2427
2428 uint64_t radv_get_current_time(void);
2429
2430 static inline uint32_t
2431 si_conv_gl_prim_to_vertices(unsigned gl_prim)
2432 {
2433 switch (gl_prim) {
2434 case 0: /* GL_POINTS */
2435 return 1;
2436 case 1: /* GL_LINES */
2437 case 3: /* GL_LINE_STRIP */
2438 return 2;
2439 case 4: /* GL_TRIANGLES */
2440 case 5: /* GL_TRIANGLE_STRIP */
2441 return 3;
2442 case 0xA: /* GL_LINE_STRIP_ADJACENCY_ARB */
2443 return 4;
2444 case 0xc: /* GL_TRIANGLES_ADJACENCY_ARB */
2445 return 6;
2446 case 7: /* GL_QUADS */
2447 return V_028A6C_OUTPRIM_TYPE_TRISTRIP;
2448 default:
2449 assert(0);
2450 return 0;
2451 }
2452 }
2453
2454 #define RADV_DEFINE_HANDLE_CASTS(__radv_type, __VkType) \
2455 \
2456 static inline struct __radv_type * \
2457 __radv_type ## _from_handle(__VkType _handle) \
2458 { \
2459 return (struct __radv_type *) _handle; \
2460 } \
2461 \
2462 static inline __VkType \
2463 __radv_type ## _to_handle(struct __radv_type *_obj) \
2464 { \
2465 return (__VkType) _obj; \
2466 }
2467
2468 #define RADV_DEFINE_NONDISP_HANDLE_CASTS(__radv_type, __VkType) \
2469 \
2470 static inline struct __radv_type * \
2471 __radv_type ## _from_handle(__VkType _handle) \
2472 { \
2473 return (struct __radv_type *)(uintptr_t) _handle; \
2474 } \
2475 \
2476 static inline __VkType \
2477 __radv_type ## _to_handle(struct __radv_type *_obj) \
2478 { \
2479 return (__VkType)(uintptr_t) _obj; \
2480 }
2481
2482 #define RADV_FROM_HANDLE(__radv_type, __name, __handle) \
2483 struct __radv_type *__name = __radv_type ## _from_handle(__handle)
2484
2485 RADV_DEFINE_HANDLE_CASTS(radv_cmd_buffer, VkCommandBuffer)
2486 RADV_DEFINE_HANDLE_CASTS(radv_device, VkDevice)
2487 RADV_DEFINE_HANDLE_CASTS(radv_instance, VkInstance)
2488 RADV_DEFINE_HANDLE_CASTS(radv_physical_device, VkPhysicalDevice)
2489 RADV_DEFINE_HANDLE_CASTS(radv_queue, VkQueue)
2490
2491 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_cmd_pool, VkCommandPool)
2492 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_buffer, VkBuffer)
2493 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_buffer_view, VkBufferView)
2494 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_pool, VkDescriptorPool)
2495 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_set, VkDescriptorSet)
2496 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_set_layout, VkDescriptorSetLayout)
2497 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_update_template, VkDescriptorUpdateTemplate)
2498 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_device_memory, VkDeviceMemory)
2499 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_fence, VkFence)
2500 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_event, VkEvent)
2501 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_framebuffer, VkFramebuffer)
2502 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_image, VkImage)
2503 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_image_view, VkImageView);
2504 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_pipeline_cache, VkPipelineCache)
2505 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_pipeline, VkPipeline)
2506 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_pipeline_layout, VkPipelineLayout)
2507 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_query_pool, VkQueryPool)
2508 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_render_pass, VkRenderPass)
2509 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_sampler, VkSampler)
2510 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_sampler_ycbcr_conversion, VkSamplerYcbcrConversion)
2511 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_shader_module, VkShaderModule)
2512 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_semaphore, VkSemaphore)
2513
2514 #endif /* RADV_PRIVATE_H */