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