radv: Don't store buffer references in the descriptor set.
[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 "main/macros.h"
52 #include "vk_alloc.h"
53 #include "vk_debug_report.h"
54
55 #include "radv_radeon_winsys.h"
56 #include "ac_binary.h"
57 #include "ac_nir_to_llvm.h"
58 #include "ac_gpu_info.h"
59 #include "ac_surface.h"
60 #include "radv_descriptor_set.h"
61 #include "radv_extensions.h"
62
63 #include <llvm-c/TargetMachine.h>
64
65 /* Pre-declarations needed for WSI entrypoints */
66 struct wl_surface;
67 struct wl_display;
68 typedef struct xcb_connection_t xcb_connection_t;
69 typedef uint32_t xcb_visualid_t;
70 typedef uint32_t xcb_window_t;
71
72 #include <vulkan/vulkan.h>
73 #include <vulkan/vulkan_intel.h>
74 #include <vulkan/vk_icd.h>
75 #include <vulkan/vk_android_native_buffer.h>
76
77 #include "radv_entrypoints.h"
78
79 #include "wsi_common.h"
80
81 #define ATI_VENDOR_ID 0x1002
82
83 #define MAX_VBS 32
84 #define MAX_VERTEX_ATTRIBS 32
85 #define MAX_RTS 8
86 #define MAX_VIEWPORTS 16
87 #define MAX_SCISSORS 16
88 #define MAX_DISCARD_RECTANGLES 4
89 #define MAX_PUSH_CONSTANTS_SIZE 128
90 #define MAX_PUSH_DESCRIPTORS 32
91 #define MAX_DYNAMIC_UNIFORM_BUFFERS 16
92 #define MAX_DYNAMIC_STORAGE_BUFFERS 8
93 #define MAX_DYNAMIC_BUFFERS (MAX_DYNAMIC_UNIFORM_BUFFERS + MAX_DYNAMIC_STORAGE_BUFFERS)
94 #define MAX_SAMPLES_LOG2 4
95 #define NUM_META_FS_KEYS 13
96 #define RADV_MAX_DRM_DEVICES 8
97 #define MAX_VIEWS 8
98
99 #define NUM_DEPTH_CLEAR_PIPELINES 3
100
101 /*
102 * This is the point we switch from using CP to compute shader
103 * for certain buffer operations.
104 */
105 #define RADV_BUFFER_OPS_CS_THRESHOLD 4096
106
107 enum radv_mem_heap {
108 RADV_MEM_HEAP_VRAM,
109 RADV_MEM_HEAP_VRAM_CPU_ACCESS,
110 RADV_MEM_HEAP_GTT,
111 RADV_MEM_HEAP_COUNT
112 };
113
114 enum radv_mem_type {
115 RADV_MEM_TYPE_VRAM,
116 RADV_MEM_TYPE_GTT_WRITE_COMBINE,
117 RADV_MEM_TYPE_VRAM_CPU_ACCESS,
118 RADV_MEM_TYPE_GTT_CACHED,
119 RADV_MEM_TYPE_COUNT
120 };
121
122 #define radv_printflike(a, b) __attribute__((__format__(__printf__, a, b)))
123
124 static inline uint32_t
125 align_u32(uint32_t v, uint32_t a)
126 {
127 assert(a != 0 && a == (a & -a));
128 return (v + a - 1) & ~(a - 1);
129 }
130
131 static inline uint32_t
132 align_u32_npot(uint32_t v, uint32_t a)
133 {
134 return (v + a - 1) / a * a;
135 }
136
137 static inline uint64_t
138 align_u64(uint64_t v, uint64_t a)
139 {
140 assert(a != 0 && a == (a & -a));
141 return (v + a - 1) & ~(a - 1);
142 }
143
144 static inline int32_t
145 align_i32(int32_t v, int32_t a)
146 {
147 assert(a != 0 && a == (a & -a));
148 return (v + a - 1) & ~(a - 1);
149 }
150
151 /** Alignment must be a power of 2. */
152 static inline bool
153 radv_is_aligned(uintmax_t n, uintmax_t a)
154 {
155 assert(a == (a & -a));
156 return (n & (a - 1)) == 0;
157 }
158
159 static inline uint32_t
160 round_up_u32(uint32_t v, uint32_t a)
161 {
162 return (v + a - 1) / a;
163 }
164
165 static inline uint64_t
166 round_up_u64(uint64_t v, uint64_t a)
167 {
168 return (v + a - 1) / a;
169 }
170
171 static inline uint32_t
172 radv_minify(uint32_t n, uint32_t levels)
173 {
174 if (unlikely(n == 0))
175 return 0;
176 else
177 return MAX2(n >> levels, 1);
178 }
179 static inline float
180 radv_clamp_f(float f, float min, float max)
181 {
182 assert(min < max);
183
184 if (f > max)
185 return max;
186 else if (f < min)
187 return min;
188 else
189 return f;
190 }
191
192 static inline bool
193 radv_clear_mask(uint32_t *inout_mask, uint32_t clear_mask)
194 {
195 if (*inout_mask & clear_mask) {
196 *inout_mask &= ~clear_mask;
197 return true;
198 } else {
199 return false;
200 }
201 }
202
203 #define for_each_bit(b, dword) \
204 for (uint32_t __dword = (dword); \
205 (b) = __builtin_ffs(__dword) - 1, __dword; \
206 __dword &= ~(1 << (b)))
207
208 #define typed_memcpy(dest, src, count) ({ \
209 STATIC_ASSERT(sizeof(*src) == sizeof(*dest)); \
210 memcpy((dest), (src), (count) * sizeof(*(src))); \
211 })
212
213 /* Whenever we generate an error, pass it through this function. Useful for
214 * debugging, where we can break on it. Only call at error site, not when
215 * propagating errors. Might be useful to plug in a stack trace here.
216 */
217
218 VkResult __vk_errorf(VkResult error, const char *file, int line, const char *format, ...);
219
220 #ifdef DEBUG
221 #define vk_error(error) __vk_errorf(error, __FILE__, __LINE__, NULL);
222 #define vk_errorf(error, format, ...) __vk_errorf(error, __FILE__, __LINE__, format, ## __VA_ARGS__);
223 #else
224 #define vk_error(error) error
225 #define vk_errorf(error, format, ...) error
226 #endif
227
228 void __radv_finishme(const char *file, int line, const char *format, ...)
229 radv_printflike(3, 4);
230 void radv_loge(const char *format, ...) radv_printflike(1, 2);
231 void radv_loge_v(const char *format, va_list va);
232
233 /**
234 * Print a FINISHME message, including its source location.
235 */
236 #define radv_finishme(format, ...) \
237 do { \
238 static bool reported = false; \
239 if (!reported) { \
240 __radv_finishme(__FILE__, __LINE__, format, ##__VA_ARGS__); \
241 reported = true; \
242 } \
243 } while (0)
244
245 /* A non-fatal assert. Useful for debugging. */
246 #ifdef DEBUG
247 #define radv_assert(x) ({ \
248 if (unlikely(!(x))) \
249 fprintf(stderr, "%s:%d ASSERT: %s\n", __FILE__, __LINE__, #x); \
250 })
251 #else
252 #define radv_assert(x)
253 #endif
254
255 #define stub_return(v) \
256 do { \
257 radv_finishme("stub %s", __func__); \
258 return (v); \
259 } while (0)
260
261 #define stub() \
262 do { \
263 radv_finishme("stub %s", __func__); \
264 return; \
265 } while (0)
266
267 void *radv_lookup_entrypoint_unchecked(const char *name);
268 void *radv_lookup_entrypoint_checked(const char *name,
269 uint32_t core_version,
270 const struct radv_instance_extension_table *instance,
271 const struct radv_device_extension_table *device);
272
273 struct radv_physical_device {
274 VK_LOADER_DATA _loader_data;
275
276 struct radv_instance * instance;
277
278 struct radeon_winsys *ws;
279 struct radeon_info rad_info;
280 char path[20];
281 char name[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
282 uint8_t driver_uuid[VK_UUID_SIZE];
283 uint8_t device_uuid[VK_UUID_SIZE];
284 uint8_t cache_uuid[VK_UUID_SIZE];
285
286 int local_fd;
287 struct wsi_device wsi_device;
288
289 bool has_rbplus; /* if RB+ register exist */
290 bool rbplus_allowed; /* if RB+ is allowed */
291 bool has_clear_state;
292 bool cpdma_prefetch_writes_memory;
293 bool has_scissor_bug;
294
295 bool has_out_of_order_rast;
296 bool out_of_order_rast_allowed;
297
298 /* This is the drivers on-disk cache used as a fallback as opposed to
299 * the pipeline cache defined by apps.
300 */
301 struct disk_cache * disk_cache;
302
303 VkPhysicalDeviceMemoryProperties memory_properties;
304 enum radv_mem_type mem_type_indices[RADV_MEM_TYPE_COUNT];
305
306 struct radv_device_extension_table supported_extensions;
307 };
308
309 struct radv_instance {
310 VK_LOADER_DATA _loader_data;
311
312 VkAllocationCallbacks alloc;
313
314 uint32_t apiVersion;
315 int physicalDeviceCount;
316 struct radv_physical_device physicalDevices[RADV_MAX_DRM_DEVICES];
317
318 uint64_t debug_flags;
319 uint64_t perftest_flags;
320
321 struct vk_debug_report_instance debug_report_callbacks;
322
323 struct radv_instance_extension_table enabled_extensions;
324 };
325
326 VkResult radv_init_wsi(struct radv_physical_device *physical_device);
327 void radv_finish_wsi(struct radv_physical_device *physical_device);
328
329 bool radv_instance_extension_supported(const char *name);
330 uint32_t radv_physical_device_api_version(struct radv_physical_device *dev);
331 bool radv_physical_device_extension_supported(struct radv_physical_device *dev,
332 const char *name);
333
334 struct cache_entry;
335
336 struct radv_pipeline_cache {
337 struct radv_device * device;
338 pthread_mutex_t mutex;
339
340 uint32_t total_size;
341 uint32_t table_size;
342 uint32_t kernel_count;
343 struct cache_entry ** hash_table;
344 bool modified;
345
346 VkAllocationCallbacks alloc;
347 };
348
349 struct radv_pipeline_key {
350 uint32_t instance_rate_inputs;
351 uint32_t instance_rate_divisors[MAX_VERTEX_ATTRIBS];
352 unsigned tess_input_vertices;
353 uint32_t col_format;
354 uint32_t is_int8;
355 uint32_t is_int10;
356 uint8_t log2_ps_iter_samples;
357 uint8_t log2_num_samples;
358 uint32_t multisample : 1;
359 uint32_t has_multiview_view_index : 1;
360 };
361
362 void
363 radv_pipeline_cache_init(struct radv_pipeline_cache *cache,
364 struct radv_device *device);
365 void
366 radv_pipeline_cache_finish(struct radv_pipeline_cache *cache);
367 void
368 radv_pipeline_cache_load(struct radv_pipeline_cache *cache,
369 const void *data, size_t size);
370
371 struct radv_shader_variant;
372
373 bool
374 radv_create_shader_variants_from_pipeline_cache(struct radv_device *device,
375 struct radv_pipeline_cache *cache,
376 const unsigned char *sha1,
377 struct radv_shader_variant **variants);
378
379 void
380 radv_pipeline_cache_insert_shaders(struct radv_device *device,
381 struct radv_pipeline_cache *cache,
382 const unsigned char *sha1,
383 struct radv_shader_variant **variants,
384 const void *const *codes,
385 const unsigned *code_sizes);
386
387 enum radv_blit_ds_layout {
388 RADV_BLIT_DS_LAYOUT_TILE_ENABLE,
389 RADV_BLIT_DS_LAYOUT_TILE_DISABLE,
390 RADV_BLIT_DS_LAYOUT_COUNT,
391 };
392
393 static inline enum radv_blit_ds_layout radv_meta_blit_ds_to_type(VkImageLayout layout)
394 {
395 return (layout == VK_IMAGE_LAYOUT_GENERAL) ? RADV_BLIT_DS_LAYOUT_TILE_DISABLE : RADV_BLIT_DS_LAYOUT_TILE_ENABLE;
396 }
397
398 static inline VkImageLayout radv_meta_blit_ds_to_layout(enum radv_blit_ds_layout ds_layout)
399 {
400 return ds_layout == RADV_BLIT_DS_LAYOUT_TILE_ENABLE ? VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL : VK_IMAGE_LAYOUT_GENERAL;
401 }
402
403 enum radv_meta_dst_layout {
404 RADV_META_DST_LAYOUT_GENERAL,
405 RADV_META_DST_LAYOUT_OPTIMAL,
406 RADV_META_DST_LAYOUT_COUNT,
407 };
408
409 static inline enum radv_meta_dst_layout radv_meta_dst_layout_from_layout(VkImageLayout layout)
410 {
411 return (layout == VK_IMAGE_LAYOUT_GENERAL) ? RADV_META_DST_LAYOUT_GENERAL : RADV_META_DST_LAYOUT_OPTIMAL;
412 }
413
414 static inline VkImageLayout radv_meta_dst_layout_to_layout(enum radv_meta_dst_layout layout)
415 {
416 return layout == RADV_META_DST_LAYOUT_OPTIMAL ? VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL : VK_IMAGE_LAYOUT_GENERAL;
417 }
418
419 struct radv_meta_state {
420 VkAllocationCallbacks alloc;
421
422 struct radv_pipeline_cache cache;
423
424 /**
425 * Use array element `i` for images with `2^i` samples.
426 */
427 struct {
428 VkRenderPass render_pass[NUM_META_FS_KEYS];
429 VkPipeline color_pipelines[NUM_META_FS_KEYS];
430
431 VkRenderPass depthstencil_rp;
432 VkPipeline depth_only_pipeline[NUM_DEPTH_CLEAR_PIPELINES];
433 VkPipeline stencil_only_pipeline[NUM_DEPTH_CLEAR_PIPELINES];
434 VkPipeline depthstencil_pipeline[NUM_DEPTH_CLEAR_PIPELINES];
435 } clear[1 + MAX_SAMPLES_LOG2];
436
437 VkPipelineLayout clear_color_p_layout;
438 VkPipelineLayout clear_depth_p_layout;
439 struct {
440 VkRenderPass render_pass[NUM_META_FS_KEYS][RADV_META_DST_LAYOUT_COUNT];
441
442 /** Pipeline that blits from a 1D image. */
443 VkPipeline pipeline_1d_src[NUM_META_FS_KEYS];
444
445 /** Pipeline that blits from a 2D image. */
446 VkPipeline pipeline_2d_src[NUM_META_FS_KEYS];
447
448 /** Pipeline that blits from a 3D image. */
449 VkPipeline pipeline_3d_src[NUM_META_FS_KEYS];
450
451 VkRenderPass depth_only_rp[RADV_BLIT_DS_LAYOUT_COUNT];
452 VkPipeline depth_only_1d_pipeline;
453 VkPipeline depth_only_2d_pipeline;
454 VkPipeline depth_only_3d_pipeline;
455
456 VkRenderPass stencil_only_rp[RADV_BLIT_DS_LAYOUT_COUNT];
457 VkPipeline stencil_only_1d_pipeline;
458 VkPipeline stencil_only_2d_pipeline;
459 VkPipeline stencil_only_3d_pipeline;
460 VkPipelineLayout pipeline_layout;
461 VkDescriptorSetLayout ds_layout;
462 } blit;
463
464 struct {
465 VkRenderPass render_passes[NUM_META_FS_KEYS][RADV_META_DST_LAYOUT_COUNT];
466
467 VkPipelineLayout p_layouts[3];
468 VkDescriptorSetLayout ds_layouts[3];
469 VkPipeline pipelines[3][NUM_META_FS_KEYS];
470
471 VkRenderPass depth_only_rp[RADV_BLIT_DS_LAYOUT_COUNT];
472 VkPipeline depth_only_pipeline[3];
473
474 VkRenderPass stencil_only_rp[RADV_BLIT_DS_LAYOUT_COUNT];
475 VkPipeline stencil_only_pipeline[3];
476 } blit2d;
477
478 struct {
479 VkPipelineLayout img_p_layout;
480 VkDescriptorSetLayout img_ds_layout;
481 VkPipeline pipeline;
482 VkPipeline pipeline_3d;
483 } itob;
484 struct {
485 VkPipelineLayout img_p_layout;
486 VkDescriptorSetLayout img_ds_layout;
487 VkPipeline pipeline;
488 VkPipeline pipeline_3d;
489 } btoi;
490 struct {
491 VkPipelineLayout img_p_layout;
492 VkDescriptorSetLayout img_ds_layout;
493 VkPipeline pipeline;
494 VkPipeline pipeline_3d;
495 } itoi;
496 struct {
497 VkPipelineLayout img_p_layout;
498 VkDescriptorSetLayout img_ds_layout;
499 VkPipeline pipeline;
500 VkPipeline pipeline_3d;
501 } cleari;
502
503 struct {
504 VkPipelineLayout p_layout;
505 VkPipeline pipeline[NUM_META_FS_KEYS];
506 VkRenderPass pass[NUM_META_FS_KEYS];
507 } resolve;
508
509 struct {
510 VkDescriptorSetLayout ds_layout;
511 VkPipelineLayout p_layout;
512 struct {
513 VkPipeline pipeline;
514 VkPipeline i_pipeline;
515 VkPipeline srgb_pipeline;
516 } rc[MAX_SAMPLES_LOG2];
517 } resolve_compute;
518
519 struct {
520 VkDescriptorSetLayout ds_layout;
521 VkPipelineLayout p_layout;
522
523 struct {
524 VkRenderPass render_pass[NUM_META_FS_KEYS][RADV_META_DST_LAYOUT_COUNT];
525 VkPipeline pipeline[NUM_META_FS_KEYS];
526 } rc[MAX_SAMPLES_LOG2];
527 } resolve_fragment;
528
529 struct {
530 VkPipelineLayout p_layout;
531 VkPipeline decompress_pipeline;
532 VkPipeline resummarize_pipeline;
533 VkRenderPass pass;
534 } depth_decomp[1 + MAX_SAMPLES_LOG2];
535
536 struct {
537 VkPipelineLayout p_layout;
538 VkPipeline cmask_eliminate_pipeline;
539 VkPipeline fmask_decompress_pipeline;
540 VkPipeline dcc_decompress_pipeline;
541 VkRenderPass pass;
542
543 VkDescriptorSetLayout dcc_decompress_compute_ds_layout;
544 VkPipelineLayout dcc_decompress_compute_p_layout;
545 VkPipeline dcc_decompress_compute_pipeline;
546 } fast_clear_flush;
547
548 struct {
549 VkPipelineLayout fill_p_layout;
550 VkPipelineLayout copy_p_layout;
551 VkDescriptorSetLayout fill_ds_layout;
552 VkDescriptorSetLayout copy_ds_layout;
553 VkPipeline fill_pipeline;
554 VkPipeline copy_pipeline;
555 } buffer;
556
557 struct {
558 VkDescriptorSetLayout ds_layout;
559 VkPipelineLayout p_layout;
560 VkPipeline occlusion_query_pipeline;
561 VkPipeline pipeline_statistics_query_pipeline;
562 } query;
563 };
564
565 /* queue types */
566 #define RADV_QUEUE_GENERAL 0
567 #define RADV_QUEUE_COMPUTE 1
568 #define RADV_QUEUE_TRANSFER 2
569
570 #define RADV_MAX_QUEUE_FAMILIES 3
571
572 enum ring_type radv_queue_family_to_ring(int f);
573
574 struct radv_queue {
575 VK_LOADER_DATA _loader_data;
576 struct radv_device * device;
577 struct radeon_winsys_ctx *hw_ctx;
578 enum radeon_ctx_priority priority;
579 uint32_t queue_family_index;
580 int queue_idx;
581 VkDeviceQueueCreateFlags flags;
582
583 uint32_t scratch_size;
584 uint32_t compute_scratch_size;
585 uint32_t esgs_ring_size;
586 uint32_t gsvs_ring_size;
587 bool has_tess_rings;
588 bool has_sample_positions;
589
590 struct radeon_winsys_bo *scratch_bo;
591 struct radeon_winsys_bo *descriptor_bo;
592 struct radeon_winsys_bo *compute_scratch_bo;
593 struct radeon_winsys_bo *esgs_ring_bo;
594 struct radeon_winsys_bo *gsvs_ring_bo;
595 struct radeon_winsys_bo *tess_rings_bo;
596 struct radeon_winsys_cs *initial_preamble_cs;
597 struct radeon_winsys_cs *initial_full_flush_preamble_cs;
598 struct radeon_winsys_cs *continue_preamble_cs;
599 };
600
601 struct radv_bo_list {
602 struct radv_winsys_bo_list list;
603 unsigned capacity;
604 pthread_mutex_t mutex;
605 };
606
607 struct radv_device {
608 VK_LOADER_DATA _loader_data;
609
610 VkAllocationCallbacks alloc;
611
612 struct radv_instance * instance;
613 struct radeon_winsys *ws;
614
615 struct radv_meta_state meta_state;
616
617 struct radv_queue *queues[RADV_MAX_QUEUE_FAMILIES];
618 int queue_count[RADV_MAX_QUEUE_FAMILIES];
619 struct radeon_winsys_cs *empty_cs[RADV_MAX_QUEUE_FAMILIES];
620
621 bool always_use_syncobj;
622 bool llvm_supports_spill;
623 bool has_distributed_tess;
624 bool pbb_allowed;
625 bool dfsm_allowed;
626 uint32_t tess_offchip_block_dw_size;
627 uint32_t scratch_waves;
628 uint32_t dispatch_initiator;
629
630 uint32_t gs_table_depth;
631
632 /* MSAA sample locations.
633 * The first index is the sample index.
634 * The second index is the coordinate: X, Y. */
635 float sample_locations_1x[1][2];
636 float sample_locations_2x[2][2];
637 float sample_locations_4x[4][2];
638 float sample_locations_8x[8][2];
639 float sample_locations_16x[16][2];
640
641 /* CIK and later */
642 uint32_t gfx_init_size_dw;
643 struct radeon_winsys_bo *gfx_init;
644
645 struct radeon_winsys_bo *trace_bo;
646 uint32_t *trace_id_ptr;
647
648 /* Whether to keep shader debug info, for tracing or VK_AMD_shader_info */
649 bool keep_shader_info;
650
651 struct radv_physical_device *physical_device;
652
653 /* Backup in-memory cache to be used if the app doesn't provide one */
654 struct radv_pipeline_cache * mem_cache;
655
656 /*
657 * use different counters so MSAA MRTs get consecutive surface indices,
658 * even if MASK is allocated in between.
659 */
660 uint32_t image_mrt_offset_counter;
661 uint32_t fmask_mrt_offset_counter;
662 struct list_head shader_slabs;
663 mtx_t shader_slab_mutex;
664
665 /* For detecting VM faults reported by dmesg. */
666 uint64_t dmesg_timestamp;
667
668 struct radv_device_extension_table enabled_extensions;
669
670 struct radv_bo_list bo_list;
671 };
672
673 struct radv_device_memory {
674 struct radeon_winsys_bo *bo;
675 /* for dedicated allocations */
676 struct radv_image *image;
677 struct radv_buffer *buffer;
678 uint32_t type_index;
679 VkDeviceSize map_size;
680 void * map;
681 void * user_ptr;
682 };
683
684
685 struct radv_descriptor_range {
686 uint64_t va;
687 uint32_t size;
688 };
689
690 struct radv_descriptor_set {
691 const struct radv_descriptor_set_layout *layout;
692 uint32_t size;
693
694 struct radeon_winsys_bo *bo;
695 uint64_t va;
696 uint32_t *mapped_ptr;
697 struct radv_descriptor_range *dynamic_descriptors;
698 };
699
700 struct radv_push_descriptor_set
701 {
702 struct radv_descriptor_set set;
703 uint32_t capacity;
704 };
705
706 struct radv_descriptor_pool_entry {
707 uint32_t offset;
708 uint32_t size;
709 struct radv_descriptor_set *set;
710 };
711
712 struct radv_descriptor_pool {
713 struct radeon_winsys_bo *bo;
714 uint8_t *mapped_ptr;
715 uint64_t current_offset;
716 uint64_t size;
717
718 uint8_t *host_memory_base;
719 uint8_t *host_memory_ptr;
720 uint8_t *host_memory_end;
721
722 uint32_t entry_count;
723 uint32_t max_entry_count;
724 struct radv_descriptor_pool_entry entries[0];
725 };
726
727 struct radv_descriptor_update_template_entry {
728 VkDescriptorType descriptor_type;
729
730 /* The number of descriptors to update */
731 uint32_t descriptor_count;
732
733 /* Into mapped_ptr or dynamic_descriptors, in units of the respective array */
734 uint32_t dst_offset;
735
736 /* In dwords. Not valid/used for dynamic descriptors */
737 uint32_t dst_stride;
738
739 uint32_t buffer_offset;
740
741 /* Only valid for combined image samplers and samplers */
742 uint16_t has_sampler;
743
744 /* In bytes */
745 size_t src_offset;
746 size_t src_stride;
747
748 /* For push descriptors */
749 const uint32_t *immutable_samplers;
750 };
751
752 struct radv_descriptor_update_template {
753 uint32_t entry_count;
754 VkPipelineBindPoint bind_point;
755 struct radv_descriptor_update_template_entry entry[0];
756 };
757
758 struct radv_buffer {
759 VkDeviceSize size;
760
761 VkBufferUsageFlags usage;
762 VkBufferCreateFlags flags;
763
764 /* Set when bound */
765 struct radeon_winsys_bo * bo;
766 VkDeviceSize offset;
767
768 bool shareable;
769 };
770
771 enum radv_dynamic_state_bits {
772 RADV_DYNAMIC_VIEWPORT = 1 << 0,
773 RADV_DYNAMIC_SCISSOR = 1 << 1,
774 RADV_DYNAMIC_LINE_WIDTH = 1 << 2,
775 RADV_DYNAMIC_DEPTH_BIAS = 1 << 3,
776 RADV_DYNAMIC_BLEND_CONSTANTS = 1 << 4,
777 RADV_DYNAMIC_DEPTH_BOUNDS = 1 << 5,
778 RADV_DYNAMIC_STENCIL_COMPARE_MASK = 1 << 6,
779 RADV_DYNAMIC_STENCIL_WRITE_MASK = 1 << 7,
780 RADV_DYNAMIC_STENCIL_REFERENCE = 1 << 8,
781 RADV_DYNAMIC_DISCARD_RECTANGLE = 1 << 9,
782 RADV_DYNAMIC_ALL = (1 << 10) - 1,
783 };
784
785 enum radv_cmd_dirty_bits {
786 /* Keep the dynamic state dirty bits in sync with
787 * enum radv_dynamic_state_bits */
788 RADV_CMD_DIRTY_DYNAMIC_VIEWPORT = 1 << 0,
789 RADV_CMD_DIRTY_DYNAMIC_SCISSOR = 1 << 1,
790 RADV_CMD_DIRTY_DYNAMIC_LINE_WIDTH = 1 << 2,
791 RADV_CMD_DIRTY_DYNAMIC_DEPTH_BIAS = 1 << 3,
792 RADV_CMD_DIRTY_DYNAMIC_BLEND_CONSTANTS = 1 << 4,
793 RADV_CMD_DIRTY_DYNAMIC_DEPTH_BOUNDS = 1 << 5,
794 RADV_CMD_DIRTY_DYNAMIC_STENCIL_COMPARE_MASK = 1 << 6,
795 RADV_CMD_DIRTY_DYNAMIC_STENCIL_WRITE_MASK = 1 << 7,
796 RADV_CMD_DIRTY_DYNAMIC_STENCIL_REFERENCE = 1 << 8,
797 RADV_CMD_DIRTY_DYNAMIC_DISCARD_RECTANGLE = 1 << 9,
798 RADV_CMD_DIRTY_DYNAMIC_ALL = (1 << 10) - 1,
799 RADV_CMD_DIRTY_PIPELINE = 1 << 10,
800 RADV_CMD_DIRTY_INDEX_BUFFER = 1 << 11,
801 RADV_CMD_DIRTY_FRAMEBUFFER = 1 << 12,
802 RADV_CMD_DIRTY_VERTEX_BUFFER = 1 << 13,
803 };
804
805 enum radv_cmd_flush_bits {
806 RADV_CMD_FLAG_INV_ICACHE = 1 << 0,
807 /* SMEM L1, other names: KCACHE, constant cache, DCACHE, data cache */
808 RADV_CMD_FLAG_INV_SMEM_L1 = 1 << 1,
809 /* VMEM L1 can optionally be bypassed (GLC=1). Other names: TC L1 */
810 RADV_CMD_FLAG_INV_VMEM_L1 = 1 << 2,
811 /* Used by everything except CB/DB, can be bypassed (SLC=1). Other names: TC L2 */
812 RADV_CMD_FLAG_INV_GLOBAL_L2 = 1 << 3,
813 /* Same as above, but only writes back and doesn't invalidate */
814 RADV_CMD_FLAG_WRITEBACK_GLOBAL_L2 = 1 << 4,
815 /* Framebuffer caches */
816 RADV_CMD_FLAG_FLUSH_AND_INV_CB_META = 1 << 5,
817 RADV_CMD_FLAG_FLUSH_AND_INV_DB_META = 1 << 6,
818 RADV_CMD_FLAG_FLUSH_AND_INV_DB = 1 << 7,
819 RADV_CMD_FLAG_FLUSH_AND_INV_CB = 1 << 8,
820 /* Engine synchronization. */
821 RADV_CMD_FLAG_VS_PARTIAL_FLUSH = 1 << 9,
822 RADV_CMD_FLAG_PS_PARTIAL_FLUSH = 1 << 10,
823 RADV_CMD_FLAG_CS_PARTIAL_FLUSH = 1 << 11,
824 RADV_CMD_FLAG_VGT_FLUSH = 1 << 12,
825
826 RADV_CMD_FLUSH_AND_INV_FRAMEBUFFER = (RADV_CMD_FLAG_FLUSH_AND_INV_CB |
827 RADV_CMD_FLAG_FLUSH_AND_INV_CB_META |
828 RADV_CMD_FLAG_FLUSH_AND_INV_DB |
829 RADV_CMD_FLAG_FLUSH_AND_INV_DB_META)
830 };
831
832 struct radv_vertex_binding {
833 struct radv_buffer * buffer;
834 VkDeviceSize offset;
835 };
836
837 struct radv_viewport_state {
838 uint32_t count;
839 VkViewport viewports[MAX_VIEWPORTS];
840 };
841
842 struct radv_scissor_state {
843 uint32_t count;
844 VkRect2D scissors[MAX_SCISSORS];
845 };
846
847 struct radv_discard_rectangle_state {
848 uint32_t count;
849 VkRect2D rectangles[MAX_DISCARD_RECTANGLES];
850 };
851
852 struct radv_dynamic_state {
853 /**
854 * Bitmask of (1 << VK_DYNAMIC_STATE_*).
855 * Defines the set of saved dynamic state.
856 */
857 uint32_t mask;
858
859 struct radv_viewport_state viewport;
860
861 struct radv_scissor_state scissor;
862
863 float line_width;
864
865 struct {
866 float bias;
867 float clamp;
868 float slope;
869 } depth_bias;
870
871 float blend_constants[4];
872
873 struct {
874 float min;
875 float max;
876 } depth_bounds;
877
878 struct {
879 uint32_t front;
880 uint32_t back;
881 } stencil_compare_mask;
882
883 struct {
884 uint32_t front;
885 uint32_t back;
886 } stencil_write_mask;
887
888 struct {
889 uint32_t front;
890 uint32_t back;
891 } stencil_reference;
892
893 struct radv_discard_rectangle_state discard_rectangle;
894 };
895
896 extern const struct radv_dynamic_state default_dynamic_state;
897
898 const char *
899 radv_get_debug_option_name(int id);
900
901 const char *
902 radv_get_perftest_option_name(int id);
903
904 /**
905 * Attachment state when recording a renderpass instance.
906 *
907 * The clear value is valid only if there exists a pending clear.
908 */
909 struct radv_attachment_state {
910 VkImageAspectFlags pending_clear_aspects;
911 uint32_t cleared_views;
912 VkClearValue clear_value;
913 VkImageLayout current_layout;
914 };
915
916 struct radv_descriptor_state {
917 struct radv_descriptor_set *sets[MAX_SETS];
918 uint32_t dirty;
919 uint32_t valid;
920 struct radv_push_descriptor_set push_set;
921 bool push_dirty;
922 };
923
924 struct radv_cmd_state {
925 /* Vertex descriptors */
926 uint64_t vb_va;
927 unsigned vb_size;
928
929 bool predicating;
930 uint32_t dirty;
931
932 uint32_t prefetch_L2_mask;
933
934 struct radv_pipeline * pipeline;
935 struct radv_pipeline * emitted_pipeline;
936 struct radv_pipeline * compute_pipeline;
937 struct radv_pipeline * emitted_compute_pipeline;
938 struct radv_framebuffer * framebuffer;
939 struct radv_render_pass * pass;
940 const struct radv_subpass * subpass;
941 struct radv_dynamic_state dynamic;
942 struct radv_attachment_state * attachments;
943 VkRect2D render_area;
944
945 /* Index buffer */
946 struct radv_buffer *index_buffer;
947 uint64_t index_offset;
948 uint32_t index_type;
949 uint32_t max_index_count;
950 uint64_t index_va;
951 int32_t last_index_type;
952
953 int32_t last_primitive_reset_en;
954 uint32_t last_primitive_reset_index;
955 enum radv_cmd_flush_bits flush_bits;
956 unsigned active_occlusion_queries;
957 bool perfect_occlusion_queries_enabled;
958 float offset_scale;
959 uint32_t trace_id;
960 uint32_t last_ia_multi_vgt_param;
961
962 uint32_t last_num_instances;
963 uint32_t last_first_instance;
964 uint32_t last_vertex_offset;
965 };
966
967 struct radv_cmd_pool {
968 VkAllocationCallbacks alloc;
969 struct list_head cmd_buffers;
970 struct list_head free_cmd_buffers;
971 uint32_t queue_family_index;
972 };
973
974 struct radv_cmd_buffer_upload {
975 uint8_t *map;
976 unsigned offset;
977 uint64_t size;
978 struct radeon_winsys_bo *upload_bo;
979 struct list_head list;
980 };
981
982 enum radv_cmd_buffer_status {
983 RADV_CMD_BUFFER_STATUS_INVALID,
984 RADV_CMD_BUFFER_STATUS_INITIAL,
985 RADV_CMD_BUFFER_STATUS_RECORDING,
986 RADV_CMD_BUFFER_STATUS_EXECUTABLE,
987 RADV_CMD_BUFFER_STATUS_PENDING,
988 };
989
990 struct radv_cmd_buffer {
991 VK_LOADER_DATA _loader_data;
992
993 struct radv_device * device;
994
995 struct radv_cmd_pool * pool;
996 struct list_head pool_link;
997
998 VkCommandBufferUsageFlags usage_flags;
999 VkCommandBufferLevel level;
1000 enum radv_cmd_buffer_status status;
1001 struct radeon_winsys_cs *cs;
1002 struct radv_cmd_state state;
1003 struct radv_vertex_binding vertex_bindings[MAX_VBS];
1004 uint32_t queue_family_index;
1005
1006 uint8_t push_constants[MAX_PUSH_CONSTANTS_SIZE];
1007 uint32_t dynamic_buffers[4 * MAX_DYNAMIC_BUFFERS];
1008 VkShaderStageFlags push_constant_stages;
1009 struct radv_descriptor_set meta_push_descriptors;
1010
1011 struct radv_descriptor_state descriptors[VK_PIPELINE_BIND_POINT_RANGE_SIZE];
1012
1013 struct radv_cmd_buffer_upload upload;
1014
1015 uint32_t scratch_size_needed;
1016 uint32_t compute_scratch_size_needed;
1017 uint32_t esgs_ring_size_needed;
1018 uint32_t gsvs_ring_size_needed;
1019 bool tess_rings_needed;
1020 bool sample_positions_needed;
1021
1022 VkResult record_result;
1023
1024 int ring_offsets_idx; /* just used for verification */
1025 uint32_t gfx9_fence_offset;
1026 struct radeon_winsys_bo *gfx9_fence_bo;
1027 uint32_t gfx9_fence_idx;
1028
1029 /**
1030 * Whether a query pool has been resetted and we have to flush caches.
1031 */
1032 bool pending_reset_query;
1033 };
1034
1035 struct radv_image;
1036
1037 bool radv_cmd_buffer_uses_mec(struct radv_cmd_buffer *cmd_buffer);
1038
1039 void si_init_compute(struct radv_cmd_buffer *cmd_buffer);
1040 void si_init_config(struct radv_cmd_buffer *cmd_buffer);
1041
1042 void cik_create_gfx_config(struct radv_device *device);
1043
1044 void si_write_viewport(struct radeon_winsys_cs *cs, int first_vp,
1045 int count, const VkViewport *viewports);
1046 void si_write_scissors(struct radeon_winsys_cs *cs, int first,
1047 int count, const VkRect2D *scissors,
1048 const VkViewport *viewports, bool can_use_guardband);
1049 uint32_t si_get_ia_multi_vgt_param(struct radv_cmd_buffer *cmd_buffer,
1050 bool instanced_draw, bool indirect_draw,
1051 uint32_t draw_vertex_count);
1052 void si_cs_emit_write_event_eop(struct radeon_winsys_cs *cs,
1053 bool predicated,
1054 enum chip_class chip_class,
1055 bool is_mec,
1056 unsigned event, unsigned event_flags,
1057 unsigned data_sel,
1058 uint64_t va,
1059 uint32_t old_fence,
1060 uint32_t new_fence);
1061
1062 void si_emit_wait_fence(struct radeon_winsys_cs *cs,
1063 bool predicated,
1064 uint64_t va, uint32_t ref,
1065 uint32_t mask);
1066 void si_cs_emit_cache_flush(struct radeon_winsys_cs *cs,
1067 enum chip_class chip_class,
1068 uint32_t *fence_ptr, uint64_t va,
1069 bool is_mec,
1070 enum radv_cmd_flush_bits flush_bits);
1071 void si_emit_cache_flush(struct radv_cmd_buffer *cmd_buffer);
1072 void si_emit_set_predication_state(struct radv_cmd_buffer *cmd_buffer, uint64_t va);
1073 void si_cp_dma_buffer_copy(struct radv_cmd_buffer *cmd_buffer,
1074 uint64_t src_va, uint64_t dest_va,
1075 uint64_t size);
1076 void si_cp_dma_prefetch(struct radv_cmd_buffer *cmd_buffer, uint64_t va,
1077 unsigned size);
1078 void si_cp_dma_clear_buffer(struct radv_cmd_buffer *cmd_buffer, uint64_t va,
1079 uint64_t size, unsigned value);
1080 void radv_set_db_count_control(struct radv_cmd_buffer *cmd_buffer);
1081 bool
1082 radv_cmd_buffer_upload_alloc(struct radv_cmd_buffer *cmd_buffer,
1083 unsigned size,
1084 unsigned alignment,
1085 unsigned *out_offset,
1086 void **ptr);
1087 void
1088 radv_cmd_buffer_set_subpass(struct radv_cmd_buffer *cmd_buffer,
1089 const struct radv_subpass *subpass,
1090 bool transitions);
1091 bool
1092 radv_cmd_buffer_upload_data(struct radv_cmd_buffer *cmd_buffer,
1093 unsigned size, unsigned alignmnet,
1094 const void *data, unsigned *out_offset);
1095
1096 void radv_cmd_buffer_clear_subpass(struct radv_cmd_buffer *cmd_buffer);
1097 void radv_cmd_buffer_resolve_subpass(struct radv_cmd_buffer *cmd_buffer);
1098 void radv_cmd_buffer_resolve_subpass_cs(struct radv_cmd_buffer *cmd_buffer);
1099 void radv_cmd_buffer_resolve_subpass_fs(struct radv_cmd_buffer *cmd_buffer);
1100 void radv_cayman_emit_msaa_sample_locs(struct radeon_winsys_cs *cs, int nr_samples);
1101 unsigned radv_cayman_get_maxdist(int log_samples);
1102 void radv_device_init_msaa(struct radv_device *device);
1103 void radv_set_depth_clear_regs(struct radv_cmd_buffer *cmd_buffer,
1104 struct radv_image *image,
1105 VkClearDepthStencilValue ds_clear_value,
1106 VkImageAspectFlags aspects);
1107 void radv_set_color_clear_regs(struct radv_cmd_buffer *cmd_buffer,
1108 struct radv_image *image,
1109 int idx,
1110 uint32_t color_values[2]);
1111 void radv_set_dcc_need_cmask_elim_pred(struct radv_cmd_buffer *cmd_buffer,
1112 struct radv_image *image,
1113 bool value);
1114 uint32_t radv_fill_buffer(struct radv_cmd_buffer *cmd_buffer,
1115 struct radeon_winsys_bo *bo,
1116 uint64_t offset, uint64_t size, uint32_t value);
1117 void radv_cmd_buffer_trace_emit(struct radv_cmd_buffer *cmd_buffer);
1118 bool radv_get_memory_fd(struct radv_device *device,
1119 struct radv_device_memory *memory,
1120 int *pFD);
1121
1122 static inline struct radv_descriptor_state *
1123 radv_get_descriptors_state(struct radv_cmd_buffer *cmd_buffer,
1124 VkPipelineBindPoint bind_point)
1125 {
1126 assert(bind_point == VK_PIPELINE_BIND_POINT_GRAPHICS ||
1127 bind_point == VK_PIPELINE_BIND_POINT_COMPUTE);
1128 return &cmd_buffer->descriptors[bind_point];
1129 }
1130
1131 /*
1132 * Takes x,y,z as exact numbers of invocations, instead of blocks.
1133 *
1134 * Limitations: Can't call normal dispatch functions without binding or rebinding
1135 * the compute pipeline.
1136 */
1137 void radv_unaligned_dispatch(
1138 struct radv_cmd_buffer *cmd_buffer,
1139 uint32_t x,
1140 uint32_t y,
1141 uint32_t z);
1142
1143 struct radv_event {
1144 struct radeon_winsys_bo *bo;
1145 uint64_t *map;
1146 };
1147
1148 struct radv_shader_module;
1149
1150 #define RADV_HASH_SHADER_IS_GEOM_COPY_SHADER (1 << 0)
1151 #define RADV_HASH_SHADER_SISCHED (1 << 1)
1152 #define RADV_HASH_SHADER_UNSAFE_MATH (1 << 2)
1153 void
1154 radv_hash_shaders(unsigned char *hash,
1155 const VkPipelineShaderStageCreateInfo **stages,
1156 const struct radv_pipeline_layout *layout,
1157 const struct radv_pipeline_key *key,
1158 uint32_t flags);
1159
1160 static inline gl_shader_stage
1161 vk_to_mesa_shader_stage(VkShaderStageFlagBits vk_stage)
1162 {
1163 assert(__builtin_popcount(vk_stage) == 1);
1164 return ffs(vk_stage) - 1;
1165 }
1166
1167 static inline VkShaderStageFlagBits
1168 mesa_to_vk_shader_stage(gl_shader_stage mesa_stage)
1169 {
1170 return (1 << mesa_stage);
1171 }
1172
1173 #define RADV_STAGE_MASK ((1 << MESA_SHADER_STAGES) - 1)
1174
1175 #define radv_foreach_stage(stage, stage_bits) \
1176 for (gl_shader_stage stage, \
1177 __tmp = (gl_shader_stage)((stage_bits) & RADV_STAGE_MASK); \
1178 stage = __builtin_ffs(__tmp) - 1, __tmp; \
1179 __tmp &= ~(1 << (stage)))
1180
1181 unsigned radv_format_meta_fs_key(VkFormat format);
1182
1183 struct radv_multisample_state {
1184 uint32_t db_eqaa;
1185 uint32_t pa_sc_line_cntl;
1186 uint32_t pa_sc_mode_cntl_0;
1187 uint32_t pa_sc_mode_cntl_1;
1188 uint32_t pa_sc_aa_config;
1189 uint32_t pa_sc_aa_mask[2];
1190 unsigned num_samples;
1191 };
1192
1193 struct radv_prim_vertex_count {
1194 uint8_t min;
1195 uint8_t incr;
1196 };
1197
1198 struct radv_vertex_elements_info {
1199 uint32_t rsrc_word3[MAX_VERTEX_ATTRIBS];
1200 uint32_t format_size[MAX_VERTEX_ATTRIBS];
1201 uint32_t binding[MAX_VERTEX_ATTRIBS];
1202 uint32_t offset[MAX_VERTEX_ATTRIBS];
1203 uint32_t count;
1204 };
1205
1206 struct radv_ia_multi_vgt_param_helpers {
1207 uint32_t base;
1208 bool partial_es_wave;
1209 uint8_t primgroup_size;
1210 bool wd_switch_on_eop;
1211 bool ia_switch_on_eoi;
1212 bool partial_vs_wave;
1213 };
1214
1215 #define SI_GS_PER_ES 128
1216
1217 struct radv_pipeline {
1218 struct radv_device * device;
1219 struct radv_dynamic_state dynamic_state;
1220
1221 struct radv_pipeline_layout * layout;
1222
1223 bool need_indirect_descriptor_sets;
1224 struct radv_shader_variant * shaders[MESA_SHADER_STAGES];
1225 struct radv_shader_variant *gs_copy_shader;
1226 VkShaderStageFlags active_stages;
1227
1228 struct radeon_winsys_cs cs;
1229
1230 struct radv_vertex_elements_info vertex_elements;
1231
1232 uint32_t binding_stride[MAX_VBS];
1233
1234 uint32_t user_data_0[MESA_SHADER_STAGES];
1235 union {
1236 struct {
1237 struct radv_multisample_state ms;
1238 uint32_t spi_baryc_cntl;
1239 bool prim_restart_enable;
1240 unsigned esgs_ring_size;
1241 unsigned gsvs_ring_size;
1242 uint32_t vtx_base_sgpr;
1243 struct radv_ia_multi_vgt_param_helpers ia_multi_vgt_param;
1244 uint8_t vtx_emit_num;
1245 struct radv_prim_vertex_count prim_vertex_count;
1246 bool can_use_guardband;
1247 uint32_t needed_dynamic_state;
1248 bool disable_out_of_order_rast_for_occlusion;
1249
1250 /* Used for rbplus */
1251 uint32_t col_format;
1252 uint32_t cb_target_mask;
1253 } graphics;
1254 };
1255
1256 unsigned max_waves;
1257 unsigned scratch_bytes_per_wave;
1258 };
1259
1260 static inline bool radv_pipeline_has_gs(const struct radv_pipeline *pipeline)
1261 {
1262 return pipeline->shaders[MESA_SHADER_GEOMETRY] ? true : false;
1263 }
1264
1265 static inline bool radv_pipeline_has_tess(const struct radv_pipeline *pipeline)
1266 {
1267 return pipeline->shaders[MESA_SHADER_TESS_CTRL] ? true : false;
1268 }
1269
1270 struct radv_userdata_info *radv_lookup_user_sgpr(struct radv_pipeline *pipeline,
1271 gl_shader_stage stage,
1272 int idx);
1273
1274 struct radv_shader_variant *radv_get_vertex_shader(struct radv_pipeline *pipeline);
1275
1276 struct radv_graphics_pipeline_create_info {
1277 bool use_rectlist;
1278 bool db_depth_clear;
1279 bool db_stencil_clear;
1280 bool db_depth_disable_expclear;
1281 bool db_stencil_disable_expclear;
1282 bool db_flush_depth_inplace;
1283 bool db_flush_stencil_inplace;
1284 bool db_resummarize;
1285 uint32_t custom_blend_mode;
1286 };
1287
1288 VkResult
1289 radv_graphics_pipeline_create(VkDevice device,
1290 VkPipelineCache cache,
1291 const VkGraphicsPipelineCreateInfo *pCreateInfo,
1292 const struct radv_graphics_pipeline_create_info *extra,
1293 const VkAllocationCallbacks *alloc,
1294 VkPipeline *pPipeline);
1295
1296 struct vk_format_description;
1297 uint32_t radv_translate_buffer_dataformat(const struct vk_format_description *desc,
1298 int first_non_void);
1299 uint32_t radv_translate_buffer_numformat(const struct vk_format_description *desc,
1300 int first_non_void);
1301 uint32_t radv_translate_colorformat(VkFormat format);
1302 uint32_t radv_translate_color_numformat(VkFormat format,
1303 const struct vk_format_description *desc,
1304 int first_non_void);
1305 uint32_t radv_colorformat_endian_swap(uint32_t colorformat);
1306 unsigned radv_translate_colorswap(VkFormat format, bool do_endian_swap);
1307 uint32_t radv_translate_dbformat(VkFormat format);
1308 uint32_t radv_translate_tex_dataformat(VkFormat format,
1309 const struct vk_format_description *desc,
1310 int first_non_void);
1311 uint32_t radv_translate_tex_numformat(VkFormat format,
1312 const struct vk_format_description *desc,
1313 int first_non_void);
1314 bool radv_format_pack_clear_color(VkFormat format,
1315 uint32_t clear_vals[2],
1316 VkClearColorValue *value);
1317 bool radv_is_colorbuffer_format_supported(VkFormat format, bool *blendable);
1318 bool radv_dcc_formats_compatible(VkFormat format1,
1319 VkFormat format2);
1320
1321 struct radv_fmask_info {
1322 uint64_t offset;
1323 uint64_t size;
1324 unsigned alignment;
1325 unsigned pitch_in_pixels;
1326 unsigned bank_height;
1327 unsigned slice_tile_max;
1328 unsigned tile_mode_index;
1329 unsigned tile_swizzle;
1330 };
1331
1332 struct radv_cmask_info {
1333 uint64_t offset;
1334 uint64_t size;
1335 unsigned alignment;
1336 unsigned slice_tile_max;
1337 };
1338
1339 struct radv_image {
1340 VkImageType type;
1341 /* The original VkFormat provided by the client. This may not match any
1342 * of the actual surface formats.
1343 */
1344 VkFormat vk_format;
1345 VkImageAspectFlags aspects;
1346 VkImageUsageFlags usage; /**< Superset of VkImageCreateInfo::usage. */
1347 struct ac_surf_info info;
1348 VkImageTiling tiling; /** VkImageCreateInfo::tiling */
1349 VkImageCreateFlags flags; /** VkImageCreateInfo::flags */
1350
1351 VkDeviceSize size;
1352 uint32_t alignment;
1353
1354 unsigned queue_family_mask;
1355 bool exclusive;
1356 bool shareable;
1357
1358 /* Set when bound */
1359 struct radeon_winsys_bo *bo;
1360 VkDeviceSize offset;
1361 uint64_t dcc_offset;
1362 uint64_t htile_offset;
1363 bool tc_compatible_htile;
1364 struct radeon_surf surface;
1365
1366 struct radv_fmask_info fmask;
1367 struct radv_cmask_info cmask;
1368 uint64_t clear_value_offset;
1369 uint64_t dcc_pred_offset;
1370
1371 /* For VK_ANDROID_native_buffer, the WSI image owns the memory, */
1372 VkDeviceMemory owned_memory;
1373 };
1374
1375 /* Whether the image has a htile that is known consistent with the contents of
1376 * the image. */
1377 bool radv_layout_has_htile(const struct radv_image *image,
1378 VkImageLayout layout,
1379 unsigned queue_mask);
1380
1381 /* Whether the image has a htile that is known consistent with the contents of
1382 * the image and is allowed to be in compressed form.
1383 *
1384 * If this is false reads that don't use the htile should be able to return
1385 * correct results.
1386 */
1387 bool radv_layout_is_htile_compressed(const struct radv_image *image,
1388 VkImageLayout layout,
1389 unsigned queue_mask);
1390
1391 bool radv_layout_can_fast_clear(const struct radv_image *image,
1392 VkImageLayout layout,
1393 unsigned queue_mask);
1394
1395 bool radv_layout_dcc_compressed(const struct radv_image *image,
1396 VkImageLayout layout,
1397 unsigned queue_mask);
1398
1399 /**
1400 * Return whether the image has CMASK metadata for color surfaces.
1401 */
1402 static inline bool
1403 radv_image_has_cmask(const struct radv_image *image)
1404 {
1405 return image->cmask.size;
1406 }
1407
1408 /**
1409 * Return whether the image has FMASK metadata for color surfaces.
1410 */
1411 static inline bool
1412 radv_image_has_fmask(const struct radv_image *image)
1413 {
1414 return image->fmask.size;
1415 }
1416
1417 /**
1418 * Return whether the image has DCC metadata for color surfaces.
1419 */
1420 static inline bool
1421 radv_image_has_dcc(const struct radv_image *image)
1422 {
1423 return image->surface.dcc_size;
1424 }
1425
1426 /**
1427 * Return whether DCC metadata is enabled for a level.
1428 */
1429 static inline bool
1430 radv_dcc_enabled(const struct radv_image *image, unsigned level)
1431 {
1432 return radv_image_has_dcc(image) &&
1433 level < image->surface.num_dcc_levels;
1434 }
1435
1436 /**
1437 * Return whether the image has HTILE metadata for depth surfaces.
1438 */
1439 static inline bool
1440 radv_image_has_htile(const struct radv_image *image)
1441 {
1442 return image->surface.htile_size;
1443 }
1444
1445 /**
1446 * Return whether HTILE metadata is enabled for a level.
1447 */
1448 static inline bool
1449 radv_htile_enabled(const struct radv_image *image, unsigned level)
1450 {
1451 return radv_image_has_htile(image) && level == 0;
1452 }
1453
1454 /**
1455 * Return whether the image is TC-compatible HTILE.
1456 */
1457 static inline bool
1458 radv_image_is_tc_compat_htile(const struct radv_image *image)
1459 {
1460 return radv_image_has_htile(image) && image->tc_compatible_htile;
1461 }
1462
1463 unsigned radv_image_queue_family_mask(const struct radv_image *image, uint32_t family, uint32_t queue_family);
1464
1465 static inline uint32_t
1466 radv_get_layerCount(const struct radv_image *image,
1467 const VkImageSubresourceRange *range)
1468 {
1469 return range->layerCount == VK_REMAINING_ARRAY_LAYERS ?
1470 image->info.array_size - range->baseArrayLayer : range->layerCount;
1471 }
1472
1473 static inline uint32_t
1474 radv_get_levelCount(const struct radv_image *image,
1475 const VkImageSubresourceRange *range)
1476 {
1477 return range->levelCount == VK_REMAINING_MIP_LEVELS ?
1478 image->info.levels - range->baseMipLevel : range->levelCount;
1479 }
1480
1481 struct radeon_bo_metadata;
1482 void
1483 radv_init_metadata(struct radv_device *device,
1484 struct radv_image *image,
1485 struct radeon_bo_metadata *metadata);
1486
1487 struct radv_image_view {
1488 struct radv_image *image; /**< VkImageViewCreateInfo::image */
1489 struct radeon_winsys_bo *bo;
1490
1491 VkImageViewType type;
1492 VkImageAspectFlags aspect_mask;
1493 VkFormat vk_format;
1494 uint32_t base_layer;
1495 uint32_t layer_count;
1496 uint32_t base_mip;
1497 uint32_t level_count;
1498 VkExtent3D extent; /**< Extent of VkImageViewCreateInfo::baseMipLevel. */
1499
1500 uint32_t descriptor[16];
1501
1502 /* Descriptor for use as a storage image as opposed to a sampled image.
1503 * This has a few differences for cube maps (e.g. type).
1504 */
1505 uint32_t storage_descriptor[16];
1506 };
1507
1508 struct radv_image_create_info {
1509 const VkImageCreateInfo *vk_info;
1510 bool scanout;
1511 bool no_metadata_planes;
1512 };
1513
1514 VkResult radv_image_create(VkDevice _device,
1515 const struct radv_image_create_info *info,
1516 const VkAllocationCallbacks* alloc,
1517 VkImage *pImage);
1518
1519 VkResult
1520 radv_image_from_gralloc(VkDevice device_h,
1521 const VkImageCreateInfo *base_info,
1522 const VkNativeBufferANDROID *gralloc_info,
1523 const VkAllocationCallbacks *alloc,
1524 VkImage *out_image_h);
1525
1526 void radv_image_view_init(struct radv_image_view *view,
1527 struct radv_device *device,
1528 const VkImageViewCreateInfo* pCreateInfo);
1529
1530 struct radv_buffer_view {
1531 struct radeon_winsys_bo *bo;
1532 VkFormat vk_format;
1533 uint64_t range; /**< VkBufferViewCreateInfo::range */
1534 uint32_t state[4];
1535 };
1536 void radv_buffer_view_init(struct radv_buffer_view *view,
1537 struct radv_device *device,
1538 const VkBufferViewCreateInfo* pCreateInfo);
1539
1540 static inline struct VkExtent3D
1541 radv_sanitize_image_extent(const VkImageType imageType,
1542 const struct VkExtent3D imageExtent)
1543 {
1544 switch (imageType) {
1545 case VK_IMAGE_TYPE_1D:
1546 return (VkExtent3D) { imageExtent.width, 1, 1 };
1547 case VK_IMAGE_TYPE_2D:
1548 return (VkExtent3D) { imageExtent.width, imageExtent.height, 1 };
1549 case VK_IMAGE_TYPE_3D:
1550 return imageExtent;
1551 default:
1552 unreachable("invalid image type");
1553 }
1554 }
1555
1556 static inline struct VkOffset3D
1557 radv_sanitize_image_offset(const VkImageType imageType,
1558 const struct VkOffset3D imageOffset)
1559 {
1560 switch (imageType) {
1561 case VK_IMAGE_TYPE_1D:
1562 return (VkOffset3D) { imageOffset.x, 0, 0 };
1563 case VK_IMAGE_TYPE_2D:
1564 return (VkOffset3D) { imageOffset.x, imageOffset.y, 0 };
1565 case VK_IMAGE_TYPE_3D:
1566 return imageOffset;
1567 default:
1568 unreachable("invalid image type");
1569 }
1570 }
1571
1572 static inline bool
1573 radv_image_extent_compare(const struct radv_image *image,
1574 const VkExtent3D *extent)
1575 {
1576 if (extent->width != image->info.width ||
1577 extent->height != image->info.height ||
1578 extent->depth != image->info.depth)
1579 return false;
1580 return true;
1581 }
1582
1583 struct radv_sampler {
1584 uint32_t state[4];
1585 };
1586
1587 struct radv_color_buffer_info {
1588 uint64_t cb_color_base;
1589 uint64_t cb_color_cmask;
1590 uint64_t cb_color_fmask;
1591 uint64_t cb_dcc_base;
1592 uint32_t cb_color_pitch;
1593 uint32_t cb_color_slice;
1594 uint32_t cb_color_view;
1595 uint32_t cb_color_info;
1596 uint32_t cb_color_attrib;
1597 uint32_t cb_color_attrib2;
1598 uint32_t cb_dcc_control;
1599 uint32_t cb_color_cmask_slice;
1600 uint32_t cb_color_fmask_slice;
1601 };
1602
1603 struct radv_ds_buffer_info {
1604 uint64_t db_z_read_base;
1605 uint64_t db_stencil_read_base;
1606 uint64_t db_z_write_base;
1607 uint64_t db_stencil_write_base;
1608 uint64_t db_htile_data_base;
1609 uint32_t db_depth_info;
1610 uint32_t db_z_info;
1611 uint32_t db_stencil_info;
1612 uint32_t db_depth_view;
1613 uint32_t db_depth_size;
1614 uint32_t db_depth_slice;
1615 uint32_t db_htile_surface;
1616 uint32_t pa_su_poly_offset_db_fmt_cntl;
1617 uint32_t db_z_info2;
1618 uint32_t db_stencil_info2;
1619 float offset_scale;
1620 };
1621
1622 struct radv_attachment_info {
1623 union {
1624 struct radv_color_buffer_info cb;
1625 struct radv_ds_buffer_info ds;
1626 };
1627 struct radv_image_view *attachment;
1628 };
1629
1630 struct radv_framebuffer {
1631 uint32_t width;
1632 uint32_t height;
1633 uint32_t layers;
1634
1635 uint32_t attachment_count;
1636 struct radv_attachment_info attachments[0];
1637 };
1638
1639 struct radv_subpass_barrier {
1640 VkPipelineStageFlags src_stage_mask;
1641 VkAccessFlags src_access_mask;
1642 VkAccessFlags dst_access_mask;
1643 };
1644
1645 struct radv_subpass {
1646 uint32_t input_count;
1647 uint32_t color_count;
1648 VkAttachmentReference * input_attachments;
1649 VkAttachmentReference * color_attachments;
1650 VkAttachmentReference * resolve_attachments;
1651 VkAttachmentReference depth_stencil_attachment;
1652
1653 /** Subpass has at least one resolve attachment */
1654 bool has_resolve;
1655
1656 struct radv_subpass_barrier start_barrier;
1657
1658 uint32_t view_mask;
1659 VkSampleCountFlagBits max_sample_count;
1660 };
1661
1662 struct radv_render_pass_attachment {
1663 VkFormat format;
1664 uint32_t samples;
1665 VkAttachmentLoadOp load_op;
1666 VkAttachmentLoadOp stencil_load_op;
1667 VkImageLayout initial_layout;
1668 VkImageLayout final_layout;
1669 uint32_t view_mask;
1670 };
1671
1672 struct radv_render_pass {
1673 uint32_t attachment_count;
1674 uint32_t subpass_count;
1675 VkAttachmentReference * subpass_attachments;
1676 struct radv_render_pass_attachment * attachments;
1677 struct radv_subpass_barrier end_barrier;
1678 struct radv_subpass subpasses[0];
1679 };
1680
1681 VkResult radv_device_init_meta(struct radv_device *device);
1682 void radv_device_finish_meta(struct radv_device *device);
1683
1684 struct radv_query_pool {
1685 struct radeon_winsys_bo *bo;
1686 uint32_t stride;
1687 uint32_t availability_offset;
1688 uint64_t size;
1689 char *ptr;
1690 VkQueryType type;
1691 uint32_t pipeline_stats_mask;
1692 };
1693
1694 struct radv_semaphore {
1695 /* use a winsys sem for non-exportable */
1696 struct radeon_winsys_sem *sem;
1697 uint32_t syncobj;
1698 uint32_t temp_syncobj;
1699 };
1700
1701 VkResult radv_alloc_sem_info(struct radv_winsys_sem_info *sem_info,
1702 int num_wait_sems,
1703 const VkSemaphore *wait_sems,
1704 int num_signal_sems,
1705 const VkSemaphore *signal_sems,
1706 VkFence fence);
1707 void radv_free_sem_info(struct radv_winsys_sem_info *sem_info);
1708
1709 void radv_set_descriptor_set(struct radv_cmd_buffer *cmd_buffer,
1710 VkPipelineBindPoint bind_point,
1711 struct radv_descriptor_set *set,
1712 unsigned idx);
1713
1714 void
1715 radv_update_descriptor_sets(struct radv_device *device,
1716 struct radv_cmd_buffer *cmd_buffer,
1717 VkDescriptorSet overrideSet,
1718 uint32_t descriptorWriteCount,
1719 const VkWriteDescriptorSet *pDescriptorWrites,
1720 uint32_t descriptorCopyCount,
1721 const VkCopyDescriptorSet *pDescriptorCopies);
1722
1723 void
1724 radv_update_descriptor_set_with_template(struct radv_device *device,
1725 struct radv_cmd_buffer *cmd_buffer,
1726 struct radv_descriptor_set *set,
1727 VkDescriptorUpdateTemplateKHR descriptorUpdateTemplate,
1728 const void *pData);
1729
1730 void radv_meta_push_descriptor_set(struct radv_cmd_buffer *cmd_buffer,
1731 VkPipelineBindPoint pipelineBindPoint,
1732 VkPipelineLayout _layout,
1733 uint32_t set,
1734 uint32_t descriptorWriteCount,
1735 const VkWriteDescriptorSet *pDescriptorWrites);
1736
1737 void radv_initialize_dcc(struct radv_cmd_buffer *cmd_buffer,
1738 struct radv_image *image, uint32_t value);
1739
1740 struct radv_fence {
1741 struct radeon_winsys_fence *fence;
1742 bool submitted;
1743 bool signalled;
1744
1745 uint32_t syncobj;
1746 uint32_t temp_syncobj;
1747 };
1748
1749 /* radv_nir_to_llvm.c */
1750 struct radv_shader_variant_info;
1751 struct radv_nir_compiler_options;
1752
1753 void radv_compile_gs_copy_shader(LLVMTargetMachineRef tm,
1754 struct nir_shader *geom_shader,
1755 struct ac_shader_binary *binary,
1756 struct ac_shader_config *config,
1757 struct radv_shader_variant_info *shader_info,
1758 const struct radv_nir_compiler_options *option);
1759
1760 void radv_compile_nir_shader(LLVMTargetMachineRef tm,
1761 struct ac_shader_binary *binary,
1762 struct ac_shader_config *config,
1763 struct radv_shader_variant_info *shader_info,
1764 struct nir_shader *const *nir,
1765 int nir_count,
1766 const struct radv_nir_compiler_options *options);
1767
1768 /* radv_shader_info.h */
1769 struct radv_shader_info;
1770
1771 void radv_nir_shader_info_pass(const struct nir_shader *nir,
1772 const struct radv_nir_compiler_options *options,
1773 struct radv_shader_info *info);
1774
1775 struct radeon_winsys_sem;
1776
1777 #define RADV_DEFINE_HANDLE_CASTS(__radv_type, __VkType) \
1778 \
1779 static inline struct __radv_type * \
1780 __radv_type ## _from_handle(__VkType _handle) \
1781 { \
1782 return (struct __radv_type *) _handle; \
1783 } \
1784 \
1785 static inline __VkType \
1786 __radv_type ## _to_handle(struct __radv_type *_obj) \
1787 { \
1788 return (__VkType) _obj; \
1789 }
1790
1791 #define RADV_DEFINE_NONDISP_HANDLE_CASTS(__radv_type, __VkType) \
1792 \
1793 static inline struct __radv_type * \
1794 __radv_type ## _from_handle(__VkType _handle) \
1795 { \
1796 return (struct __radv_type *)(uintptr_t) _handle; \
1797 } \
1798 \
1799 static inline __VkType \
1800 __radv_type ## _to_handle(struct __radv_type *_obj) \
1801 { \
1802 return (__VkType)(uintptr_t) _obj; \
1803 }
1804
1805 #define RADV_FROM_HANDLE(__radv_type, __name, __handle) \
1806 struct __radv_type *__name = __radv_type ## _from_handle(__handle)
1807
1808 RADV_DEFINE_HANDLE_CASTS(radv_cmd_buffer, VkCommandBuffer)
1809 RADV_DEFINE_HANDLE_CASTS(radv_device, VkDevice)
1810 RADV_DEFINE_HANDLE_CASTS(radv_instance, VkInstance)
1811 RADV_DEFINE_HANDLE_CASTS(radv_physical_device, VkPhysicalDevice)
1812 RADV_DEFINE_HANDLE_CASTS(radv_queue, VkQueue)
1813
1814 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_cmd_pool, VkCommandPool)
1815 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_buffer, VkBuffer)
1816 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_buffer_view, VkBufferView)
1817 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_pool, VkDescriptorPool)
1818 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_set, VkDescriptorSet)
1819 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_set_layout, VkDescriptorSetLayout)
1820 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_update_template, VkDescriptorUpdateTemplateKHR)
1821 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_device_memory, VkDeviceMemory)
1822 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_fence, VkFence)
1823 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_event, VkEvent)
1824 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_framebuffer, VkFramebuffer)
1825 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_image, VkImage)
1826 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_image_view, VkImageView);
1827 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_pipeline_cache, VkPipelineCache)
1828 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_pipeline, VkPipeline)
1829 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_pipeline_layout, VkPipelineLayout)
1830 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_query_pool, VkQueryPool)
1831 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_render_pass, VkRenderPass)
1832 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_sampler, VkSampler)
1833 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_shader_module, VkShaderModule)
1834 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_semaphore, VkSemaphore)
1835
1836 #endif /* RADV_PRIVATE_H */