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