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