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