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