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