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