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