radv: Add WSI buffers to BO list only if they can be used.
[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 "vk_alloc.h"
53 #include "vk_debug_report.h"
54
55 #include "radv_radeon_winsys.h"
56 #include "ac_binary.h"
57 #include "ac_nir_to_llvm.h"
58 #include "ac_gpu_info.h"
59 #include "ac_surface.h"
60 #include "ac_llvm_build.h"
61 #include "ac_llvm_util.h"
62 #include "radv_constants.h"
63 #include "radv_descriptor_set.h"
64 #include "radv_extensions.h"
65 #include "sid.h"
66
67 /* Pre-declarations needed for WSI entrypoints */
68 struct wl_surface;
69 struct wl_display;
70 typedef struct xcb_connection_t xcb_connection_t;
71 typedef uint32_t xcb_visualid_t;
72 typedef uint32_t xcb_window_t;
73
74 #include <vulkan/vulkan.h>
75 #include <vulkan/vulkan_intel.h>
76 #include <vulkan/vulkan_android.h>
77 #include <vulkan/vk_icd.h>
78 #include <vulkan/vk_android_native_buffer.h>
79
80 #include "radv_entrypoints.h"
81
82 #include "wsi_common.h"
83 #include "wsi_common_display.h"
84
85 /* Helper to determine if we should compile
86 * any of the Android AHB support.
87 *
88 * To actually enable the ext we also need
89 * the necessary kernel support.
90 */
91 #if defined(ANDROID) && ANDROID_API_LEVEL >= 26
92 #define RADV_SUPPORT_ANDROID_HARDWARE_BUFFER 1
93 #else
94 #define RADV_SUPPORT_ANDROID_HARDWARE_BUFFER 0
95 #endif
96
97
98 struct gfx10_format {
99 unsigned img_format:9;
100
101 /* Various formats are only supported with workarounds for vertex fetch,
102 * and some 32_32_32 formats are supported natively, but only for buffers
103 * (possibly with some image support, actually, but no filtering). */
104 bool buffers_only:1;
105 };
106
107 #include "gfx10_format_table.h"
108
109 enum radv_mem_heap {
110 RADV_MEM_HEAP_VRAM,
111 RADV_MEM_HEAP_VRAM_CPU_ACCESS,
112 RADV_MEM_HEAP_GTT,
113 RADV_MEM_HEAP_COUNT
114 };
115
116 enum radv_mem_type {
117 RADV_MEM_TYPE_VRAM,
118 RADV_MEM_TYPE_GTT_WRITE_COMBINE,
119 RADV_MEM_TYPE_VRAM_CPU_ACCESS,
120 RADV_MEM_TYPE_GTT_CACHED,
121 RADV_MEM_TYPE_VRAM_UNCACHED,
122 RADV_MEM_TYPE_GTT_WRITE_COMBINE_VRAM_UNCACHED,
123 RADV_MEM_TYPE_VRAM_CPU_ACCESS_UNCACHED,
124 RADV_MEM_TYPE_GTT_CACHED_VRAM_UNCACHED,
125 RADV_MEM_TYPE_COUNT
126 };
127
128 enum radv_secure_compile_type {
129 RADV_SC_TYPE_INIT_SUCCESS,
130 RADV_SC_TYPE_INIT_FAILURE,
131 RADV_SC_TYPE_COMPILE_PIPELINE,
132 RADV_SC_TYPE_COMPILE_PIPELINE_FINISHED,
133 RADV_SC_TYPE_READ_DISK_CACHE,
134 RADV_SC_TYPE_WRITE_DISK_CACHE,
135 RADV_SC_TYPE_FORK_DEVICE,
136 RADV_SC_TYPE_DESTROY_DEVICE,
137 RADV_SC_TYPE_COUNT
138 };
139
140 #define radv_printflike(a, b) __attribute__((__format__(__printf__, a, b)))
141
142 static inline uint32_t
143 align_u32(uint32_t v, uint32_t a)
144 {
145 assert(a != 0 && a == (a & -a));
146 return (v + a - 1) & ~(a - 1);
147 }
148
149 static inline uint32_t
150 align_u32_npot(uint32_t v, uint32_t a)
151 {
152 return (v + a - 1) / a * a;
153 }
154
155 static inline uint64_t
156 align_u64(uint64_t v, uint64_t a)
157 {
158 assert(a != 0 && a == (a & -a));
159 return (v + a - 1) & ~(a - 1);
160 }
161
162 static inline int32_t
163 align_i32(int32_t v, int32_t a)
164 {
165 assert(a != 0 && a == (a & -a));
166 return (v + a - 1) & ~(a - 1);
167 }
168
169 /** Alignment must be a power of 2. */
170 static inline bool
171 radv_is_aligned(uintmax_t n, uintmax_t a)
172 {
173 assert(a == (a & -a));
174 return (n & (a - 1)) == 0;
175 }
176
177 static inline uint32_t
178 round_up_u32(uint32_t v, uint32_t a)
179 {
180 return (v + a - 1) / a;
181 }
182
183 static inline uint64_t
184 round_up_u64(uint64_t v, uint64_t a)
185 {
186 return (v + a - 1) / a;
187 }
188
189 static inline uint32_t
190 radv_minify(uint32_t n, uint32_t levels)
191 {
192 if (unlikely(n == 0))
193 return 0;
194 else
195 return MAX2(n >> levels, 1);
196 }
197 static inline float
198 radv_clamp_f(float f, float min, float max)
199 {
200 assert(min < max);
201
202 if (f > max)
203 return max;
204 else if (f < min)
205 return min;
206 else
207 return f;
208 }
209
210 static inline bool
211 radv_clear_mask(uint32_t *inout_mask, uint32_t clear_mask)
212 {
213 if (*inout_mask & clear_mask) {
214 *inout_mask &= ~clear_mask;
215 return true;
216 } else {
217 return false;
218 }
219 }
220
221 #define for_each_bit(b, dword) \
222 for (uint32_t __dword = (dword); \
223 (b) = __builtin_ffs(__dword) - 1, __dword; \
224 __dword &= ~(1 << (b)))
225
226 #define typed_memcpy(dest, src, count) ({ \
227 STATIC_ASSERT(sizeof(*src) == sizeof(*dest)); \
228 memcpy((dest), (src), (count) * sizeof(*(src))); \
229 })
230
231 /* Whenever we generate an error, pass it through this function. Useful for
232 * debugging, where we can break on it. Only call at error site, not when
233 * propagating errors. Might be useful to plug in a stack trace here.
234 */
235
236 struct radv_image_view;
237 struct radv_instance;
238
239 VkResult __vk_errorf(struct radv_instance *instance, VkResult error, const char *file, int line, const char *format, ...);
240
241 #define vk_error(instance, error) __vk_errorf(instance, error, __FILE__, __LINE__, NULL);
242 #define vk_errorf(instance, error, format, ...) __vk_errorf(instance, error, __FILE__, __LINE__, format, ## __VA_ARGS__);
243
244 void __radv_finishme(const char *file, int line, const char *format, ...)
245 radv_printflike(3, 4);
246 void radv_loge(const char *format, ...) radv_printflike(1, 2);
247 void radv_loge_v(const char *format, va_list va);
248 void radv_logi(const char *format, ...) radv_printflike(1, 2);
249 void radv_logi_v(const char *format, va_list va);
250
251 /**
252 * Print a FINISHME message, including its source location.
253 */
254 #define radv_finishme(format, ...) \
255 do { \
256 static bool reported = false; \
257 if (!reported) { \
258 __radv_finishme(__FILE__, __LINE__, format, ##__VA_ARGS__); \
259 reported = true; \
260 } \
261 } while (0)
262
263 /* A non-fatal assert. Useful for debugging. */
264 #ifdef DEBUG
265 #define radv_assert(x) ({ \
266 if (unlikely(!(x))) \
267 fprintf(stderr, "%s:%d ASSERT: %s\n", __FILE__, __LINE__, #x); \
268 })
269 #else
270 #define radv_assert(x) do {} while(0)
271 #endif
272
273 #define stub_return(v) \
274 do { \
275 radv_finishme("stub %s", __func__); \
276 return (v); \
277 } while (0)
278
279 #define stub() \
280 do { \
281 radv_finishme("stub %s", __func__); \
282 return; \
283 } while (0)
284
285 int radv_get_instance_entrypoint_index(const char *name);
286 int radv_get_device_entrypoint_index(const char *name);
287 int radv_get_physical_device_entrypoint_index(const char *name);
288
289 const char *radv_get_instance_entry_name(int index);
290 const char *radv_get_physical_device_entry_name(int index);
291 const char *radv_get_device_entry_name(int index);
292
293 bool radv_instance_entrypoint_is_enabled(int index, uint32_t core_version,
294 const struct radv_instance_extension_table *instance);
295 bool radv_physical_device_entrypoint_is_enabled(int index, uint32_t core_version,
296 const struct radv_instance_extension_table *instance);
297 bool radv_device_entrypoint_is_enabled(int index, uint32_t core_version,
298 const struct radv_instance_extension_table *instance,
299 const struct radv_device_extension_table *device);
300
301 void *radv_lookup_entrypoint(const char *name);
302
303 struct radv_physical_device {
304 VK_LOADER_DATA _loader_data;
305
306 struct radv_instance * instance;
307
308 struct radeon_winsys *ws;
309 struct radeon_info rad_info;
310 char name[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
311 uint8_t driver_uuid[VK_UUID_SIZE];
312 uint8_t device_uuid[VK_UUID_SIZE];
313 uint8_t cache_uuid[VK_UUID_SIZE];
314
315 int local_fd;
316 int master_fd;
317 struct wsi_device wsi_device;
318
319 bool out_of_order_rast_allowed;
320
321 /* Whether DCC should be enabled for MSAA textures. */
322 bool dcc_msaa_allowed;
323
324 /* Whether to enable the AMD_shader_ballot extension */
325 bool use_shader_ballot;
326
327 /* Whether to enable NGG. */
328 bool use_ngg;
329
330 /* Whether to enable NGG GS. */
331 bool use_ngg_gs;
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 VkResult radv_bo_list_add(struct radv_device *device,
762 struct radeon_winsys_bo *bo);
763 void radv_bo_list_remove(struct radv_device *device,
764 struct radeon_winsys_bo *bo);
765
766 struct radv_secure_compile_process {
767 /* Secure process file descriptors. Used to communicate between the
768 * user facing device and the idle forked device used to fork a clean
769 * process for each new pipeline compile.
770 */
771 int fd_secure_input;
772 int fd_secure_output;
773
774 /* FIFO file descriptors used to communicate between the user facing
775 * device and the secure process that does the actual secure compile.
776 */
777 int fd_server;
778 int fd_client;
779
780 /* Secure compile process id */
781 pid_t sc_pid;
782
783 /* Is the secure compile process currently in use by a thread */
784 bool in_use;
785 };
786
787 struct radv_secure_compile_state {
788 struct radv_secure_compile_process *secure_compile_processes;
789 uint32_t secure_compile_thread_counter;
790 mtx_t secure_compile_mutex;
791
792 /* Unique process ID used to build name for FIFO file descriptor */
793 char *uid;
794 };
795
796 struct radv_device {
797 VK_LOADER_DATA _loader_data;
798
799 VkAllocationCallbacks alloc;
800
801 struct radv_instance * instance;
802 struct radeon_winsys *ws;
803
804 struct radv_meta_state meta_state;
805
806 struct radv_queue *queues[RADV_MAX_QUEUE_FAMILIES];
807 int queue_count[RADV_MAX_QUEUE_FAMILIES];
808 struct radeon_cmdbuf *empty_cs[RADV_MAX_QUEUE_FAMILIES];
809
810 bool always_use_syncobj;
811 bool pbb_allowed;
812 bool dfsm_allowed;
813 uint32_t tess_offchip_block_dw_size;
814 uint32_t scratch_waves;
815 uint32_t dispatch_initiator;
816
817 uint32_t gs_table_depth;
818
819 /* MSAA sample locations.
820 * The first index is the sample index.
821 * The second index is the coordinate: X, Y. */
822 float sample_locations_1x[1][2];
823 float sample_locations_2x[2][2];
824 float sample_locations_4x[4][2];
825 float sample_locations_8x[8][2];
826
827 /* GFX7 and later */
828 uint32_t gfx_init_size_dw;
829 struct radeon_winsys_bo *gfx_init;
830
831 struct radeon_winsys_bo *trace_bo;
832 uint32_t *trace_id_ptr;
833
834 /* Whether to keep shader debug info, for tracing or VK_AMD_shader_info */
835 bool keep_shader_info;
836
837 struct radv_physical_device *physical_device;
838
839 /* Backup in-memory cache to be used if the app doesn't provide one */
840 struct radv_pipeline_cache * mem_cache;
841
842 /*
843 * use different counters so MSAA MRTs get consecutive surface indices,
844 * even if MASK is allocated in between.
845 */
846 uint32_t image_mrt_offset_counter;
847 uint32_t fmask_mrt_offset_counter;
848 struct list_head shader_slabs;
849 mtx_t shader_slab_mutex;
850
851 /* For detecting VM faults reported by dmesg. */
852 uint64_t dmesg_timestamp;
853
854 struct radv_device_extension_table enabled_extensions;
855 struct radv_device_dispatch_table dispatch;
856
857 /* Whether the app has enabled the robustBufferAccess feature. */
858 bool robust_buffer_access;
859
860 /* Whether the driver uses a global BO list. */
861 bool use_global_bo_list;
862
863 struct radv_bo_list bo_list;
864
865 /* Whether anisotropy is forced with RADV_TEX_ANISO (-1 is disabled). */
866 int force_aniso;
867
868 struct radv_secure_compile_state *sc_state;
869
870 /* Condition variable for legacy timelines, to notify waiters when a
871 * new point gets submitted. */
872 pthread_cond_t timeline_cond;
873
874 /* Thread trace. */
875 struct radeon_cmdbuf *thread_trace_start_cs[2];
876 struct radeon_cmdbuf *thread_trace_stop_cs[2];
877 struct radeon_winsys_bo *thread_trace_bo;
878 void *thread_trace_ptr;
879 uint32_t thread_trace_buffer_size;
880 int thread_trace_start_frame;
881 };
882
883 struct radv_device_memory {
884 struct radeon_winsys_bo *bo;
885 /* for dedicated allocations */
886 struct radv_image *image;
887 struct radv_buffer *buffer;
888 uint32_t type_index;
889 VkDeviceSize map_size;
890 void * map;
891 void * user_ptr;
892
893 #if RADV_SUPPORT_ANDROID_HARDWARE_BUFFER
894 struct AHardwareBuffer * android_hardware_buffer;
895 #endif
896 };
897
898
899 struct radv_descriptor_range {
900 uint64_t va;
901 uint32_t size;
902 };
903
904 struct radv_descriptor_set {
905 const struct radv_descriptor_set_layout *layout;
906 uint32_t size;
907 uint32_t buffer_count;
908
909 struct radeon_winsys_bo *bo;
910 uint64_t va;
911 uint32_t *mapped_ptr;
912 struct radv_descriptor_range *dynamic_descriptors;
913
914 struct radeon_winsys_bo *descriptors[0];
915 };
916
917 struct radv_push_descriptor_set
918 {
919 struct radv_descriptor_set set;
920 uint32_t capacity;
921 };
922
923 struct radv_descriptor_pool_entry {
924 uint32_t offset;
925 uint32_t size;
926 struct radv_descriptor_set *set;
927 };
928
929 struct radv_descriptor_pool {
930 struct radeon_winsys_bo *bo;
931 uint8_t *mapped_ptr;
932 uint64_t current_offset;
933 uint64_t size;
934
935 uint8_t *host_memory_base;
936 uint8_t *host_memory_ptr;
937 uint8_t *host_memory_end;
938
939 uint32_t entry_count;
940 uint32_t max_entry_count;
941 struct radv_descriptor_pool_entry entries[0];
942 };
943
944 struct radv_descriptor_update_template_entry {
945 VkDescriptorType descriptor_type;
946
947 /* The number of descriptors to update */
948 uint32_t descriptor_count;
949
950 /* Into mapped_ptr or dynamic_descriptors, in units of the respective array */
951 uint32_t dst_offset;
952
953 /* In dwords. Not valid/used for dynamic descriptors */
954 uint32_t dst_stride;
955
956 uint32_t buffer_offset;
957
958 /* Only valid for combined image samplers and samplers */
959 uint8_t has_sampler;
960 uint8_t sampler_offset;
961
962 /* In bytes */
963 size_t src_offset;
964 size_t src_stride;
965
966 /* For push descriptors */
967 const uint32_t *immutable_samplers;
968 };
969
970 struct radv_descriptor_update_template {
971 uint32_t entry_count;
972 VkPipelineBindPoint bind_point;
973 struct radv_descriptor_update_template_entry entry[0];
974 };
975
976 struct radv_buffer {
977 VkDeviceSize size;
978
979 VkBufferUsageFlags usage;
980 VkBufferCreateFlags flags;
981
982 /* Set when bound */
983 struct radeon_winsys_bo * bo;
984 VkDeviceSize offset;
985
986 bool shareable;
987 };
988
989 enum radv_dynamic_state_bits {
990 RADV_DYNAMIC_VIEWPORT = 1 << 0,
991 RADV_DYNAMIC_SCISSOR = 1 << 1,
992 RADV_DYNAMIC_LINE_WIDTH = 1 << 2,
993 RADV_DYNAMIC_DEPTH_BIAS = 1 << 3,
994 RADV_DYNAMIC_BLEND_CONSTANTS = 1 << 4,
995 RADV_DYNAMIC_DEPTH_BOUNDS = 1 << 5,
996 RADV_DYNAMIC_STENCIL_COMPARE_MASK = 1 << 6,
997 RADV_DYNAMIC_STENCIL_WRITE_MASK = 1 << 7,
998 RADV_DYNAMIC_STENCIL_REFERENCE = 1 << 8,
999 RADV_DYNAMIC_DISCARD_RECTANGLE = 1 << 9,
1000 RADV_DYNAMIC_SAMPLE_LOCATIONS = 1 << 10,
1001 RADV_DYNAMIC_LINE_STIPPLE = 1 << 11,
1002 RADV_DYNAMIC_ALL = (1 << 12) - 1,
1003 };
1004
1005 enum radv_cmd_dirty_bits {
1006 /* Keep the dynamic state dirty bits in sync with
1007 * enum radv_dynamic_state_bits */
1008 RADV_CMD_DIRTY_DYNAMIC_VIEWPORT = 1 << 0,
1009 RADV_CMD_DIRTY_DYNAMIC_SCISSOR = 1 << 1,
1010 RADV_CMD_DIRTY_DYNAMIC_LINE_WIDTH = 1 << 2,
1011 RADV_CMD_DIRTY_DYNAMIC_DEPTH_BIAS = 1 << 3,
1012 RADV_CMD_DIRTY_DYNAMIC_BLEND_CONSTANTS = 1 << 4,
1013 RADV_CMD_DIRTY_DYNAMIC_DEPTH_BOUNDS = 1 << 5,
1014 RADV_CMD_DIRTY_DYNAMIC_STENCIL_COMPARE_MASK = 1 << 6,
1015 RADV_CMD_DIRTY_DYNAMIC_STENCIL_WRITE_MASK = 1 << 7,
1016 RADV_CMD_DIRTY_DYNAMIC_STENCIL_REFERENCE = 1 << 8,
1017 RADV_CMD_DIRTY_DYNAMIC_DISCARD_RECTANGLE = 1 << 9,
1018 RADV_CMD_DIRTY_DYNAMIC_SAMPLE_LOCATIONS = 1 << 10,
1019 RADV_CMD_DIRTY_DYNAMIC_LINE_STIPPLE = 1 << 11,
1020 RADV_CMD_DIRTY_DYNAMIC_ALL = (1 << 12) - 1,
1021 RADV_CMD_DIRTY_PIPELINE = 1 << 12,
1022 RADV_CMD_DIRTY_INDEX_BUFFER = 1 << 13,
1023 RADV_CMD_DIRTY_FRAMEBUFFER = 1 << 14,
1024 RADV_CMD_DIRTY_VERTEX_BUFFER = 1 << 15,
1025 RADV_CMD_DIRTY_STREAMOUT_BUFFER = 1 << 16,
1026 };
1027
1028 enum radv_cmd_flush_bits {
1029 /* Instruction cache. */
1030 RADV_CMD_FLAG_INV_ICACHE = 1 << 0,
1031 /* Scalar L1 cache. */
1032 RADV_CMD_FLAG_INV_SCACHE = 1 << 1,
1033 /* Vector L1 cache. */
1034 RADV_CMD_FLAG_INV_VCACHE = 1 << 2,
1035 /* L2 cache + L2 metadata cache writeback & invalidate.
1036 * GFX6-8: Used by shaders only. GFX9-10: Used by everything. */
1037 RADV_CMD_FLAG_INV_L2 = 1 << 3,
1038 /* L2 writeback (write dirty L2 lines to memory for non-L2 clients).
1039 * Only used for coherency with non-L2 clients like CB, DB, CP on GFX6-8.
1040 * GFX6-7 will do complete invalidation, because the writeback is unsupported. */
1041 RADV_CMD_FLAG_WB_L2 = 1 << 4,
1042 /* Framebuffer caches */
1043 RADV_CMD_FLAG_FLUSH_AND_INV_CB_META = 1 << 5,
1044 RADV_CMD_FLAG_FLUSH_AND_INV_DB_META = 1 << 6,
1045 RADV_CMD_FLAG_FLUSH_AND_INV_DB = 1 << 7,
1046 RADV_CMD_FLAG_FLUSH_AND_INV_CB = 1 << 8,
1047 /* Engine synchronization. */
1048 RADV_CMD_FLAG_VS_PARTIAL_FLUSH = 1 << 9,
1049 RADV_CMD_FLAG_PS_PARTIAL_FLUSH = 1 << 10,
1050 RADV_CMD_FLAG_CS_PARTIAL_FLUSH = 1 << 11,
1051 RADV_CMD_FLAG_VGT_FLUSH = 1 << 12,
1052 /* Pipeline query controls. */
1053 RADV_CMD_FLAG_START_PIPELINE_STATS = 1 << 13,
1054 RADV_CMD_FLAG_STOP_PIPELINE_STATS = 1 << 14,
1055 RADV_CMD_FLAG_VGT_STREAMOUT_SYNC = 1 << 15,
1056
1057 RADV_CMD_FLUSH_AND_INV_FRAMEBUFFER = (RADV_CMD_FLAG_FLUSH_AND_INV_CB |
1058 RADV_CMD_FLAG_FLUSH_AND_INV_CB_META |
1059 RADV_CMD_FLAG_FLUSH_AND_INV_DB |
1060 RADV_CMD_FLAG_FLUSH_AND_INV_DB_META)
1061 };
1062
1063 struct radv_vertex_binding {
1064 struct radv_buffer * buffer;
1065 VkDeviceSize offset;
1066 };
1067
1068 struct radv_streamout_binding {
1069 struct radv_buffer *buffer;
1070 VkDeviceSize offset;
1071 VkDeviceSize size;
1072 };
1073
1074 struct radv_streamout_state {
1075 /* Mask of bound streamout buffers. */
1076 uint8_t enabled_mask;
1077
1078 /* External state that comes from the last vertex stage, it must be
1079 * set explicitely when binding a new graphics pipeline.
1080 */
1081 uint16_t stride_in_dw[MAX_SO_BUFFERS];
1082 uint32_t enabled_stream_buffers_mask; /* stream0 buffers0-3 in 4 LSB */
1083
1084 /* State of VGT_STRMOUT_BUFFER_(CONFIG|END) */
1085 uint32_t hw_enabled_mask;
1086
1087 /* State of VGT_STRMOUT_(CONFIG|EN) */
1088 bool streamout_enabled;
1089 };
1090
1091 struct radv_viewport_state {
1092 uint32_t count;
1093 VkViewport viewports[MAX_VIEWPORTS];
1094 };
1095
1096 struct radv_scissor_state {
1097 uint32_t count;
1098 VkRect2D scissors[MAX_SCISSORS];
1099 };
1100
1101 struct radv_discard_rectangle_state {
1102 uint32_t count;
1103 VkRect2D rectangles[MAX_DISCARD_RECTANGLES];
1104 };
1105
1106 struct radv_sample_locations_state {
1107 VkSampleCountFlagBits per_pixel;
1108 VkExtent2D grid_size;
1109 uint32_t count;
1110 VkSampleLocationEXT locations[MAX_SAMPLE_LOCATIONS];
1111 };
1112
1113 struct radv_dynamic_state {
1114 /**
1115 * Bitmask of (1 << VK_DYNAMIC_STATE_*).
1116 * Defines the set of saved dynamic state.
1117 */
1118 uint32_t mask;
1119
1120 struct radv_viewport_state viewport;
1121
1122 struct radv_scissor_state scissor;
1123
1124 float line_width;
1125
1126 struct {
1127 float bias;
1128 float clamp;
1129 float slope;
1130 } depth_bias;
1131
1132 float blend_constants[4];
1133
1134 struct {
1135 float min;
1136 float max;
1137 } depth_bounds;
1138
1139 struct {
1140 uint32_t front;
1141 uint32_t back;
1142 } stencil_compare_mask;
1143
1144 struct {
1145 uint32_t front;
1146 uint32_t back;
1147 } stencil_write_mask;
1148
1149 struct {
1150 uint32_t front;
1151 uint32_t back;
1152 } stencil_reference;
1153
1154 struct radv_discard_rectangle_state discard_rectangle;
1155
1156 struct radv_sample_locations_state sample_location;
1157
1158 struct {
1159 uint32_t factor;
1160 uint16_t pattern;
1161 } line_stipple;
1162 };
1163
1164 extern const struct radv_dynamic_state default_dynamic_state;
1165
1166 const char *
1167 radv_get_debug_option_name(int id);
1168
1169 const char *
1170 radv_get_perftest_option_name(int id);
1171
1172 struct radv_color_buffer_info {
1173 uint64_t cb_color_base;
1174 uint64_t cb_color_cmask;
1175 uint64_t cb_color_fmask;
1176 uint64_t cb_dcc_base;
1177 uint32_t cb_color_slice;
1178 uint32_t cb_color_view;
1179 uint32_t cb_color_info;
1180 uint32_t cb_color_attrib;
1181 uint32_t cb_color_attrib2; /* GFX9 and later */
1182 uint32_t cb_color_attrib3; /* GFX10 and later */
1183 uint32_t cb_dcc_control;
1184 uint32_t cb_color_cmask_slice;
1185 uint32_t cb_color_fmask_slice;
1186 union {
1187 uint32_t cb_color_pitch; // GFX6-GFX8
1188 uint32_t cb_mrt_epitch; // GFX9+
1189 };
1190 };
1191
1192 struct radv_ds_buffer_info {
1193 uint64_t db_z_read_base;
1194 uint64_t db_stencil_read_base;
1195 uint64_t db_z_write_base;
1196 uint64_t db_stencil_write_base;
1197 uint64_t db_htile_data_base;
1198 uint32_t db_depth_info;
1199 uint32_t db_z_info;
1200 uint32_t db_stencil_info;
1201 uint32_t db_depth_view;
1202 uint32_t db_depth_size;
1203 uint32_t db_depth_slice;
1204 uint32_t db_htile_surface;
1205 uint32_t pa_su_poly_offset_db_fmt_cntl;
1206 uint32_t db_z_info2; /* GFX9 only */
1207 uint32_t db_stencil_info2; /* GFX9 only */
1208 float offset_scale;
1209 };
1210
1211 void
1212 radv_initialise_color_surface(struct radv_device *device,
1213 struct radv_color_buffer_info *cb,
1214 struct radv_image_view *iview);
1215 void
1216 radv_initialise_ds_surface(struct radv_device *device,
1217 struct radv_ds_buffer_info *ds,
1218 struct radv_image_view *iview);
1219
1220 bool
1221 radv_sc_read(int fd, void *buf, size_t size, bool timeout);
1222
1223 /**
1224 * Attachment state when recording a renderpass instance.
1225 *
1226 * The clear value is valid only if there exists a pending clear.
1227 */
1228 struct radv_attachment_state {
1229 VkImageAspectFlags pending_clear_aspects;
1230 uint32_t cleared_views;
1231 VkClearValue clear_value;
1232 VkImageLayout current_layout;
1233 VkImageLayout current_stencil_layout;
1234 bool current_in_render_loop;
1235 struct radv_sample_locations_state sample_location;
1236
1237 union {
1238 struct radv_color_buffer_info cb;
1239 struct radv_ds_buffer_info ds;
1240 };
1241 struct radv_image_view *iview;
1242 };
1243
1244 struct radv_descriptor_state {
1245 struct radv_descriptor_set *sets[MAX_SETS];
1246 uint32_t dirty;
1247 uint32_t valid;
1248 struct radv_push_descriptor_set push_set;
1249 bool push_dirty;
1250 uint32_t dynamic_buffers[4 * MAX_DYNAMIC_BUFFERS];
1251 };
1252
1253 struct radv_subpass_sample_locs_state {
1254 uint32_t subpass_idx;
1255 struct radv_sample_locations_state sample_location;
1256 };
1257
1258 struct radv_cmd_state {
1259 /* Vertex descriptors */
1260 uint64_t vb_va;
1261 unsigned vb_size;
1262
1263 bool predicating;
1264 uint32_t dirty;
1265
1266 uint32_t prefetch_L2_mask;
1267
1268 struct radv_pipeline * pipeline;
1269 struct radv_pipeline * emitted_pipeline;
1270 struct radv_pipeline * compute_pipeline;
1271 struct radv_pipeline * emitted_compute_pipeline;
1272 struct radv_framebuffer * framebuffer;
1273 struct radv_render_pass * pass;
1274 const struct radv_subpass * subpass;
1275 struct radv_dynamic_state dynamic;
1276 struct radv_attachment_state * attachments;
1277 struct radv_streamout_state streamout;
1278 VkRect2D render_area;
1279
1280 uint32_t num_subpass_sample_locs;
1281 struct radv_subpass_sample_locs_state * subpass_sample_locs;
1282
1283 /* Index buffer */
1284 struct radv_buffer *index_buffer;
1285 uint64_t index_offset;
1286 uint32_t index_type;
1287 uint32_t max_index_count;
1288 uint64_t index_va;
1289 int32_t last_index_type;
1290
1291 int32_t last_primitive_reset_en;
1292 uint32_t last_primitive_reset_index;
1293 enum radv_cmd_flush_bits flush_bits;
1294 unsigned active_occlusion_queries;
1295 bool perfect_occlusion_queries_enabled;
1296 unsigned active_pipeline_queries;
1297 unsigned active_pipeline_gds_queries;
1298 float offset_scale;
1299 uint32_t trace_id;
1300 uint32_t last_ia_multi_vgt_param;
1301
1302 uint32_t last_num_instances;
1303 uint32_t last_first_instance;
1304 uint32_t last_vertex_offset;
1305
1306 uint32_t last_sx_ps_downconvert;
1307 uint32_t last_sx_blend_opt_epsilon;
1308 uint32_t last_sx_blend_opt_control;
1309
1310 /* Whether CP DMA is busy/idle. */
1311 bool dma_is_busy;
1312
1313 /* Conditional rendering info. */
1314 int predication_type; /* -1: disabled, 0: normal, 1: inverted */
1315 uint64_t predication_va;
1316
1317 /* Inheritance info. */
1318 VkQueryPipelineStatisticFlags inherited_pipeline_statistics;
1319
1320 bool context_roll_without_scissor_emitted;
1321
1322 /* SQTT related state. */
1323 uint32_t current_event_type;
1324 uint32_t num_events;
1325 uint32_t num_layout_transitions;
1326 };
1327
1328 struct radv_cmd_pool {
1329 VkAllocationCallbacks alloc;
1330 struct list_head cmd_buffers;
1331 struct list_head free_cmd_buffers;
1332 uint32_t queue_family_index;
1333 };
1334
1335 struct radv_cmd_buffer_upload {
1336 uint8_t *map;
1337 unsigned offset;
1338 uint64_t size;
1339 struct radeon_winsys_bo *upload_bo;
1340 struct list_head list;
1341 };
1342
1343 enum radv_cmd_buffer_status {
1344 RADV_CMD_BUFFER_STATUS_INVALID,
1345 RADV_CMD_BUFFER_STATUS_INITIAL,
1346 RADV_CMD_BUFFER_STATUS_RECORDING,
1347 RADV_CMD_BUFFER_STATUS_EXECUTABLE,
1348 RADV_CMD_BUFFER_STATUS_PENDING,
1349 };
1350
1351 struct radv_cmd_buffer {
1352 VK_LOADER_DATA _loader_data;
1353
1354 struct radv_device * device;
1355
1356 struct radv_cmd_pool * pool;
1357 struct list_head pool_link;
1358
1359 VkCommandBufferUsageFlags usage_flags;
1360 VkCommandBufferLevel level;
1361 enum radv_cmd_buffer_status status;
1362 struct radeon_cmdbuf *cs;
1363 struct radv_cmd_state state;
1364 struct radv_vertex_binding vertex_bindings[MAX_VBS];
1365 struct radv_streamout_binding streamout_bindings[MAX_SO_BUFFERS];
1366 uint32_t queue_family_index;
1367
1368 uint8_t push_constants[MAX_PUSH_CONSTANTS_SIZE];
1369 VkShaderStageFlags push_constant_stages;
1370 struct radv_descriptor_set meta_push_descriptors;
1371
1372 struct radv_descriptor_state descriptors[VK_PIPELINE_BIND_POINT_RANGE_SIZE];
1373
1374 struct radv_cmd_buffer_upload upload;
1375
1376 uint32_t scratch_size_per_wave_needed;
1377 uint32_t scratch_waves_wanted;
1378 uint32_t compute_scratch_size_per_wave_needed;
1379 uint32_t compute_scratch_waves_wanted;
1380 uint32_t esgs_ring_size_needed;
1381 uint32_t gsvs_ring_size_needed;
1382 bool tess_rings_needed;
1383 bool gds_needed; /* for GFX10 streamout and NGG GS queries */
1384 bool gds_oa_needed; /* for GFX10 streamout */
1385 bool sample_positions_needed;
1386
1387 VkResult record_result;
1388
1389 uint64_t gfx9_fence_va;
1390 uint32_t gfx9_fence_idx;
1391 uint64_t gfx9_eop_bug_va;
1392
1393 /**
1394 * Whether a query pool has been resetted and we have to flush caches.
1395 */
1396 bool pending_reset_query;
1397
1398 /**
1399 * Bitmask of pending active query flushes.
1400 */
1401 enum radv_cmd_flush_bits active_query_flush_bits;
1402 };
1403
1404 struct radv_image;
1405 struct radv_image_view;
1406
1407 bool radv_cmd_buffer_uses_mec(struct radv_cmd_buffer *cmd_buffer);
1408
1409 void si_emit_graphics(struct radv_device *device,
1410 struct radeon_cmdbuf *cs);
1411 void si_emit_compute(struct radv_physical_device *physical_device,
1412 struct radeon_cmdbuf *cs);
1413
1414 void cik_create_gfx_config(struct radv_device *device);
1415
1416 void si_write_viewport(struct radeon_cmdbuf *cs, int first_vp,
1417 int count, const VkViewport *viewports);
1418 void si_write_scissors(struct radeon_cmdbuf *cs, int first,
1419 int count, const VkRect2D *scissors,
1420 const VkViewport *viewports, bool can_use_guardband);
1421 uint32_t si_get_ia_multi_vgt_param(struct radv_cmd_buffer *cmd_buffer,
1422 bool instanced_draw, bool indirect_draw,
1423 bool count_from_stream_output,
1424 uint32_t draw_vertex_count);
1425 void si_cs_emit_write_event_eop(struct radeon_cmdbuf *cs,
1426 enum chip_class chip_class,
1427 bool is_mec,
1428 unsigned event, unsigned event_flags,
1429 unsigned dst_sel, unsigned data_sel,
1430 uint64_t va,
1431 uint32_t new_fence,
1432 uint64_t gfx9_eop_bug_va);
1433
1434 void radv_cp_wait_mem(struct radeon_cmdbuf *cs, uint32_t op, uint64_t va,
1435 uint32_t ref, uint32_t mask);
1436 void si_cs_emit_cache_flush(struct radeon_cmdbuf *cs,
1437 enum chip_class chip_class,
1438 uint32_t *fence_ptr, uint64_t va,
1439 bool is_mec,
1440 enum radv_cmd_flush_bits flush_bits,
1441 uint64_t gfx9_eop_bug_va);
1442 void si_emit_cache_flush(struct radv_cmd_buffer *cmd_buffer);
1443 void si_emit_set_predication_state(struct radv_cmd_buffer *cmd_buffer,
1444 bool inverted, uint64_t va);
1445 void si_cp_dma_buffer_copy(struct radv_cmd_buffer *cmd_buffer,
1446 uint64_t src_va, uint64_t dest_va,
1447 uint64_t size);
1448 void si_cp_dma_prefetch(struct radv_cmd_buffer *cmd_buffer, uint64_t va,
1449 unsigned size);
1450 void si_cp_dma_clear_buffer(struct radv_cmd_buffer *cmd_buffer, uint64_t va,
1451 uint64_t size, unsigned value);
1452 void si_cp_dma_wait_for_idle(struct radv_cmd_buffer *cmd_buffer);
1453
1454 void radv_set_db_count_control(struct radv_cmd_buffer *cmd_buffer);
1455 bool
1456 radv_cmd_buffer_upload_alloc(struct radv_cmd_buffer *cmd_buffer,
1457 unsigned size,
1458 unsigned alignment,
1459 unsigned *out_offset,
1460 void **ptr);
1461 void
1462 radv_cmd_buffer_set_subpass(struct radv_cmd_buffer *cmd_buffer,
1463 const struct radv_subpass *subpass);
1464 bool
1465 radv_cmd_buffer_upload_data(struct radv_cmd_buffer *cmd_buffer,
1466 unsigned size, unsigned alignmnet,
1467 const void *data, unsigned *out_offset);
1468
1469 void radv_cmd_buffer_clear_subpass(struct radv_cmd_buffer *cmd_buffer);
1470 void radv_cmd_buffer_resolve_subpass(struct radv_cmd_buffer *cmd_buffer);
1471 void radv_cmd_buffer_resolve_subpass_cs(struct radv_cmd_buffer *cmd_buffer);
1472 void radv_depth_stencil_resolve_subpass_cs(struct radv_cmd_buffer *cmd_buffer,
1473 VkImageAspectFlags aspects,
1474 VkResolveModeFlagBits resolve_mode);
1475 void radv_cmd_buffer_resolve_subpass_fs(struct radv_cmd_buffer *cmd_buffer);
1476 void radv_depth_stencil_resolve_subpass_fs(struct radv_cmd_buffer *cmd_buffer,
1477 VkImageAspectFlags aspects,
1478 VkResolveModeFlagBits resolve_mode);
1479 void radv_emit_default_sample_locations(struct radeon_cmdbuf *cs, int nr_samples);
1480 unsigned radv_get_default_max_sample_dist(int log_samples);
1481 void radv_device_init_msaa(struct radv_device *device);
1482
1483 void radv_update_ds_clear_metadata(struct radv_cmd_buffer *cmd_buffer,
1484 const struct radv_image_view *iview,
1485 VkClearDepthStencilValue ds_clear_value,
1486 VkImageAspectFlags aspects);
1487
1488 void radv_update_color_clear_metadata(struct radv_cmd_buffer *cmd_buffer,
1489 const struct radv_image_view *iview,
1490 int cb_idx,
1491 uint32_t color_values[2]);
1492
1493 void radv_update_fce_metadata(struct radv_cmd_buffer *cmd_buffer,
1494 struct radv_image *image,
1495 const VkImageSubresourceRange *range, bool value);
1496
1497 void radv_update_dcc_metadata(struct radv_cmd_buffer *cmd_buffer,
1498 struct radv_image *image,
1499 const VkImageSubresourceRange *range, bool value);
1500
1501 uint32_t radv_fill_buffer(struct radv_cmd_buffer *cmd_buffer,
1502 struct radeon_winsys_bo *bo,
1503 uint64_t offset, uint64_t size, uint32_t value);
1504 void radv_cmd_buffer_trace_emit(struct radv_cmd_buffer *cmd_buffer);
1505 bool radv_get_memory_fd(struct radv_device *device,
1506 struct radv_device_memory *memory,
1507 int *pFD);
1508
1509 static inline void
1510 radv_emit_shader_pointer_head(struct radeon_cmdbuf *cs,
1511 unsigned sh_offset, unsigned pointer_count,
1512 bool use_32bit_pointers)
1513 {
1514 radeon_emit(cs, PKT3(PKT3_SET_SH_REG, pointer_count * (use_32bit_pointers ? 1 : 2), 0));
1515 radeon_emit(cs, (sh_offset - SI_SH_REG_OFFSET) >> 2);
1516 }
1517
1518 static inline void
1519 radv_emit_shader_pointer_body(struct radv_device *device,
1520 struct radeon_cmdbuf *cs,
1521 uint64_t va, bool use_32bit_pointers)
1522 {
1523 radeon_emit(cs, va);
1524
1525 if (use_32bit_pointers) {
1526 assert(va == 0 ||
1527 (va >> 32) == device->physical_device->rad_info.address32_hi);
1528 } else {
1529 radeon_emit(cs, va >> 32);
1530 }
1531 }
1532
1533 static inline void
1534 radv_emit_shader_pointer(struct radv_device *device,
1535 struct radeon_cmdbuf *cs,
1536 uint32_t sh_offset, uint64_t va, bool global)
1537 {
1538 bool use_32bit_pointers = !global;
1539
1540 radv_emit_shader_pointer_head(cs, sh_offset, 1, use_32bit_pointers);
1541 radv_emit_shader_pointer_body(device, cs, va, use_32bit_pointers);
1542 }
1543
1544 static inline struct radv_descriptor_state *
1545 radv_get_descriptors_state(struct radv_cmd_buffer *cmd_buffer,
1546 VkPipelineBindPoint bind_point)
1547 {
1548 assert(bind_point == VK_PIPELINE_BIND_POINT_GRAPHICS ||
1549 bind_point == VK_PIPELINE_BIND_POINT_COMPUTE);
1550 return &cmd_buffer->descriptors[bind_point];
1551 }
1552
1553 /*
1554 * Takes x,y,z as exact numbers of invocations, instead of blocks.
1555 *
1556 * Limitations: Can't call normal dispatch functions without binding or rebinding
1557 * the compute pipeline.
1558 */
1559 void radv_unaligned_dispatch(
1560 struct radv_cmd_buffer *cmd_buffer,
1561 uint32_t x,
1562 uint32_t y,
1563 uint32_t z);
1564
1565 struct radv_event {
1566 struct radeon_winsys_bo *bo;
1567 uint64_t *map;
1568 };
1569
1570 struct radv_shader_module;
1571
1572 #define RADV_HASH_SHADER_NO_NGG (1 << 0)
1573 #define RADV_HASH_SHADER_CS_WAVE32 (1 << 1)
1574 #define RADV_HASH_SHADER_PS_WAVE32 (1 << 2)
1575 #define RADV_HASH_SHADER_GE_WAVE32 (1 << 3)
1576 #define RADV_HASH_SHADER_ACO (1 << 4)
1577
1578 void
1579 radv_hash_shaders(unsigned char *hash,
1580 const VkPipelineShaderStageCreateInfo **stages,
1581 const struct radv_pipeline_layout *layout,
1582 const struct radv_pipeline_key *key,
1583 uint32_t flags);
1584
1585 static inline gl_shader_stage
1586 vk_to_mesa_shader_stage(VkShaderStageFlagBits vk_stage)
1587 {
1588 assert(__builtin_popcount(vk_stage) == 1);
1589 return ffs(vk_stage) - 1;
1590 }
1591
1592 static inline VkShaderStageFlagBits
1593 mesa_to_vk_shader_stage(gl_shader_stage mesa_stage)
1594 {
1595 return (1 << mesa_stage);
1596 }
1597
1598 #define RADV_STAGE_MASK ((1 << MESA_SHADER_STAGES) - 1)
1599
1600 #define radv_foreach_stage(stage, stage_bits) \
1601 for (gl_shader_stage stage, \
1602 __tmp = (gl_shader_stage)((stage_bits) & RADV_STAGE_MASK); \
1603 stage = __builtin_ffs(__tmp) - 1, __tmp; \
1604 __tmp &= ~(1 << (stage)))
1605
1606 extern const VkFormat radv_fs_key_format_exemplars[NUM_META_FS_KEYS];
1607 unsigned radv_format_meta_fs_key(VkFormat format);
1608
1609 struct radv_multisample_state {
1610 uint32_t db_eqaa;
1611 uint32_t pa_sc_line_cntl;
1612 uint32_t pa_sc_mode_cntl_0;
1613 uint32_t pa_sc_mode_cntl_1;
1614 uint32_t pa_sc_aa_config;
1615 uint32_t pa_sc_aa_mask[2];
1616 unsigned num_samples;
1617 };
1618
1619 struct radv_prim_vertex_count {
1620 uint8_t min;
1621 uint8_t incr;
1622 };
1623
1624 struct radv_vertex_elements_info {
1625 uint32_t format_size[MAX_VERTEX_ATTRIBS];
1626 };
1627
1628 struct radv_ia_multi_vgt_param_helpers {
1629 uint32_t base;
1630 bool partial_es_wave;
1631 uint8_t primgroup_size;
1632 bool wd_switch_on_eop;
1633 bool ia_switch_on_eoi;
1634 bool partial_vs_wave;
1635 };
1636
1637 struct radv_binning_state {
1638 uint32_t pa_sc_binner_cntl_0;
1639 uint32_t db_dfsm_control;
1640 };
1641
1642 #define SI_GS_PER_ES 128
1643
1644 struct radv_pipeline {
1645 struct radv_device * device;
1646 struct radv_dynamic_state dynamic_state;
1647
1648 struct radv_pipeline_layout * layout;
1649
1650 bool need_indirect_descriptor_sets;
1651 struct radv_shader_variant * shaders[MESA_SHADER_STAGES];
1652 struct radv_shader_variant *gs_copy_shader;
1653 VkShaderStageFlags active_stages;
1654
1655 struct radeon_cmdbuf cs;
1656 uint32_t ctx_cs_hash;
1657 struct radeon_cmdbuf ctx_cs;
1658
1659 struct radv_vertex_elements_info vertex_elements;
1660
1661 uint32_t binding_stride[MAX_VBS];
1662 uint8_t num_vertex_bindings;
1663
1664 uint32_t user_data_0[MESA_SHADER_STAGES];
1665 union {
1666 struct {
1667 struct radv_multisample_state ms;
1668 struct radv_binning_state binning;
1669 uint32_t spi_baryc_cntl;
1670 bool prim_restart_enable;
1671 unsigned esgs_ring_size;
1672 unsigned gsvs_ring_size;
1673 uint32_t vtx_base_sgpr;
1674 struct radv_ia_multi_vgt_param_helpers ia_multi_vgt_param;
1675 uint8_t vtx_emit_num;
1676 struct radv_prim_vertex_count prim_vertex_count;
1677 bool can_use_guardband;
1678 uint32_t needed_dynamic_state;
1679 bool disable_out_of_order_rast_for_occlusion;
1680 uint8_t topology;
1681
1682 /* Used for rbplus */
1683 uint32_t col_format;
1684 uint32_t cb_target_mask;
1685 } graphics;
1686 };
1687
1688 unsigned max_waves;
1689 unsigned scratch_bytes_per_wave;
1690
1691 /* Not NULL if graphics pipeline uses streamout. */
1692 struct radv_shader_variant *streamout_shader;
1693 };
1694
1695 static inline bool radv_pipeline_has_gs(const struct radv_pipeline *pipeline)
1696 {
1697 return pipeline->shaders[MESA_SHADER_GEOMETRY] ? true : false;
1698 }
1699
1700 static inline bool radv_pipeline_has_tess(const struct radv_pipeline *pipeline)
1701 {
1702 return pipeline->shaders[MESA_SHADER_TESS_CTRL] ? true : false;
1703 }
1704
1705 bool radv_pipeline_has_ngg(const struct radv_pipeline *pipeline);
1706
1707 bool radv_pipeline_has_ngg_passthrough(const struct radv_pipeline *pipeline);
1708
1709 bool radv_pipeline_has_gs_copy_shader(const struct radv_pipeline *pipeline);
1710
1711 struct radv_userdata_info *radv_lookup_user_sgpr(struct radv_pipeline *pipeline,
1712 gl_shader_stage stage,
1713 int idx);
1714
1715 struct radv_shader_variant *radv_get_shader(struct radv_pipeline *pipeline,
1716 gl_shader_stage stage);
1717
1718 struct radv_graphics_pipeline_create_info {
1719 bool use_rectlist;
1720 bool db_depth_clear;
1721 bool db_stencil_clear;
1722 bool db_depth_disable_expclear;
1723 bool db_stencil_disable_expclear;
1724 bool depth_compress_disable;
1725 bool stencil_compress_disable;
1726 bool resummarize_enable;
1727 uint32_t custom_blend_mode;
1728 };
1729
1730 VkResult
1731 radv_graphics_pipeline_create(VkDevice device,
1732 VkPipelineCache cache,
1733 const VkGraphicsPipelineCreateInfo *pCreateInfo,
1734 const struct radv_graphics_pipeline_create_info *extra,
1735 const VkAllocationCallbacks *alloc,
1736 VkPipeline *pPipeline);
1737
1738 struct radv_binning_settings {
1739 unsigned context_states_per_bin; /* allowed range: [1, 6] */
1740 unsigned persistent_states_per_bin; /* allowed range: [1, 32] */
1741 unsigned fpovs_per_batch; /* allowed range: [0, 255], 0 = unlimited */
1742 };
1743
1744 struct radv_binning_settings
1745 radv_get_binning_settings(const struct radv_physical_device *pdev);
1746
1747 struct vk_format_description;
1748 uint32_t radv_translate_buffer_dataformat(const struct vk_format_description *desc,
1749 int first_non_void);
1750 uint32_t radv_translate_buffer_numformat(const struct vk_format_description *desc,
1751 int first_non_void);
1752 bool radv_is_buffer_format_supported(VkFormat format, bool *scaled);
1753 uint32_t radv_translate_colorformat(VkFormat format);
1754 uint32_t radv_translate_color_numformat(VkFormat format,
1755 const struct vk_format_description *desc,
1756 int first_non_void);
1757 uint32_t radv_colorformat_endian_swap(uint32_t colorformat);
1758 unsigned radv_translate_colorswap(VkFormat format, bool do_endian_swap);
1759 uint32_t radv_translate_dbformat(VkFormat format);
1760 uint32_t radv_translate_tex_dataformat(VkFormat format,
1761 const struct vk_format_description *desc,
1762 int first_non_void);
1763 uint32_t radv_translate_tex_numformat(VkFormat format,
1764 const struct vk_format_description *desc,
1765 int first_non_void);
1766 bool radv_format_pack_clear_color(VkFormat format,
1767 uint32_t clear_vals[2],
1768 VkClearColorValue *value);
1769 bool radv_is_colorbuffer_format_supported(VkFormat format, bool *blendable);
1770 bool radv_dcc_formats_compatible(VkFormat format1,
1771 VkFormat format2);
1772 bool radv_device_supports_etc(struct radv_physical_device *physical_device);
1773
1774 struct radv_image_plane {
1775 VkFormat format;
1776 struct radeon_surf surface;
1777 uint64_t offset;
1778 };
1779
1780 struct radv_image {
1781 VkImageType type;
1782 /* The original VkFormat provided by the client. This may not match any
1783 * of the actual surface formats.
1784 */
1785 VkFormat vk_format;
1786 VkImageAspectFlags aspects;
1787 VkImageUsageFlags usage; /**< Superset of VkImageCreateInfo::usage. */
1788 struct ac_surf_info info;
1789 VkImageTiling tiling; /** VkImageCreateInfo::tiling */
1790 VkImageCreateFlags flags; /** VkImageCreateInfo::flags */
1791
1792 VkDeviceSize size;
1793 uint32_t alignment;
1794
1795 unsigned queue_family_mask;
1796 bool exclusive;
1797 bool shareable;
1798
1799 /* Set when bound */
1800 struct radeon_winsys_bo *bo;
1801 VkDeviceSize offset;
1802 uint64_t dcc_offset;
1803 uint64_t htile_offset;
1804 bool tc_compatible_htile;
1805 bool tc_compatible_cmask;
1806
1807 uint64_t cmask_offset;
1808 uint64_t fmask_offset;
1809 uint64_t clear_value_offset;
1810 uint64_t fce_pred_offset;
1811 uint64_t dcc_pred_offset;
1812
1813 /*
1814 * Metadata for the TC-compat zrange workaround. If the 32-bit value
1815 * stored at this offset is UINT_MAX, the driver will emit
1816 * DB_Z_INFO.ZRANGE_PRECISION=0, otherwise it will skip the
1817 * SET_CONTEXT_REG packet.
1818 */
1819 uint64_t tc_compat_zrange_offset;
1820
1821 /* For VK_ANDROID_native_buffer, the WSI image owns the memory, */
1822 VkDeviceMemory owned_memory;
1823
1824 unsigned plane_count;
1825 struct radv_image_plane planes[0];
1826 };
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 llvm_compile_shader(struct radv_device *device,
2366 unsigned shader_count,
2367 struct nir_shader *const *shaders,
2368 struct radv_shader_binary **binary,
2369 struct radv_shader_args *args);
2370
2371 unsigned radv_nir_get_max_workgroup_size(enum chip_class chip_class,
2372 gl_shader_stage stage,
2373 const struct nir_shader *nir);
2374
2375 /* radv_shader_info.h */
2376 struct radv_shader_info;
2377 struct radv_shader_variant_key;
2378
2379 void radv_nir_shader_info_pass(const struct nir_shader *nir,
2380 const struct radv_pipeline_layout *layout,
2381 const struct radv_shader_variant_key *key,
2382 struct radv_shader_info *info);
2383
2384 void radv_nir_shader_info_init(struct radv_shader_info *info);
2385
2386 /* radv_sqtt.c */
2387 struct radv_thread_trace_info {
2388 uint32_t cur_offset;
2389 uint32_t trace_status;
2390 union {
2391 uint32_t gfx9_write_counter;
2392 uint32_t gfx10_dropped_cntr;
2393 };
2394 };
2395
2396 struct radv_thread_trace_se {
2397 struct radv_thread_trace_info info;
2398 void *data_ptr;
2399 uint32_t shader_engine;
2400 uint32_t compute_unit;
2401 };
2402
2403 struct radv_thread_trace {
2404 uint32_t num_traces;
2405 struct radv_thread_trace_se traces[4];
2406 };
2407
2408 bool radv_thread_trace_init(struct radv_device *device);
2409 void radv_thread_trace_finish(struct radv_device *device);
2410 bool radv_begin_thread_trace(struct radv_queue *queue);
2411 bool radv_end_thread_trace(struct radv_queue *queue);
2412 bool radv_get_thread_trace(struct radv_queue *queue,
2413 struct radv_thread_trace *thread_trace);
2414 void radv_emit_thread_trace_userdata(struct radeon_cmdbuf *cs,
2415 const void *data, uint32_t num_dwords);
2416
2417 /* radv_rgp.c */
2418 int radv_dump_thread_trace(struct radv_device *device,
2419 const struct radv_thread_trace *trace);
2420
2421 /* radv_sqtt_layer_.c */
2422 struct radv_barrier_data {
2423 union {
2424 struct {
2425 uint16_t depth_stencil_expand : 1;
2426 uint16_t htile_hiz_range_expand : 1;
2427 uint16_t depth_stencil_resummarize : 1;
2428 uint16_t dcc_decompress : 1;
2429 uint16_t fmask_decompress : 1;
2430 uint16_t fast_clear_eliminate : 1;
2431 uint16_t fmask_color_expand : 1;
2432 uint16_t init_mask_ram : 1;
2433 uint16_t reserved : 8;
2434 };
2435 uint16_t all;
2436 } layout_transitions;
2437 };
2438
2439 /**
2440 * Value for the reason field of an RGP barrier start marker originating from
2441 * the Vulkan client (does not include PAL-defined values). (Table 15)
2442 */
2443 enum rgp_barrier_reason {
2444 RGP_BARRIER_UNKNOWN_REASON = 0xFFFFFFFF,
2445
2446 /* External app-generated barrier reasons, i.e. API synchronization
2447 * commands Range of valid values: [0x00000001 ... 0x7FFFFFFF].
2448 */
2449 RGP_BARRIER_EXTERNAL_CMD_PIPELINE_BARRIER = 0x00000001,
2450 RGP_BARRIER_EXTERNAL_RENDER_PASS_SYNC = 0x00000002,
2451 RGP_BARRIER_EXTERNAL_CMD_WAIT_EVENTS = 0x00000003,
2452
2453 /* Internal barrier reasons, i.e. implicit synchronization inserted by
2454 * the Vulkan driver Range of valid values: [0xC0000000 ... 0xFFFFFFFE].
2455 */
2456 RGP_BARRIER_INTERNAL_BASE = 0xC0000000,
2457 RGP_BARRIER_INTERNAL_PRE_RESET_QUERY_POOL_SYNC = RGP_BARRIER_INTERNAL_BASE + 0,
2458 RGP_BARRIER_INTERNAL_POST_RESET_QUERY_POOL_SYNC = RGP_BARRIER_INTERNAL_BASE + 1,
2459 RGP_BARRIER_INTERNAL_GPU_EVENT_RECYCLE_STALL = RGP_BARRIER_INTERNAL_BASE + 2,
2460 RGP_BARRIER_INTERNAL_PRE_COPY_QUERY_POOL_RESULTS_SYNC = RGP_BARRIER_INTERNAL_BASE + 3
2461 };
2462
2463 void radv_describe_begin_cmd_buffer(struct radv_cmd_buffer *cmd_buffer);
2464 void radv_describe_end_cmd_buffer(struct radv_cmd_buffer *cmd_buffer);
2465 void radv_describe_draw(struct radv_cmd_buffer *cmd_buffer);
2466 void radv_describe_dispatch(struct radv_cmd_buffer *cmd_buffer, int x, int y, int z);
2467 void radv_describe_begin_render_pass_clear(struct radv_cmd_buffer *cmd_buffer,
2468 VkImageAspectFlagBits aspects);
2469 void radv_describe_end_render_pass_clear(struct radv_cmd_buffer *cmd_buffer);
2470 void radv_describe_barrier_start(struct radv_cmd_buffer *cmd_buffer,
2471 enum rgp_barrier_reason reason);
2472 void radv_describe_barrier_end(struct radv_cmd_buffer *cmd_buffer);
2473 void radv_describe_layout_transition(struct radv_cmd_buffer *cmd_buffer,
2474 const struct radv_barrier_data *barrier);
2475
2476 struct radeon_winsys_sem;
2477
2478 uint64_t radv_get_current_time(void);
2479
2480 static inline uint32_t
2481 si_conv_gl_prim_to_vertices(unsigned gl_prim)
2482 {
2483 switch (gl_prim) {
2484 case 0: /* GL_POINTS */
2485 return 1;
2486 case 1: /* GL_LINES */
2487 case 3: /* GL_LINE_STRIP */
2488 return 2;
2489 case 4: /* GL_TRIANGLES */
2490 case 5: /* GL_TRIANGLE_STRIP */
2491 return 3;
2492 case 0xA: /* GL_LINE_STRIP_ADJACENCY_ARB */
2493 return 4;
2494 case 0xc: /* GL_TRIANGLES_ADJACENCY_ARB */
2495 return 6;
2496 case 7: /* GL_QUADS */
2497 return V_028A6C_OUTPRIM_TYPE_TRISTRIP;
2498 default:
2499 assert(0);
2500 return 0;
2501 }
2502 }
2503
2504 void radv_cmd_buffer_begin_render_pass(struct radv_cmd_buffer *cmd_buffer,
2505 const VkRenderPassBeginInfo *pRenderPassBegin);
2506 void radv_cmd_buffer_end_render_pass(struct radv_cmd_buffer *cmd_buffer);
2507
2508 #define RADV_DEFINE_HANDLE_CASTS(__radv_type, __VkType) \
2509 \
2510 static inline struct __radv_type * \
2511 __radv_type ## _from_handle(__VkType _handle) \
2512 { \
2513 return (struct __radv_type *) _handle; \
2514 } \
2515 \
2516 static inline __VkType \
2517 __radv_type ## _to_handle(struct __radv_type *_obj) \
2518 { \
2519 return (__VkType) _obj; \
2520 }
2521
2522 #define RADV_DEFINE_NONDISP_HANDLE_CASTS(__radv_type, __VkType) \
2523 \
2524 static inline struct __radv_type * \
2525 __radv_type ## _from_handle(__VkType _handle) \
2526 { \
2527 return (struct __radv_type *)(uintptr_t) _handle; \
2528 } \
2529 \
2530 static inline __VkType \
2531 __radv_type ## _to_handle(struct __radv_type *_obj) \
2532 { \
2533 return (__VkType)(uintptr_t) _obj; \
2534 }
2535
2536 #define RADV_FROM_HANDLE(__radv_type, __name, __handle) \
2537 struct __radv_type *__name = __radv_type ## _from_handle(__handle)
2538
2539 RADV_DEFINE_HANDLE_CASTS(radv_cmd_buffer, VkCommandBuffer)
2540 RADV_DEFINE_HANDLE_CASTS(radv_device, VkDevice)
2541 RADV_DEFINE_HANDLE_CASTS(radv_instance, VkInstance)
2542 RADV_DEFINE_HANDLE_CASTS(radv_physical_device, VkPhysicalDevice)
2543 RADV_DEFINE_HANDLE_CASTS(radv_queue, VkQueue)
2544
2545 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_cmd_pool, VkCommandPool)
2546 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_buffer, VkBuffer)
2547 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_buffer_view, VkBufferView)
2548 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_pool, VkDescriptorPool)
2549 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_set, VkDescriptorSet)
2550 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_set_layout, VkDescriptorSetLayout)
2551 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_update_template, VkDescriptorUpdateTemplate)
2552 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_device_memory, VkDeviceMemory)
2553 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_fence, VkFence)
2554 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_event, VkEvent)
2555 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_framebuffer, VkFramebuffer)
2556 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_image, VkImage)
2557 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_image_view, VkImageView);
2558 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_pipeline_cache, VkPipelineCache)
2559 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_pipeline, VkPipeline)
2560 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_pipeline_layout, VkPipelineLayout)
2561 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_query_pool, VkQueryPool)
2562 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_render_pass, VkRenderPass)
2563 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_sampler, VkSampler)
2564 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_sampler_ycbcr_conversion, VkSamplerYcbcrConversion)
2565 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_shader_module, VkShaderModule)
2566 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_semaphore, VkSemaphore)
2567
2568 #endif /* RADV_PRIVATE_H */