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