radv: add radv_secure_compile_type enum
[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 "c11/threads.h"
47 #include <amdgpu.h>
48 #include "compiler/shader_enums.h"
49 #include "util/macros.h"
50 #include "util/list.h"
51 #include "util/xmlconfig.h"
52 #include "main/macros.h"
53 #include "vk_alloc.h"
54 #include "vk_debug_report.h"
55
56 #include "radv_radeon_winsys.h"
57 #include "ac_binary.h"
58 #include "ac_nir_to_llvm.h"
59 #include "ac_gpu_info.h"
60 #include "ac_surface.h"
61 #include "ac_llvm_build.h"
62 #include "ac_llvm_util.h"
63 #include "radv_constants.h"
64 #include "radv_descriptor_set.h"
65 #include "radv_extensions.h"
66 #include "sid.h"
67
68 #include <llvm-c/TargetMachine.h>
69
70 /* Pre-declarations needed for WSI entrypoints */
71 struct wl_surface;
72 struct wl_display;
73 typedef struct xcb_connection_t xcb_connection_t;
74 typedef uint32_t xcb_visualid_t;
75 typedef uint32_t xcb_window_t;
76
77 #include <vulkan/vulkan.h>
78 #include <vulkan/vulkan_intel.h>
79 #include <vulkan/vulkan_android.h>
80 #include <vulkan/vk_icd.h>
81 #include <vulkan/vk_android_native_buffer.h>
82
83 #include "radv_entrypoints.h"
84
85 #include "wsi_common.h"
86 #include "wsi_common_display.h"
87
88 /* Helper to determine if we should compile
89 * any of the Android AHB support.
90 *
91 * To actually enable the ext we also need
92 * the necessary kernel support.
93 */
94 #if defined(ANDROID) && ANDROID_API_LEVEL >= 26
95 #define RADV_SUPPORT_ANDROID_HARDWARE_BUFFER 1
96 #else
97 #define RADV_SUPPORT_ANDROID_HARDWARE_BUFFER 0
98 #endif
99
100
101 struct gfx10_format {
102 unsigned img_format:9;
103
104 /* Various formats are only supported with workarounds for vertex fetch,
105 * and some 32_32_32 formats are supported natively, but only for buffers
106 * (possibly with some image support, actually, but no filtering). */
107 bool buffers_only:1;
108 };
109
110 #include "gfx10_format_table.h"
111
112 enum radv_mem_heap {
113 RADV_MEM_HEAP_VRAM,
114 RADV_MEM_HEAP_VRAM_CPU_ACCESS,
115 RADV_MEM_HEAP_GTT,
116 RADV_MEM_HEAP_COUNT
117 };
118
119 enum radv_mem_type {
120 RADV_MEM_TYPE_VRAM,
121 RADV_MEM_TYPE_GTT_WRITE_COMBINE,
122 RADV_MEM_TYPE_VRAM_CPU_ACCESS,
123 RADV_MEM_TYPE_GTT_CACHED,
124 RADV_MEM_TYPE_COUNT
125 };
126
127 enum radv_secure_compile_type {
128 RADV_SC_TYPE_INIT_SUCCESS,
129 RADV_SC_TYPE_INIT_FAILURE,
130 RADV_SC_TYPE_COMPILE_PIPELINE,
131 RADV_SC_TYPE_COMPILE_PIPELINE_FINISHED,
132 RADV_SC_TYPE_READ_DISK_CACHE,
133 RADV_SC_TYPE_WRITE_DISK_CACHE,
134 RADV_SC_TYPE_DESTROY_DEVICE,
135 RADV_SC_TYPE_COUNT
136 };
137
138 #define radv_printflike(a, b) __attribute__((__format__(__printf__, a, b)))
139
140 static inline uint32_t
141 align_u32(uint32_t v, uint32_t a)
142 {
143 assert(a != 0 && a == (a & -a));
144 return (v + a - 1) & ~(a - 1);
145 }
146
147 static inline uint32_t
148 align_u32_npot(uint32_t v, uint32_t a)
149 {
150 return (v + a - 1) / a * a;
151 }
152
153 static inline uint64_t
154 align_u64(uint64_t v, uint64_t a)
155 {
156 assert(a != 0 && a == (a & -a));
157 return (v + a - 1) & ~(a - 1);
158 }
159
160 static inline int32_t
161 align_i32(int32_t v, int32_t a)
162 {
163 assert(a != 0 && a == (a & -a));
164 return (v + a - 1) & ~(a - 1);
165 }
166
167 /** Alignment must be a power of 2. */
168 static inline bool
169 radv_is_aligned(uintmax_t n, uintmax_t a)
170 {
171 assert(a == (a & -a));
172 return (n & (a - 1)) == 0;
173 }
174
175 static inline uint32_t
176 round_up_u32(uint32_t v, uint32_t a)
177 {
178 return (v + a - 1) / a;
179 }
180
181 static inline uint64_t
182 round_up_u64(uint64_t v, uint64_t a)
183 {
184 return (v + a - 1) / a;
185 }
186
187 static inline uint32_t
188 radv_minify(uint32_t n, uint32_t levels)
189 {
190 if (unlikely(n == 0))
191 return 0;
192 else
193 return MAX2(n >> levels, 1);
194 }
195 static inline float
196 radv_clamp_f(float f, float min, float max)
197 {
198 assert(min < max);
199
200 if (f > max)
201 return max;
202 else if (f < min)
203 return min;
204 else
205 return f;
206 }
207
208 static inline bool
209 radv_clear_mask(uint32_t *inout_mask, uint32_t clear_mask)
210 {
211 if (*inout_mask & clear_mask) {
212 *inout_mask &= ~clear_mask;
213 return true;
214 } else {
215 return false;
216 }
217 }
218
219 #define for_each_bit(b, dword) \
220 for (uint32_t __dword = (dword); \
221 (b) = __builtin_ffs(__dword) - 1, __dword; \
222 __dword &= ~(1 << (b)))
223
224 #define typed_memcpy(dest, src, count) ({ \
225 STATIC_ASSERT(sizeof(*src) == sizeof(*dest)); \
226 memcpy((dest), (src), (count) * sizeof(*(src))); \
227 })
228
229 /* Whenever we generate an error, pass it through this function. Useful for
230 * debugging, where we can break on it. Only call at error site, not when
231 * propagating errors. Might be useful to plug in a stack trace here.
232 */
233
234 struct radv_image_view;
235 struct radv_instance;
236
237 VkResult __vk_errorf(struct radv_instance *instance, VkResult error, const char *file, int line, const char *format, ...);
238
239 #define vk_error(instance, error) __vk_errorf(instance, error, __FILE__, __LINE__, NULL);
240 #define vk_errorf(instance, error, format, ...) __vk_errorf(instance, error, __FILE__, __LINE__, format, ## __VA_ARGS__);
241
242 void __radv_finishme(const char *file, int line, const char *format, ...)
243 radv_printflike(3, 4);
244 void radv_loge(const char *format, ...) radv_printflike(1, 2);
245 void radv_loge_v(const char *format, va_list va);
246 void radv_logi(const char *format, ...) radv_printflike(1, 2);
247 void radv_logi_v(const char *format, va_list va);
248
249 /**
250 * Print a FINISHME message, including its source location.
251 */
252 #define radv_finishme(format, ...) \
253 do { \
254 static bool reported = false; \
255 if (!reported) { \
256 __radv_finishme(__FILE__, __LINE__, format, ##__VA_ARGS__); \
257 reported = true; \
258 } \
259 } while (0)
260
261 /* A non-fatal assert. Useful for debugging. */
262 #ifdef DEBUG
263 #define radv_assert(x) ({ \
264 if (unlikely(!(x))) \
265 fprintf(stderr, "%s:%d ASSERT: %s\n", __FILE__, __LINE__, #x); \
266 })
267 #else
268 #define radv_assert(x)
269 #endif
270
271 #define stub_return(v) \
272 do { \
273 radv_finishme("stub %s", __func__); \
274 return (v); \
275 } while (0)
276
277 #define stub() \
278 do { \
279 radv_finishme("stub %s", __func__); \
280 return; \
281 } while (0)
282
283 void *radv_lookup_entrypoint_unchecked(const char *name);
284 void *radv_lookup_entrypoint_checked(const char *name,
285 uint32_t core_version,
286 const struct radv_instance_extension_table *instance,
287 const struct radv_device_extension_table *device);
288 void *radv_lookup_physical_device_entrypoint_checked(const char *name,
289 uint32_t core_version,
290 const struct radv_instance_extension_table *instance);
291
292 struct radv_physical_device {
293 VK_LOADER_DATA _loader_data;
294
295 struct radv_instance * instance;
296
297 struct radeon_winsys *ws;
298 struct radeon_info rad_info;
299 char name[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
300 uint8_t driver_uuid[VK_UUID_SIZE];
301 uint8_t device_uuid[VK_UUID_SIZE];
302 uint8_t cache_uuid[VK_UUID_SIZE];
303
304 int local_fd;
305 int master_fd;
306 struct wsi_device wsi_device;
307
308 bool out_of_order_rast_allowed;
309
310 /* Whether DCC should be enabled for MSAA textures. */
311 bool dcc_msaa_allowed;
312
313 /* Whether to enable the AMD_shader_ballot extension */
314 bool use_shader_ballot;
315
316 /* Whether to enable NGG. */
317 bool use_ngg;
318
319 /* Whether to enable NGG streamout. */
320 bool use_ngg_streamout;
321
322 /* Number of threads per wave. */
323 uint8_t ps_wave_size;
324 uint8_t cs_wave_size;
325 uint8_t ge_wave_size;
326
327 /* Whether to use the experimental compiler backend */
328 bool use_aco;
329
330 /* This is the drivers on-disk cache used as a fallback as opposed to
331 * the pipeline cache defined by apps.
332 */
333 struct disk_cache * disk_cache;
334
335 VkPhysicalDeviceMemoryProperties memory_properties;
336 enum radv_mem_type mem_type_indices[RADV_MEM_TYPE_COUNT];
337
338 drmPciBusInfo bus_info;
339
340 struct radv_device_extension_table supported_extensions;
341 };
342
343 struct radv_instance {
344 VK_LOADER_DATA _loader_data;
345
346 VkAllocationCallbacks alloc;
347
348 uint32_t apiVersion;
349 int physicalDeviceCount;
350 struct radv_physical_device physicalDevices[RADV_MAX_DRM_DEVICES];
351
352 char * engineName;
353 uint32_t engineVersion;
354
355 uint64_t debug_flags;
356 uint64_t perftest_flags;
357
358 struct vk_debug_report_instance debug_report_callbacks;
359
360 struct radv_instance_extension_table enabled_extensions;
361
362 struct driOptionCache dri_options;
363 struct driOptionCache available_dri_options;
364 };
365
366 VkResult radv_init_wsi(struct radv_physical_device *physical_device);
367 void radv_finish_wsi(struct radv_physical_device *physical_device);
368
369 bool radv_instance_extension_supported(const char *name);
370 uint32_t radv_physical_device_api_version(struct radv_physical_device *dev);
371 bool radv_physical_device_extension_supported(struct radv_physical_device *dev,
372 const char *name);
373
374 struct cache_entry;
375
376 struct radv_pipeline_cache {
377 struct radv_device * device;
378 pthread_mutex_t mutex;
379
380 uint32_t total_size;
381 uint32_t table_size;
382 uint32_t kernel_count;
383 struct cache_entry ** hash_table;
384 bool modified;
385
386 VkAllocationCallbacks alloc;
387 };
388
389 struct radv_pipeline_key {
390 uint32_t instance_rate_inputs;
391 uint32_t instance_rate_divisors[MAX_VERTEX_ATTRIBS];
392 uint8_t vertex_attribute_formats[MAX_VERTEX_ATTRIBS];
393 uint32_t vertex_attribute_bindings[MAX_VERTEX_ATTRIBS];
394 uint32_t vertex_attribute_offsets[MAX_VERTEX_ATTRIBS];
395 uint32_t vertex_attribute_strides[MAX_VERTEX_ATTRIBS];
396 uint64_t vertex_alpha_adjust;
397 uint32_t vertex_post_shuffle;
398 unsigned tess_input_vertices;
399 uint32_t col_format;
400 uint32_t is_int8;
401 uint32_t is_int10;
402 uint8_t log2_ps_iter_samples;
403 uint8_t num_samples;
404 uint32_t has_multiview_view_index : 1;
405 uint32_t optimisations_disabled : 1;
406 uint8_t topology;
407 };
408
409 struct radv_shader_binary;
410 struct radv_shader_variant;
411
412 void
413 radv_pipeline_cache_init(struct radv_pipeline_cache *cache,
414 struct radv_device *device);
415 void
416 radv_pipeline_cache_finish(struct radv_pipeline_cache *cache);
417 bool
418 radv_pipeline_cache_load(struct radv_pipeline_cache *cache,
419 const void *data, size_t size);
420
421 bool
422 radv_create_shader_variants_from_pipeline_cache(struct radv_device *device,
423 struct radv_pipeline_cache *cache,
424 const unsigned char *sha1,
425 struct radv_shader_variant **variants,
426 bool *found_in_application_cache);
427
428 void
429 radv_pipeline_cache_insert_shaders(struct radv_device *device,
430 struct radv_pipeline_cache *cache,
431 const unsigned char *sha1,
432 struct radv_shader_variant **variants,
433 struct radv_shader_binary *const *binaries);
434
435 enum radv_blit_ds_layout {
436 RADV_BLIT_DS_LAYOUT_TILE_ENABLE,
437 RADV_BLIT_DS_LAYOUT_TILE_DISABLE,
438 RADV_BLIT_DS_LAYOUT_COUNT,
439 };
440
441 static inline enum radv_blit_ds_layout radv_meta_blit_ds_to_type(VkImageLayout layout)
442 {
443 return (layout == VK_IMAGE_LAYOUT_GENERAL) ? RADV_BLIT_DS_LAYOUT_TILE_DISABLE : RADV_BLIT_DS_LAYOUT_TILE_ENABLE;
444 }
445
446 static inline VkImageLayout radv_meta_blit_ds_to_layout(enum radv_blit_ds_layout ds_layout)
447 {
448 return ds_layout == RADV_BLIT_DS_LAYOUT_TILE_ENABLE ? VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL : VK_IMAGE_LAYOUT_GENERAL;
449 }
450
451 enum radv_meta_dst_layout {
452 RADV_META_DST_LAYOUT_GENERAL,
453 RADV_META_DST_LAYOUT_OPTIMAL,
454 RADV_META_DST_LAYOUT_COUNT,
455 };
456
457 static inline enum radv_meta_dst_layout radv_meta_dst_layout_from_layout(VkImageLayout layout)
458 {
459 return (layout == VK_IMAGE_LAYOUT_GENERAL) ? RADV_META_DST_LAYOUT_GENERAL : RADV_META_DST_LAYOUT_OPTIMAL;
460 }
461
462 static inline VkImageLayout radv_meta_dst_layout_to_layout(enum radv_meta_dst_layout layout)
463 {
464 return layout == RADV_META_DST_LAYOUT_OPTIMAL ? VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL : VK_IMAGE_LAYOUT_GENERAL;
465 }
466
467 struct radv_meta_state {
468 VkAllocationCallbacks alloc;
469
470 struct radv_pipeline_cache cache;
471
472 /*
473 * For on-demand pipeline creation, makes sure that
474 * only one thread tries to build a pipeline at the same time.
475 */
476 mtx_t mtx;
477
478 /**
479 * Use array element `i` for images with `2^i` samples.
480 */
481 struct {
482 VkRenderPass render_pass[NUM_META_FS_KEYS];
483 VkPipeline color_pipelines[NUM_META_FS_KEYS];
484
485 VkRenderPass depthstencil_rp;
486 VkPipeline depth_only_pipeline[NUM_DEPTH_CLEAR_PIPELINES];
487 VkPipeline stencil_only_pipeline[NUM_DEPTH_CLEAR_PIPELINES];
488 VkPipeline depthstencil_pipeline[NUM_DEPTH_CLEAR_PIPELINES];
489
490 VkPipeline depth_only_unrestricted_pipeline[NUM_DEPTH_CLEAR_PIPELINES];
491 VkPipeline stencil_only_unrestricted_pipeline[NUM_DEPTH_CLEAR_PIPELINES];
492 VkPipeline depthstencil_unrestricted_pipeline[NUM_DEPTH_CLEAR_PIPELINES];
493 } clear[MAX_SAMPLES_LOG2];
494
495 VkPipelineLayout clear_color_p_layout;
496 VkPipelineLayout clear_depth_p_layout;
497 VkPipelineLayout clear_depth_unrestricted_p_layout;
498
499 /* Optimized compute fast HTILE clear for stencil or depth only. */
500 VkPipeline clear_htile_mask_pipeline;
501 VkPipelineLayout clear_htile_mask_p_layout;
502 VkDescriptorSetLayout clear_htile_mask_ds_layout;
503
504 struct {
505 VkRenderPass render_pass[NUM_META_FS_KEYS][RADV_META_DST_LAYOUT_COUNT];
506
507 /** Pipeline that blits from a 1D image. */
508 VkPipeline pipeline_1d_src[NUM_META_FS_KEYS];
509
510 /** Pipeline that blits from a 2D image. */
511 VkPipeline pipeline_2d_src[NUM_META_FS_KEYS];
512
513 /** Pipeline that blits from a 3D image. */
514 VkPipeline pipeline_3d_src[NUM_META_FS_KEYS];
515
516 VkRenderPass depth_only_rp[RADV_BLIT_DS_LAYOUT_COUNT];
517 VkPipeline depth_only_1d_pipeline;
518 VkPipeline depth_only_2d_pipeline;
519 VkPipeline depth_only_3d_pipeline;
520
521 VkRenderPass stencil_only_rp[RADV_BLIT_DS_LAYOUT_COUNT];
522 VkPipeline stencil_only_1d_pipeline;
523 VkPipeline stencil_only_2d_pipeline;
524 VkPipeline stencil_only_3d_pipeline;
525 VkPipelineLayout pipeline_layout;
526 VkDescriptorSetLayout ds_layout;
527 } blit;
528
529 struct {
530 VkPipelineLayout p_layouts[5];
531 VkDescriptorSetLayout ds_layouts[5];
532 VkPipeline pipelines[5][NUM_META_FS_KEYS];
533
534 VkPipeline depth_only_pipeline[5];
535
536 VkPipeline stencil_only_pipeline[5];
537 } blit2d[MAX_SAMPLES_LOG2];
538
539 VkRenderPass blit2d_render_passes[NUM_META_FS_KEYS][RADV_META_DST_LAYOUT_COUNT];
540 VkRenderPass blit2d_depth_only_rp[RADV_BLIT_DS_LAYOUT_COUNT];
541 VkRenderPass blit2d_stencil_only_rp[RADV_BLIT_DS_LAYOUT_COUNT];
542
543 struct {
544 VkPipelineLayout img_p_layout;
545 VkDescriptorSetLayout img_ds_layout;
546 VkPipeline pipeline;
547 VkPipeline pipeline_3d;
548 } itob;
549 struct {
550 VkPipelineLayout img_p_layout;
551 VkDescriptorSetLayout img_ds_layout;
552 VkPipeline pipeline;
553 VkPipeline pipeline_3d;
554 } btoi;
555 struct {
556 VkPipelineLayout img_p_layout;
557 VkDescriptorSetLayout img_ds_layout;
558 VkPipeline pipeline;
559 } btoi_r32g32b32;
560 struct {
561 VkPipelineLayout img_p_layout;
562 VkDescriptorSetLayout img_ds_layout;
563 VkPipeline pipeline;
564 VkPipeline pipeline_3d;
565 } itoi;
566 struct {
567 VkPipelineLayout img_p_layout;
568 VkDescriptorSetLayout img_ds_layout;
569 VkPipeline pipeline;
570 } itoi_r32g32b32;
571 struct {
572 VkPipelineLayout img_p_layout;
573 VkDescriptorSetLayout img_ds_layout;
574 VkPipeline pipeline;
575 VkPipeline pipeline_3d;
576 } cleari;
577 struct {
578 VkPipelineLayout img_p_layout;
579 VkDescriptorSetLayout img_ds_layout;
580 VkPipeline pipeline;
581 } cleari_r32g32b32;
582
583 struct {
584 VkPipelineLayout p_layout;
585 VkPipeline pipeline[NUM_META_FS_KEYS];
586 VkRenderPass pass[NUM_META_FS_KEYS];
587 } resolve;
588
589 struct {
590 VkDescriptorSetLayout ds_layout;
591 VkPipelineLayout p_layout;
592 struct {
593 VkPipeline pipeline;
594 VkPipeline i_pipeline;
595 VkPipeline srgb_pipeline;
596 } rc[MAX_SAMPLES_LOG2];
597
598 VkPipeline depth_zero_pipeline;
599 struct {
600 VkPipeline average_pipeline;
601 VkPipeline max_pipeline;
602 VkPipeline min_pipeline;
603 } depth[MAX_SAMPLES_LOG2];
604
605 VkPipeline stencil_zero_pipeline;
606 struct {
607 VkPipeline max_pipeline;
608 VkPipeline min_pipeline;
609 } stencil[MAX_SAMPLES_LOG2];
610 } resolve_compute;
611
612 struct {
613 VkDescriptorSetLayout ds_layout;
614 VkPipelineLayout p_layout;
615
616 struct {
617 VkRenderPass render_pass[NUM_META_FS_KEYS][RADV_META_DST_LAYOUT_COUNT];
618 VkPipeline pipeline[NUM_META_FS_KEYS];
619 } rc[MAX_SAMPLES_LOG2];
620
621 VkRenderPass depth_render_pass;
622 VkPipeline depth_zero_pipeline;
623 struct {
624 VkPipeline average_pipeline;
625 VkPipeline max_pipeline;
626 VkPipeline min_pipeline;
627 } depth[MAX_SAMPLES_LOG2];
628
629 VkRenderPass stencil_render_pass;
630 VkPipeline stencil_zero_pipeline;
631 struct {
632 VkPipeline max_pipeline;
633 VkPipeline min_pipeline;
634 } stencil[MAX_SAMPLES_LOG2];
635 } resolve_fragment;
636
637 struct {
638 VkPipelineLayout p_layout;
639 VkPipeline decompress_pipeline;
640 VkPipeline resummarize_pipeline;
641 VkRenderPass pass;
642 } depth_decomp[MAX_SAMPLES_LOG2];
643
644 struct {
645 VkPipelineLayout p_layout;
646 VkPipeline cmask_eliminate_pipeline;
647 VkPipeline fmask_decompress_pipeline;
648 VkPipeline dcc_decompress_pipeline;
649 VkRenderPass pass;
650
651 VkDescriptorSetLayout dcc_decompress_compute_ds_layout;
652 VkPipelineLayout dcc_decompress_compute_p_layout;
653 VkPipeline dcc_decompress_compute_pipeline;
654 } fast_clear_flush;
655
656 struct {
657 VkPipelineLayout fill_p_layout;
658 VkPipelineLayout copy_p_layout;
659 VkDescriptorSetLayout fill_ds_layout;
660 VkDescriptorSetLayout copy_ds_layout;
661 VkPipeline fill_pipeline;
662 VkPipeline copy_pipeline;
663 } buffer;
664
665 struct {
666 VkDescriptorSetLayout ds_layout;
667 VkPipelineLayout p_layout;
668 VkPipeline occlusion_query_pipeline;
669 VkPipeline pipeline_statistics_query_pipeline;
670 VkPipeline tfb_query_pipeline;
671 VkPipeline timestamp_query_pipeline;
672 } query;
673
674 struct {
675 VkDescriptorSetLayout ds_layout;
676 VkPipelineLayout p_layout;
677 VkPipeline pipeline[MAX_SAMPLES_LOG2];
678 } fmask_expand;
679 };
680
681 /* queue types */
682 #define RADV_QUEUE_GENERAL 0
683 #define RADV_QUEUE_COMPUTE 1
684 #define RADV_QUEUE_TRANSFER 2
685
686 #define RADV_MAX_QUEUE_FAMILIES 3
687
688 enum ring_type radv_queue_family_to_ring(int f);
689
690 struct radv_queue {
691 VK_LOADER_DATA _loader_data;
692 struct radv_device * device;
693 struct radeon_winsys_ctx *hw_ctx;
694 enum radeon_ctx_priority priority;
695 uint32_t queue_family_index;
696 int queue_idx;
697 VkDeviceQueueCreateFlags flags;
698
699 uint32_t scratch_size;
700 uint32_t compute_scratch_size;
701 uint32_t esgs_ring_size;
702 uint32_t gsvs_ring_size;
703 bool has_tess_rings;
704 bool has_gds;
705 bool has_sample_positions;
706
707 struct radeon_winsys_bo *scratch_bo;
708 struct radeon_winsys_bo *descriptor_bo;
709 struct radeon_winsys_bo *compute_scratch_bo;
710 struct radeon_winsys_bo *esgs_ring_bo;
711 struct radeon_winsys_bo *gsvs_ring_bo;
712 struct radeon_winsys_bo *tess_rings_bo;
713 struct radeon_winsys_bo *gds_bo;
714 struct radeon_winsys_bo *gds_oa_bo;
715 struct radeon_cmdbuf *initial_preamble_cs;
716 struct radeon_cmdbuf *initial_full_flush_preamble_cs;
717 struct radeon_cmdbuf *continue_preamble_cs;
718 };
719
720 struct radv_bo_list {
721 struct radv_winsys_bo_list list;
722 unsigned capacity;
723 pthread_mutex_t mutex;
724 };
725
726 struct radv_device {
727 VK_LOADER_DATA _loader_data;
728
729 VkAllocationCallbacks alloc;
730
731 struct radv_instance * instance;
732 struct radeon_winsys *ws;
733
734 struct radv_meta_state meta_state;
735
736 struct radv_queue *queues[RADV_MAX_QUEUE_FAMILIES];
737 int queue_count[RADV_MAX_QUEUE_FAMILIES];
738 struct radeon_cmdbuf *empty_cs[RADV_MAX_QUEUE_FAMILIES];
739
740 bool always_use_syncobj;
741 bool pbb_allowed;
742 bool dfsm_allowed;
743 uint32_t tess_offchip_block_dw_size;
744 uint32_t scratch_waves;
745 uint32_t dispatch_initiator;
746
747 uint32_t gs_table_depth;
748
749 /* MSAA sample locations.
750 * The first index is the sample index.
751 * The second index is the coordinate: X, Y. */
752 float sample_locations_1x[1][2];
753 float sample_locations_2x[2][2];
754 float sample_locations_4x[4][2];
755 float sample_locations_8x[8][2];
756
757 /* GFX7 and later */
758 uint32_t gfx_init_size_dw;
759 struct radeon_winsys_bo *gfx_init;
760
761 struct radeon_winsys_bo *trace_bo;
762 uint32_t *trace_id_ptr;
763
764 /* Whether to keep shader debug info, for tracing or VK_AMD_shader_info */
765 bool keep_shader_info;
766
767 struct radv_physical_device *physical_device;
768
769 /* Backup in-memory cache to be used if the app doesn't provide one */
770 struct radv_pipeline_cache * mem_cache;
771
772 /*
773 * use different counters so MSAA MRTs get consecutive surface indices,
774 * even if MASK is allocated in between.
775 */
776 uint32_t image_mrt_offset_counter;
777 uint32_t fmask_mrt_offset_counter;
778 struct list_head shader_slabs;
779 mtx_t shader_slab_mutex;
780
781 /* For detecting VM faults reported by dmesg. */
782 uint64_t dmesg_timestamp;
783
784 struct radv_device_extension_table enabled_extensions;
785
786 /* Whether the app has enabled the robustBufferAccess feature. */
787 bool robust_buffer_access;
788
789 /* Whether the driver uses a global BO list. */
790 bool use_global_bo_list;
791
792 struct radv_bo_list bo_list;
793
794 /* Whether anisotropy is forced with RADV_TEX_ANISO (-1 is disabled). */
795 int force_aniso;
796 };
797
798 struct radv_device_memory {
799 struct radeon_winsys_bo *bo;
800 /* for dedicated allocations */
801 struct radv_image *image;
802 struct radv_buffer *buffer;
803 uint32_t type_index;
804 VkDeviceSize map_size;
805 void * map;
806 void * user_ptr;
807
808 #if RADV_SUPPORT_ANDROID_HARDWARE_BUFFER
809 struct AHardwareBuffer * android_hardware_buffer;
810 #endif
811 };
812
813
814 struct radv_descriptor_range {
815 uint64_t va;
816 uint32_t size;
817 };
818
819 struct radv_descriptor_set {
820 const struct radv_descriptor_set_layout *layout;
821 uint32_t size;
822
823 struct radeon_winsys_bo *bo;
824 uint64_t va;
825 uint32_t *mapped_ptr;
826 struct radv_descriptor_range *dynamic_descriptors;
827
828 struct radeon_winsys_bo *descriptors[0];
829 };
830
831 struct radv_push_descriptor_set
832 {
833 struct radv_descriptor_set set;
834 uint32_t capacity;
835 };
836
837 struct radv_descriptor_pool_entry {
838 uint32_t offset;
839 uint32_t size;
840 struct radv_descriptor_set *set;
841 };
842
843 struct radv_descriptor_pool {
844 struct radeon_winsys_bo *bo;
845 uint8_t *mapped_ptr;
846 uint64_t current_offset;
847 uint64_t size;
848
849 uint8_t *host_memory_base;
850 uint8_t *host_memory_ptr;
851 uint8_t *host_memory_end;
852
853 uint32_t entry_count;
854 uint32_t max_entry_count;
855 struct radv_descriptor_pool_entry entries[0];
856 };
857
858 struct radv_descriptor_update_template_entry {
859 VkDescriptorType descriptor_type;
860
861 /* The number of descriptors to update */
862 uint32_t descriptor_count;
863
864 /* Into mapped_ptr or dynamic_descriptors, in units of the respective array */
865 uint32_t dst_offset;
866
867 /* In dwords. Not valid/used for dynamic descriptors */
868 uint32_t dst_stride;
869
870 uint32_t buffer_offset;
871
872 /* Only valid for combined image samplers and samplers */
873 uint8_t has_sampler;
874 uint8_t sampler_offset;
875
876 /* In bytes */
877 size_t src_offset;
878 size_t src_stride;
879
880 /* For push descriptors */
881 const uint32_t *immutable_samplers;
882 };
883
884 struct radv_descriptor_update_template {
885 uint32_t entry_count;
886 VkPipelineBindPoint bind_point;
887 struct radv_descriptor_update_template_entry entry[0];
888 };
889
890 struct radv_buffer {
891 VkDeviceSize size;
892
893 VkBufferUsageFlags usage;
894 VkBufferCreateFlags flags;
895
896 /* Set when bound */
897 struct radeon_winsys_bo * bo;
898 VkDeviceSize offset;
899
900 bool shareable;
901 };
902
903 enum radv_dynamic_state_bits {
904 RADV_DYNAMIC_VIEWPORT = 1 << 0,
905 RADV_DYNAMIC_SCISSOR = 1 << 1,
906 RADV_DYNAMIC_LINE_WIDTH = 1 << 2,
907 RADV_DYNAMIC_DEPTH_BIAS = 1 << 3,
908 RADV_DYNAMIC_BLEND_CONSTANTS = 1 << 4,
909 RADV_DYNAMIC_DEPTH_BOUNDS = 1 << 5,
910 RADV_DYNAMIC_STENCIL_COMPARE_MASK = 1 << 6,
911 RADV_DYNAMIC_STENCIL_WRITE_MASK = 1 << 7,
912 RADV_DYNAMIC_STENCIL_REFERENCE = 1 << 8,
913 RADV_DYNAMIC_DISCARD_RECTANGLE = 1 << 9,
914 RADV_DYNAMIC_SAMPLE_LOCATIONS = 1 << 10,
915 RADV_DYNAMIC_ALL = (1 << 11) - 1,
916 };
917
918 enum radv_cmd_dirty_bits {
919 /* Keep the dynamic state dirty bits in sync with
920 * enum radv_dynamic_state_bits */
921 RADV_CMD_DIRTY_DYNAMIC_VIEWPORT = 1 << 0,
922 RADV_CMD_DIRTY_DYNAMIC_SCISSOR = 1 << 1,
923 RADV_CMD_DIRTY_DYNAMIC_LINE_WIDTH = 1 << 2,
924 RADV_CMD_DIRTY_DYNAMIC_DEPTH_BIAS = 1 << 3,
925 RADV_CMD_DIRTY_DYNAMIC_BLEND_CONSTANTS = 1 << 4,
926 RADV_CMD_DIRTY_DYNAMIC_DEPTH_BOUNDS = 1 << 5,
927 RADV_CMD_DIRTY_DYNAMIC_STENCIL_COMPARE_MASK = 1 << 6,
928 RADV_CMD_DIRTY_DYNAMIC_STENCIL_WRITE_MASK = 1 << 7,
929 RADV_CMD_DIRTY_DYNAMIC_STENCIL_REFERENCE = 1 << 8,
930 RADV_CMD_DIRTY_DYNAMIC_DISCARD_RECTANGLE = 1 << 9,
931 RADV_CMD_DIRTY_DYNAMIC_SAMPLE_LOCATIONS = 1 << 10,
932 RADV_CMD_DIRTY_DYNAMIC_ALL = (1 << 11) - 1,
933 RADV_CMD_DIRTY_PIPELINE = 1 << 11,
934 RADV_CMD_DIRTY_INDEX_BUFFER = 1 << 12,
935 RADV_CMD_DIRTY_FRAMEBUFFER = 1 << 13,
936 RADV_CMD_DIRTY_VERTEX_BUFFER = 1 << 14,
937 RADV_CMD_DIRTY_STREAMOUT_BUFFER = 1 << 15,
938 };
939
940 enum radv_cmd_flush_bits {
941 /* Instruction cache. */
942 RADV_CMD_FLAG_INV_ICACHE = 1 << 0,
943 /* Scalar L1 cache. */
944 RADV_CMD_FLAG_INV_SCACHE = 1 << 1,
945 /* Vector L1 cache. */
946 RADV_CMD_FLAG_INV_VCACHE = 1 << 2,
947 /* L2 cache + L2 metadata cache writeback & invalidate.
948 * GFX6-8: Used by shaders only. GFX9-10: Used by everything. */
949 RADV_CMD_FLAG_INV_L2 = 1 << 3,
950 /* L2 writeback (write dirty L2 lines to memory for non-L2 clients).
951 * Only used for coherency with non-L2 clients like CB, DB, CP on GFX6-8.
952 * GFX6-7 will do complete invalidation, because the writeback is unsupported. */
953 RADV_CMD_FLAG_WB_L2 = 1 << 4,
954 /* Framebuffer caches */
955 RADV_CMD_FLAG_FLUSH_AND_INV_CB_META = 1 << 5,
956 RADV_CMD_FLAG_FLUSH_AND_INV_DB_META = 1 << 6,
957 RADV_CMD_FLAG_FLUSH_AND_INV_DB = 1 << 7,
958 RADV_CMD_FLAG_FLUSH_AND_INV_CB = 1 << 8,
959 /* Engine synchronization. */
960 RADV_CMD_FLAG_VS_PARTIAL_FLUSH = 1 << 9,
961 RADV_CMD_FLAG_PS_PARTIAL_FLUSH = 1 << 10,
962 RADV_CMD_FLAG_CS_PARTIAL_FLUSH = 1 << 11,
963 RADV_CMD_FLAG_VGT_FLUSH = 1 << 12,
964 /* Pipeline query controls. */
965 RADV_CMD_FLAG_START_PIPELINE_STATS = 1 << 13,
966 RADV_CMD_FLAG_STOP_PIPELINE_STATS = 1 << 14,
967 RADV_CMD_FLAG_VGT_STREAMOUT_SYNC = 1 << 15,
968
969 RADV_CMD_FLUSH_AND_INV_FRAMEBUFFER = (RADV_CMD_FLAG_FLUSH_AND_INV_CB |
970 RADV_CMD_FLAG_FLUSH_AND_INV_CB_META |
971 RADV_CMD_FLAG_FLUSH_AND_INV_DB |
972 RADV_CMD_FLAG_FLUSH_AND_INV_DB_META)
973 };
974
975 struct radv_vertex_binding {
976 struct radv_buffer * buffer;
977 VkDeviceSize offset;
978 };
979
980 struct radv_streamout_binding {
981 struct radv_buffer *buffer;
982 VkDeviceSize offset;
983 VkDeviceSize size;
984 };
985
986 struct radv_streamout_state {
987 /* Mask of bound streamout buffers. */
988 uint8_t enabled_mask;
989
990 /* External state that comes from the last vertex stage, it must be
991 * set explicitely when binding a new graphics pipeline.
992 */
993 uint16_t stride_in_dw[MAX_SO_BUFFERS];
994 uint32_t enabled_stream_buffers_mask; /* stream0 buffers0-3 in 4 LSB */
995
996 /* State of VGT_STRMOUT_BUFFER_(CONFIG|END) */
997 uint32_t hw_enabled_mask;
998
999 /* State of VGT_STRMOUT_(CONFIG|EN) */
1000 bool streamout_enabled;
1001 };
1002
1003 struct radv_viewport_state {
1004 uint32_t count;
1005 VkViewport viewports[MAX_VIEWPORTS];
1006 };
1007
1008 struct radv_scissor_state {
1009 uint32_t count;
1010 VkRect2D scissors[MAX_SCISSORS];
1011 };
1012
1013 struct radv_discard_rectangle_state {
1014 uint32_t count;
1015 VkRect2D rectangles[MAX_DISCARD_RECTANGLES];
1016 };
1017
1018 struct radv_sample_locations_state {
1019 VkSampleCountFlagBits per_pixel;
1020 VkExtent2D grid_size;
1021 uint32_t count;
1022 VkSampleLocationEXT locations[MAX_SAMPLE_LOCATIONS];
1023 };
1024
1025 struct radv_dynamic_state {
1026 /**
1027 * Bitmask of (1 << VK_DYNAMIC_STATE_*).
1028 * Defines the set of saved dynamic state.
1029 */
1030 uint32_t mask;
1031
1032 struct radv_viewport_state viewport;
1033
1034 struct radv_scissor_state scissor;
1035
1036 float line_width;
1037
1038 struct {
1039 float bias;
1040 float clamp;
1041 float slope;
1042 } depth_bias;
1043
1044 float blend_constants[4];
1045
1046 struct {
1047 float min;
1048 float max;
1049 } depth_bounds;
1050
1051 struct {
1052 uint32_t front;
1053 uint32_t back;
1054 } stencil_compare_mask;
1055
1056 struct {
1057 uint32_t front;
1058 uint32_t back;
1059 } stencil_write_mask;
1060
1061 struct {
1062 uint32_t front;
1063 uint32_t back;
1064 } stencil_reference;
1065
1066 struct radv_discard_rectangle_state discard_rectangle;
1067
1068 struct radv_sample_locations_state sample_location;
1069 };
1070
1071 extern const struct radv_dynamic_state default_dynamic_state;
1072
1073 const char *
1074 radv_get_debug_option_name(int id);
1075
1076 const char *
1077 radv_get_perftest_option_name(int id);
1078
1079 struct radv_color_buffer_info {
1080 uint64_t cb_color_base;
1081 uint64_t cb_color_cmask;
1082 uint64_t cb_color_fmask;
1083 uint64_t cb_dcc_base;
1084 uint32_t cb_color_slice;
1085 uint32_t cb_color_view;
1086 uint32_t cb_color_info;
1087 uint32_t cb_color_attrib;
1088 uint32_t cb_color_attrib2; /* GFX9 and later */
1089 uint32_t cb_color_attrib3; /* GFX10 and later */
1090 uint32_t cb_dcc_control;
1091 uint32_t cb_color_cmask_slice;
1092 uint32_t cb_color_fmask_slice;
1093 union {
1094 uint32_t cb_color_pitch; // GFX6-GFX8
1095 uint32_t cb_mrt_epitch; // GFX9+
1096 };
1097 };
1098
1099 struct radv_ds_buffer_info {
1100 uint64_t db_z_read_base;
1101 uint64_t db_stencil_read_base;
1102 uint64_t db_z_write_base;
1103 uint64_t db_stencil_write_base;
1104 uint64_t db_htile_data_base;
1105 uint32_t db_depth_info;
1106 uint32_t db_z_info;
1107 uint32_t db_stencil_info;
1108 uint32_t db_depth_view;
1109 uint32_t db_depth_size;
1110 uint32_t db_depth_slice;
1111 uint32_t db_htile_surface;
1112 uint32_t pa_su_poly_offset_db_fmt_cntl;
1113 uint32_t db_z_info2; /* GFX9 only */
1114 uint32_t db_stencil_info2; /* GFX9 only */
1115 float offset_scale;
1116 };
1117
1118 void
1119 radv_initialise_color_surface(struct radv_device *device,
1120 struct radv_color_buffer_info *cb,
1121 struct radv_image_view *iview);
1122 void
1123 radv_initialise_ds_surface(struct radv_device *device,
1124 struct radv_ds_buffer_info *ds,
1125 struct radv_image_view *iview);
1126
1127 /**
1128 * Attachment state when recording a renderpass instance.
1129 *
1130 * The clear value is valid only if there exists a pending clear.
1131 */
1132 struct radv_attachment_state {
1133 VkImageAspectFlags pending_clear_aspects;
1134 uint32_t cleared_views;
1135 VkClearValue clear_value;
1136 VkImageLayout current_layout;
1137 bool current_in_render_loop;
1138 struct radv_sample_locations_state sample_location;
1139
1140 union {
1141 struct radv_color_buffer_info cb;
1142 struct radv_ds_buffer_info ds;
1143 };
1144 struct radv_image_view *iview;
1145 };
1146
1147 struct radv_descriptor_state {
1148 struct radv_descriptor_set *sets[MAX_SETS];
1149 uint32_t dirty;
1150 uint32_t valid;
1151 struct radv_push_descriptor_set push_set;
1152 bool push_dirty;
1153 uint32_t dynamic_buffers[4 * MAX_DYNAMIC_BUFFERS];
1154 };
1155
1156 struct radv_subpass_sample_locs_state {
1157 uint32_t subpass_idx;
1158 struct radv_sample_locations_state sample_location;
1159 };
1160
1161 struct radv_cmd_state {
1162 /* Vertex descriptors */
1163 uint64_t vb_va;
1164 unsigned vb_size;
1165
1166 bool predicating;
1167 uint32_t dirty;
1168
1169 uint32_t prefetch_L2_mask;
1170
1171 struct radv_pipeline * pipeline;
1172 struct radv_pipeline * emitted_pipeline;
1173 struct radv_pipeline * compute_pipeline;
1174 struct radv_pipeline * emitted_compute_pipeline;
1175 struct radv_framebuffer * framebuffer;
1176 struct radv_render_pass * pass;
1177 const struct radv_subpass * subpass;
1178 struct radv_dynamic_state dynamic;
1179 struct radv_attachment_state * attachments;
1180 struct radv_streamout_state streamout;
1181 VkRect2D render_area;
1182
1183 uint32_t num_subpass_sample_locs;
1184 struct radv_subpass_sample_locs_state * subpass_sample_locs;
1185
1186 /* Index buffer */
1187 struct radv_buffer *index_buffer;
1188 uint64_t index_offset;
1189 uint32_t index_type;
1190 uint32_t max_index_count;
1191 uint64_t index_va;
1192 int32_t last_index_type;
1193
1194 int32_t last_primitive_reset_en;
1195 uint32_t last_primitive_reset_index;
1196 enum radv_cmd_flush_bits flush_bits;
1197 unsigned active_occlusion_queries;
1198 bool perfect_occlusion_queries_enabled;
1199 unsigned active_pipeline_queries;
1200 float offset_scale;
1201 uint32_t trace_id;
1202 uint32_t last_ia_multi_vgt_param;
1203
1204 uint32_t last_num_instances;
1205 uint32_t last_first_instance;
1206 uint32_t last_vertex_offset;
1207
1208 /* Whether CP DMA is busy/idle. */
1209 bool dma_is_busy;
1210
1211 /* Conditional rendering info. */
1212 int predication_type; /* -1: disabled, 0: normal, 1: inverted */
1213 uint64_t predication_va;
1214
1215 bool context_roll_without_scissor_emitted;
1216 };
1217
1218 struct radv_cmd_pool {
1219 VkAllocationCallbacks alloc;
1220 struct list_head cmd_buffers;
1221 struct list_head free_cmd_buffers;
1222 uint32_t queue_family_index;
1223 };
1224
1225 struct radv_cmd_buffer_upload {
1226 uint8_t *map;
1227 unsigned offset;
1228 uint64_t size;
1229 struct radeon_winsys_bo *upload_bo;
1230 struct list_head list;
1231 };
1232
1233 enum radv_cmd_buffer_status {
1234 RADV_CMD_BUFFER_STATUS_INVALID,
1235 RADV_CMD_BUFFER_STATUS_INITIAL,
1236 RADV_CMD_BUFFER_STATUS_RECORDING,
1237 RADV_CMD_BUFFER_STATUS_EXECUTABLE,
1238 RADV_CMD_BUFFER_STATUS_PENDING,
1239 };
1240
1241 struct radv_cmd_buffer {
1242 VK_LOADER_DATA _loader_data;
1243
1244 struct radv_device * device;
1245
1246 struct radv_cmd_pool * pool;
1247 struct list_head pool_link;
1248
1249 VkCommandBufferUsageFlags usage_flags;
1250 VkCommandBufferLevel level;
1251 enum radv_cmd_buffer_status status;
1252 struct radeon_cmdbuf *cs;
1253 struct radv_cmd_state state;
1254 struct radv_vertex_binding vertex_bindings[MAX_VBS];
1255 struct radv_streamout_binding streamout_bindings[MAX_SO_BUFFERS];
1256 uint32_t queue_family_index;
1257
1258 uint8_t push_constants[MAX_PUSH_CONSTANTS_SIZE];
1259 VkShaderStageFlags push_constant_stages;
1260 struct radv_descriptor_set meta_push_descriptors;
1261
1262 struct radv_descriptor_state descriptors[VK_PIPELINE_BIND_POINT_RANGE_SIZE];
1263
1264 struct radv_cmd_buffer_upload upload;
1265
1266 uint32_t scratch_size_needed;
1267 uint32_t compute_scratch_size_needed;
1268 uint32_t esgs_ring_size_needed;
1269 uint32_t gsvs_ring_size_needed;
1270 bool tess_rings_needed;
1271 bool gds_needed; /* for GFX10 streamout */
1272 bool sample_positions_needed;
1273
1274 VkResult record_result;
1275
1276 uint64_t gfx9_fence_va;
1277 uint32_t gfx9_fence_idx;
1278 uint64_t gfx9_eop_bug_va;
1279
1280 /**
1281 * Whether a query pool has been resetted and we have to flush caches.
1282 */
1283 bool pending_reset_query;
1284
1285 /**
1286 * Bitmask of pending active query flushes.
1287 */
1288 enum radv_cmd_flush_bits active_query_flush_bits;
1289 };
1290
1291 struct radv_image;
1292 struct radv_image_view;
1293
1294 bool radv_cmd_buffer_uses_mec(struct radv_cmd_buffer *cmd_buffer);
1295
1296 void si_emit_graphics(struct radv_physical_device *physical_device,
1297 struct radeon_cmdbuf *cs);
1298 void si_emit_compute(struct radv_physical_device *physical_device,
1299 struct radeon_cmdbuf *cs);
1300
1301 void cik_create_gfx_config(struct radv_device *device);
1302
1303 void si_write_viewport(struct radeon_cmdbuf *cs, int first_vp,
1304 int count, const VkViewport *viewports);
1305 void si_write_scissors(struct radeon_cmdbuf *cs, int first,
1306 int count, const VkRect2D *scissors,
1307 const VkViewport *viewports, bool can_use_guardband);
1308 uint32_t si_get_ia_multi_vgt_param(struct radv_cmd_buffer *cmd_buffer,
1309 bool instanced_draw, bool indirect_draw,
1310 bool count_from_stream_output,
1311 uint32_t draw_vertex_count);
1312 void si_cs_emit_write_event_eop(struct radeon_cmdbuf *cs,
1313 enum chip_class chip_class,
1314 bool is_mec,
1315 unsigned event, unsigned event_flags,
1316 unsigned dst_sel, unsigned data_sel,
1317 uint64_t va,
1318 uint32_t new_fence,
1319 uint64_t gfx9_eop_bug_va);
1320
1321 void radv_cp_wait_mem(struct radeon_cmdbuf *cs, uint32_t op, uint64_t va,
1322 uint32_t ref, uint32_t mask);
1323 void si_cs_emit_cache_flush(struct radeon_cmdbuf *cs,
1324 enum chip_class chip_class,
1325 uint32_t *fence_ptr, uint64_t va,
1326 bool is_mec,
1327 enum radv_cmd_flush_bits flush_bits,
1328 uint64_t gfx9_eop_bug_va);
1329 void si_emit_cache_flush(struct radv_cmd_buffer *cmd_buffer);
1330 void si_emit_set_predication_state(struct radv_cmd_buffer *cmd_buffer,
1331 bool inverted, uint64_t va);
1332 void si_cp_dma_buffer_copy(struct radv_cmd_buffer *cmd_buffer,
1333 uint64_t src_va, uint64_t dest_va,
1334 uint64_t size);
1335 void si_cp_dma_prefetch(struct radv_cmd_buffer *cmd_buffer, uint64_t va,
1336 unsigned size);
1337 void si_cp_dma_clear_buffer(struct radv_cmd_buffer *cmd_buffer, uint64_t va,
1338 uint64_t size, unsigned value);
1339 void si_cp_dma_wait_for_idle(struct radv_cmd_buffer *cmd_buffer);
1340
1341 void radv_set_db_count_control(struct radv_cmd_buffer *cmd_buffer);
1342 bool
1343 radv_cmd_buffer_upload_alloc(struct radv_cmd_buffer *cmd_buffer,
1344 unsigned size,
1345 unsigned alignment,
1346 unsigned *out_offset,
1347 void **ptr);
1348 void
1349 radv_cmd_buffer_set_subpass(struct radv_cmd_buffer *cmd_buffer,
1350 const struct radv_subpass *subpass);
1351 bool
1352 radv_cmd_buffer_upload_data(struct radv_cmd_buffer *cmd_buffer,
1353 unsigned size, unsigned alignmnet,
1354 const void *data, unsigned *out_offset);
1355
1356 void radv_cmd_buffer_clear_subpass(struct radv_cmd_buffer *cmd_buffer);
1357 void radv_cmd_buffer_resolve_subpass(struct radv_cmd_buffer *cmd_buffer);
1358 void radv_cmd_buffer_resolve_subpass_cs(struct radv_cmd_buffer *cmd_buffer);
1359 void radv_depth_stencil_resolve_subpass_cs(struct radv_cmd_buffer *cmd_buffer,
1360 VkImageAspectFlags aspects,
1361 VkResolveModeFlagBitsKHR resolve_mode);
1362 void radv_cmd_buffer_resolve_subpass_fs(struct radv_cmd_buffer *cmd_buffer);
1363 void radv_depth_stencil_resolve_subpass_fs(struct radv_cmd_buffer *cmd_buffer,
1364 VkImageAspectFlags aspects,
1365 VkResolveModeFlagBitsKHR resolve_mode);
1366 void radv_emit_default_sample_locations(struct radeon_cmdbuf *cs, int nr_samples);
1367 unsigned radv_get_default_max_sample_dist(int log_samples);
1368 void radv_device_init_msaa(struct radv_device *device);
1369
1370 void radv_update_ds_clear_metadata(struct radv_cmd_buffer *cmd_buffer,
1371 const struct radv_image_view *iview,
1372 VkClearDepthStencilValue ds_clear_value,
1373 VkImageAspectFlags aspects);
1374
1375 void radv_update_color_clear_metadata(struct radv_cmd_buffer *cmd_buffer,
1376 const struct radv_image_view *iview,
1377 int cb_idx,
1378 uint32_t color_values[2]);
1379
1380 void radv_update_fce_metadata(struct radv_cmd_buffer *cmd_buffer,
1381 struct radv_image *image,
1382 const VkImageSubresourceRange *range, bool value);
1383
1384 void radv_update_dcc_metadata(struct radv_cmd_buffer *cmd_buffer,
1385 struct radv_image *image,
1386 const VkImageSubresourceRange *range, bool value);
1387
1388 uint32_t radv_fill_buffer(struct radv_cmd_buffer *cmd_buffer,
1389 struct radeon_winsys_bo *bo,
1390 uint64_t offset, uint64_t size, uint32_t value);
1391 void radv_cmd_buffer_trace_emit(struct radv_cmd_buffer *cmd_buffer);
1392 bool radv_get_memory_fd(struct radv_device *device,
1393 struct radv_device_memory *memory,
1394 int *pFD);
1395
1396 static inline void
1397 radv_emit_shader_pointer_head(struct radeon_cmdbuf *cs,
1398 unsigned sh_offset, unsigned pointer_count,
1399 bool use_32bit_pointers)
1400 {
1401 radeon_emit(cs, PKT3(PKT3_SET_SH_REG, pointer_count * (use_32bit_pointers ? 1 : 2), 0));
1402 radeon_emit(cs, (sh_offset - SI_SH_REG_OFFSET) >> 2);
1403 }
1404
1405 static inline void
1406 radv_emit_shader_pointer_body(struct radv_device *device,
1407 struct radeon_cmdbuf *cs,
1408 uint64_t va, bool use_32bit_pointers)
1409 {
1410 radeon_emit(cs, va);
1411
1412 if (use_32bit_pointers) {
1413 assert(va == 0 ||
1414 (va >> 32) == device->physical_device->rad_info.address32_hi);
1415 } else {
1416 radeon_emit(cs, va >> 32);
1417 }
1418 }
1419
1420 static inline void
1421 radv_emit_shader_pointer(struct radv_device *device,
1422 struct radeon_cmdbuf *cs,
1423 uint32_t sh_offset, uint64_t va, bool global)
1424 {
1425 bool use_32bit_pointers = !global;
1426
1427 radv_emit_shader_pointer_head(cs, sh_offset, 1, use_32bit_pointers);
1428 radv_emit_shader_pointer_body(device, cs, va, use_32bit_pointers);
1429 }
1430
1431 static inline struct radv_descriptor_state *
1432 radv_get_descriptors_state(struct radv_cmd_buffer *cmd_buffer,
1433 VkPipelineBindPoint bind_point)
1434 {
1435 assert(bind_point == VK_PIPELINE_BIND_POINT_GRAPHICS ||
1436 bind_point == VK_PIPELINE_BIND_POINT_COMPUTE);
1437 return &cmd_buffer->descriptors[bind_point];
1438 }
1439
1440 /*
1441 * Takes x,y,z as exact numbers of invocations, instead of blocks.
1442 *
1443 * Limitations: Can't call normal dispatch functions without binding or rebinding
1444 * the compute pipeline.
1445 */
1446 void radv_unaligned_dispatch(
1447 struct radv_cmd_buffer *cmd_buffer,
1448 uint32_t x,
1449 uint32_t y,
1450 uint32_t z);
1451
1452 struct radv_event {
1453 struct radeon_winsys_bo *bo;
1454 uint64_t *map;
1455 };
1456
1457 struct radv_shader_module;
1458
1459 #define RADV_HASH_SHADER_IS_GEOM_COPY_SHADER (1 << 0)
1460 #define RADV_HASH_SHADER_SISCHED (1 << 1)
1461 #define RADV_HASH_SHADER_UNSAFE_MATH (1 << 2)
1462 #define RADV_HASH_SHADER_NO_NGG (1 << 3)
1463 #define RADV_HASH_SHADER_CS_WAVE32 (1 << 4)
1464 #define RADV_HASH_SHADER_PS_WAVE32 (1 << 5)
1465 #define RADV_HASH_SHADER_GE_WAVE32 (1 << 6)
1466 #define RADV_HASH_SHADER_ACO (1 << 7)
1467
1468 void
1469 radv_hash_shaders(unsigned char *hash,
1470 const VkPipelineShaderStageCreateInfo **stages,
1471 const struct radv_pipeline_layout *layout,
1472 const struct radv_pipeline_key *key,
1473 uint32_t flags);
1474
1475 static inline gl_shader_stage
1476 vk_to_mesa_shader_stage(VkShaderStageFlagBits vk_stage)
1477 {
1478 assert(__builtin_popcount(vk_stage) == 1);
1479 return ffs(vk_stage) - 1;
1480 }
1481
1482 static inline VkShaderStageFlagBits
1483 mesa_to_vk_shader_stage(gl_shader_stage mesa_stage)
1484 {
1485 return (1 << mesa_stage);
1486 }
1487
1488 #define RADV_STAGE_MASK ((1 << MESA_SHADER_STAGES) - 1)
1489
1490 #define radv_foreach_stage(stage, stage_bits) \
1491 for (gl_shader_stage stage, \
1492 __tmp = (gl_shader_stage)((stage_bits) & RADV_STAGE_MASK); \
1493 stage = __builtin_ffs(__tmp) - 1, __tmp; \
1494 __tmp &= ~(1 << (stage)))
1495
1496 extern const VkFormat radv_fs_key_format_exemplars[NUM_META_FS_KEYS];
1497 unsigned radv_format_meta_fs_key(VkFormat format);
1498
1499 struct radv_multisample_state {
1500 uint32_t db_eqaa;
1501 uint32_t pa_sc_line_cntl;
1502 uint32_t pa_sc_mode_cntl_0;
1503 uint32_t pa_sc_mode_cntl_1;
1504 uint32_t pa_sc_aa_config;
1505 uint32_t pa_sc_aa_mask[2];
1506 unsigned num_samples;
1507 };
1508
1509 struct radv_prim_vertex_count {
1510 uint8_t min;
1511 uint8_t incr;
1512 };
1513
1514 struct radv_vertex_elements_info {
1515 uint32_t format_size[MAX_VERTEX_ATTRIBS];
1516 };
1517
1518 struct radv_ia_multi_vgt_param_helpers {
1519 uint32_t base;
1520 bool partial_es_wave;
1521 uint8_t primgroup_size;
1522 bool wd_switch_on_eop;
1523 bool ia_switch_on_eoi;
1524 bool partial_vs_wave;
1525 };
1526
1527 struct radv_binning_state {
1528 uint32_t pa_sc_binner_cntl_0;
1529 uint32_t db_dfsm_control;
1530 };
1531
1532 #define SI_GS_PER_ES 128
1533
1534 struct radv_pipeline {
1535 struct radv_device * device;
1536 struct radv_dynamic_state dynamic_state;
1537
1538 struct radv_pipeline_layout * layout;
1539
1540 bool need_indirect_descriptor_sets;
1541 struct radv_shader_variant * shaders[MESA_SHADER_STAGES];
1542 struct radv_shader_variant *gs_copy_shader;
1543 VkShaderStageFlags active_stages;
1544
1545 struct radeon_cmdbuf cs;
1546 uint32_t ctx_cs_hash;
1547 struct radeon_cmdbuf ctx_cs;
1548
1549 struct radv_vertex_elements_info vertex_elements;
1550
1551 uint32_t binding_stride[MAX_VBS];
1552 uint8_t num_vertex_bindings;
1553
1554 uint32_t user_data_0[MESA_SHADER_STAGES];
1555 union {
1556 struct {
1557 struct radv_multisample_state ms;
1558 struct radv_binning_state binning;
1559 uint32_t spi_baryc_cntl;
1560 bool prim_restart_enable;
1561 unsigned esgs_ring_size;
1562 unsigned gsvs_ring_size;
1563 uint32_t vtx_base_sgpr;
1564 struct radv_ia_multi_vgt_param_helpers ia_multi_vgt_param;
1565 uint8_t vtx_emit_num;
1566 struct radv_prim_vertex_count prim_vertex_count;
1567 bool can_use_guardband;
1568 uint32_t needed_dynamic_state;
1569 bool disable_out_of_order_rast_for_occlusion;
1570
1571 /* Used for rbplus */
1572 uint32_t col_format;
1573 uint32_t cb_target_mask;
1574 } graphics;
1575 };
1576
1577 unsigned max_waves;
1578 unsigned scratch_bytes_per_wave;
1579
1580 /* Not NULL if graphics pipeline uses streamout. */
1581 struct radv_shader_variant *streamout_shader;
1582 };
1583
1584 static inline bool radv_pipeline_has_gs(const struct radv_pipeline *pipeline)
1585 {
1586 return pipeline->shaders[MESA_SHADER_GEOMETRY] ? true : false;
1587 }
1588
1589 static inline bool radv_pipeline_has_tess(const struct radv_pipeline *pipeline)
1590 {
1591 return pipeline->shaders[MESA_SHADER_TESS_CTRL] ? true : false;
1592 }
1593
1594 bool radv_pipeline_has_ngg(const struct radv_pipeline *pipeline);
1595
1596 bool radv_pipeline_has_gs_copy_shader(const struct radv_pipeline *pipeline);
1597
1598 struct radv_userdata_info *radv_lookup_user_sgpr(struct radv_pipeline *pipeline,
1599 gl_shader_stage stage,
1600 int idx);
1601
1602 struct radv_shader_variant *radv_get_shader(struct radv_pipeline *pipeline,
1603 gl_shader_stage stage);
1604
1605 struct radv_graphics_pipeline_create_info {
1606 bool use_rectlist;
1607 bool db_depth_clear;
1608 bool db_stencil_clear;
1609 bool db_depth_disable_expclear;
1610 bool db_stencil_disable_expclear;
1611 bool db_flush_depth_inplace;
1612 bool db_flush_stencil_inplace;
1613 bool db_resummarize;
1614 uint32_t custom_blend_mode;
1615 };
1616
1617 VkResult
1618 radv_graphics_pipeline_create(VkDevice device,
1619 VkPipelineCache cache,
1620 const VkGraphicsPipelineCreateInfo *pCreateInfo,
1621 const struct radv_graphics_pipeline_create_info *extra,
1622 const VkAllocationCallbacks *alloc,
1623 VkPipeline *pPipeline);
1624
1625 struct vk_format_description;
1626 uint32_t radv_translate_buffer_dataformat(const struct vk_format_description *desc,
1627 int first_non_void);
1628 uint32_t radv_translate_buffer_numformat(const struct vk_format_description *desc,
1629 int first_non_void);
1630 bool radv_is_buffer_format_supported(VkFormat format, bool *scaled);
1631 uint32_t radv_translate_colorformat(VkFormat format);
1632 uint32_t radv_translate_color_numformat(VkFormat format,
1633 const struct vk_format_description *desc,
1634 int first_non_void);
1635 uint32_t radv_colorformat_endian_swap(uint32_t colorformat);
1636 unsigned radv_translate_colorswap(VkFormat format, bool do_endian_swap);
1637 uint32_t radv_translate_dbformat(VkFormat format);
1638 uint32_t radv_translate_tex_dataformat(VkFormat format,
1639 const struct vk_format_description *desc,
1640 int first_non_void);
1641 uint32_t radv_translate_tex_numformat(VkFormat format,
1642 const struct vk_format_description *desc,
1643 int first_non_void);
1644 bool radv_format_pack_clear_color(VkFormat format,
1645 uint32_t clear_vals[2],
1646 VkClearColorValue *value);
1647 bool radv_is_colorbuffer_format_supported(VkFormat format, bool *blendable);
1648 bool radv_dcc_formats_compatible(VkFormat format1,
1649 VkFormat format2);
1650 bool radv_device_supports_etc(struct radv_physical_device *physical_device);
1651
1652 struct radv_image_plane {
1653 VkFormat format;
1654 struct radeon_surf surface;
1655 uint64_t offset;
1656 };
1657
1658 struct radv_image {
1659 VkImageType type;
1660 /* The original VkFormat provided by the client. This may not match any
1661 * of the actual surface formats.
1662 */
1663 VkFormat vk_format;
1664 VkImageAspectFlags aspects;
1665 VkImageUsageFlags usage; /**< Superset of VkImageCreateInfo::usage. */
1666 struct ac_surf_info info;
1667 VkImageTiling tiling; /** VkImageCreateInfo::tiling */
1668 VkImageCreateFlags flags; /** VkImageCreateInfo::flags */
1669
1670 VkDeviceSize size;
1671 uint32_t alignment;
1672
1673 unsigned queue_family_mask;
1674 bool exclusive;
1675 bool shareable;
1676
1677 /* Set when bound */
1678 struct radeon_winsys_bo *bo;
1679 VkDeviceSize offset;
1680 uint64_t dcc_offset;
1681 uint64_t htile_offset;
1682 bool tc_compatible_htile;
1683 bool tc_compatible_cmask;
1684
1685 uint64_t cmask_offset;
1686 uint64_t fmask_offset;
1687 uint64_t clear_value_offset;
1688 uint64_t fce_pred_offset;
1689 uint64_t dcc_pred_offset;
1690
1691 /*
1692 * Metadata for the TC-compat zrange workaround. If the 32-bit value
1693 * stored at this offset is UINT_MAX, the driver will emit
1694 * DB_Z_INFO.ZRANGE_PRECISION=0, otherwise it will skip the
1695 * SET_CONTEXT_REG packet.
1696 */
1697 uint64_t tc_compat_zrange_offset;
1698
1699 /* For VK_ANDROID_native_buffer, the WSI image owns the memory, */
1700 VkDeviceMemory owned_memory;
1701
1702 unsigned plane_count;
1703 struct radv_image_plane planes[0];
1704 };
1705
1706 /* Whether the image has a htile that is known consistent with the contents of
1707 * the image. */
1708 bool radv_layout_has_htile(const struct radv_image *image,
1709 VkImageLayout layout,
1710 bool in_render_loop,
1711 unsigned queue_mask);
1712
1713 /* Whether the image has a htile that is known consistent with the contents of
1714 * the image and is allowed to be in compressed form.
1715 *
1716 * If this is false reads that don't use the htile should be able to return
1717 * correct results.
1718 */
1719 bool radv_layout_is_htile_compressed(const struct radv_image *image,
1720 VkImageLayout layout,
1721 bool in_render_loop,
1722 unsigned queue_mask);
1723
1724 bool radv_layout_can_fast_clear(const struct radv_image *image,
1725 VkImageLayout layout,
1726 bool in_render_loop,
1727 unsigned queue_mask);
1728
1729 bool radv_layout_dcc_compressed(const struct radv_device *device,
1730 const struct radv_image *image,
1731 VkImageLayout layout,
1732 bool in_render_loop,
1733 unsigned queue_mask);
1734
1735 /**
1736 * Return whether the image has CMASK metadata for color surfaces.
1737 */
1738 static inline bool
1739 radv_image_has_cmask(const struct radv_image *image)
1740 {
1741 return image->cmask_offset;
1742 }
1743
1744 /**
1745 * Return whether the image has FMASK metadata for color surfaces.
1746 */
1747 static inline bool
1748 radv_image_has_fmask(const struct radv_image *image)
1749 {
1750 return image->fmask_offset;
1751 }
1752
1753 /**
1754 * Return whether the image has DCC metadata for color surfaces.
1755 */
1756 static inline bool
1757 radv_image_has_dcc(const struct radv_image *image)
1758 {
1759 return image->planes[0].surface.dcc_size;
1760 }
1761
1762 /**
1763 * Return whether the image is TC-compatible CMASK.
1764 */
1765 static inline bool
1766 radv_image_is_tc_compat_cmask(const struct radv_image *image)
1767 {
1768 return radv_image_has_fmask(image) && image->tc_compatible_cmask;
1769 }
1770
1771 /**
1772 * Return whether DCC metadata is enabled for a level.
1773 */
1774 static inline bool
1775 radv_dcc_enabled(const struct radv_image *image, unsigned level)
1776 {
1777 return radv_image_has_dcc(image) &&
1778 level < image->planes[0].surface.num_dcc_levels;
1779 }
1780
1781 /**
1782 * Return whether the image has CB metadata.
1783 */
1784 static inline bool
1785 radv_image_has_CB_metadata(const struct radv_image *image)
1786 {
1787 return radv_image_has_cmask(image) ||
1788 radv_image_has_fmask(image) ||
1789 radv_image_has_dcc(image);
1790 }
1791
1792 /**
1793 * Return whether the image has HTILE metadata for depth surfaces.
1794 */
1795 static inline bool
1796 radv_image_has_htile(const struct radv_image *image)
1797 {
1798 return image->planes[0].surface.htile_size;
1799 }
1800
1801 /**
1802 * Return whether HTILE metadata is enabled for a level.
1803 */
1804 static inline bool
1805 radv_htile_enabled(const struct radv_image *image, unsigned level)
1806 {
1807 return radv_image_has_htile(image) && level == 0;
1808 }
1809
1810 /**
1811 * Return whether the image is TC-compatible HTILE.
1812 */
1813 static inline bool
1814 radv_image_is_tc_compat_htile(const struct radv_image *image)
1815 {
1816 return radv_image_has_htile(image) && image->tc_compatible_htile;
1817 }
1818
1819 static inline uint64_t
1820 radv_image_get_fast_clear_va(const struct radv_image *image,
1821 uint32_t base_level)
1822 {
1823 uint64_t va = radv_buffer_get_va(image->bo);
1824 va += image->offset + image->clear_value_offset + base_level * 8;
1825 return va;
1826 }
1827
1828 static inline uint64_t
1829 radv_image_get_fce_pred_va(const struct radv_image *image,
1830 uint32_t base_level)
1831 {
1832 uint64_t va = radv_buffer_get_va(image->bo);
1833 va += image->offset + image->fce_pred_offset + base_level * 8;
1834 return va;
1835 }
1836
1837 static inline uint64_t
1838 radv_image_get_dcc_pred_va(const struct radv_image *image,
1839 uint32_t base_level)
1840 {
1841 uint64_t va = radv_buffer_get_va(image->bo);
1842 va += image->offset + image->dcc_pred_offset + base_level * 8;
1843 return va;
1844 }
1845
1846 static inline uint64_t
1847 radv_get_tc_compat_zrange_va(const struct radv_image *image,
1848 uint32_t base_level)
1849 {
1850 uint64_t va = radv_buffer_get_va(image->bo);
1851 va += image->offset + image->tc_compat_zrange_offset + base_level * 4;
1852 return va;
1853 }
1854
1855 static inline uint64_t
1856 radv_get_ds_clear_value_va(const struct radv_image *image,
1857 uint32_t base_level)
1858 {
1859 uint64_t va = radv_buffer_get_va(image->bo);
1860 va += image->offset + image->clear_value_offset + base_level * 8;
1861 return va;
1862 }
1863
1864 unsigned radv_image_queue_family_mask(const struct radv_image *image, uint32_t family, uint32_t queue_family);
1865
1866 static inline uint32_t
1867 radv_get_layerCount(const struct radv_image *image,
1868 const VkImageSubresourceRange *range)
1869 {
1870 return range->layerCount == VK_REMAINING_ARRAY_LAYERS ?
1871 image->info.array_size - range->baseArrayLayer : range->layerCount;
1872 }
1873
1874 static inline uint32_t
1875 radv_get_levelCount(const struct radv_image *image,
1876 const VkImageSubresourceRange *range)
1877 {
1878 return range->levelCount == VK_REMAINING_MIP_LEVELS ?
1879 image->info.levels - range->baseMipLevel : range->levelCount;
1880 }
1881
1882 struct radeon_bo_metadata;
1883 void
1884 radv_init_metadata(struct radv_device *device,
1885 struct radv_image *image,
1886 struct radeon_bo_metadata *metadata);
1887
1888 void
1889 radv_image_override_offset_stride(struct radv_device *device,
1890 struct radv_image *image,
1891 uint64_t offset, uint32_t stride);
1892
1893 union radv_descriptor {
1894 struct {
1895 uint32_t plane0_descriptor[8];
1896 uint32_t fmask_descriptor[8];
1897 };
1898 struct {
1899 uint32_t plane_descriptors[3][8];
1900 };
1901 };
1902
1903 struct radv_image_view {
1904 struct radv_image *image; /**< VkImageViewCreateInfo::image */
1905 struct radeon_winsys_bo *bo;
1906
1907 VkImageViewType type;
1908 VkImageAspectFlags aspect_mask;
1909 VkFormat vk_format;
1910 unsigned plane_id;
1911 bool multiple_planes;
1912 uint32_t base_layer;
1913 uint32_t layer_count;
1914 uint32_t base_mip;
1915 uint32_t level_count;
1916 VkExtent3D extent; /**< Extent of VkImageViewCreateInfo::baseMipLevel. */
1917
1918 union radv_descriptor descriptor;
1919
1920 /* Descriptor for use as a storage image as opposed to a sampled image.
1921 * This has a few differences for cube maps (e.g. type).
1922 */
1923 union radv_descriptor storage_descriptor;
1924 };
1925
1926 struct radv_image_create_info {
1927 const VkImageCreateInfo *vk_info;
1928 bool scanout;
1929 bool no_metadata_planes;
1930 const struct radeon_bo_metadata *bo_metadata;
1931 };
1932
1933 VkResult
1934 radv_image_create_layout(struct radv_device *device,
1935 struct radv_image_create_info create_info,
1936 struct radv_image *image);
1937
1938 VkResult radv_image_create(VkDevice _device,
1939 const struct radv_image_create_info *info,
1940 const VkAllocationCallbacks* alloc,
1941 VkImage *pImage);
1942
1943 bool vi_alpha_is_on_msb(struct radv_device *device, VkFormat format);
1944
1945 VkResult
1946 radv_image_from_gralloc(VkDevice device_h,
1947 const VkImageCreateInfo *base_info,
1948 const VkNativeBufferANDROID *gralloc_info,
1949 const VkAllocationCallbacks *alloc,
1950 VkImage *out_image_h);
1951 uint64_t
1952 radv_ahb_usage_from_vk_usage(const VkImageCreateFlags vk_create,
1953 const VkImageUsageFlags vk_usage);
1954 VkResult
1955 radv_import_ahb_memory(struct radv_device *device,
1956 struct radv_device_memory *mem,
1957 unsigned priority,
1958 const VkImportAndroidHardwareBufferInfoANDROID *info);
1959 VkResult
1960 radv_create_ahb_memory(struct radv_device *device,
1961 struct radv_device_memory *mem,
1962 unsigned priority,
1963 const VkMemoryAllocateInfo *pAllocateInfo);
1964
1965 VkFormat
1966 radv_select_android_external_format(const void *next, VkFormat default_format);
1967
1968 bool radv_android_gralloc_supports_format(VkFormat format, VkImageUsageFlagBits usage);
1969
1970 struct radv_image_view_extra_create_info {
1971 bool disable_compression;
1972 };
1973
1974 void radv_image_view_init(struct radv_image_view *view,
1975 struct radv_device *device,
1976 const VkImageViewCreateInfo *pCreateInfo,
1977 const struct radv_image_view_extra_create_info* extra_create_info);
1978
1979 VkFormat radv_get_aspect_format(struct radv_image *image, VkImageAspectFlags mask);
1980
1981 struct radv_sampler_ycbcr_conversion {
1982 VkFormat format;
1983 VkSamplerYcbcrModelConversion ycbcr_model;
1984 VkSamplerYcbcrRange ycbcr_range;
1985 VkComponentMapping components;
1986 VkChromaLocation chroma_offsets[2];
1987 VkFilter chroma_filter;
1988 };
1989
1990 struct radv_buffer_view {
1991 struct radeon_winsys_bo *bo;
1992 VkFormat vk_format;
1993 uint64_t range; /**< VkBufferViewCreateInfo::range */
1994 uint32_t state[4];
1995 };
1996 void radv_buffer_view_init(struct radv_buffer_view *view,
1997 struct radv_device *device,
1998 const VkBufferViewCreateInfo* pCreateInfo);
1999
2000 static inline struct VkExtent3D
2001 radv_sanitize_image_extent(const VkImageType imageType,
2002 const struct VkExtent3D imageExtent)
2003 {
2004 switch (imageType) {
2005 case VK_IMAGE_TYPE_1D:
2006 return (VkExtent3D) { imageExtent.width, 1, 1 };
2007 case VK_IMAGE_TYPE_2D:
2008 return (VkExtent3D) { imageExtent.width, imageExtent.height, 1 };
2009 case VK_IMAGE_TYPE_3D:
2010 return imageExtent;
2011 default:
2012 unreachable("invalid image type");
2013 }
2014 }
2015
2016 static inline struct VkOffset3D
2017 radv_sanitize_image_offset(const VkImageType imageType,
2018 const struct VkOffset3D imageOffset)
2019 {
2020 switch (imageType) {
2021 case VK_IMAGE_TYPE_1D:
2022 return (VkOffset3D) { imageOffset.x, 0, 0 };
2023 case VK_IMAGE_TYPE_2D:
2024 return (VkOffset3D) { imageOffset.x, imageOffset.y, 0 };
2025 case VK_IMAGE_TYPE_3D:
2026 return imageOffset;
2027 default:
2028 unreachable("invalid image type");
2029 }
2030 }
2031
2032 static inline bool
2033 radv_image_extent_compare(const struct radv_image *image,
2034 const VkExtent3D *extent)
2035 {
2036 if (extent->width != image->info.width ||
2037 extent->height != image->info.height ||
2038 extent->depth != image->info.depth)
2039 return false;
2040 return true;
2041 }
2042
2043 struct radv_sampler {
2044 uint32_t state[4];
2045 struct radv_sampler_ycbcr_conversion *ycbcr_sampler;
2046 };
2047
2048 struct radv_framebuffer {
2049 uint32_t width;
2050 uint32_t height;
2051 uint32_t layers;
2052
2053 uint32_t attachment_count;
2054 struct radv_image_view *attachments[0];
2055 };
2056
2057 struct radv_subpass_barrier {
2058 VkPipelineStageFlags src_stage_mask;
2059 VkAccessFlags src_access_mask;
2060 VkAccessFlags dst_access_mask;
2061 };
2062
2063 void radv_subpass_barrier(struct radv_cmd_buffer *cmd_buffer,
2064 const struct radv_subpass_barrier *barrier);
2065
2066 struct radv_subpass_attachment {
2067 uint32_t attachment;
2068 VkImageLayout layout;
2069 bool in_render_loop;
2070 };
2071
2072 struct radv_subpass {
2073 uint32_t attachment_count;
2074 struct radv_subpass_attachment * attachments;
2075
2076 uint32_t input_count;
2077 uint32_t color_count;
2078 struct radv_subpass_attachment * input_attachments;
2079 struct radv_subpass_attachment * color_attachments;
2080 struct radv_subpass_attachment * resolve_attachments;
2081 struct radv_subpass_attachment * depth_stencil_attachment;
2082 struct radv_subpass_attachment * ds_resolve_attachment;
2083 VkResolveModeFlagBitsKHR depth_resolve_mode;
2084 VkResolveModeFlagBitsKHR stencil_resolve_mode;
2085
2086 /** Subpass has at least one color resolve attachment */
2087 bool has_color_resolve;
2088
2089 /** Subpass has at least one color attachment */
2090 bool has_color_att;
2091
2092 struct radv_subpass_barrier start_barrier;
2093
2094 uint32_t view_mask;
2095 VkSampleCountFlagBits max_sample_count;
2096 };
2097
2098 uint32_t
2099 radv_get_subpass_id(struct radv_cmd_buffer *cmd_buffer);
2100
2101 struct radv_render_pass_attachment {
2102 VkFormat format;
2103 uint32_t samples;
2104 VkAttachmentLoadOp load_op;
2105 VkAttachmentLoadOp stencil_load_op;
2106 VkImageLayout initial_layout;
2107 VkImageLayout final_layout;
2108
2109 /* The subpass id in which the attachment will be used first/last. */
2110 uint32_t first_subpass_idx;
2111 uint32_t last_subpass_idx;
2112 };
2113
2114 struct radv_render_pass {
2115 uint32_t attachment_count;
2116 uint32_t subpass_count;
2117 struct radv_subpass_attachment * subpass_attachments;
2118 struct radv_render_pass_attachment * attachments;
2119 struct radv_subpass_barrier end_barrier;
2120 struct radv_subpass subpasses[0];
2121 };
2122
2123 VkResult radv_device_init_meta(struct radv_device *device);
2124 void radv_device_finish_meta(struct radv_device *device);
2125
2126 struct radv_query_pool {
2127 struct radeon_winsys_bo *bo;
2128 uint32_t stride;
2129 uint32_t availability_offset;
2130 uint64_t size;
2131 char *ptr;
2132 VkQueryType type;
2133 uint32_t pipeline_stats_mask;
2134 };
2135
2136 struct radv_semaphore {
2137 /* use a winsys sem for non-exportable */
2138 struct radeon_winsys_sem *sem;
2139 uint32_t syncobj;
2140 uint32_t temp_syncobj;
2141 };
2142
2143 void radv_set_descriptor_set(struct radv_cmd_buffer *cmd_buffer,
2144 VkPipelineBindPoint bind_point,
2145 struct radv_descriptor_set *set,
2146 unsigned idx);
2147
2148 void
2149 radv_update_descriptor_sets(struct radv_device *device,
2150 struct radv_cmd_buffer *cmd_buffer,
2151 VkDescriptorSet overrideSet,
2152 uint32_t descriptorWriteCount,
2153 const VkWriteDescriptorSet *pDescriptorWrites,
2154 uint32_t descriptorCopyCount,
2155 const VkCopyDescriptorSet *pDescriptorCopies);
2156
2157 void
2158 radv_update_descriptor_set_with_template(struct radv_device *device,
2159 struct radv_cmd_buffer *cmd_buffer,
2160 struct radv_descriptor_set *set,
2161 VkDescriptorUpdateTemplate descriptorUpdateTemplate,
2162 const void *pData);
2163
2164 void radv_meta_push_descriptor_set(struct radv_cmd_buffer *cmd_buffer,
2165 VkPipelineBindPoint pipelineBindPoint,
2166 VkPipelineLayout _layout,
2167 uint32_t set,
2168 uint32_t descriptorWriteCount,
2169 const VkWriteDescriptorSet *pDescriptorWrites);
2170
2171 void radv_initialize_dcc(struct radv_cmd_buffer *cmd_buffer,
2172 struct radv_image *image,
2173 const VkImageSubresourceRange *range, uint32_t value);
2174
2175 void radv_initialize_fmask(struct radv_cmd_buffer *cmd_buffer,
2176 struct radv_image *image,
2177 const VkImageSubresourceRange *range);
2178
2179 struct radv_fence {
2180 struct radeon_winsys_fence *fence;
2181 struct wsi_fence *fence_wsi;
2182
2183 uint32_t syncobj;
2184 uint32_t temp_syncobj;
2185 };
2186
2187 /* radv_nir_to_llvm.c */
2188 struct radv_shader_info;
2189 struct radv_nir_compiler_options;
2190
2191 void radv_compile_gs_copy_shader(struct ac_llvm_compiler *ac_llvm,
2192 struct nir_shader *geom_shader,
2193 struct radv_shader_binary **rbinary,
2194 struct radv_shader_info *info,
2195 const struct radv_nir_compiler_options *option);
2196
2197 void radv_compile_nir_shader(struct ac_llvm_compiler *ac_llvm,
2198 struct radv_shader_binary **rbinary,
2199 struct radv_shader_info *info,
2200 struct nir_shader *const *nir,
2201 int nir_count,
2202 const struct radv_nir_compiler_options *options);
2203
2204 unsigned radv_nir_get_max_workgroup_size(enum chip_class chip_class,
2205 gl_shader_stage stage,
2206 const struct nir_shader *nir);
2207
2208 /* radv_shader_info.h */
2209 struct radv_shader_info;
2210 struct radv_shader_variant_key;
2211
2212 void radv_nir_shader_info_pass(const struct nir_shader *nir,
2213 const struct radv_pipeline_layout *layout,
2214 const struct radv_shader_variant_key *key,
2215 struct radv_shader_info *info);
2216
2217 void radv_nir_shader_info_init(struct radv_shader_info *info);
2218
2219 struct radeon_winsys_sem;
2220
2221 uint64_t radv_get_current_time(void);
2222
2223 static inline uint32_t
2224 si_conv_gl_prim_to_vertices(unsigned gl_prim)
2225 {
2226 switch (gl_prim) {
2227 case 0: /* GL_POINTS */
2228 return 1;
2229 case 1: /* GL_LINES */
2230 case 3: /* GL_LINE_STRIP */
2231 return 2;
2232 case 4: /* GL_TRIANGLES */
2233 case 5: /* GL_TRIANGLE_STRIP */
2234 return 3;
2235 case 0xA: /* GL_LINE_STRIP_ADJACENCY_ARB */
2236 return 4;
2237 case 0xc: /* GL_TRIANGLES_ADJACENCY_ARB */
2238 return 6;
2239 case 7: /* GL_QUADS */
2240 return V_028A6C_OUTPRIM_TYPE_TRISTRIP;
2241 default:
2242 assert(0);
2243 return 0;
2244 }
2245 }
2246
2247 #define RADV_DEFINE_HANDLE_CASTS(__radv_type, __VkType) \
2248 \
2249 static inline struct __radv_type * \
2250 __radv_type ## _from_handle(__VkType _handle) \
2251 { \
2252 return (struct __radv_type *) _handle; \
2253 } \
2254 \
2255 static inline __VkType \
2256 __radv_type ## _to_handle(struct __radv_type *_obj) \
2257 { \
2258 return (__VkType) _obj; \
2259 }
2260
2261 #define RADV_DEFINE_NONDISP_HANDLE_CASTS(__radv_type, __VkType) \
2262 \
2263 static inline struct __radv_type * \
2264 __radv_type ## _from_handle(__VkType _handle) \
2265 { \
2266 return (struct __radv_type *)(uintptr_t) _handle; \
2267 } \
2268 \
2269 static inline __VkType \
2270 __radv_type ## _to_handle(struct __radv_type *_obj) \
2271 { \
2272 return (__VkType)(uintptr_t) _obj; \
2273 }
2274
2275 #define RADV_FROM_HANDLE(__radv_type, __name, __handle) \
2276 struct __radv_type *__name = __radv_type ## _from_handle(__handle)
2277
2278 RADV_DEFINE_HANDLE_CASTS(radv_cmd_buffer, VkCommandBuffer)
2279 RADV_DEFINE_HANDLE_CASTS(radv_device, VkDevice)
2280 RADV_DEFINE_HANDLE_CASTS(radv_instance, VkInstance)
2281 RADV_DEFINE_HANDLE_CASTS(radv_physical_device, VkPhysicalDevice)
2282 RADV_DEFINE_HANDLE_CASTS(radv_queue, VkQueue)
2283
2284 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_cmd_pool, VkCommandPool)
2285 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_buffer, VkBuffer)
2286 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_buffer_view, VkBufferView)
2287 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_pool, VkDescriptorPool)
2288 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_set, VkDescriptorSet)
2289 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_set_layout, VkDescriptorSetLayout)
2290 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_descriptor_update_template, VkDescriptorUpdateTemplate)
2291 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_device_memory, VkDeviceMemory)
2292 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_fence, VkFence)
2293 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_event, VkEvent)
2294 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_framebuffer, VkFramebuffer)
2295 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_image, VkImage)
2296 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_image_view, VkImageView);
2297 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_pipeline_cache, VkPipelineCache)
2298 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_pipeline, VkPipeline)
2299 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_pipeline_layout, VkPipelineLayout)
2300 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_query_pool, VkQueryPool)
2301 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_render_pass, VkRenderPass)
2302 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_sampler, VkSampler)
2303 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_sampler_ycbcr_conversion, VkSamplerYcbcrConversion)
2304 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_shader_module, VkShaderModule)
2305 RADV_DEFINE_NONDISP_HANDLE_CASTS(radv_semaphore, VkSemaphore)
2306
2307 #endif /* RADV_PRIVATE_H */