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