OSDN Git Service

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