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