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