radv: remove no-op si_multiwave_lds_size_workaround()
[mesa.git] / src / amd / vulkan / radv_pipeline.c
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 #include "util/disk_cache.h"
29 #include "util/mesa-sha1.h"
30 #include "util/u_atomic.h"
31 #include "radv_debug.h"
32 #include "radv_private.h"
33 #include "radv_cs.h"
34 #include "radv_shader.h"
35 #include "nir/nir.h"
36 #include "nir/nir_builder.h"
37 #include "nir/nir_xfb_info.h"
38 #include "spirv/nir_spirv.h"
39 #include "vk_util.h"
40
41 #include "sid.h"
42 #include "ac_binary.h"
43 #include "ac_llvm_util.h"
44 #include "ac_nir_to_llvm.h"
45 #include "vk_format.h"
46 #include "util/debug.h"
47 #include "ac_exp_param.h"
48 #include "ac_shader_util.h"
49
50 struct radv_blend_state {
51 uint32_t blend_enable_4bit;
52 uint32_t need_src_alpha;
53
54 uint32_t cb_color_control;
55 uint32_t cb_target_mask;
56 uint32_t cb_target_enabled_4bit;
57 uint32_t sx_mrt_blend_opt[8];
58 uint32_t cb_blend_control[8];
59
60 uint32_t spi_shader_col_format;
61 uint32_t col_format_is_int8;
62 uint32_t col_format_is_int10;
63 uint32_t cb_shader_mask;
64 uint32_t db_alpha_to_mask;
65
66 uint32_t commutative_4bit;
67
68 bool single_cb_enable;
69 bool mrt0_is_dual_src;
70 };
71
72 struct radv_dsa_order_invariance {
73 /* Whether the final result in Z/S buffers is guaranteed to be
74 * invariant under changes to the order in which fragments arrive.
75 */
76 bool zs;
77
78 /* Whether the set of fragments that pass the combined Z/S test is
79 * guaranteed to be invariant under changes to the order in which
80 * fragments arrive.
81 */
82 bool pass_set;
83 };
84
85 struct radv_tessellation_state {
86 uint32_t ls_hs_config;
87 unsigned lds_size;
88 uint32_t tf_param;
89 };
90
91 static const VkPipelineMultisampleStateCreateInfo *
92 radv_pipeline_get_multisample_state(const VkGraphicsPipelineCreateInfo *pCreateInfo)
93 {
94 if (!pCreateInfo->pRasterizationState->rasterizerDiscardEnable)
95 return pCreateInfo->pMultisampleState;
96 return NULL;
97 }
98
99 static const VkPipelineTessellationStateCreateInfo *
100 radv_pipeline_get_tessellation_state(const VkGraphicsPipelineCreateInfo *pCreateInfo)
101 {
102 for (uint32_t i = 0; i < pCreateInfo->stageCount; i++) {
103 if (pCreateInfo->pStages[i].stage == VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT ||
104 pCreateInfo->pStages[i].stage == VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT) {
105 return pCreateInfo->pTessellationState;
106 }
107 }
108 return NULL;
109 }
110
111 static const VkPipelineDepthStencilStateCreateInfo *
112 radv_pipeline_get_depth_stencil_state(const VkGraphicsPipelineCreateInfo *pCreateInfo)
113 {
114 RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
115 struct radv_subpass *subpass = pass->subpasses + pCreateInfo->subpass;
116
117 if (!pCreateInfo->pRasterizationState->rasterizerDiscardEnable &&
118 subpass->depth_stencil_attachment)
119 return pCreateInfo->pDepthStencilState;
120 return NULL;
121 }
122
123 static const VkPipelineColorBlendStateCreateInfo *
124 radv_pipeline_get_color_blend_state(const VkGraphicsPipelineCreateInfo *pCreateInfo)
125 {
126 RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
127 struct radv_subpass *subpass = pass->subpasses + pCreateInfo->subpass;
128
129 if (!pCreateInfo->pRasterizationState->rasterizerDiscardEnable &&
130 subpass->has_color_att)
131 return pCreateInfo->pColorBlendState;
132 return NULL;
133 }
134
135 bool radv_pipeline_has_ngg(const struct radv_pipeline *pipeline)
136 {
137 struct radv_shader_variant *variant = NULL;
138 if (pipeline->shaders[MESA_SHADER_GEOMETRY])
139 variant = pipeline->shaders[MESA_SHADER_GEOMETRY];
140 else if (pipeline->shaders[MESA_SHADER_TESS_EVAL])
141 variant = pipeline->shaders[MESA_SHADER_TESS_EVAL];
142 else if (pipeline->shaders[MESA_SHADER_VERTEX])
143 variant = pipeline->shaders[MESA_SHADER_VERTEX];
144 else
145 return false;
146 return variant->info.is_ngg;
147 }
148
149 bool radv_pipeline_has_ngg_passthrough(const struct radv_pipeline *pipeline)
150 {
151 assert(radv_pipeline_has_ngg(pipeline));
152
153 struct radv_shader_variant *variant = NULL;
154 if (pipeline->shaders[MESA_SHADER_GEOMETRY])
155 variant = pipeline->shaders[MESA_SHADER_GEOMETRY];
156 else if (pipeline->shaders[MESA_SHADER_TESS_EVAL])
157 variant = pipeline->shaders[MESA_SHADER_TESS_EVAL];
158 else if (pipeline->shaders[MESA_SHADER_VERTEX])
159 variant = pipeline->shaders[MESA_SHADER_VERTEX];
160 else
161 return false;
162 return variant->info.is_ngg_passthrough;
163 }
164
165 bool radv_pipeline_has_gs_copy_shader(const struct radv_pipeline *pipeline)
166 {
167 if (!radv_pipeline_has_gs(pipeline))
168 return false;
169
170 /* The GS copy shader is required if the pipeline has GS on GFX6-GFX9.
171 * On GFX10, it might be required in rare cases if it's not possible to
172 * enable NGG.
173 */
174 if (radv_pipeline_has_ngg(pipeline))
175 return false;
176
177 assert(pipeline->gs_copy_shader);
178 return true;
179 }
180
181 static void
182 radv_pipeline_destroy(struct radv_device *device,
183 struct radv_pipeline *pipeline,
184 const VkAllocationCallbacks* allocator)
185 {
186 for (unsigned i = 0; i < MESA_SHADER_STAGES; ++i)
187 if (pipeline->shaders[i])
188 radv_shader_variant_destroy(device, pipeline->shaders[i]);
189
190 if (pipeline->gs_copy_shader)
191 radv_shader_variant_destroy(device, pipeline->gs_copy_shader);
192
193 if(pipeline->cs.buf)
194 free(pipeline->cs.buf);
195
196 vk_object_base_finish(&pipeline->base);
197 vk_free2(&device->vk.alloc, allocator, pipeline);
198 }
199
200 void radv_DestroyPipeline(
201 VkDevice _device,
202 VkPipeline _pipeline,
203 const VkAllocationCallbacks* pAllocator)
204 {
205 RADV_FROM_HANDLE(radv_device, device, _device);
206 RADV_FROM_HANDLE(radv_pipeline, pipeline, _pipeline);
207
208 if (!_pipeline)
209 return;
210
211 radv_pipeline_destroy(device, pipeline, pAllocator);
212 }
213
214 static uint32_t get_hash_flags(struct radv_device *device)
215 {
216 uint32_t hash_flags = 0;
217
218 if (device->instance->debug_flags & RADV_DEBUG_NO_NGG)
219 hash_flags |= RADV_HASH_SHADER_NO_NGG;
220 if (device->physical_device->cs_wave_size == 32)
221 hash_flags |= RADV_HASH_SHADER_CS_WAVE32;
222 if (device->physical_device->ps_wave_size == 32)
223 hash_flags |= RADV_HASH_SHADER_PS_WAVE32;
224 if (device->physical_device->ge_wave_size == 32)
225 hash_flags |= RADV_HASH_SHADER_GE_WAVE32;
226 if (device->physical_device->use_llvm)
227 hash_flags |= RADV_HASH_SHADER_LLVM;
228 return hash_flags;
229 }
230
231 static VkResult
232 radv_pipeline_scratch_init(struct radv_device *device,
233 struct radv_pipeline *pipeline)
234 {
235 unsigned scratch_bytes_per_wave = 0;
236 unsigned max_waves = 0;
237 unsigned min_waves = 1;
238
239 for (int i = 0; i < MESA_SHADER_STAGES; ++i) {
240 if (pipeline->shaders[i] &&
241 pipeline->shaders[i]->config.scratch_bytes_per_wave) {
242 unsigned max_stage_waves = device->scratch_waves;
243
244 scratch_bytes_per_wave = MAX2(scratch_bytes_per_wave,
245 pipeline->shaders[i]->config.scratch_bytes_per_wave);
246
247 max_stage_waves = MIN2(max_stage_waves,
248 4 * device->physical_device->rad_info.num_good_compute_units *
249 (256 / pipeline->shaders[i]->config.num_vgprs));
250 max_waves = MAX2(max_waves, max_stage_waves);
251 }
252 }
253
254 if (pipeline->shaders[MESA_SHADER_COMPUTE]) {
255 unsigned group_size = pipeline->shaders[MESA_SHADER_COMPUTE]->info.cs.block_size[0] *
256 pipeline->shaders[MESA_SHADER_COMPUTE]->info.cs.block_size[1] *
257 pipeline->shaders[MESA_SHADER_COMPUTE]->info.cs.block_size[2];
258 min_waves = MAX2(min_waves, round_up_u32(group_size, 64));
259 }
260
261 pipeline->scratch_bytes_per_wave = scratch_bytes_per_wave;
262 pipeline->max_waves = max_waves;
263 return VK_SUCCESS;
264 }
265
266 static uint32_t si_translate_blend_logic_op(VkLogicOp op)
267 {
268 switch (op) {
269 case VK_LOGIC_OP_CLEAR:
270 return V_028808_ROP3_CLEAR;
271 case VK_LOGIC_OP_AND:
272 return V_028808_ROP3_AND;
273 case VK_LOGIC_OP_AND_REVERSE:
274 return V_028808_ROP3_AND_REVERSE;
275 case VK_LOGIC_OP_COPY:
276 return V_028808_ROP3_COPY;
277 case VK_LOGIC_OP_AND_INVERTED:
278 return V_028808_ROP3_AND_INVERTED;
279 case VK_LOGIC_OP_NO_OP:
280 return V_028808_ROP3_NO_OP;
281 case VK_LOGIC_OP_XOR:
282 return V_028808_ROP3_XOR;
283 case VK_LOGIC_OP_OR:
284 return V_028808_ROP3_OR;
285 case VK_LOGIC_OP_NOR:
286 return V_028808_ROP3_NOR;
287 case VK_LOGIC_OP_EQUIVALENT:
288 return V_028808_ROP3_EQUIVALENT;
289 case VK_LOGIC_OP_INVERT:
290 return V_028808_ROP3_INVERT;
291 case VK_LOGIC_OP_OR_REVERSE:
292 return V_028808_ROP3_OR_REVERSE;
293 case VK_LOGIC_OP_COPY_INVERTED:
294 return V_028808_ROP3_COPY_INVERTED;
295 case VK_LOGIC_OP_OR_INVERTED:
296 return V_028808_ROP3_OR_INVERTED;
297 case VK_LOGIC_OP_NAND:
298 return V_028808_ROP3_NAND;
299 case VK_LOGIC_OP_SET:
300 return V_028808_ROP3_SET;
301 default:
302 unreachable("Unhandled logic op");
303 }
304 }
305
306
307 static uint32_t si_translate_blend_function(VkBlendOp op)
308 {
309 switch (op) {
310 case VK_BLEND_OP_ADD:
311 return V_028780_COMB_DST_PLUS_SRC;
312 case VK_BLEND_OP_SUBTRACT:
313 return V_028780_COMB_SRC_MINUS_DST;
314 case VK_BLEND_OP_REVERSE_SUBTRACT:
315 return V_028780_COMB_DST_MINUS_SRC;
316 case VK_BLEND_OP_MIN:
317 return V_028780_COMB_MIN_DST_SRC;
318 case VK_BLEND_OP_MAX:
319 return V_028780_COMB_MAX_DST_SRC;
320 default:
321 return 0;
322 }
323 }
324
325 static uint32_t si_translate_blend_factor(VkBlendFactor factor)
326 {
327 switch (factor) {
328 case VK_BLEND_FACTOR_ZERO:
329 return V_028780_BLEND_ZERO;
330 case VK_BLEND_FACTOR_ONE:
331 return V_028780_BLEND_ONE;
332 case VK_BLEND_FACTOR_SRC_COLOR:
333 return V_028780_BLEND_SRC_COLOR;
334 case VK_BLEND_FACTOR_ONE_MINUS_SRC_COLOR:
335 return V_028780_BLEND_ONE_MINUS_SRC_COLOR;
336 case VK_BLEND_FACTOR_DST_COLOR:
337 return V_028780_BLEND_DST_COLOR;
338 case VK_BLEND_FACTOR_ONE_MINUS_DST_COLOR:
339 return V_028780_BLEND_ONE_MINUS_DST_COLOR;
340 case VK_BLEND_FACTOR_SRC_ALPHA:
341 return V_028780_BLEND_SRC_ALPHA;
342 case VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA:
343 return V_028780_BLEND_ONE_MINUS_SRC_ALPHA;
344 case VK_BLEND_FACTOR_DST_ALPHA:
345 return V_028780_BLEND_DST_ALPHA;
346 case VK_BLEND_FACTOR_ONE_MINUS_DST_ALPHA:
347 return V_028780_BLEND_ONE_MINUS_DST_ALPHA;
348 case VK_BLEND_FACTOR_CONSTANT_COLOR:
349 return V_028780_BLEND_CONSTANT_COLOR;
350 case VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR:
351 return V_028780_BLEND_ONE_MINUS_CONSTANT_COLOR;
352 case VK_BLEND_FACTOR_CONSTANT_ALPHA:
353 return V_028780_BLEND_CONSTANT_ALPHA;
354 case VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA:
355 return V_028780_BLEND_ONE_MINUS_CONSTANT_ALPHA;
356 case VK_BLEND_FACTOR_SRC_ALPHA_SATURATE:
357 return V_028780_BLEND_SRC_ALPHA_SATURATE;
358 case VK_BLEND_FACTOR_SRC1_COLOR:
359 return V_028780_BLEND_SRC1_COLOR;
360 case VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR:
361 return V_028780_BLEND_INV_SRC1_COLOR;
362 case VK_BLEND_FACTOR_SRC1_ALPHA:
363 return V_028780_BLEND_SRC1_ALPHA;
364 case VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA:
365 return V_028780_BLEND_INV_SRC1_ALPHA;
366 default:
367 return 0;
368 }
369 }
370
371 static uint32_t si_translate_blend_opt_function(VkBlendOp op)
372 {
373 switch (op) {
374 case VK_BLEND_OP_ADD:
375 return V_028760_OPT_COMB_ADD;
376 case VK_BLEND_OP_SUBTRACT:
377 return V_028760_OPT_COMB_SUBTRACT;
378 case VK_BLEND_OP_REVERSE_SUBTRACT:
379 return V_028760_OPT_COMB_REVSUBTRACT;
380 case VK_BLEND_OP_MIN:
381 return V_028760_OPT_COMB_MIN;
382 case VK_BLEND_OP_MAX:
383 return V_028760_OPT_COMB_MAX;
384 default:
385 return V_028760_OPT_COMB_BLEND_DISABLED;
386 }
387 }
388
389 static uint32_t si_translate_blend_opt_factor(VkBlendFactor factor, bool is_alpha)
390 {
391 switch (factor) {
392 case VK_BLEND_FACTOR_ZERO:
393 return V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_ALL;
394 case VK_BLEND_FACTOR_ONE:
395 return V_028760_BLEND_OPT_PRESERVE_ALL_IGNORE_NONE;
396 case VK_BLEND_FACTOR_SRC_COLOR:
397 return is_alpha ? V_028760_BLEND_OPT_PRESERVE_A1_IGNORE_A0
398 : V_028760_BLEND_OPT_PRESERVE_C1_IGNORE_C0;
399 case VK_BLEND_FACTOR_ONE_MINUS_SRC_COLOR:
400 return is_alpha ? V_028760_BLEND_OPT_PRESERVE_A0_IGNORE_A1
401 : V_028760_BLEND_OPT_PRESERVE_C0_IGNORE_C1;
402 case VK_BLEND_FACTOR_SRC_ALPHA:
403 return V_028760_BLEND_OPT_PRESERVE_A1_IGNORE_A0;
404 case VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA:
405 return V_028760_BLEND_OPT_PRESERVE_A0_IGNORE_A1;
406 case VK_BLEND_FACTOR_SRC_ALPHA_SATURATE:
407 return is_alpha ? V_028760_BLEND_OPT_PRESERVE_ALL_IGNORE_NONE
408 : V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_A0;
409 default:
410 return V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_NONE;
411 }
412 }
413
414 /**
415 * Get rid of DST in the blend factors by commuting the operands:
416 * func(src * DST, dst * 0) ---> func(src * 0, dst * SRC)
417 */
418 static void si_blend_remove_dst(unsigned *func, unsigned *src_factor,
419 unsigned *dst_factor, unsigned expected_dst,
420 unsigned replacement_src)
421 {
422 if (*src_factor == expected_dst &&
423 *dst_factor == VK_BLEND_FACTOR_ZERO) {
424 *src_factor = VK_BLEND_FACTOR_ZERO;
425 *dst_factor = replacement_src;
426
427 /* Commuting the operands requires reversing subtractions. */
428 if (*func == VK_BLEND_OP_SUBTRACT)
429 *func = VK_BLEND_OP_REVERSE_SUBTRACT;
430 else if (*func == VK_BLEND_OP_REVERSE_SUBTRACT)
431 *func = VK_BLEND_OP_SUBTRACT;
432 }
433 }
434
435 static bool si_blend_factor_uses_dst(unsigned factor)
436 {
437 return factor == VK_BLEND_FACTOR_DST_COLOR ||
438 factor == VK_BLEND_FACTOR_DST_ALPHA ||
439 factor == VK_BLEND_FACTOR_SRC_ALPHA_SATURATE ||
440 factor == VK_BLEND_FACTOR_ONE_MINUS_DST_ALPHA ||
441 factor == VK_BLEND_FACTOR_ONE_MINUS_DST_COLOR;
442 }
443
444 static bool is_dual_src(VkBlendFactor factor)
445 {
446 switch (factor) {
447 case VK_BLEND_FACTOR_SRC1_COLOR:
448 case VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR:
449 case VK_BLEND_FACTOR_SRC1_ALPHA:
450 case VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA:
451 return true;
452 default:
453 return false;
454 }
455 }
456
457 static unsigned radv_choose_spi_color_format(VkFormat vk_format,
458 bool blend_enable,
459 bool blend_need_alpha)
460 {
461 const struct vk_format_description *desc = vk_format_description(vk_format);
462 struct ac_spi_color_formats formats = {};
463 unsigned format, ntype, swap;
464
465 format = radv_translate_colorformat(vk_format);
466 ntype = radv_translate_color_numformat(vk_format, desc,
467 vk_format_get_first_non_void_channel(vk_format));
468 swap = radv_translate_colorswap(vk_format, false);
469
470 ac_choose_spi_color_formats(format, swap, ntype, false, &formats);
471
472 if (blend_enable && blend_need_alpha)
473 return formats.blend_alpha;
474 else if(blend_need_alpha)
475 return formats.alpha;
476 else if(blend_enable)
477 return formats.blend;
478 else
479 return formats.normal;
480 }
481
482 static bool
483 format_is_int8(VkFormat format)
484 {
485 const struct vk_format_description *desc = vk_format_description(format);
486 int channel = vk_format_get_first_non_void_channel(format);
487
488 return channel >= 0 && desc->channel[channel].pure_integer &&
489 desc->channel[channel].size == 8;
490 }
491
492 static bool
493 format_is_int10(VkFormat format)
494 {
495 const struct vk_format_description *desc = vk_format_description(format);
496
497 if (desc->nr_channels != 4)
498 return false;
499 for (unsigned i = 0; i < 4; i++) {
500 if (desc->channel[i].pure_integer && desc->channel[i].size == 10)
501 return true;
502 }
503 return false;
504 }
505
506 static void
507 radv_pipeline_compute_spi_color_formats(struct radv_pipeline *pipeline,
508 const VkGraphicsPipelineCreateInfo *pCreateInfo,
509 struct radv_blend_state *blend)
510 {
511 RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
512 struct radv_subpass *subpass = pass->subpasses + pCreateInfo->subpass;
513 unsigned col_format = 0, is_int8 = 0, is_int10 = 0;
514 unsigned num_targets;
515
516 for (unsigned i = 0; i < (blend->single_cb_enable ? 1 : subpass->color_count); ++i) {
517 unsigned cf;
518
519 if (subpass->color_attachments[i].attachment == VK_ATTACHMENT_UNUSED ||
520 !(blend->cb_target_mask & (0xfu << (i * 4)))) {
521 cf = V_028714_SPI_SHADER_ZERO;
522 } else {
523 struct radv_render_pass_attachment *attachment = pass->attachments + subpass->color_attachments[i].attachment;
524 bool blend_enable =
525 blend->blend_enable_4bit & (0xfu << (i * 4));
526
527 cf = radv_choose_spi_color_format(attachment->format,
528 blend_enable,
529 blend->need_src_alpha & (1 << i));
530
531 if (format_is_int8(attachment->format))
532 is_int8 |= 1 << i;
533 if (format_is_int10(attachment->format))
534 is_int10 |= 1 << i;
535 }
536
537 col_format |= cf << (4 * i);
538 }
539
540 if (!(col_format & 0xf) && blend->need_src_alpha & (1 << 0)) {
541 /* When a subpass doesn't have any color attachments, write the
542 * alpha channel of MRT0 when alpha coverage is enabled because
543 * the depth attachment needs it.
544 */
545 col_format |= V_028714_SPI_SHADER_32_AR;
546 }
547
548 /* If the i-th target format is set, all previous target formats must
549 * be non-zero to avoid hangs.
550 */
551 num_targets = (util_last_bit(col_format) + 3) / 4;
552 for (unsigned i = 0; i < num_targets; i++) {
553 if (!(col_format & (0xf << (i * 4)))) {
554 col_format |= V_028714_SPI_SHADER_32_R << (i * 4);
555 }
556 }
557
558 /* The output for dual source blending should have the same format as
559 * the first output.
560 */
561 if (blend->mrt0_is_dual_src)
562 col_format |= (col_format & 0xf) << 4;
563
564 blend->spi_shader_col_format = col_format;
565 blend->col_format_is_int8 = is_int8;
566 blend->col_format_is_int10 = is_int10;
567 }
568
569 /*
570 * Ordered so that for each i,
571 * radv_format_meta_fs_key(radv_fs_key_format_exemplars[i]) == i.
572 */
573 const VkFormat radv_fs_key_format_exemplars[NUM_META_FS_KEYS] = {
574 VK_FORMAT_R32_SFLOAT,
575 VK_FORMAT_R32G32_SFLOAT,
576 VK_FORMAT_R8G8B8A8_UNORM,
577 VK_FORMAT_R16G16B16A16_UNORM,
578 VK_FORMAT_R16G16B16A16_SNORM,
579 VK_FORMAT_R16G16B16A16_UINT,
580 VK_FORMAT_R16G16B16A16_SINT,
581 VK_FORMAT_R32G32B32A32_SFLOAT,
582 VK_FORMAT_R8G8B8A8_UINT,
583 VK_FORMAT_R8G8B8A8_SINT,
584 VK_FORMAT_A2R10G10B10_UINT_PACK32,
585 VK_FORMAT_A2R10G10B10_SINT_PACK32,
586 };
587
588 unsigned radv_format_meta_fs_key(VkFormat format)
589 {
590 unsigned col_format = radv_choose_spi_color_format(format, false, false);
591
592 assert(col_format != V_028714_SPI_SHADER_32_AR);
593 if (col_format >= V_028714_SPI_SHADER_32_AR)
594 --col_format; /* Skip V_028714_SPI_SHADER_32_AR since there is no such VkFormat */
595
596 --col_format; /* Skip V_028714_SPI_SHADER_ZERO */
597 bool is_int8 = format_is_int8(format);
598 bool is_int10 = format_is_int10(format);
599
600 return col_format + (is_int8 ? 3 : is_int10 ? 5 : 0);
601 }
602
603 static void
604 radv_blend_check_commutativity(struct radv_blend_state *blend,
605 VkBlendOp op, VkBlendFactor src,
606 VkBlendFactor dst, unsigned chanmask)
607 {
608 /* Src factor is allowed when it does not depend on Dst. */
609 static const uint32_t src_allowed =
610 (1u << VK_BLEND_FACTOR_ONE) |
611 (1u << VK_BLEND_FACTOR_SRC_COLOR) |
612 (1u << VK_BLEND_FACTOR_SRC_ALPHA) |
613 (1u << VK_BLEND_FACTOR_SRC_ALPHA_SATURATE) |
614 (1u << VK_BLEND_FACTOR_CONSTANT_COLOR) |
615 (1u << VK_BLEND_FACTOR_CONSTANT_ALPHA) |
616 (1u << VK_BLEND_FACTOR_SRC1_COLOR) |
617 (1u << VK_BLEND_FACTOR_SRC1_ALPHA) |
618 (1u << VK_BLEND_FACTOR_ZERO) |
619 (1u << VK_BLEND_FACTOR_ONE_MINUS_SRC_COLOR) |
620 (1u << VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA) |
621 (1u << VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR) |
622 (1u << VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA) |
623 (1u << VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR) |
624 (1u << VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA);
625
626 if (dst == VK_BLEND_FACTOR_ONE &&
627 (src_allowed & (1u << src))) {
628 /* Addition is commutative, but floating point addition isn't
629 * associative: subtle changes can be introduced via different
630 * rounding. Be conservative, only enable for min and max.
631 */
632 if (op == VK_BLEND_OP_MAX || op == VK_BLEND_OP_MIN)
633 blend->commutative_4bit |= chanmask;
634 }
635 }
636
637 static struct radv_blend_state
638 radv_pipeline_init_blend_state(struct radv_pipeline *pipeline,
639 const VkGraphicsPipelineCreateInfo *pCreateInfo,
640 const struct radv_graphics_pipeline_create_info *extra)
641 {
642 const VkPipelineColorBlendStateCreateInfo *vkblend = radv_pipeline_get_color_blend_state(pCreateInfo);
643 const VkPipelineMultisampleStateCreateInfo *vkms = radv_pipeline_get_multisample_state(pCreateInfo);
644 struct radv_blend_state blend = {0};
645 unsigned mode = V_028808_CB_NORMAL;
646 int i;
647
648 if (extra && extra->custom_blend_mode) {
649 blend.single_cb_enable = true;
650 mode = extra->custom_blend_mode;
651 }
652
653 blend.cb_color_control = 0;
654 if (vkblend) {
655 if (vkblend->logicOpEnable)
656 blend.cb_color_control |= S_028808_ROP3(si_translate_blend_logic_op(vkblend->logicOp));
657 else
658 blend.cb_color_control |= S_028808_ROP3(V_028808_ROP3_COPY);
659 }
660
661 blend.db_alpha_to_mask = S_028B70_ALPHA_TO_MASK_OFFSET0(3) |
662 S_028B70_ALPHA_TO_MASK_OFFSET1(1) |
663 S_028B70_ALPHA_TO_MASK_OFFSET2(0) |
664 S_028B70_ALPHA_TO_MASK_OFFSET3(2) |
665 S_028B70_OFFSET_ROUND(1);
666
667 if (vkms && vkms->alphaToCoverageEnable) {
668 blend.db_alpha_to_mask |= S_028B70_ALPHA_TO_MASK_ENABLE(1);
669 blend.need_src_alpha |= 0x1;
670 }
671
672 blend.cb_target_mask = 0;
673 if (vkblend) {
674 for (i = 0; i < vkblend->attachmentCount; i++) {
675 const VkPipelineColorBlendAttachmentState *att = &vkblend->pAttachments[i];
676 unsigned blend_cntl = 0;
677 unsigned srcRGB_opt, dstRGB_opt, srcA_opt, dstA_opt;
678 VkBlendOp eqRGB = att->colorBlendOp;
679 VkBlendFactor srcRGB = att->srcColorBlendFactor;
680 VkBlendFactor dstRGB = att->dstColorBlendFactor;
681 VkBlendOp eqA = att->alphaBlendOp;
682 VkBlendFactor srcA = att->srcAlphaBlendFactor;
683 VkBlendFactor dstA = att->dstAlphaBlendFactor;
684
685 blend.sx_mrt_blend_opt[i] = S_028760_COLOR_COMB_FCN(V_028760_OPT_COMB_BLEND_DISABLED) | S_028760_ALPHA_COMB_FCN(V_028760_OPT_COMB_BLEND_DISABLED);
686
687 if (!att->colorWriteMask)
688 continue;
689
690 blend.cb_target_mask |= (unsigned)att->colorWriteMask << (4 * i);
691 blend.cb_target_enabled_4bit |= 0xf << (4 * i);
692 if (!att->blendEnable) {
693 blend.cb_blend_control[i] = blend_cntl;
694 continue;
695 }
696
697 if (is_dual_src(srcRGB) || is_dual_src(dstRGB) || is_dual_src(srcA) || is_dual_src(dstA))
698 if (i == 0)
699 blend.mrt0_is_dual_src = true;
700
701 if (eqRGB == VK_BLEND_OP_MIN || eqRGB == VK_BLEND_OP_MAX) {
702 srcRGB = VK_BLEND_FACTOR_ONE;
703 dstRGB = VK_BLEND_FACTOR_ONE;
704 }
705 if (eqA == VK_BLEND_OP_MIN || eqA == VK_BLEND_OP_MAX) {
706 srcA = VK_BLEND_FACTOR_ONE;
707 dstA = VK_BLEND_FACTOR_ONE;
708 }
709
710 radv_blend_check_commutativity(&blend, eqRGB, srcRGB, dstRGB,
711 0x7 << (4 * i));
712 radv_blend_check_commutativity(&blend, eqA, srcA, dstA,
713 0x8 << (4 * i));
714
715 /* Blending optimizations for RB+.
716 * These transformations don't change the behavior.
717 *
718 * First, get rid of DST in the blend factors:
719 * func(src * DST, dst * 0) ---> func(src * 0, dst * SRC)
720 */
721 si_blend_remove_dst(&eqRGB, &srcRGB, &dstRGB,
722 VK_BLEND_FACTOR_DST_COLOR,
723 VK_BLEND_FACTOR_SRC_COLOR);
724
725 si_blend_remove_dst(&eqA, &srcA, &dstA,
726 VK_BLEND_FACTOR_DST_COLOR,
727 VK_BLEND_FACTOR_SRC_COLOR);
728
729 si_blend_remove_dst(&eqA, &srcA, &dstA,
730 VK_BLEND_FACTOR_DST_ALPHA,
731 VK_BLEND_FACTOR_SRC_ALPHA);
732
733 /* Look up the ideal settings from tables. */
734 srcRGB_opt = si_translate_blend_opt_factor(srcRGB, false);
735 dstRGB_opt = si_translate_blend_opt_factor(dstRGB, false);
736 srcA_opt = si_translate_blend_opt_factor(srcA, true);
737 dstA_opt = si_translate_blend_opt_factor(dstA, true);
738
739 /* Handle interdependencies. */
740 if (si_blend_factor_uses_dst(srcRGB))
741 dstRGB_opt = V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_NONE;
742 if (si_blend_factor_uses_dst(srcA))
743 dstA_opt = V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_NONE;
744
745 if (srcRGB == VK_BLEND_FACTOR_SRC_ALPHA_SATURATE &&
746 (dstRGB == VK_BLEND_FACTOR_ZERO ||
747 dstRGB == VK_BLEND_FACTOR_SRC_ALPHA ||
748 dstRGB == VK_BLEND_FACTOR_SRC_ALPHA_SATURATE))
749 dstRGB_opt = V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_A0;
750
751 /* Set the final value. */
752 blend.sx_mrt_blend_opt[i] =
753 S_028760_COLOR_SRC_OPT(srcRGB_opt) |
754 S_028760_COLOR_DST_OPT(dstRGB_opt) |
755 S_028760_COLOR_COMB_FCN(si_translate_blend_opt_function(eqRGB)) |
756 S_028760_ALPHA_SRC_OPT(srcA_opt) |
757 S_028760_ALPHA_DST_OPT(dstA_opt) |
758 S_028760_ALPHA_COMB_FCN(si_translate_blend_opt_function(eqA));
759 blend_cntl |= S_028780_ENABLE(1);
760
761 blend_cntl |= S_028780_COLOR_COMB_FCN(si_translate_blend_function(eqRGB));
762 blend_cntl |= S_028780_COLOR_SRCBLEND(si_translate_blend_factor(srcRGB));
763 blend_cntl |= S_028780_COLOR_DESTBLEND(si_translate_blend_factor(dstRGB));
764 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
765 blend_cntl |= S_028780_SEPARATE_ALPHA_BLEND(1);
766 blend_cntl |= S_028780_ALPHA_COMB_FCN(si_translate_blend_function(eqA));
767 blend_cntl |= S_028780_ALPHA_SRCBLEND(si_translate_blend_factor(srcA));
768 blend_cntl |= S_028780_ALPHA_DESTBLEND(si_translate_blend_factor(dstA));
769 }
770 blend.cb_blend_control[i] = blend_cntl;
771
772 blend.blend_enable_4bit |= 0xfu << (i * 4);
773
774 if (srcRGB == VK_BLEND_FACTOR_SRC_ALPHA ||
775 dstRGB == VK_BLEND_FACTOR_SRC_ALPHA ||
776 srcRGB == VK_BLEND_FACTOR_SRC_ALPHA_SATURATE ||
777 dstRGB == VK_BLEND_FACTOR_SRC_ALPHA_SATURATE ||
778 srcRGB == VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA ||
779 dstRGB == VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA)
780 blend.need_src_alpha |= 1 << i;
781 }
782 for (i = vkblend->attachmentCount; i < 8; i++) {
783 blend.cb_blend_control[i] = 0;
784 blend.sx_mrt_blend_opt[i] = S_028760_COLOR_COMB_FCN(V_028760_OPT_COMB_BLEND_DISABLED) | S_028760_ALPHA_COMB_FCN(V_028760_OPT_COMB_BLEND_DISABLED);
785 }
786 }
787
788 if (pipeline->device->physical_device->rad_info.has_rbplus) {
789 /* Disable RB+ blend optimizations for dual source blending. */
790 if (blend.mrt0_is_dual_src) {
791 for (i = 0; i < 8; i++) {
792 blend.sx_mrt_blend_opt[i] =
793 S_028760_COLOR_COMB_FCN(V_028760_OPT_COMB_NONE) |
794 S_028760_ALPHA_COMB_FCN(V_028760_OPT_COMB_NONE);
795 }
796 }
797
798 /* RB+ doesn't work with dual source blending, logic op and
799 * RESOLVE.
800 */
801 if (blend.mrt0_is_dual_src ||
802 (vkblend && vkblend->logicOpEnable) ||
803 mode == V_028808_CB_RESOLVE)
804 blend.cb_color_control |= S_028808_DISABLE_DUAL_QUAD(1);
805 }
806
807 if (blend.cb_target_mask)
808 blend.cb_color_control |= S_028808_MODE(mode);
809 else
810 blend.cb_color_control |= S_028808_MODE(V_028808_CB_DISABLE);
811
812 radv_pipeline_compute_spi_color_formats(pipeline, pCreateInfo, &blend);
813 return blend;
814 }
815
816 static uint32_t si_translate_fill(VkPolygonMode func)
817 {
818 switch(func) {
819 case VK_POLYGON_MODE_FILL:
820 return V_028814_X_DRAW_TRIANGLES;
821 case VK_POLYGON_MODE_LINE:
822 return V_028814_X_DRAW_LINES;
823 case VK_POLYGON_MODE_POINT:
824 return V_028814_X_DRAW_POINTS;
825 default:
826 assert(0);
827 return V_028814_X_DRAW_POINTS;
828 }
829 }
830
831 static uint8_t radv_pipeline_get_ps_iter_samples(const VkGraphicsPipelineCreateInfo *pCreateInfo)
832 {
833 const VkPipelineMultisampleStateCreateInfo *vkms = pCreateInfo->pMultisampleState;
834 RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
835 struct radv_subpass *subpass = &pass->subpasses[pCreateInfo->subpass];
836 uint32_t ps_iter_samples = 1;
837 uint32_t num_samples;
838
839 /* From the Vulkan 1.1.129 spec, 26.7. Sample Shading:
840 *
841 * "If the VK_AMD_mixed_attachment_samples extension is enabled and the
842 * subpass uses color attachments, totalSamples is the number of
843 * samples of the color attachments. Otherwise, totalSamples is the
844 * value of VkPipelineMultisampleStateCreateInfo::rasterizationSamples
845 * specified at pipeline creation time."
846 */
847 if (subpass->has_color_att) {
848 num_samples = subpass->color_sample_count;
849 } else {
850 num_samples = vkms->rasterizationSamples;
851 }
852
853 if (vkms->sampleShadingEnable) {
854 ps_iter_samples = ceilf(vkms->minSampleShading * num_samples);
855 ps_iter_samples = util_next_power_of_two(ps_iter_samples);
856 }
857 return ps_iter_samples;
858 }
859
860 static bool
861 radv_is_depth_write_enabled(const VkPipelineDepthStencilStateCreateInfo *pCreateInfo)
862 {
863 return pCreateInfo->depthTestEnable &&
864 pCreateInfo->depthWriteEnable &&
865 pCreateInfo->depthCompareOp != VK_COMPARE_OP_NEVER;
866 }
867
868 static bool
869 radv_writes_stencil(const VkStencilOpState *state)
870 {
871 return state->writeMask &&
872 (state->failOp != VK_STENCIL_OP_KEEP ||
873 state->passOp != VK_STENCIL_OP_KEEP ||
874 state->depthFailOp != VK_STENCIL_OP_KEEP);
875 }
876
877 static bool
878 radv_is_stencil_write_enabled(const VkPipelineDepthStencilStateCreateInfo *pCreateInfo)
879 {
880 return pCreateInfo->stencilTestEnable &&
881 (radv_writes_stencil(&pCreateInfo->front) ||
882 radv_writes_stencil(&pCreateInfo->back));
883 }
884
885 static bool
886 radv_is_ds_write_enabled(const VkPipelineDepthStencilStateCreateInfo *pCreateInfo)
887 {
888 return radv_is_depth_write_enabled(pCreateInfo) ||
889 radv_is_stencil_write_enabled(pCreateInfo);
890 }
891
892 static bool
893 radv_order_invariant_stencil_op(VkStencilOp op)
894 {
895 /* REPLACE is normally order invariant, except when the stencil
896 * reference value is written by the fragment shader. Tracking this
897 * interaction does not seem worth the effort, so be conservative.
898 */
899 return op != VK_STENCIL_OP_INCREMENT_AND_CLAMP &&
900 op != VK_STENCIL_OP_DECREMENT_AND_CLAMP &&
901 op != VK_STENCIL_OP_REPLACE;
902 }
903
904 static bool
905 radv_order_invariant_stencil_state(const VkStencilOpState *state)
906 {
907 /* Compute whether, assuming Z writes are disabled, this stencil state
908 * is order invariant in the sense that the set of passing fragments as
909 * well as the final stencil buffer result does not depend on the order
910 * of fragments.
911 */
912 return !state->writeMask ||
913 /* The following assumes that Z writes are disabled. */
914 (state->compareOp == VK_COMPARE_OP_ALWAYS &&
915 radv_order_invariant_stencil_op(state->passOp) &&
916 radv_order_invariant_stencil_op(state->depthFailOp)) ||
917 (state->compareOp == VK_COMPARE_OP_NEVER &&
918 radv_order_invariant_stencil_op(state->failOp));
919 }
920
921 static bool
922 radv_pipeline_has_dynamic_ds_states(const VkGraphicsPipelineCreateInfo *pCreateInfo)
923 {
924 VkDynamicState ds_states[] = {
925 VK_DYNAMIC_STATE_DEPTH_TEST_ENABLE_EXT,
926 VK_DYNAMIC_STATE_DEPTH_WRITE_ENABLE_EXT,
927 VK_DYNAMIC_STATE_DEPTH_COMPARE_OP_EXT,
928 VK_DYNAMIC_STATE_STENCIL_TEST_ENABLE_EXT,
929 VK_DYNAMIC_STATE_STENCIL_OP_EXT,
930 };
931
932 if (pCreateInfo->pDynamicState) {
933 uint32_t count = pCreateInfo->pDynamicState->dynamicStateCount;
934 for (uint32_t i = 0; i < count; i++) {
935 for (uint32_t j = 0; j < ARRAY_SIZE(ds_states); j++) {
936 if (pCreateInfo->pDynamicState->pDynamicStates[i] == ds_states[j])
937 return true;
938 }
939 }
940 }
941
942 return false;
943 }
944
945 static bool
946 radv_pipeline_out_of_order_rast(struct radv_pipeline *pipeline,
947 struct radv_blend_state *blend,
948 const VkGraphicsPipelineCreateInfo *pCreateInfo)
949 {
950 RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
951 struct radv_subpass *subpass = pass->subpasses + pCreateInfo->subpass;
952 const VkPipelineDepthStencilStateCreateInfo *vkds = radv_pipeline_get_depth_stencil_state(pCreateInfo);
953 const VkPipelineColorBlendStateCreateInfo *vkblend = radv_pipeline_get_color_blend_state(pCreateInfo);
954 unsigned colormask = blend->cb_target_enabled_4bit;
955
956 if (!pipeline->device->physical_device->out_of_order_rast_allowed)
957 return false;
958
959 /* Be conservative if a logic operation is enabled with color buffers. */
960 if (colormask && vkblend && vkblend->logicOpEnable)
961 return false;
962
963 /* Be conservative if an extended dynamic depth/stencil state is
964 * enabled because the driver can't update out-of-order rasterization
965 * dynamically.
966 */
967 if (radv_pipeline_has_dynamic_ds_states(pCreateInfo))
968 return false;
969
970 /* Default depth/stencil invariance when no attachment is bound. */
971 struct radv_dsa_order_invariance dsa_order_invariant = {
972 .zs = true, .pass_set = true
973 };
974
975 if (vkds) {
976 struct radv_render_pass_attachment *attachment =
977 pass->attachments + subpass->depth_stencil_attachment->attachment;
978 bool has_stencil = vk_format_is_stencil(attachment->format);
979 struct radv_dsa_order_invariance order_invariance[2];
980 struct radv_shader_variant *ps =
981 pipeline->shaders[MESA_SHADER_FRAGMENT];
982
983 /* Compute depth/stencil order invariance in order to know if
984 * it's safe to enable out-of-order.
985 */
986 bool zfunc_is_ordered =
987 vkds->depthCompareOp == VK_COMPARE_OP_NEVER ||
988 vkds->depthCompareOp == VK_COMPARE_OP_LESS ||
989 vkds->depthCompareOp == VK_COMPARE_OP_LESS_OR_EQUAL ||
990 vkds->depthCompareOp == VK_COMPARE_OP_GREATER ||
991 vkds->depthCompareOp == VK_COMPARE_OP_GREATER_OR_EQUAL;
992
993 bool nozwrite_and_order_invariant_stencil =
994 !radv_is_ds_write_enabled(vkds) ||
995 (!radv_is_depth_write_enabled(vkds) &&
996 radv_order_invariant_stencil_state(&vkds->front) &&
997 radv_order_invariant_stencil_state(&vkds->back));
998
999 order_invariance[1].zs =
1000 nozwrite_and_order_invariant_stencil ||
1001 (!radv_is_stencil_write_enabled(vkds) &&
1002 zfunc_is_ordered);
1003 order_invariance[0].zs =
1004 !radv_is_depth_write_enabled(vkds) || zfunc_is_ordered;
1005
1006 order_invariance[1].pass_set =
1007 nozwrite_and_order_invariant_stencil ||
1008 (!radv_is_stencil_write_enabled(vkds) &&
1009 (vkds->depthCompareOp == VK_COMPARE_OP_ALWAYS ||
1010 vkds->depthCompareOp == VK_COMPARE_OP_NEVER));
1011 order_invariance[0].pass_set =
1012 !radv_is_depth_write_enabled(vkds) ||
1013 (vkds->depthCompareOp == VK_COMPARE_OP_ALWAYS ||
1014 vkds->depthCompareOp == VK_COMPARE_OP_NEVER);
1015
1016 dsa_order_invariant = order_invariance[has_stencil];
1017 if (!dsa_order_invariant.zs)
1018 return false;
1019
1020 /* The set of PS invocations is always order invariant,
1021 * except when early Z/S tests are requested.
1022 */
1023 if (ps &&
1024 ps->info.ps.writes_memory &&
1025 ps->info.ps.early_fragment_test &&
1026 !dsa_order_invariant.pass_set)
1027 return false;
1028
1029 /* Determine if out-of-order rasterization should be disabled
1030 * when occlusion queries are used.
1031 */
1032 pipeline->graphics.disable_out_of_order_rast_for_occlusion =
1033 !dsa_order_invariant.pass_set;
1034 }
1035
1036 /* No color buffers are enabled for writing. */
1037 if (!colormask)
1038 return true;
1039
1040 unsigned blendmask = colormask & blend->blend_enable_4bit;
1041
1042 if (blendmask) {
1043 /* Only commutative blending. */
1044 if (blendmask & ~blend->commutative_4bit)
1045 return false;
1046
1047 if (!dsa_order_invariant.pass_set)
1048 return false;
1049 }
1050
1051 if (colormask & ~blendmask)
1052 return false;
1053
1054 return true;
1055 }
1056
1057 static void
1058 radv_pipeline_init_multisample_state(struct radv_pipeline *pipeline,
1059 struct radv_blend_state *blend,
1060 const VkGraphicsPipelineCreateInfo *pCreateInfo)
1061 {
1062 const VkPipelineMultisampleStateCreateInfo *vkms = radv_pipeline_get_multisample_state(pCreateInfo);
1063 struct radv_multisample_state *ms = &pipeline->graphics.ms;
1064 unsigned num_tile_pipes = pipeline->device->physical_device->rad_info.num_tile_pipes;
1065 bool out_of_order_rast = false;
1066 int ps_iter_samples = 1;
1067 uint32_t mask = 0xffff;
1068
1069 if (vkms) {
1070 ms->num_samples = vkms->rasterizationSamples;
1071
1072 /* From the Vulkan 1.1.129 spec, 26.7. Sample Shading:
1073 *
1074 * "Sample shading is enabled for a graphics pipeline:
1075 *
1076 * - If the interface of the fragment shader entry point of the
1077 * graphics pipeline includes an input variable decorated
1078 * with SampleId or SamplePosition. In this case
1079 * minSampleShadingFactor takes the value 1.0.
1080 * - Else if the sampleShadingEnable member of the
1081 * VkPipelineMultisampleStateCreateInfo structure specified
1082 * when creating the graphics pipeline is set to VK_TRUE. In
1083 * this case minSampleShadingFactor takes the value of
1084 * VkPipelineMultisampleStateCreateInfo::minSampleShading.
1085 *
1086 * Otherwise, sample shading is considered disabled."
1087 */
1088 if (pipeline->shaders[MESA_SHADER_FRAGMENT]->info.ps.force_persample) {
1089 ps_iter_samples = ms->num_samples;
1090 } else {
1091 ps_iter_samples = radv_pipeline_get_ps_iter_samples(pCreateInfo);
1092 }
1093 } else {
1094 ms->num_samples = 1;
1095 }
1096
1097 const struct VkPipelineRasterizationStateRasterizationOrderAMD *raster_order =
1098 vk_find_struct_const(pCreateInfo->pRasterizationState->pNext, PIPELINE_RASTERIZATION_STATE_RASTERIZATION_ORDER_AMD);
1099 if (raster_order && raster_order->rasterizationOrder == VK_RASTERIZATION_ORDER_RELAXED_AMD) {
1100 /* Out-of-order rasterization is explicitly enabled by the
1101 * application.
1102 */
1103 out_of_order_rast = true;
1104 } else {
1105 /* Determine if the driver can enable out-of-order
1106 * rasterization internally.
1107 */
1108 out_of_order_rast =
1109 radv_pipeline_out_of_order_rast(pipeline, blend, pCreateInfo);
1110 }
1111
1112 ms->pa_sc_aa_config = 0;
1113 ms->db_eqaa = S_028804_HIGH_QUALITY_INTERSECTIONS(1) |
1114 S_028804_INCOHERENT_EQAA_READS(1) |
1115 S_028804_INTERPOLATE_COMP_Z(1) |
1116 S_028804_STATIC_ANCHOR_ASSOCIATIONS(1);
1117 ms->pa_sc_mode_cntl_1 =
1118 S_028A4C_WALK_FENCE_ENABLE(1) | //TODO linear dst fixes
1119 S_028A4C_WALK_FENCE_SIZE(num_tile_pipes == 2 ? 2 : 3) |
1120 S_028A4C_OUT_OF_ORDER_PRIMITIVE_ENABLE(out_of_order_rast) |
1121 S_028A4C_OUT_OF_ORDER_WATER_MARK(0x7) |
1122 /* always 1: */
1123 S_028A4C_WALK_ALIGN8_PRIM_FITS_ST(1) |
1124 S_028A4C_SUPERTILE_WALK_ORDER_ENABLE(1) |
1125 S_028A4C_TILE_WALK_ORDER_ENABLE(1) |
1126 S_028A4C_MULTI_SHADER_ENGINE_PRIM_DISCARD_ENABLE(1) |
1127 S_028A4C_FORCE_EOV_CNTDWN_ENABLE(1) |
1128 S_028A4C_FORCE_EOV_REZ_ENABLE(1);
1129 ms->pa_sc_mode_cntl_0 = S_028A48_ALTERNATE_RBS_PER_TILE(pipeline->device->physical_device->rad_info.chip_class >= GFX9) |
1130 S_028A48_VPORT_SCISSOR_ENABLE(1);
1131
1132 const VkPipelineRasterizationLineStateCreateInfoEXT *rast_line =
1133 vk_find_struct_const(pCreateInfo->pRasterizationState->pNext,
1134 PIPELINE_RASTERIZATION_LINE_STATE_CREATE_INFO_EXT);
1135 if (rast_line) {
1136 ms->pa_sc_mode_cntl_0 |= S_028A48_LINE_STIPPLE_ENABLE(rast_line->stippledLineEnable);
1137 if (rast_line->lineRasterizationMode == VK_LINE_RASTERIZATION_MODE_BRESENHAM_EXT) {
1138 /* From the Vulkan spec 1.1.129:
1139 *
1140 * "When VK_LINE_RASTERIZATION_MODE_BRESENHAM_EXT lines
1141 * are being rasterized, sample locations may all be
1142 * treated as being at the pixel center (this may
1143 * affect attribute and depth interpolation)."
1144 */
1145 ms->num_samples = 1;
1146 }
1147 }
1148
1149 if (ms->num_samples > 1) {
1150 RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
1151 struct radv_subpass *subpass = &pass->subpasses[pCreateInfo->subpass];
1152 uint32_t z_samples = subpass->depth_stencil_attachment ? subpass->depth_sample_count : ms->num_samples;
1153 unsigned log_samples = util_logbase2(ms->num_samples);
1154 unsigned log_z_samples = util_logbase2(z_samples);
1155 unsigned log_ps_iter_samples = util_logbase2(ps_iter_samples);
1156 ms->pa_sc_mode_cntl_0 |= S_028A48_MSAA_ENABLE(1);
1157 ms->db_eqaa |= S_028804_MAX_ANCHOR_SAMPLES(log_z_samples) |
1158 S_028804_PS_ITER_SAMPLES(log_ps_iter_samples) |
1159 S_028804_MASK_EXPORT_NUM_SAMPLES(log_samples) |
1160 S_028804_ALPHA_TO_MASK_NUM_SAMPLES(log_samples);
1161 ms->pa_sc_aa_config |= S_028BE0_MSAA_NUM_SAMPLES(log_samples) |
1162 S_028BE0_MAX_SAMPLE_DIST(radv_get_default_max_sample_dist(log_samples)) |
1163 S_028BE0_MSAA_EXPOSED_SAMPLES(log_samples) | /* CM_R_028BE0_PA_SC_AA_CONFIG */
1164 S_028BE0_COVERED_CENTROID_IS_CENTER_GFX103(pipeline->device->physical_device->rad_info.chip_class >= GFX10_3);
1165 ms->pa_sc_mode_cntl_1 |= S_028A4C_PS_ITER_SAMPLE(ps_iter_samples > 1);
1166 if (ps_iter_samples > 1)
1167 pipeline->graphics.spi_baryc_cntl |= S_0286E0_POS_FLOAT_LOCATION(2);
1168 }
1169
1170 if (vkms && vkms->pSampleMask) {
1171 mask = vkms->pSampleMask[0] & 0xffff;
1172 }
1173
1174 ms->pa_sc_aa_mask[0] = mask | (mask << 16);
1175 ms->pa_sc_aa_mask[1] = mask | (mask << 16);
1176 }
1177
1178 static bool
1179 radv_prim_can_use_guardband(enum VkPrimitiveTopology topology)
1180 {
1181 switch (topology) {
1182 case VK_PRIMITIVE_TOPOLOGY_POINT_LIST:
1183 case VK_PRIMITIVE_TOPOLOGY_LINE_LIST:
1184 case VK_PRIMITIVE_TOPOLOGY_LINE_STRIP:
1185 case VK_PRIMITIVE_TOPOLOGY_LINE_LIST_WITH_ADJACENCY:
1186 case VK_PRIMITIVE_TOPOLOGY_LINE_STRIP_WITH_ADJACENCY:
1187 return false;
1188 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST:
1189 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP:
1190 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN:
1191 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST_WITH_ADJACENCY:
1192 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_WITH_ADJACENCY:
1193 case VK_PRIMITIVE_TOPOLOGY_PATCH_LIST:
1194 return true;
1195 default:
1196 unreachable("unhandled primitive type");
1197 }
1198 }
1199
1200 static uint32_t
1201 si_conv_gl_prim_to_gs_out(unsigned gl_prim)
1202 {
1203 switch (gl_prim) {
1204 case 0: /* GL_POINTS */
1205 return V_028A6C_OUTPRIM_TYPE_POINTLIST;
1206 case 1: /* GL_LINES */
1207 case 3: /* GL_LINE_STRIP */
1208 case 0xA: /* GL_LINE_STRIP_ADJACENCY_ARB */
1209 case 0x8E7A: /* GL_ISOLINES */
1210 return V_028A6C_OUTPRIM_TYPE_LINESTRIP;
1211
1212 case 4: /* GL_TRIANGLES */
1213 case 0xc: /* GL_TRIANGLES_ADJACENCY_ARB */
1214 case 5: /* GL_TRIANGLE_STRIP */
1215 case 7: /* GL_QUADS */
1216 return V_028A6C_OUTPRIM_TYPE_TRISTRIP;
1217 default:
1218 assert(0);
1219 return 0;
1220 }
1221 }
1222
1223 static uint32_t
1224 si_conv_prim_to_gs_out(enum VkPrimitiveTopology topology)
1225 {
1226 switch (topology) {
1227 case VK_PRIMITIVE_TOPOLOGY_POINT_LIST:
1228 case VK_PRIMITIVE_TOPOLOGY_PATCH_LIST:
1229 return V_028A6C_OUTPRIM_TYPE_POINTLIST;
1230 case VK_PRIMITIVE_TOPOLOGY_LINE_LIST:
1231 case VK_PRIMITIVE_TOPOLOGY_LINE_STRIP:
1232 case VK_PRIMITIVE_TOPOLOGY_LINE_LIST_WITH_ADJACENCY:
1233 case VK_PRIMITIVE_TOPOLOGY_LINE_STRIP_WITH_ADJACENCY:
1234 return V_028A6C_OUTPRIM_TYPE_LINESTRIP;
1235 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST:
1236 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP:
1237 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN:
1238 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST_WITH_ADJACENCY:
1239 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_WITH_ADJACENCY:
1240 return V_028A6C_OUTPRIM_TYPE_TRISTRIP;
1241 default:
1242 assert(0);
1243 return 0;
1244 }
1245 }
1246
1247 static unsigned radv_dynamic_state_mask(VkDynamicState state)
1248 {
1249 switch(state) {
1250 case VK_DYNAMIC_STATE_VIEWPORT:
1251 case VK_DYNAMIC_STATE_VIEWPORT_WITH_COUNT_EXT:
1252 return RADV_DYNAMIC_VIEWPORT;
1253 case VK_DYNAMIC_STATE_SCISSOR:
1254 case VK_DYNAMIC_STATE_SCISSOR_WITH_COUNT_EXT:
1255 return RADV_DYNAMIC_SCISSOR;
1256 case VK_DYNAMIC_STATE_LINE_WIDTH:
1257 return RADV_DYNAMIC_LINE_WIDTH;
1258 case VK_DYNAMIC_STATE_DEPTH_BIAS:
1259 return RADV_DYNAMIC_DEPTH_BIAS;
1260 case VK_DYNAMIC_STATE_BLEND_CONSTANTS:
1261 return RADV_DYNAMIC_BLEND_CONSTANTS;
1262 case VK_DYNAMIC_STATE_DEPTH_BOUNDS:
1263 return RADV_DYNAMIC_DEPTH_BOUNDS;
1264 case VK_DYNAMIC_STATE_STENCIL_COMPARE_MASK:
1265 return RADV_DYNAMIC_STENCIL_COMPARE_MASK;
1266 case VK_DYNAMIC_STATE_STENCIL_WRITE_MASK:
1267 return RADV_DYNAMIC_STENCIL_WRITE_MASK;
1268 case VK_DYNAMIC_STATE_STENCIL_REFERENCE:
1269 return RADV_DYNAMIC_STENCIL_REFERENCE;
1270 case VK_DYNAMIC_STATE_DISCARD_RECTANGLE_EXT:
1271 return RADV_DYNAMIC_DISCARD_RECTANGLE;
1272 case VK_DYNAMIC_STATE_SAMPLE_LOCATIONS_EXT:
1273 return RADV_DYNAMIC_SAMPLE_LOCATIONS;
1274 case VK_DYNAMIC_STATE_LINE_STIPPLE_EXT:
1275 return RADV_DYNAMIC_LINE_STIPPLE;
1276 case VK_DYNAMIC_STATE_CULL_MODE_EXT:
1277 return RADV_DYNAMIC_CULL_MODE;
1278 case VK_DYNAMIC_STATE_FRONT_FACE_EXT:
1279 return RADV_DYNAMIC_FRONT_FACE;
1280 case VK_DYNAMIC_STATE_PRIMITIVE_TOPOLOGY_EXT:
1281 return RADV_DYNAMIC_PRIMITIVE_TOPOLOGY;
1282 case VK_DYNAMIC_STATE_DEPTH_TEST_ENABLE_EXT:
1283 return RADV_DYNAMIC_DEPTH_TEST_ENABLE;
1284 case VK_DYNAMIC_STATE_DEPTH_WRITE_ENABLE_EXT:
1285 return RADV_DYNAMIC_DEPTH_WRITE_ENABLE;
1286 case VK_DYNAMIC_STATE_DEPTH_COMPARE_OP_EXT:
1287 return RADV_DYNAMIC_DEPTH_COMPARE_OP;
1288 case VK_DYNAMIC_STATE_DEPTH_BOUNDS_TEST_ENABLE_EXT:
1289 return RADV_DYNAMIC_DEPTH_BOUNDS_TEST_ENABLE;
1290 case VK_DYNAMIC_STATE_STENCIL_TEST_ENABLE_EXT:
1291 return RADV_DYNAMIC_STENCIL_TEST_ENABLE;
1292 case VK_DYNAMIC_STATE_STENCIL_OP_EXT:
1293 return RADV_DYNAMIC_STENCIL_OP;
1294 case VK_DYNAMIC_STATE_VERTEX_INPUT_BINDING_STRIDE_EXT:
1295 return RADV_DYNAMIC_VERTEX_INPUT_BINDING_STRIDE;
1296 default:
1297 unreachable("Unhandled dynamic state");
1298 }
1299 }
1300
1301 static uint32_t radv_pipeline_needed_dynamic_state(const VkGraphicsPipelineCreateInfo *pCreateInfo)
1302 {
1303 uint32_t states = RADV_DYNAMIC_ALL;
1304
1305 /* If rasterization is disabled we do not care about any of the
1306 * dynamic states, since they are all rasterization related only,
1307 * except primitive topology and vertex binding stride.
1308 */
1309 if (pCreateInfo->pRasterizationState->rasterizerDiscardEnable)
1310 return RADV_DYNAMIC_PRIMITIVE_TOPOLOGY |
1311 RADV_DYNAMIC_VERTEX_INPUT_BINDING_STRIDE;
1312
1313 if (!pCreateInfo->pRasterizationState->depthBiasEnable)
1314 states &= ~RADV_DYNAMIC_DEPTH_BIAS;
1315
1316 if (!pCreateInfo->pDepthStencilState ||
1317 !pCreateInfo->pDepthStencilState->depthBoundsTestEnable)
1318 states &= ~RADV_DYNAMIC_DEPTH_BOUNDS;
1319
1320 if (!pCreateInfo->pDepthStencilState ||
1321 !pCreateInfo->pDepthStencilState->stencilTestEnable)
1322 states &= ~(RADV_DYNAMIC_STENCIL_COMPARE_MASK |
1323 RADV_DYNAMIC_STENCIL_WRITE_MASK |
1324 RADV_DYNAMIC_STENCIL_REFERENCE);
1325
1326 if (!vk_find_struct_const(pCreateInfo->pNext, PIPELINE_DISCARD_RECTANGLE_STATE_CREATE_INFO_EXT))
1327 states &= ~RADV_DYNAMIC_DISCARD_RECTANGLE;
1328
1329 if (!pCreateInfo->pMultisampleState ||
1330 !vk_find_struct_const(pCreateInfo->pMultisampleState->pNext,
1331 PIPELINE_SAMPLE_LOCATIONS_STATE_CREATE_INFO_EXT))
1332 states &= ~RADV_DYNAMIC_SAMPLE_LOCATIONS;
1333
1334 if (!pCreateInfo->pRasterizationState ||
1335 !vk_find_struct_const(pCreateInfo->pRasterizationState->pNext,
1336 PIPELINE_RASTERIZATION_LINE_STATE_CREATE_INFO_EXT))
1337 states &= ~RADV_DYNAMIC_LINE_STIPPLE;
1338
1339 /* TODO: blend constants & line width. */
1340
1341 return states;
1342 }
1343
1344
1345 static void
1346 radv_pipeline_init_dynamic_state(struct radv_pipeline *pipeline,
1347 const VkGraphicsPipelineCreateInfo *pCreateInfo,
1348 const struct radv_graphics_pipeline_create_info *extra)
1349 {
1350 uint32_t needed_states = radv_pipeline_needed_dynamic_state(pCreateInfo);
1351 uint32_t states = needed_states;
1352 RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
1353 struct radv_subpass *subpass = &pass->subpasses[pCreateInfo->subpass];
1354
1355 pipeline->dynamic_state = default_dynamic_state;
1356 pipeline->graphics.needed_dynamic_state = needed_states;
1357
1358 if (pCreateInfo->pDynamicState) {
1359 /* Remove all of the states that are marked as dynamic */
1360 uint32_t count = pCreateInfo->pDynamicState->dynamicStateCount;
1361 for (uint32_t s = 0; s < count; s++)
1362 states &= ~radv_dynamic_state_mask(pCreateInfo->pDynamicState->pDynamicStates[s]);
1363 }
1364
1365 struct radv_dynamic_state *dynamic = &pipeline->dynamic_state;
1366
1367 if (needed_states & RADV_DYNAMIC_VIEWPORT) {
1368 assert(pCreateInfo->pViewportState);
1369
1370 dynamic->viewport.count = pCreateInfo->pViewportState->viewportCount;
1371 if (states & RADV_DYNAMIC_VIEWPORT) {
1372 typed_memcpy(dynamic->viewport.viewports,
1373 pCreateInfo->pViewportState->pViewports,
1374 pCreateInfo->pViewportState->viewportCount);
1375 }
1376 }
1377
1378 if (needed_states & RADV_DYNAMIC_SCISSOR) {
1379 dynamic->scissor.count = pCreateInfo->pViewportState->scissorCount;
1380 if (states & RADV_DYNAMIC_SCISSOR) {
1381 typed_memcpy(dynamic->scissor.scissors,
1382 pCreateInfo->pViewportState->pScissors,
1383 pCreateInfo->pViewportState->scissorCount);
1384 }
1385 }
1386
1387 if (states & RADV_DYNAMIC_LINE_WIDTH) {
1388 assert(pCreateInfo->pRasterizationState);
1389 dynamic->line_width = pCreateInfo->pRasterizationState->lineWidth;
1390 }
1391
1392 if (states & RADV_DYNAMIC_DEPTH_BIAS) {
1393 assert(pCreateInfo->pRasterizationState);
1394 dynamic->depth_bias.bias =
1395 pCreateInfo->pRasterizationState->depthBiasConstantFactor;
1396 dynamic->depth_bias.clamp =
1397 pCreateInfo->pRasterizationState->depthBiasClamp;
1398 dynamic->depth_bias.slope =
1399 pCreateInfo->pRasterizationState->depthBiasSlopeFactor;
1400 }
1401
1402 /* Section 9.2 of the Vulkan 1.0.15 spec says:
1403 *
1404 * pColorBlendState is [...] NULL if the pipeline has rasterization
1405 * disabled or if the subpass of the render pass the pipeline is
1406 * created against does not use any color attachments.
1407 */
1408 if (subpass->has_color_att && states & RADV_DYNAMIC_BLEND_CONSTANTS) {
1409 assert(pCreateInfo->pColorBlendState);
1410 typed_memcpy(dynamic->blend_constants,
1411 pCreateInfo->pColorBlendState->blendConstants, 4);
1412 }
1413
1414 if (states & RADV_DYNAMIC_CULL_MODE) {
1415 dynamic->cull_mode =
1416 pCreateInfo->pRasterizationState->cullMode;
1417 }
1418
1419 if (states & RADV_DYNAMIC_FRONT_FACE) {
1420 dynamic->front_face =
1421 pCreateInfo->pRasterizationState->frontFace;
1422 }
1423
1424 if (states & RADV_DYNAMIC_PRIMITIVE_TOPOLOGY) {
1425 dynamic->primitive_topology =
1426 si_translate_prim(pCreateInfo->pInputAssemblyState->topology);
1427 if (extra && extra->use_rectlist) {
1428 dynamic->primitive_topology = V_008958_DI_PT_RECTLIST;
1429 }
1430 }
1431
1432 /* If there is no depthstencil attachment, then don't read
1433 * pDepthStencilState. The Vulkan spec states that pDepthStencilState may
1434 * be NULL in this case. Even if pDepthStencilState is non-NULL, there is
1435 * no need to override the depthstencil defaults in
1436 * radv_pipeline::dynamic_state when there is no depthstencil attachment.
1437 *
1438 * Section 9.2 of the Vulkan 1.0.15 spec says:
1439 *
1440 * pDepthStencilState is [...] NULL if the pipeline has rasterization
1441 * disabled or if the subpass of the render pass the pipeline is created
1442 * against does not use a depth/stencil attachment.
1443 */
1444 if (needed_states && subpass->depth_stencil_attachment) {
1445 assert(pCreateInfo->pDepthStencilState);
1446
1447 if (states & RADV_DYNAMIC_DEPTH_BOUNDS) {
1448 dynamic->depth_bounds.min =
1449 pCreateInfo->pDepthStencilState->minDepthBounds;
1450 dynamic->depth_bounds.max =
1451 pCreateInfo->pDepthStencilState->maxDepthBounds;
1452 }
1453
1454 if (states & RADV_DYNAMIC_STENCIL_COMPARE_MASK) {
1455 dynamic->stencil_compare_mask.front =
1456 pCreateInfo->pDepthStencilState->front.compareMask;
1457 dynamic->stencil_compare_mask.back =
1458 pCreateInfo->pDepthStencilState->back.compareMask;
1459 }
1460
1461 if (states & RADV_DYNAMIC_STENCIL_WRITE_MASK) {
1462 dynamic->stencil_write_mask.front =
1463 pCreateInfo->pDepthStencilState->front.writeMask;
1464 dynamic->stencil_write_mask.back =
1465 pCreateInfo->pDepthStencilState->back.writeMask;
1466 }
1467
1468 if (states & RADV_DYNAMIC_STENCIL_REFERENCE) {
1469 dynamic->stencil_reference.front =
1470 pCreateInfo->pDepthStencilState->front.reference;
1471 dynamic->stencil_reference.back =
1472 pCreateInfo->pDepthStencilState->back.reference;
1473 }
1474
1475 if (states & RADV_DYNAMIC_DEPTH_TEST_ENABLE) {
1476 dynamic->depth_test_enable =
1477 pCreateInfo->pDepthStencilState->depthTestEnable;
1478 }
1479
1480 if (states & RADV_DYNAMIC_DEPTH_WRITE_ENABLE) {
1481 dynamic->depth_write_enable =
1482 pCreateInfo->pDepthStencilState->depthWriteEnable;
1483 }
1484
1485 if (states & RADV_DYNAMIC_DEPTH_COMPARE_OP) {
1486 dynamic->depth_compare_op =
1487 pCreateInfo->pDepthStencilState->depthCompareOp;
1488 }
1489
1490 if (states & RADV_DYNAMIC_DEPTH_BOUNDS_TEST_ENABLE) {
1491 dynamic->depth_bounds_test_enable =
1492 pCreateInfo->pDepthStencilState->depthBoundsTestEnable;
1493 }
1494
1495 if (states & RADV_DYNAMIC_STENCIL_TEST_ENABLE) {
1496 dynamic->stencil_test_enable =
1497 pCreateInfo->pDepthStencilState->stencilTestEnable;
1498 }
1499
1500 if (states & RADV_DYNAMIC_STENCIL_OP) {
1501 dynamic->stencil_op.front.compare_op =
1502 pCreateInfo->pDepthStencilState->front.compareOp;
1503 dynamic->stencil_op.front.fail_op =
1504 pCreateInfo->pDepthStencilState->front.failOp;
1505 dynamic->stencil_op.front.pass_op =
1506 pCreateInfo->pDepthStencilState->front.passOp;
1507 dynamic->stencil_op.front.depth_fail_op =
1508 pCreateInfo->pDepthStencilState->front.depthFailOp;
1509
1510 dynamic->stencil_op.back.compare_op =
1511 pCreateInfo->pDepthStencilState->back.compareOp;
1512 dynamic->stencil_op.back.fail_op =
1513 pCreateInfo->pDepthStencilState->back.failOp;
1514 dynamic->stencil_op.back.pass_op =
1515 pCreateInfo->pDepthStencilState->back.passOp;
1516 dynamic->stencil_op.back.depth_fail_op =
1517 pCreateInfo->pDepthStencilState->back.depthFailOp;
1518 }
1519 }
1520
1521 const VkPipelineDiscardRectangleStateCreateInfoEXT *discard_rectangle_info =
1522 vk_find_struct_const(pCreateInfo->pNext, PIPELINE_DISCARD_RECTANGLE_STATE_CREATE_INFO_EXT);
1523 if (needed_states & RADV_DYNAMIC_DISCARD_RECTANGLE) {
1524 dynamic->discard_rectangle.count = discard_rectangle_info->discardRectangleCount;
1525 if (states & RADV_DYNAMIC_DISCARD_RECTANGLE) {
1526 typed_memcpy(dynamic->discard_rectangle.rectangles,
1527 discard_rectangle_info->pDiscardRectangles,
1528 discard_rectangle_info->discardRectangleCount);
1529 }
1530 }
1531
1532 if (needed_states & RADV_DYNAMIC_SAMPLE_LOCATIONS) {
1533 const VkPipelineSampleLocationsStateCreateInfoEXT *sample_location_info =
1534 vk_find_struct_const(pCreateInfo->pMultisampleState->pNext,
1535 PIPELINE_SAMPLE_LOCATIONS_STATE_CREATE_INFO_EXT);
1536 /* If sampleLocationsEnable is VK_FALSE, the default sample
1537 * locations are used and the values specified in
1538 * sampleLocationsInfo are ignored.
1539 */
1540 if (sample_location_info->sampleLocationsEnable) {
1541 const VkSampleLocationsInfoEXT *pSampleLocationsInfo =
1542 &sample_location_info->sampleLocationsInfo;
1543
1544 assert(pSampleLocationsInfo->sampleLocationsCount <= MAX_SAMPLE_LOCATIONS);
1545
1546 dynamic->sample_location.per_pixel = pSampleLocationsInfo->sampleLocationsPerPixel;
1547 dynamic->sample_location.grid_size = pSampleLocationsInfo->sampleLocationGridSize;
1548 dynamic->sample_location.count = pSampleLocationsInfo->sampleLocationsCount;
1549 typed_memcpy(&dynamic->sample_location.locations[0],
1550 pSampleLocationsInfo->pSampleLocations,
1551 pSampleLocationsInfo->sampleLocationsCount);
1552 }
1553 }
1554
1555 const VkPipelineRasterizationLineStateCreateInfoEXT *rast_line_info =
1556 vk_find_struct_const(pCreateInfo->pRasterizationState->pNext,
1557 PIPELINE_RASTERIZATION_LINE_STATE_CREATE_INFO_EXT);
1558 if (needed_states & RADV_DYNAMIC_LINE_STIPPLE) {
1559 dynamic->line_stipple.factor = rast_line_info->lineStippleFactor;
1560 dynamic->line_stipple.pattern = rast_line_info->lineStipplePattern;
1561 }
1562
1563 if (!(states & RADV_DYNAMIC_VERTEX_INPUT_BINDING_STRIDE))
1564 pipeline->graphics.uses_dynamic_stride = true;
1565
1566 pipeline->dynamic_state.mask = states;
1567 }
1568
1569 static void
1570 gfx9_get_gs_info(const struct radv_pipeline_key *key,
1571 const struct radv_pipeline *pipeline,
1572 nir_shader **nir,
1573 struct radv_shader_info *infos,
1574 struct gfx9_gs_info *out)
1575 {
1576 struct radv_shader_info *gs_info = &infos[MESA_SHADER_GEOMETRY];
1577 struct radv_es_output_info *es_info;
1578 if (pipeline->device->physical_device->rad_info.chip_class >= GFX9)
1579 es_info = nir[MESA_SHADER_TESS_CTRL] ? &gs_info->tes.es_info : &gs_info->vs.es_info;
1580 else
1581 es_info = nir[MESA_SHADER_TESS_CTRL] ?
1582 &infos[MESA_SHADER_TESS_EVAL].tes.es_info :
1583 &infos[MESA_SHADER_VERTEX].vs.es_info;
1584
1585 unsigned gs_num_invocations = MAX2(gs_info->gs.invocations, 1);
1586 bool uses_adjacency;
1587 switch(key->topology) {
1588 case VK_PRIMITIVE_TOPOLOGY_LINE_LIST_WITH_ADJACENCY:
1589 case VK_PRIMITIVE_TOPOLOGY_LINE_STRIP_WITH_ADJACENCY:
1590 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST_WITH_ADJACENCY:
1591 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_WITH_ADJACENCY:
1592 uses_adjacency = true;
1593 break;
1594 default:
1595 uses_adjacency = false;
1596 break;
1597 }
1598
1599 /* All these are in dwords: */
1600 /* We can't allow using the whole LDS, because GS waves compete with
1601 * other shader stages for LDS space. */
1602 const unsigned max_lds_size = 8 * 1024;
1603 const unsigned esgs_itemsize = es_info->esgs_itemsize / 4;
1604 unsigned esgs_lds_size;
1605
1606 /* All these are per subgroup: */
1607 const unsigned max_out_prims = 32 * 1024;
1608 const unsigned max_es_verts = 255;
1609 const unsigned ideal_gs_prims = 64;
1610 unsigned max_gs_prims, gs_prims;
1611 unsigned min_es_verts, es_verts, worst_case_es_verts;
1612
1613 if (uses_adjacency || gs_num_invocations > 1)
1614 max_gs_prims = 127 / gs_num_invocations;
1615 else
1616 max_gs_prims = 255;
1617
1618 /* MAX_PRIMS_PER_SUBGROUP = gs_prims * max_vert_out * gs_invocations.
1619 * Make sure we don't go over the maximum value.
1620 */
1621 if (gs_info->gs.vertices_out > 0) {
1622 max_gs_prims = MIN2(max_gs_prims,
1623 max_out_prims /
1624 (gs_info->gs.vertices_out * gs_num_invocations));
1625 }
1626 assert(max_gs_prims > 0);
1627
1628 /* If the primitive has adjacency, halve the number of vertices
1629 * that will be reused in multiple primitives.
1630 */
1631 min_es_verts = gs_info->gs.vertices_in / (uses_adjacency ? 2 : 1);
1632
1633 gs_prims = MIN2(ideal_gs_prims, max_gs_prims);
1634 worst_case_es_verts = MIN2(min_es_verts * gs_prims, max_es_verts);
1635
1636 /* Compute ESGS LDS size based on the worst case number of ES vertices
1637 * needed to create the target number of GS prims per subgroup.
1638 */
1639 esgs_lds_size = esgs_itemsize * worst_case_es_verts;
1640
1641 /* If total LDS usage is too big, refactor partitions based on ratio
1642 * of ESGS item sizes.
1643 */
1644 if (esgs_lds_size > max_lds_size) {
1645 /* Our target GS Prims Per Subgroup was too large. Calculate
1646 * the maximum number of GS Prims Per Subgroup that will fit
1647 * into LDS, capped by the maximum that the hardware can support.
1648 */
1649 gs_prims = MIN2((max_lds_size / (esgs_itemsize * min_es_verts)),
1650 max_gs_prims);
1651 assert(gs_prims > 0);
1652 worst_case_es_verts = MIN2(min_es_verts * gs_prims,
1653 max_es_verts);
1654
1655 esgs_lds_size = esgs_itemsize * worst_case_es_verts;
1656 assert(esgs_lds_size <= max_lds_size);
1657 }
1658
1659 /* Now calculate remaining ESGS information. */
1660 if (esgs_lds_size)
1661 es_verts = MIN2(esgs_lds_size / esgs_itemsize, max_es_verts);
1662 else
1663 es_verts = max_es_verts;
1664
1665 /* Vertices for adjacency primitives are not always reused, so restore
1666 * it for ES_VERTS_PER_SUBGRP.
1667 */
1668 min_es_verts = gs_info->gs.vertices_in;
1669
1670 /* For normal primitives, the VGT only checks if they are past the ES
1671 * verts per subgroup after allocating a full GS primitive and if they
1672 * are, kick off a new subgroup. But if those additional ES verts are
1673 * unique (e.g. not reused) we need to make sure there is enough LDS
1674 * space to account for those ES verts beyond ES_VERTS_PER_SUBGRP.
1675 */
1676 es_verts -= min_es_verts - 1;
1677
1678 uint32_t es_verts_per_subgroup = es_verts;
1679 uint32_t gs_prims_per_subgroup = gs_prims;
1680 uint32_t gs_inst_prims_in_subgroup = gs_prims * gs_num_invocations;
1681 uint32_t max_prims_per_subgroup = gs_inst_prims_in_subgroup * gs_info->gs.vertices_out;
1682 out->lds_size = align(esgs_lds_size, 128) / 128;
1683 out->vgt_gs_onchip_cntl = S_028A44_ES_VERTS_PER_SUBGRP(es_verts_per_subgroup) |
1684 S_028A44_GS_PRIMS_PER_SUBGRP(gs_prims_per_subgroup) |
1685 S_028A44_GS_INST_PRIMS_IN_SUBGRP(gs_inst_prims_in_subgroup);
1686 out->vgt_gs_max_prims_per_subgroup = S_028A94_MAX_PRIMS_PER_SUBGROUP(max_prims_per_subgroup);
1687 out->vgt_esgs_ring_itemsize = esgs_itemsize;
1688 assert(max_prims_per_subgroup <= max_out_prims);
1689 }
1690
1691 static void clamp_gsprims_to_esverts(unsigned *max_gsprims, unsigned max_esverts,
1692 unsigned min_verts_per_prim, bool use_adjacency)
1693 {
1694 unsigned max_reuse = max_esverts - min_verts_per_prim;
1695 if (use_adjacency)
1696 max_reuse /= 2;
1697 *max_gsprims = MIN2(*max_gsprims, 1 + max_reuse);
1698 }
1699
1700 static unsigned
1701 radv_get_num_input_vertices(nir_shader **nir)
1702 {
1703 if (nir[MESA_SHADER_GEOMETRY]) {
1704 nir_shader *gs = nir[MESA_SHADER_GEOMETRY];
1705
1706 return gs->info.gs.vertices_in;
1707 }
1708
1709 if (nir[MESA_SHADER_TESS_CTRL]) {
1710 nir_shader *tes = nir[MESA_SHADER_TESS_EVAL];
1711
1712 if (tes->info.tess.point_mode)
1713 return 1;
1714 if (tes->info.tess.primitive_mode == GL_ISOLINES)
1715 return 2;
1716 return 3;
1717 }
1718
1719 return 3;
1720 }
1721
1722 static void
1723 gfx10_get_ngg_info(const struct radv_pipeline_key *key,
1724 struct radv_pipeline *pipeline,
1725 nir_shader **nir,
1726 struct radv_shader_info *infos,
1727 struct gfx10_ngg_info *ngg)
1728 {
1729 struct radv_shader_info *gs_info = &infos[MESA_SHADER_GEOMETRY];
1730 struct radv_es_output_info *es_info =
1731 nir[MESA_SHADER_TESS_CTRL] ? &gs_info->tes.es_info : &gs_info->vs.es_info;
1732 unsigned gs_type = nir[MESA_SHADER_GEOMETRY] ? MESA_SHADER_GEOMETRY : MESA_SHADER_VERTEX;
1733 unsigned max_verts_per_prim = radv_get_num_input_vertices(nir);
1734 unsigned min_verts_per_prim =
1735 gs_type == MESA_SHADER_GEOMETRY ? max_verts_per_prim : 1;
1736 unsigned gs_num_invocations = nir[MESA_SHADER_GEOMETRY] ? MAX2(gs_info->gs.invocations, 1) : 1;
1737 bool uses_adjacency;
1738 switch(key->topology) {
1739 case VK_PRIMITIVE_TOPOLOGY_LINE_LIST_WITH_ADJACENCY:
1740 case VK_PRIMITIVE_TOPOLOGY_LINE_STRIP_WITH_ADJACENCY:
1741 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST_WITH_ADJACENCY:
1742 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_WITH_ADJACENCY:
1743 uses_adjacency = true;
1744 break;
1745 default:
1746 uses_adjacency = false;
1747 break;
1748 }
1749
1750 /* All these are in dwords: */
1751 /* We can't allow using the whole LDS, because GS waves compete with
1752 * other shader stages for LDS space.
1753 *
1754 * TODO: We should really take the shader's internal LDS use into
1755 * account. The linker will fail if the size is greater than
1756 * 8K dwords.
1757 */
1758 const unsigned max_lds_size = 8 * 1024 - 768;
1759 const unsigned target_lds_size = max_lds_size;
1760 unsigned esvert_lds_size = 0;
1761 unsigned gsprim_lds_size = 0;
1762
1763 /* All these are per subgroup: */
1764 bool max_vert_out_per_gs_instance = false;
1765 unsigned max_esverts_base = 256;
1766 unsigned max_gsprims_base = 128; /* default prim group size clamp */
1767
1768 /* Hardware has the following non-natural restrictions on the value
1769 * of GE_CNTL.VERT_GRP_SIZE based on based on the primitive type of
1770 * the draw:
1771 * - at most 252 for any line input primitive type
1772 * - at most 251 for any quad input primitive type
1773 * - at most 251 for triangle strips with adjacency (this happens to
1774 * be the natural limit for triangle *lists* with adjacency)
1775 */
1776 max_esverts_base = MIN2(max_esverts_base, 251 + max_verts_per_prim - 1);
1777
1778 if (gs_type == MESA_SHADER_GEOMETRY) {
1779 unsigned max_out_verts_per_gsprim =
1780 gs_info->gs.vertices_out * gs_num_invocations;
1781
1782 if (max_out_verts_per_gsprim <= 256) {
1783 if (max_out_verts_per_gsprim) {
1784 max_gsprims_base = MIN2(max_gsprims_base,
1785 256 / max_out_verts_per_gsprim);
1786 }
1787 } else {
1788 /* Use special multi-cycling mode in which each GS
1789 * instance gets its own subgroup. Does not work with
1790 * tessellation. */
1791 max_vert_out_per_gs_instance = true;
1792 max_gsprims_base = 1;
1793 max_out_verts_per_gsprim = gs_info->gs.vertices_out;
1794 }
1795
1796 esvert_lds_size = es_info->esgs_itemsize / 4;
1797 gsprim_lds_size = (gs_info->gs.gsvs_vertex_size / 4 + 1) * max_out_verts_per_gsprim;
1798 } else {
1799 /* VS and TES. */
1800 /* LDS size for passing data from GS to ES. */
1801 struct radv_streamout_info *so_info = nir[MESA_SHADER_TESS_CTRL]
1802 ? &infos[MESA_SHADER_TESS_EVAL].so
1803 : &infos[MESA_SHADER_VERTEX].so;
1804
1805 if (so_info->num_outputs)
1806 esvert_lds_size = 4 * so_info->num_outputs + 1;
1807
1808 /* GS stores Primitive IDs (one DWORD) into LDS at the address
1809 * corresponding to the ES thread of the provoking vertex. All
1810 * ES threads load and export PrimitiveID for their thread.
1811 */
1812 if (!nir[MESA_SHADER_TESS_CTRL] &&
1813 infos[MESA_SHADER_VERTEX].vs.outinfo.export_prim_id)
1814 esvert_lds_size = MAX2(esvert_lds_size, 1);
1815 }
1816
1817 unsigned max_gsprims = max_gsprims_base;
1818 unsigned max_esverts = max_esverts_base;
1819
1820 if (esvert_lds_size)
1821 max_esverts = MIN2(max_esverts, target_lds_size / esvert_lds_size);
1822 if (gsprim_lds_size)
1823 max_gsprims = MIN2(max_gsprims, target_lds_size / gsprim_lds_size);
1824
1825 max_esverts = MIN2(max_esverts, max_gsprims * max_verts_per_prim);
1826 clamp_gsprims_to_esverts(&max_gsprims, max_esverts, min_verts_per_prim, uses_adjacency);
1827 assert(max_esverts >= max_verts_per_prim && max_gsprims >= 1);
1828
1829 if (esvert_lds_size || gsprim_lds_size) {
1830 /* Now that we have a rough proportionality between esverts
1831 * and gsprims based on the primitive type, scale both of them
1832 * down simultaneously based on required LDS space.
1833 *
1834 * We could be smarter about this if we knew how much vertex
1835 * reuse to expect.
1836 */
1837 unsigned lds_total = max_esverts * esvert_lds_size +
1838 max_gsprims * gsprim_lds_size;
1839 if (lds_total > target_lds_size) {
1840 max_esverts = max_esverts * target_lds_size / lds_total;
1841 max_gsprims = max_gsprims * target_lds_size / lds_total;
1842
1843 max_esverts = MIN2(max_esverts, max_gsprims * max_verts_per_prim);
1844 clamp_gsprims_to_esverts(&max_gsprims, max_esverts,
1845 min_verts_per_prim, uses_adjacency);
1846 assert(max_esverts >= max_verts_per_prim && max_gsprims >= 1);
1847 }
1848 }
1849
1850 /* Round up towards full wave sizes for better ALU utilization. */
1851 if (!max_vert_out_per_gs_instance) {
1852 unsigned orig_max_esverts;
1853 unsigned orig_max_gsprims;
1854 unsigned wavesize;
1855
1856 if (gs_type == MESA_SHADER_GEOMETRY) {
1857 wavesize = gs_info->wave_size;
1858 } else {
1859 wavesize = nir[MESA_SHADER_TESS_CTRL]
1860 ? infos[MESA_SHADER_TESS_EVAL].wave_size
1861 : infos[MESA_SHADER_VERTEX].wave_size;
1862 }
1863
1864 do {
1865 orig_max_esverts = max_esverts;
1866 orig_max_gsprims = max_gsprims;
1867
1868 max_esverts = align(max_esverts, wavesize);
1869 max_esverts = MIN2(max_esverts, max_esverts_base);
1870 if (esvert_lds_size)
1871 max_esverts = MIN2(max_esverts,
1872 (max_lds_size - max_gsprims * gsprim_lds_size) /
1873 esvert_lds_size);
1874 max_esverts = MIN2(max_esverts, max_gsprims * max_verts_per_prim);
1875
1876 max_gsprims = align(max_gsprims, wavesize);
1877 max_gsprims = MIN2(max_gsprims, max_gsprims_base);
1878 if (gsprim_lds_size)
1879 max_gsprims = MIN2(max_gsprims,
1880 (max_lds_size - max_esverts * esvert_lds_size) /
1881 gsprim_lds_size);
1882 clamp_gsprims_to_esverts(&max_gsprims, max_esverts,
1883 min_verts_per_prim, uses_adjacency);
1884 assert(max_esverts >= max_verts_per_prim && max_gsprims >= 1);
1885 } while (orig_max_esverts != max_esverts || orig_max_gsprims != max_gsprims);
1886 }
1887
1888 /* Hardware restriction: minimum value of max_esverts */
1889 max_esverts = MAX2(max_esverts, 23 + max_verts_per_prim);
1890
1891 unsigned max_out_vertices =
1892 max_vert_out_per_gs_instance ? gs_info->gs.vertices_out :
1893 gs_type == MESA_SHADER_GEOMETRY ?
1894 max_gsprims * gs_num_invocations * gs_info->gs.vertices_out :
1895 max_esverts;
1896 assert(max_out_vertices <= 256);
1897
1898 unsigned prim_amp_factor = 1;
1899 if (gs_type == MESA_SHADER_GEOMETRY) {
1900 /* Number of output primitives per GS input primitive after
1901 * GS instancing. */
1902 prim_amp_factor = gs_info->gs.vertices_out;
1903 }
1904
1905 /* The GE only checks against the maximum number of ES verts after
1906 * allocating a full GS primitive. So we need to ensure that whenever
1907 * this check passes, there is enough space for a full primitive without
1908 * vertex reuse.
1909 */
1910 ngg->hw_max_esverts = max_esverts - max_verts_per_prim + 1;
1911 ngg->max_gsprims = max_gsprims;
1912 ngg->max_out_verts = max_out_vertices;
1913 ngg->prim_amp_factor = prim_amp_factor;
1914 ngg->max_vert_out_per_gs_instance = max_vert_out_per_gs_instance;
1915 ngg->ngg_emit_size = max_gsprims * gsprim_lds_size;
1916 ngg->esgs_ring_size = 4 * max_esverts * esvert_lds_size;
1917
1918 if (gs_type == MESA_SHADER_GEOMETRY) {
1919 ngg->vgt_esgs_ring_itemsize = es_info->esgs_itemsize / 4;
1920 } else {
1921 ngg->vgt_esgs_ring_itemsize = 1;
1922 }
1923
1924 pipeline->graphics.esgs_ring_size = ngg->esgs_ring_size;
1925
1926 assert(ngg->hw_max_esverts >= 24); /* HW limitation */
1927 }
1928
1929 static void
1930 calculate_gs_ring_sizes(struct radv_pipeline *pipeline,
1931 const struct gfx9_gs_info *gs)
1932 {
1933 struct radv_device *device = pipeline->device;
1934 unsigned num_se = device->physical_device->rad_info.max_se;
1935 unsigned wave_size = 64;
1936 unsigned max_gs_waves = 32 * num_se; /* max 32 per SE on GCN */
1937 /* On GFX6-GFX7, the value comes from VGT_GS_VERTEX_REUSE = 16.
1938 * On GFX8+, the value comes from VGT_VERTEX_REUSE_BLOCK_CNTL = 30 (+2).
1939 */
1940 unsigned gs_vertex_reuse =
1941 (device->physical_device->rad_info.chip_class >= GFX8 ? 32 : 16) * num_se;
1942 unsigned alignment = 256 * num_se;
1943 /* The maximum size is 63.999 MB per SE. */
1944 unsigned max_size = ((unsigned)(63.999 * 1024 * 1024) & ~255) * num_se;
1945 struct radv_shader_info *gs_info = &pipeline->shaders[MESA_SHADER_GEOMETRY]->info;
1946
1947 /* Calculate the minimum size. */
1948 unsigned min_esgs_ring_size = align(gs->vgt_esgs_ring_itemsize * 4 * gs_vertex_reuse *
1949 wave_size, alignment);
1950 /* These are recommended sizes, not minimum sizes. */
1951 unsigned esgs_ring_size = max_gs_waves * 2 * wave_size *
1952 gs->vgt_esgs_ring_itemsize * 4 * gs_info->gs.vertices_in;
1953 unsigned gsvs_ring_size = max_gs_waves * 2 * wave_size *
1954 gs_info->gs.max_gsvs_emit_size;
1955
1956 min_esgs_ring_size = align(min_esgs_ring_size, alignment);
1957 esgs_ring_size = align(esgs_ring_size, alignment);
1958 gsvs_ring_size = align(gsvs_ring_size, alignment);
1959
1960 if (pipeline->device->physical_device->rad_info.chip_class <= GFX8)
1961 pipeline->graphics.esgs_ring_size = CLAMP(esgs_ring_size, min_esgs_ring_size, max_size);
1962
1963 pipeline->graphics.gsvs_ring_size = MIN2(gsvs_ring_size, max_size);
1964 }
1965
1966 struct radv_shader_variant *
1967 radv_get_shader(struct radv_pipeline *pipeline,
1968 gl_shader_stage stage)
1969 {
1970 if (stage == MESA_SHADER_VERTEX) {
1971 if (pipeline->shaders[MESA_SHADER_VERTEX])
1972 return pipeline->shaders[MESA_SHADER_VERTEX];
1973 if (pipeline->shaders[MESA_SHADER_TESS_CTRL])
1974 return pipeline->shaders[MESA_SHADER_TESS_CTRL];
1975 if (pipeline->shaders[MESA_SHADER_GEOMETRY])
1976 return pipeline->shaders[MESA_SHADER_GEOMETRY];
1977 } else if (stage == MESA_SHADER_TESS_EVAL) {
1978 if (!radv_pipeline_has_tess(pipeline))
1979 return NULL;
1980 if (pipeline->shaders[MESA_SHADER_TESS_EVAL])
1981 return pipeline->shaders[MESA_SHADER_TESS_EVAL];
1982 if (pipeline->shaders[MESA_SHADER_GEOMETRY])
1983 return pipeline->shaders[MESA_SHADER_GEOMETRY];
1984 }
1985 return pipeline->shaders[stage];
1986 }
1987
1988 static struct radv_tessellation_state
1989 calculate_tess_state(struct radv_pipeline *pipeline,
1990 const VkGraphicsPipelineCreateInfo *pCreateInfo)
1991 {
1992 unsigned num_tcs_input_cp;
1993 unsigned num_tcs_output_cp;
1994 unsigned lds_size;
1995 unsigned num_patches;
1996 struct radv_tessellation_state tess = {0};
1997
1998 num_tcs_input_cp = pCreateInfo->pTessellationState->patchControlPoints;
1999 num_tcs_output_cp = pipeline->shaders[MESA_SHADER_TESS_CTRL]->info.tcs.tcs_vertices_out; //TCS VERTICES OUT
2000 num_patches = pipeline->shaders[MESA_SHADER_TESS_CTRL]->info.tcs.num_patches;
2001
2002 lds_size = pipeline->shaders[MESA_SHADER_TESS_CTRL]->info.tcs.lds_size;
2003
2004 if (pipeline->device->physical_device->rad_info.chip_class >= GFX7) {
2005 assert(lds_size <= 65536);
2006 lds_size = align(lds_size, 512) / 512;
2007 } else {
2008 assert(lds_size <= 32768);
2009 lds_size = align(lds_size, 256) / 256;
2010 }
2011
2012 tess.lds_size = lds_size;
2013
2014 tess.ls_hs_config = S_028B58_NUM_PATCHES(num_patches) |
2015 S_028B58_HS_NUM_INPUT_CP(num_tcs_input_cp) |
2016 S_028B58_HS_NUM_OUTPUT_CP(num_tcs_output_cp);
2017
2018 struct radv_shader_variant *tes = radv_get_shader(pipeline, MESA_SHADER_TESS_EVAL);
2019 unsigned type = 0, partitioning = 0, topology = 0, distribution_mode = 0;
2020
2021 switch (tes->info.tes.primitive_mode) {
2022 case GL_TRIANGLES:
2023 type = V_028B6C_TESS_TRIANGLE;
2024 break;
2025 case GL_QUADS:
2026 type = V_028B6C_TESS_QUAD;
2027 break;
2028 case GL_ISOLINES:
2029 type = V_028B6C_TESS_ISOLINE;
2030 break;
2031 }
2032
2033 switch (tes->info.tes.spacing) {
2034 case TESS_SPACING_EQUAL:
2035 partitioning = V_028B6C_PART_INTEGER;
2036 break;
2037 case TESS_SPACING_FRACTIONAL_ODD:
2038 partitioning = V_028B6C_PART_FRAC_ODD;
2039 break;
2040 case TESS_SPACING_FRACTIONAL_EVEN:
2041 partitioning = V_028B6C_PART_FRAC_EVEN;
2042 break;
2043 default:
2044 break;
2045 }
2046
2047 bool ccw = tes->info.tes.ccw;
2048 const VkPipelineTessellationDomainOriginStateCreateInfo *domain_origin_state =
2049 vk_find_struct_const(pCreateInfo->pTessellationState,
2050 PIPELINE_TESSELLATION_DOMAIN_ORIGIN_STATE_CREATE_INFO);
2051
2052 if (domain_origin_state && domain_origin_state->domainOrigin != VK_TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT)
2053 ccw = !ccw;
2054
2055 if (tes->info.tes.point_mode)
2056 topology = V_028B6C_OUTPUT_POINT;
2057 else if (tes->info.tes.primitive_mode == GL_ISOLINES)
2058 topology = V_028B6C_OUTPUT_LINE;
2059 else if (ccw)
2060 topology = V_028B6C_OUTPUT_TRIANGLE_CCW;
2061 else
2062 topology = V_028B6C_OUTPUT_TRIANGLE_CW;
2063
2064 if (pipeline->device->physical_device->rad_info.has_distributed_tess) {
2065 if (pipeline->device->physical_device->rad_info.family == CHIP_FIJI ||
2066 pipeline->device->physical_device->rad_info.family >= CHIP_POLARIS10)
2067 distribution_mode = V_028B6C_DISTRIBUTION_MODE_TRAPEZOIDS;
2068 else
2069 distribution_mode = V_028B6C_DISTRIBUTION_MODE_DONUTS;
2070 } else
2071 distribution_mode = V_028B6C_DISTRIBUTION_MODE_NO_DIST;
2072
2073 tess.tf_param = S_028B6C_TYPE(type) |
2074 S_028B6C_PARTITIONING(partitioning) |
2075 S_028B6C_TOPOLOGY(topology) |
2076 S_028B6C_DISTRIBUTION_MODE(distribution_mode);
2077
2078 return tess;
2079 }
2080
2081 static const struct radv_vs_output_info *get_vs_output_info(const struct radv_pipeline *pipeline)
2082 {
2083 if (radv_pipeline_has_gs(pipeline))
2084 if (radv_pipeline_has_ngg(pipeline))
2085 return &pipeline->shaders[MESA_SHADER_GEOMETRY]->info.vs.outinfo;
2086 else
2087 return &pipeline->gs_copy_shader->info.vs.outinfo;
2088 else if (radv_pipeline_has_tess(pipeline))
2089 return &pipeline->shaders[MESA_SHADER_TESS_EVAL]->info.tes.outinfo;
2090 else
2091 return &pipeline->shaders[MESA_SHADER_VERTEX]->info.vs.outinfo;
2092 }
2093
2094 static void
2095 radv_link_shaders(struct radv_pipeline *pipeline, nir_shader **shaders)
2096 {
2097 nir_shader* ordered_shaders[MESA_SHADER_STAGES];
2098 int shader_count = 0;
2099
2100 if(shaders[MESA_SHADER_FRAGMENT]) {
2101 ordered_shaders[shader_count++] = shaders[MESA_SHADER_FRAGMENT];
2102 }
2103 if(shaders[MESA_SHADER_GEOMETRY]) {
2104 ordered_shaders[shader_count++] = shaders[MESA_SHADER_GEOMETRY];
2105 }
2106 if(shaders[MESA_SHADER_TESS_EVAL]) {
2107 ordered_shaders[shader_count++] = shaders[MESA_SHADER_TESS_EVAL];
2108 }
2109 if(shaders[MESA_SHADER_TESS_CTRL]) {
2110 ordered_shaders[shader_count++] = shaders[MESA_SHADER_TESS_CTRL];
2111 }
2112 if(shaders[MESA_SHADER_VERTEX]) {
2113 ordered_shaders[shader_count++] = shaders[MESA_SHADER_VERTEX];
2114 }
2115
2116 if (shader_count > 1) {
2117 unsigned first = ordered_shaders[shader_count - 1]->info.stage;
2118 unsigned last = ordered_shaders[0]->info.stage;
2119
2120 if (ordered_shaders[0]->info.stage == MESA_SHADER_FRAGMENT &&
2121 ordered_shaders[1]->info.has_transform_feedback_varyings)
2122 nir_link_xfb_varyings(ordered_shaders[1], ordered_shaders[0]);
2123
2124 for (int i = 0; i < shader_count; ++i) {
2125 nir_variable_mode mask = 0;
2126
2127 if (ordered_shaders[i]->info.stage != first)
2128 mask = mask | nir_var_shader_in;
2129
2130 if (ordered_shaders[i]->info.stage != last)
2131 mask = mask | nir_var_shader_out;
2132
2133 nir_lower_io_to_scalar_early(ordered_shaders[i], mask);
2134 radv_optimize_nir(ordered_shaders[i], false, false);
2135 }
2136 }
2137
2138 for (int i = 1; i < shader_count; ++i) {
2139 nir_lower_io_arrays_to_elements(ordered_shaders[i],
2140 ordered_shaders[i - 1]);
2141
2142 if (nir_link_opt_varyings(ordered_shaders[i],
2143 ordered_shaders[i - 1]))
2144 radv_optimize_nir(ordered_shaders[i - 1], false, false);
2145
2146 nir_remove_dead_variables(ordered_shaders[i],
2147 nir_var_shader_out, NULL);
2148 nir_remove_dead_variables(ordered_shaders[i - 1],
2149 nir_var_shader_in, NULL);
2150
2151 bool progress = nir_remove_unused_varyings(ordered_shaders[i],
2152 ordered_shaders[i - 1]);
2153
2154 nir_compact_varyings(ordered_shaders[i],
2155 ordered_shaders[i - 1], true);
2156
2157 if (progress) {
2158 if (nir_lower_global_vars_to_local(ordered_shaders[i])) {
2159 ac_lower_indirect_derefs(ordered_shaders[i],
2160 pipeline->device->physical_device->rad_info.chip_class);
2161 }
2162 radv_optimize_nir(ordered_shaders[i], false, false);
2163
2164 if (nir_lower_global_vars_to_local(ordered_shaders[i - 1])) {
2165 ac_lower_indirect_derefs(ordered_shaders[i - 1],
2166 pipeline->device->physical_device->rad_info.chip_class);
2167 }
2168 radv_optimize_nir(ordered_shaders[i - 1], false, false);
2169 }
2170 }
2171 }
2172
2173 static void
2174 radv_set_linked_driver_locations(struct radv_pipeline *pipeline, nir_shader **shaders,
2175 struct radv_shader_info infos[MESA_SHADER_STAGES])
2176 {
2177 bool has_tess = shaders[MESA_SHADER_TESS_CTRL];
2178 bool has_gs = shaders[MESA_SHADER_GEOMETRY];
2179
2180 if (!has_tess && !has_gs)
2181 return;
2182
2183 unsigned vs_info_idx = MESA_SHADER_VERTEX;
2184 unsigned tes_info_idx = MESA_SHADER_TESS_EVAL;
2185
2186 if (pipeline->device->physical_device->rad_info.chip_class >= GFX9) {
2187 /* These are merged into the next stage */
2188 vs_info_idx = has_tess ? MESA_SHADER_TESS_CTRL : MESA_SHADER_GEOMETRY;
2189 tes_info_idx = has_gs ? MESA_SHADER_GEOMETRY : MESA_SHADER_TESS_EVAL;
2190 }
2191
2192 if (has_tess) {
2193 nir_linked_io_var_info vs2tcs =
2194 nir_assign_linked_io_var_locations(shaders[MESA_SHADER_VERTEX], shaders[MESA_SHADER_TESS_CTRL]);
2195 nir_linked_io_var_info tcs2tes =
2196 nir_assign_linked_io_var_locations(shaders[MESA_SHADER_TESS_CTRL], shaders[MESA_SHADER_TESS_EVAL]);
2197
2198 infos[vs_info_idx].vs.num_linked_outputs = vs2tcs.num_linked_io_vars;
2199 infos[MESA_SHADER_TESS_CTRL].tcs.num_linked_inputs = vs2tcs.num_linked_io_vars;
2200 infos[MESA_SHADER_TESS_CTRL].tcs.num_linked_outputs = tcs2tes.num_linked_io_vars;
2201 infos[MESA_SHADER_TESS_CTRL].tcs.num_linked_patch_outputs = tcs2tes.num_linked_patch_io_vars;
2202 infos[tes_info_idx].tes.num_linked_inputs = tcs2tes.num_linked_io_vars;
2203 infos[tes_info_idx].tes.num_linked_patch_inputs = tcs2tes.num_linked_patch_io_vars;
2204
2205 if (has_gs) {
2206 nir_linked_io_var_info tes2gs =
2207 nir_assign_linked_io_var_locations(shaders[MESA_SHADER_TESS_EVAL], shaders[MESA_SHADER_GEOMETRY]);
2208
2209 infos[tes_info_idx].tes.num_linked_outputs = tes2gs.num_linked_io_vars;
2210 infos[MESA_SHADER_GEOMETRY].gs.num_linked_inputs = tes2gs.num_linked_io_vars;
2211 }
2212 } else if (has_gs) {
2213 nir_linked_io_var_info vs2gs =
2214 nir_assign_linked_io_var_locations(shaders[MESA_SHADER_VERTEX], shaders[MESA_SHADER_GEOMETRY]);
2215
2216 infos[vs_info_idx].vs.num_linked_outputs = vs2gs.num_linked_io_vars;
2217 infos[MESA_SHADER_GEOMETRY].gs.num_linked_inputs = vs2gs.num_linked_io_vars;
2218 }
2219 }
2220
2221 static uint32_t
2222 radv_get_attrib_stride(const VkPipelineVertexInputStateCreateInfo *input_state,
2223 uint32_t attrib_binding)
2224 {
2225 for (uint32_t i = 0; i < input_state->vertexBindingDescriptionCount; i++) {
2226 const VkVertexInputBindingDescription *input_binding =
2227 &input_state->pVertexBindingDescriptions[i];
2228
2229 if (input_binding->binding == attrib_binding)
2230 return input_binding->stride;
2231 }
2232
2233 return 0;
2234 }
2235
2236 static struct radv_pipeline_key
2237 radv_generate_graphics_pipeline_key(struct radv_pipeline *pipeline,
2238 const VkGraphicsPipelineCreateInfo *pCreateInfo,
2239 const struct radv_blend_state *blend,
2240 bool has_view_index)
2241 {
2242 const VkPipelineVertexInputStateCreateInfo *input_state =
2243 pCreateInfo->pVertexInputState;
2244 const VkPipelineVertexInputDivisorStateCreateInfoEXT *divisor_state =
2245 vk_find_struct_const(input_state->pNext, PIPELINE_VERTEX_INPUT_DIVISOR_STATE_CREATE_INFO_EXT);
2246
2247 struct radv_pipeline_key key;
2248 memset(&key, 0, sizeof(key));
2249
2250 if (pCreateInfo->flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT)
2251 key.optimisations_disabled = 1;
2252
2253 key.has_multiview_view_index = has_view_index;
2254
2255 uint32_t binding_input_rate = 0;
2256 uint32_t instance_rate_divisors[MAX_VERTEX_ATTRIBS];
2257 for (unsigned i = 0; i < input_state->vertexBindingDescriptionCount; ++i) {
2258 if (input_state->pVertexBindingDescriptions[i].inputRate) {
2259 unsigned binding = input_state->pVertexBindingDescriptions[i].binding;
2260 binding_input_rate |= 1u << binding;
2261 instance_rate_divisors[binding] = 1;
2262 }
2263 }
2264 if (divisor_state) {
2265 for (unsigned i = 0; i < divisor_state->vertexBindingDivisorCount; ++i) {
2266 instance_rate_divisors[divisor_state->pVertexBindingDivisors[i].binding] =
2267 divisor_state->pVertexBindingDivisors[i].divisor;
2268 }
2269 }
2270
2271 for (unsigned i = 0; i < input_state->vertexAttributeDescriptionCount; ++i) {
2272 const VkVertexInputAttributeDescription *desc =
2273 &input_state->pVertexAttributeDescriptions[i];
2274 const struct vk_format_description *format_desc;
2275 unsigned location = desc->location;
2276 unsigned binding = desc->binding;
2277 unsigned num_format, data_format;
2278 int first_non_void;
2279
2280 if (binding_input_rate & (1u << binding)) {
2281 key.instance_rate_inputs |= 1u << location;
2282 key.instance_rate_divisors[location] = instance_rate_divisors[binding];
2283 }
2284
2285 format_desc = vk_format_description(desc->format);
2286 first_non_void = vk_format_get_first_non_void_channel(desc->format);
2287
2288 num_format = radv_translate_buffer_numformat(format_desc, first_non_void);
2289 data_format = radv_translate_buffer_dataformat(format_desc, first_non_void);
2290
2291 key.vertex_attribute_formats[location] = data_format | (num_format << 4);
2292 key.vertex_attribute_bindings[location] = desc->binding;
2293 key.vertex_attribute_offsets[location] = desc->offset;
2294 key.vertex_attribute_strides[location] = radv_get_attrib_stride(input_state, desc->binding);
2295
2296 if (pipeline->device->physical_device->rad_info.chip_class <= GFX8 &&
2297 pipeline->device->physical_device->rad_info.family != CHIP_STONEY) {
2298 VkFormat format = input_state->pVertexAttributeDescriptions[i].format;
2299 uint64_t adjust;
2300 switch(format) {
2301 case VK_FORMAT_A2R10G10B10_SNORM_PACK32:
2302 case VK_FORMAT_A2B10G10R10_SNORM_PACK32:
2303 adjust = RADV_ALPHA_ADJUST_SNORM;
2304 break;
2305 case VK_FORMAT_A2R10G10B10_SSCALED_PACK32:
2306 case VK_FORMAT_A2B10G10R10_SSCALED_PACK32:
2307 adjust = RADV_ALPHA_ADJUST_SSCALED;
2308 break;
2309 case VK_FORMAT_A2R10G10B10_SINT_PACK32:
2310 case VK_FORMAT_A2B10G10R10_SINT_PACK32:
2311 adjust = RADV_ALPHA_ADJUST_SINT;
2312 break;
2313 default:
2314 adjust = 0;
2315 break;
2316 }
2317 key.vertex_alpha_adjust |= adjust << (2 * location);
2318 }
2319
2320 switch (desc->format) {
2321 case VK_FORMAT_B8G8R8A8_UNORM:
2322 case VK_FORMAT_B8G8R8A8_SNORM:
2323 case VK_FORMAT_B8G8R8A8_USCALED:
2324 case VK_FORMAT_B8G8R8A8_SSCALED:
2325 case VK_FORMAT_B8G8R8A8_UINT:
2326 case VK_FORMAT_B8G8R8A8_SINT:
2327 case VK_FORMAT_B8G8R8A8_SRGB:
2328 case VK_FORMAT_A2R10G10B10_UNORM_PACK32:
2329 case VK_FORMAT_A2R10G10B10_SNORM_PACK32:
2330 case VK_FORMAT_A2R10G10B10_USCALED_PACK32:
2331 case VK_FORMAT_A2R10G10B10_SSCALED_PACK32:
2332 case VK_FORMAT_A2R10G10B10_UINT_PACK32:
2333 case VK_FORMAT_A2R10G10B10_SINT_PACK32:
2334 key.vertex_post_shuffle |= 1 << location;
2335 break;
2336 default:
2337 break;
2338 }
2339 }
2340
2341 const VkPipelineTessellationStateCreateInfo *tess =
2342 radv_pipeline_get_tessellation_state(pCreateInfo);
2343 if (tess)
2344 key.tess_input_vertices = tess->patchControlPoints;
2345
2346 const VkPipelineMultisampleStateCreateInfo *vkms =
2347 radv_pipeline_get_multisample_state(pCreateInfo);
2348 if (vkms && vkms->rasterizationSamples > 1) {
2349 uint32_t num_samples = vkms->rasterizationSamples;
2350 uint32_t ps_iter_samples = radv_pipeline_get_ps_iter_samples(pCreateInfo);
2351 key.num_samples = num_samples;
2352 key.log2_ps_iter_samples = util_logbase2(ps_iter_samples);
2353 }
2354
2355 key.col_format = blend->spi_shader_col_format;
2356 key.is_dual_src = blend->mrt0_is_dual_src;
2357 if (pipeline->device->physical_device->rad_info.chip_class < GFX8) {
2358 key.is_int8 = blend->col_format_is_int8;
2359 key.is_int10 = blend->col_format_is_int10;
2360 }
2361
2362 if (pipeline->device->physical_device->rad_info.chip_class >= GFX10)
2363 key.topology = pCreateInfo->pInputAssemblyState->topology;
2364
2365 return key;
2366 }
2367
2368 static bool
2369 radv_nir_stage_uses_xfb(const nir_shader *nir)
2370 {
2371 nir_xfb_info *xfb = nir_gather_xfb_info(nir, NULL);
2372 bool uses_xfb = !!xfb;
2373
2374 ralloc_free(xfb);
2375 return uses_xfb;
2376 }
2377
2378 static void
2379 radv_fill_shader_keys(struct radv_device *device,
2380 struct radv_shader_variant_key *keys,
2381 const struct radv_pipeline_key *key,
2382 nir_shader **nir)
2383 {
2384 keys[MESA_SHADER_VERTEX].vs.instance_rate_inputs = key->instance_rate_inputs;
2385 keys[MESA_SHADER_VERTEX].vs.alpha_adjust = key->vertex_alpha_adjust;
2386 keys[MESA_SHADER_VERTEX].vs.post_shuffle = key->vertex_post_shuffle;
2387 for (unsigned i = 0; i < MAX_VERTEX_ATTRIBS; ++i) {
2388 keys[MESA_SHADER_VERTEX].vs.instance_rate_divisors[i] = key->instance_rate_divisors[i];
2389 keys[MESA_SHADER_VERTEX].vs.vertex_attribute_formats[i] = key->vertex_attribute_formats[i];
2390 keys[MESA_SHADER_VERTEX].vs.vertex_attribute_bindings[i] = key->vertex_attribute_bindings[i];
2391 keys[MESA_SHADER_VERTEX].vs.vertex_attribute_offsets[i] = key->vertex_attribute_offsets[i];
2392 keys[MESA_SHADER_VERTEX].vs.vertex_attribute_strides[i] = key->vertex_attribute_strides[i];
2393 }
2394 keys[MESA_SHADER_VERTEX].vs.outprim = si_conv_prim_to_gs_out(key->topology);
2395
2396 if (nir[MESA_SHADER_TESS_CTRL]) {
2397 keys[MESA_SHADER_VERTEX].vs_common_out.as_ls = true;
2398 keys[MESA_SHADER_TESS_CTRL].tcs.num_inputs = 0;
2399 keys[MESA_SHADER_TESS_CTRL].tcs.input_vertices = key->tess_input_vertices;
2400 keys[MESA_SHADER_TESS_CTRL].tcs.primitive_mode = nir[MESA_SHADER_TESS_EVAL]->info.tess.primitive_mode;
2401
2402 keys[MESA_SHADER_TESS_CTRL].tcs.tes_reads_tess_factors = !!(nir[MESA_SHADER_TESS_EVAL]->info.inputs_read & (VARYING_BIT_TESS_LEVEL_INNER | VARYING_BIT_TESS_LEVEL_OUTER));
2403 }
2404
2405 if (nir[MESA_SHADER_GEOMETRY]) {
2406 if (nir[MESA_SHADER_TESS_CTRL])
2407 keys[MESA_SHADER_TESS_EVAL].vs_common_out.as_es = true;
2408 else
2409 keys[MESA_SHADER_VERTEX].vs_common_out.as_es = true;
2410 }
2411
2412 if (device->physical_device->use_ngg) {
2413 if (nir[MESA_SHADER_TESS_CTRL]) {
2414 keys[MESA_SHADER_TESS_EVAL].vs_common_out.as_ngg = true;
2415 } else {
2416 keys[MESA_SHADER_VERTEX].vs_common_out.as_ngg = true;
2417 }
2418
2419 if (nir[MESA_SHADER_TESS_CTRL] &&
2420 nir[MESA_SHADER_GEOMETRY] &&
2421 nir[MESA_SHADER_GEOMETRY]->info.gs.invocations *
2422 nir[MESA_SHADER_GEOMETRY]->info.gs.vertices_out > 256) {
2423 /* Fallback to the legacy path if tessellation is
2424 * enabled with extreme geometry because
2425 * EN_MAX_VERT_OUT_PER_GS_INSTANCE doesn't work and it
2426 * might hang.
2427 */
2428 keys[MESA_SHADER_TESS_EVAL].vs_common_out.as_ngg = false;
2429 }
2430
2431 if (!device->physical_device->use_ngg_gs) {
2432 if (nir[MESA_SHADER_GEOMETRY]) {
2433 if (nir[MESA_SHADER_TESS_CTRL])
2434 keys[MESA_SHADER_TESS_EVAL].vs_common_out.as_ngg = false;
2435 else
2436 keys[MESA_SHADER_VERTEX].vs_common_out.as_ngg = false;
2437 }
2438 }
2439
2440 gl_shader_stage last_xfb_stage = MESA_SHADER_VERTEX;
2441
2442 for (int i = MESA_SHADER_VERTEX; i <= MESA_SHADER_GEOMETRY; i++) {
2443 if (nir[i])
2444 last_xfb_stage = i;
2445 }
2446
2447 bool uses_xfb = nir[last_xfb_stage] &&
2448 radv_nir_stage_uses_xfb(nir[last_xfb_stage]);
2449
2450 if (!device->physical_device->use_ngg_streamout && uses_xfb) {
2451 if (nir[MESA_SHADER_TESS_CTRL])
2452 keys[MESA_SHADER_TESS_EVAL].vs_common_out.as_ngg = false;
2453 else
2454 keys[MESA_SHADER_VERTEX].vs_common_out.as_ngg = false;
2455 }
2456
2457 /* Determine if the pipeline is eligible for the NGG passthrough
2458 * mode. It can't be enabled for geometry shaders, for NGG
2459 * streamout or for vertex shaders that export the primitive ID
2460 * (this is checked later because we don't have the info here.)
2461 */
2462 if (!nir[MESA_SHADER_GEOMETRY] && !uses_xfb) {
2463 if (nir[MESA_SHADER_TESS_CTRL] &&
2464 keys[MESA_SHADER_TESS_EVAL].vs_common_out.as_ngg) {
2465 keys[MESA_SHADER_TESS_EVAL].vs_common_out.as_ngg_passthrough = true;
2466 } else if (nir[MESA_SHADER_VERTEX] &&
2467 keys[MESA_SHADER_VERTEX].vs_common_out.as_ngg) {
2468 keys[MESA_SHADER_VERTEX].vs_common_out.as_ngg_passthrough = true;
2469 }
2470 }
2471 }
2472
2473 for(int i = 0; i < MESA_SHADER_STAGES; ++i)
2474 keys[i].has_multiview_view_index = key->has_multiview_view_index;
2475
2476 keys[MESA_SHADER_FRAGMENT].fs.col_format = key->col_format;
2477 keys[MESA_SHADER_FRAGMENT].fs.is_int8 = key->is_int8;
2478 keys[MESA_SHADER_FRAGMENT].fs.is_int10 = key->is_int10;
2479 keys[MESA_SHADER_FRAGMENT].fs.log2_ps_iter_samples = key->log2_ps_iter_samples;
2480 keys[MESA_SHADER_FRAGMENT].fs.num_samples = key->num_samples;
2481 keys[MESA_SHADER_FRAGMENT].fs.is_dual_src = key->is_dual_src;
2482
2483 if (nir[MESA_SHADER_COMPUTE]) {
2484 keys[MESA_SHADER_COMPUTE].cs.subgroup_size = key->compute_subgroup_size;
2485 }
2486 }
2487
2488 static uint8_t
2489 radv_get_wave_size(struct radv_device *device,
2490 const VkPipelineShaderStageCreateInfo *pStage,
2491 gl_shader_stage stage,
2492 const struct radv_shader_variant_key *key)
2493 {
2494 if (stage == MESA_SHADER_GEOMETRY && !key->vs_common_out.as_ngg)
2495 return 64;
2496 else if (stage == MESA_SHADER_COMPUTE) {
2497 if (key->cs.subgroup_size) {
2498 /* Return the required subgroup size if specified. */
2499 return key->cs.subgroup_size;
2500 }
2501 return device->physical_device->cs_wave_size;
2502 }
2503 else if (stage == MESA_SHADER_FRAGMENT)
2504 return device->physical_device->ps_wave_size;
2505 else
2506 return device->physical_device->ge_wave_size;
2507 }
2508
2509 static uint8_t
2510 radv_get_ballot_bit_size(struct radv_device *device,
2511 const VkPipelineShaderStageCreateInfo *pStage,
2512 gl_shader_stage stage,
2513 const struct radv_shader_variant_key *key)
2514 {
2515 if (stage == MESA_SHADER_COMPUTE && key->cs.subgroup_size)
2516 return key->cs.subgroup_size;
2517 return 64;
2518 }
2519
2520 static void
2521 radv_fill_shader_info(struct radv_pipeline *pipeline,
2522 const VkPipelineShaderStageCreateInfo **pStages,
2523 struct radv_shader_variant_key *keys,
2524 struct radv_shader_info *infos,
2525 nir_shader **nir)
2526 {
2527 unsigned active_stages = 0;
2528 unsigned filled_stages = 0;
2529
2530 for (int i = 0; i < MESA_SHADER_STAGES; i++) {
2531 if (nir[i])
2532 active_stages |= (1 << i);
2533 }
2534
2535 if (nir[MESA_SHADER_FRAGMENT]) {
2536 radv_nir_shader_info_init(&infos[MESA_SHADER_FRAGMENT]);
2537 radv_nir_shader_info_pass(nir[MESA_SHADER_FRAGMENT],
2538 pipeline->layout,
2539 &keys[MESA_SHADER_FRAGMENT],
2540 &infos[MESA_SHADER_FRAGMENT],
2541 pipeline->device->physical_device->use_llvm);
2542
2543 /* TODO: These are no longer used as keys we should refactor this */
2544 keys[MESA_SHADER_VERTEX].vs_common_out.export_prim_id =
2545 infos[MESA_SHADER_FRAGMENT].ps.prim_id_input;
2546 keys[MESA_SHADER_VERTEX].vs_common_out.export_layer_id =
2547 infos[MESA_SHADER_FRAGMENT].ps.layer_input;
2548 keys[MESA_SHADER_VERTEX].vs_common_out.export_clip_dists =
2549 !!infos[MESA_SHADER_FRAGMENT].ps.num_input_clips_culls;
2550 keys[MESA_SHADER_VERTEX].vs_common_out.export_viewport_index =
2551 infos[MESA_SHADER_FRAGMENT].ps.viewport_index_input;
2552 keys[MESA_SHADER_TESS_EVAL].vs_common_out.export_prim_id =
2553 infos[MESA_SHADER_FRAGMENT].ps.prim_id_input;
2554 keys[MESA_SHADER_TESS_EVAL].vs_common_out.export_layer_id =
2555 infos[MESA_SHADER_FRAGMENT].ps.layer_input;
2556 keys[MESA_SHADER_TESS_EVAL].vs_common_out.export_clip_dists =
2557 !!infos[MESA_SHADER_FRAGMENT].ps.num_input_clips_culls;
2558 keys[MESA_SHADER_TESS_EVAL].vs_common_out.export_viewport_index =
2559 infos[MESA_SHADER_FRAGMENT].ps.viewport_index_input;
2560
2561 /* NGG passthrough mode can't be enabled for vertex shaders
2562 * that export the primitive ID.
2563 *
2564 * TODO: I should really refactor the keys logic.
2565 */
2566 if (nir[MESA_SHADER_VERTEX] &&
2567 keys[MESA_SHADER_VERTEX].vs_common_out.export_prim_id) {
2568 keys[MESA_SHADER_VERTEX].vs_common_out.as_ngg_passthrough = false;
2569 }
2570
2571 filled_stages |= (1 << MESA_SHADER_FRAGMENT);
2572 }
2573
2574 if (nir[MESA_SHADER_TESS_CTRL]) {
2575 infos[MESA_SHADER_TESS_CTRL].tcs.tes_inputs_read =
2576 nir[MESA_SHADER_TESS_EVAL]->info.inputs_read;
2577 infos[MESA_SHADER_TESS_CTRL].tcs.tes_patch_inputs_read =
2578 nir[MESA_SHADER_TESS_EVAL]->info.patch_inputs_read;
2579 }
2580
2581 if (pipeline->device->physical_device->rad_info.chip_class >= GFX9 &&
2582 nir[MESA_SHADER_TESS_CTRL]) {
2583 struct nir_shader *combined_nir[] = {nir[MESA_SHADER_VERTEX], nir[MESA_SHADER_TESS_CTRL]};
2584 struct radv_shader_variant_key key = keys[MESA_SHADER_TESS_CTRL];
2585 key.tcs.vs_key = keys[MESA_SHADER_VERTEX].vs;
2586
2587 radv_nir_shader_info_init(&infos[MESA_SHADER_TESS_CTRL]);
2588
2589 for (int i = 0; i < 2; i++) {
2590 radv_nir_shader_info_pass(combined_nir[i],
2591 pipeline->layout, &key,
2592 &infos[MESA_SHADER_TESS_CTRL],
2593 pipeline->device->physical_device->use_llvm);
2594 }
2595
2596 keys[MESA_SHADER_TESS_EVAL].tes.num_patches =
2597 infos[MESA_SHADER_TESS_CTRL].tcs.num_patches;
2598 keys[MESA_SHADER_TESS_EVAL].tes.tcs_num_outputs =
2599 util_last_bit64(infos[MESA_SHADER_TESS_CTRL].tcs.outputs_written);
2600
2601 filled_stages |= (1 << MESA_SHADER_VERTEX);
2602 filled_stages |= (1 << MESA_SHADER_TESS_CTRL);
2603 }
2604
2605 if (pipeline->device->physical_device->rad_info.chip_class >= GFX9 &&
2606 nir[MESA_SHADER_GEOMETRY]) {
2607 gl_shader_stage pre_stage = nir[MESA_SHADER_TESS_EVAL] ? MESA_SHADER_TESS_EVAL : MESA_SHADER_VERTEX;
2608 struct nir_shader *combined_nir[] = {nir[pre_stage], nir[MESA_SHADER_GEOMETRY]};
2609
2610 radv_nir_shader_info_init(&infos[MESA_SHADER_GEOMETRY]);
2611
2612 for (int i = 0; i < 2; i++) {
2613 radv_nir_shader_info_pass(combined_nir[i],
2614 pipeline->layout,
2615 &keys[pre_stage],
2616 &infos[MESA_SHADER_GEOMETRY],
2617 pipeline->device->physical_device->use_llvm);
2618 }
2619
2620 filled_stages |= (1 << pre_stage);
2621 filled_stages |= (1 << MESA_SHADER_GEOMETRY);
2622 }
2623
2624 active_stages ^= filled_stages;
2625 while (active_stages) {
2626 int i = u_bit_scan(&active_stages);
2627
2628 if (i == MESA_SHADER_TESS_CTRL) {
2629 keys[MESA_SHADER_TESS_CTRL].tcs.num_inputs =
2630 util_last_bit64(infos[MESA_SHADER_VERTEX].vs.ls_outputs_written);
2631 }
2632
2633 if (i == MESA_SHADER_TESS_EVAL) {
2634 keys[MESA_SHADER_TESS_EVAL].tes.num_patches =
2635 infos[MESA_SHADER_TESS_CTRL].tcs.num_patches;
2636 keys[MESA_SHADER_TESS_EVAL].tes.tcs_num_outputs =
2637 util_last_bit64(infos[MESA_SHADER_TESS_CTRL].tcs.outputs_written);
2638 }
2639
2640 radv_nir_shader_info_init(&infos[i]);
2641 radv_nir_shader_info_pass(nir[i], pipeline->layout,
2642 &keys[i], &infos[i], pipeline->device->physical_device->use_llvm);
2643 }
2644
2645 for (int i = 0; i < MESA_SHADER_STAGES; i++) {
2646 if (nir[i]) {
2647 infos[i].wave_size =
2648 radv_get_wave_size(pipeline->device, pStages[i],
2649 i, &keys[i]);
2650 infos[i].ballot_bit_size =
2651 radv_get_ballot_bit_size(pipeline->device,
2652 pStages[i], i,
2653 &keys[i]);
2654 }
2655 }
2656 }
2657
2658 static void
2659 merge_tess_info(struct shader_info *tes_info,
2660 const struct shader_info *tcs_info)
2661 {
2662 /* The Vulkan 1.0.38 spec, section 21.1 Tessellator says:
2663 *
2664 * "PointMode. Controls generation of points rather than triangles
2665 * or lines. This functionality defaults to disabled, and is
2666 * enabled if either shader stage includes the execution mode.
2667 *
2668 * and about Triangles, Quads, IsoLines, VertexOrderCw, VertexOrderCcw,
2669 * PointMode, SpacingEqual, SpacingFractionalEven, SpacingFractionalOdd,
2670 * and OutputVertices, it says:
2671 *
2672 * "One mode must be set in at least one of the tessellation
2673 * shader stages."
2674 *
2675 * So, the fields can be set in either the TCS or TES, but they must
2676 * agree if set in both. Our backend looks at TES, so bitwise-or in
2677 * the values from the TCS.
2678 */
2679 assert(tcs_info->tess.tcs_vertices_out == 0 ||
2680 tes_info->tess.tcs_vertices_out == 0 ||
2681 tcs_info->tess.tcs_vertices_out == tes_info->tess.tcs_vertices_out);
2682 tes_info->tess.tcs_vertices_out |= tcs_info->tess.tcs_vertices_out;
2683
2684 assert(tcs_info->tess.spacing == TESS_SPACING_UNSPECIFIED ||
2685 tes_info->tess.spacing == TESS_SPACING_UNSPECIFIED ||
2686 tcs_info->tess.spacing == tes_info->tess.spacing);
2687 tes_info->tess.spacing |= tcs_info->tess.spacing;
2688
2689 assert(tcs_info->tess.primitive_mode == 0 ||
2690 tes_info->tess.primitive_mode == 0 ||
2691 tcs_info->tess.primitive_mode == tes_info->tess.primitive_mode);
2692 tes_info->tess.primitive_mode |= tcs_info->tess.primitive_mode;
2693 tes_info->tess.ccw |= tcs_info->tess.ccw;
2694 tes_info->tess.point_mode |= tcs_info->tess.point_mode;
2695 }
2696
2697 static
2698 void radv_init_feedback(const VkPipelineCreationFeedbackCreateInfoEXT *ext)
2699 {
2700 if (!ext)
2701 return;
2702
2703 if (ext->pPipelineCreationFeedback) {
2704 ext->pPipelineCreationFeedback->flags = 0;
2705 ext->pPipelineCreationFeedback->duration = 0;
2706 }
2707
2708 for (unsigned i = 0; i < ext->pipelineStageCreationFeedbackCount; ++i) {
2709 ext->pPipelineStageCreationFeedbacks[i].flags = 0;
2710 ext->pPipelineStageCreationFeedbacks[i].duration = 0;
2711 }
2712 }
2713
2714 static
2715 void radv_start_feedback(VkPipelineCreationFeedbackEXT *feedback)
2716 {
2717 if (!feedback)
2718 return;
2719
2720 feedback->duration -= radv_get_current_time();
2721 feedback ->flags = VK_PIPELINE_CREATION_FEEDBACK_VALID_BIT_EXT;
2722 }
2723
2724 static
2725 void radv_stop_feedback(VkPipelineCreationFeedbackEXT *feedback, bool cache_hit)
2726 {
2727 if (!feedback)
2728 return;
2729
2730 feedback->duration += radv_get_current_time();
2731 feedback ->flags = VK_PIPELINE_CREATION_FEEDBACK_VALID_BIT_EXT |
2732 (cache_hit ? VK_PIPELINE_CREATION_FEEDBACK_APPLICATION_PIPELINE_CACHE_HIT_BIT_EXT : 0);
2733 }
2734
2735 VkResult radv_create_shaders(struct radv_pipeline *pipeline,
2736 struct radv_device *device,
2737 struct radv_pipeline_cache *cache,
2738 const struct radv_pipeline_key *key,
2739 const VkPipelineShaderStageCreateInfo **pStages,
2740 const VkPipelineCreateFlags flags,
2741 VkPipelineCreationFeedbackEXT *pipeline_feedback,
2742 VkPipelineCreationFeedbackEXT **stage_feedbacks)
2743 {
2744 struct radv_shader_module fs_m = {0};
2745 struct radv_shader_module *modules[MESA_SHADER_STAGES] = { 0, };
2746 nir_shader *nir[MESA_SHADER_STAGES] = {0};
2747 struct radv_shader_binary *binaries[MESA_SHADER_STAGES] = {NULL};
2748 struct radv_shader_variant_key keys[MESA_SHADER_STAGES] = {{{{{0}}}}};
2749 struct radv_shader_info infos[MESA_SHADER_STAGES] = {0};
2750 unsigned char hash[20], gs_copy_hash[20];
2751 bool keep_executable_info = (flags & VK_PIPELINE_CREATE_CAPTURE_INTERNAL_REPRESENTATIONS_BIT_KHR) || device->keep_shader_info;
2752 bool keep_statistic_info = (flags & VK_PIPELINE_CREATE_CAPTURE_STATISTICS_BIT_KHR) ||
2753 (device->instance->debug_flags & RADV_DEBUG_DUMP_SHADER_STATS) ||
2754 device->keep_shader_info;
2755
2756 radv_start_feedback(pipeline_feedback);
2757
2758 for (unsigned i = 0; i < MESA_SHADER_STAGES; ++i) {
2759 if (pStages[i]) {
2760 modules[i] = radv_shader_module_from_handle(pStages[i]->module);
2761 if (modules[i]->nir)
2762 _mesa_sha1_compute(modules[i]->nir->info.name,
2763 strlen(modules[i]->nir->info.name),
2764 modules[i]->sha1);
2765
2766 pipeline->active_stages |= mesa_to_vk_shader_stage(i);
2767 }
2768 }
2769
2770 radv_hash_shaders(hash, pStages, pipeline->layout, key, get_hash_flags(device));
2771 memcpy(gs_copy_hash, hash, 20);
2772 gs_copy_hash[0] ^= 1;
2773
2774 bool found_in_application_cache = true;
2775 if (modules[MESA_SHADER_GEOMETRY] && !keep_executable_info && !keep_statistic_info) {
2776 struct radv_shader_variant *variants[MESA_SHADER_STAGES] = {0};
2777 radv_create_shader_variants_from_pipeline_cache(device, cache, gs_copy_hash, variants,
2778 &found_in_application_cache);
2779 pipeline->gs_copy_shader = variants[MESA_SHADER_GEOMETRY];
2780 }
2781
2782 if (!keep_executable_info && !keep_statistic_info &&
2783 radv_create_shader_variants_from_pipeline_cache(device, cache, hash, pipeline->shaders,
2784 &found_in_application_cache) &&
2785 (!modules[MESA_SHADER_GEOMETRY] || pipeline->gs_copy_shader)) {
2786 radv_stop_feedback(pipeline_feedback, found_in_application_cache);
2787 return VK_SUCCESS;
2788 }
2789
2790 if (flags & VK_PIPELINE_CREATE_FAIL_ON_PIPELINE_COMPILE_REQUIRED_BIT_EXT) {
2791 radv_stop_feedback(pipeline_feedback, found_in_application_cache);
2792 return VK_PIPELINE_COMPILE_REQUIRED_EXT;
2793 }
2794
2795 if (!modules[MESA_SHADER_FRAGMENT] && !modules[MESA_SHADER_COMPUTE]) {
2796 nir_builder fs_b;
2797 nir_builder_init_simple_shader(&fs_b, NULL, MESA_SHADER_FRAGMENT, NULL);
2798 fs_b.shader->info.name = ralloc_strdup(fs_b.shader, "noop_fs");
2799 fs_m.nir = fs_b.shader;
2800 modules[MESA_SHADER_FRAGMENT] = &fs_m;
2801 }
2802
2803 for (unsigned i = 0; i < MESA_SHADER_STAGES; ++i) {
2804 const VkPipelineShaderStageCreateInfo *stage = pStages[i];
2805 unsigned subgroup_size = 64, ballot_bit_size = 64;
2806
2807 if (!modules[i])
2808 continue;
2809
2810 radv_start_feedback(stage_feedbacks[i]);
2811
2812 if (key->compute_subgroup_size) {
2813 /* Only compute shaders currently support requiring a
2814 * specific subgroup size.
2815 */
2816 assert(i == MESA_SHADER_COMPUTE);
2817 subgroup_size = key->compute_subgroup_size;
2818 ballot_bit_size = key->compute_subgroup_size;
2819 }
2820
2821 nir[i] = radv_shader_compile_to_nir(device, modules[i],
2822 stage ? stage->pName : "main", i,
2823 stage ? stage->pSpecializationInfo : NULL,
2824 flags, pipeline->layout,
2825 subgroup_size, ballot_bit_size);
2826
2827 /* We don't want to alter meta shaders IR directly so clone it
2828 * first.
2829 */
2830 if (nir[i]->info.name) {
2831 nir[i] = nir_shader_clone(NULL, nir[i]);
2832 }
2833
2834 radv_stop_feedback(stage_feedbacks[i], false);
2835 }
2836
2837 if (nir[MESA_SHADER_TESS_CTRL]) {
2838 nir_lower_patch_vertices(nir[MESA_SHADER_TESS_EVAL], nir[MESA_SHADER_TESS_CTRL]->info.tess.tcs_vertices_out, NULL);
2839 merge_tess_info(&nir[MESA_SHADER_TESS_EVAL]->info, &nir[MESA_SHADER_TESS_CTRL]->info);
2840 }
2841
2842 if (!(flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT))
2843 radv_link_shaders(pipeline, nir);
2844
2845 radv_set_linked_driver_locations(pipeline, nir, infos);
2846
2847 for (int i = 0; i < MESA_SHADER_STAGES; ++i) {
2848 if (nir[i]) {
2849 /* do this again since information such as outputs_read can be out-of-date */
2850 nir_shader_gather_info(nir[i], nir_shader_get_entrypoint(nir[i]));
2851
2852 if (device->physical_device->use_llvm) {
2853 NIR_PASS_V(nir[i], nir_lower_bool_to_int32);
2854 } else {
2855 NIR_PASS_V(nir[i], nir_lower_non_uniform_access,
2856 nir_lower_non_uniform_ubo_access |
2857 nir_lower_non_uniform_ssbo_access |
2858 nir_lower_non_uniform_texture_access |
2859 nir_lower_non_uniform_image_access);
2860 }
2861 }
2862 }
2863
2864 if (nir[MESA_SHADER_FRAGMENT])
2865 radv_lower_fs_io(nir[MESA_SHADER_FRAGMENT]);
2866
2867 for (int i = 0; i < MESA_SHADER_STAGES; ++i) {
2868 if (radv_can_dump_shader(device, modules[i], false))
2869 nir_print_shader(nir[i], stderr);
2870 }
2871
2872 radv_fill_shader_keys(device, keys, key, nir);
2873
2874 radv_fill_shader_info(pipeline, pStages, keys, infos, nir);
2875
2876 if ((nir[MESA_SHADER_VERTEX] &&
2877 keys[MESA_SHADER_VERTEX].vs_common_out.as_ngg) ||
2878 (nir[MESA_SHADER_TESS_EVAL] &&
2879 keys[MESA_SHADER_TESS_EVAL].vs_common_out.as_ngg)) {
2880 struct gfx10_ngg_info *ngg_info;
2881
2882 if (nir[MESA_SHADER_GEOMETRY])
2883 ngg_info = &infos[MESA_SHADER_GEOMETRY].ngg_info;
2884 else if (nir[MESA_SHADER_TESS_CTRL])
2885 ngg_info = &infos[MESA_SHADER_TESS_EVAL].ngg_info;
2886 else
2887 ngg_info = &infos[MESA_SHADER_VERTEX].ngg_info;
2888
2889 gfx10_get_ngg_info(key, pipeline, nir, infos, ngg_info);
2890 } else if (nir[MESA_SHADER_GEOMETRY]) {
2891 struct gfx9_gs_info *gs_info =
2892 &infos[MESA_SHADER_GEOMETRY].gs_ring_info;
2893
2894 gfx9_get_gs_info(key, pipeline, nir, infos, gs_info);
2895 }
2896
2897 if(modules[MESA_SHADER_GEOMETRY]) {
2898 struct radv_shader_binary *gs_copy_binary = NULL;
2899 if (!pipeline->gs_copy_shader &&
2900 !radv_pipeline_has_ngg(pipeline)) {
2901 struct radv_shader_info info = {};
2902 struct radv_shader_variant_key key = {};
2903
2904 key.has_multiview_view_index =
2905 keys[MESA_SHADER_GEOMETRY].has_multiview_view_index;
2906
2907 radv_nir_shader_info_pass(nir[MESA_SHADER_GEOMETRY],
2908 pipeline->layout, &key,
2909 &info, pipeline->device->physical_device->use_llvm);
2910 info.wave_size = 64; /* Wave32 not supported. */
2911 info.ballot_bit_size = 64;
2912
2913 pipeline->gs_copy_shader = radv_create_gs_copy_shader(
2914 device, nir[MESA_SHADER_GEOMETRY], &info,
2915 &gs_copy_binary, keep_executable_info, keep_statistic_info,
2916 keys[MESA_SHADER_GEOMETRY].has_multiview_view_index);
2917 }
2918
2919 if (!keep_executable_info && !keep_statistic_info && pipeline->gs_copy_shader) {
2920 struct radv_shader_binary *binaries[MESA_SHADER_STAGES] = {NULL};
2921 struct radv_shader_variant *variants[MESA_SHADER_STAGES] = {0};
2922
2923 binaries[MESA_SHADER_GEOMETRY] = gs_copy_binary;
2924 variants[MESA_SHADER_GEOMETRY] = pipeline->gs_copy_shader;
2925
2926 radv_pipeline_cache_insert_shaders(device, cache,
2927 gs_copy_hash,
2928 variants,
2929 binaries);
2930 }
2931 free(gs_copy_binary);
2932 }
2933
2934 if (nir[MESA_SHADER_FRAGMENT]) {
2935 if (!pipeline->shaders[MESA_SHADER_FRAGMENT]) {
2936 radv_start_feedback(stage_feedbacks[MESA_SHADER_FRAGMENT]);
2937
2938 pipeline->shaders[MESA_SHADER_FRAGMENT] =
2939 radv_shader_variant_compile(device, modules[MESA_SHADER_FRAGMENT], &nir[MESA_SHADER_FRAGMENT], 1,
2940 pipeline->layout, keys + MESA_SHADER_FRAGMENT,
2941 infos + MESA_SHADER_FRAGMENT,
2942 keep_executable_info, keep_statistic_info,
2943 &binaries[MESA_SHADER_FRAGMENT]);
2944
2945 radv_stop_feedback(stage_feedbacks[MESA_SHADER_FRAGMENT], false);
2946 }
2947 }
2948
2949 if (device->physical_device->rad_info.chip_class >= GFX9 && modules[MESA_SHADER_TESS_CTRL]) {
2950 if (!pipeline->shaders[MESA_SHADER_TESS_CTRL]) {
2951 struct nir_shader *combined_nir[] = {nir[MESA_SHADER_VERTEX], nir[MESA_SHADER_TESS_CTRL]};
2952 struct radv_shader_variant_key key = keys[MESA_SHADER_TESS_CTRL];
2953 key.tcs.vs_key = keys[MESA_SHADER_VERTEX].vs;
2954
2955 radv_start_feedback(stage_feedbacks[MESA_SHADER_TESS_CTRL]);
2956
2957 pipeline->shaders[MESA_SHADER_TESS_CTRL] = radv_shader_variant_compile(device, modules[MESA_SHADER_TESS_CTRL], combined_nir, 2,
2958 pipeline->layout,
2959 &key, &infos[MESA_SHADER_TESS_CTRL], keep_executable_info,
2960 keep_statistic_info, &binaries[MESA_SHADER_TESS_CTRL]);
2961
2962 radv_stop_feedback(stage_feedbacks[MESA_SHADER_TESS_CTRL], false);
2963 }
2964 modules[MESA_SHADER_VERTEX] = NULL;
2965 keys[MESA_SHADER_TESS_EVAL].tes.num_patches = pipeline->shaders[MESA_SHADER_TESS_CTRL]->info.tcs.num_patches;
2966 keys[MESA_SHADER_TESS_EVAL].tes.tcs_num_outputs = util_last_bit64(pipeline->shaders[MESA_SHADER_TESS_CTRL]->info.tcs.outputs_written);
2967 }
2968
2969 if (device->physical_device->rad_info.chip_class >= GFX9 && modules[MESA_SHADER_GEOMETRY]) {
2970 gl_shader_stage pre_stage = modules[MESA_SHADER_TESS_EVAL] ? MESA_SHADER_TESS_EVAL : MESA_SHADER_VERTEX;
2971 if (!pipeline->shaders[MESA_SHADER_GEOMETRY]) {
2972 struct nir_shader *combined_nir[] = {nir[pre_stage], nir[MESA_SHADER_GEOMETRY]};
2973
2974 radv_start_feedback(stage_feedbacks[MESA_SHADER_GEOMETRY]);
2975
2976 pipeline->shaders[MESA_SHADER_GEOMETRY] = radv_shader_variant_compile(device, modules[MESA_SHADER_GEOMETRY], combined_nir, 2,
2977 pipeline->layout,
2978 &keys[pre_stage], &infos[MESA_SHADER_GEOMETRY], keep_executable_info,
2979 keep_statistic_info, &binaries[MESA_SHADER_GEOMETRY]);
2980
2981 radv_stop_feedback(stage_feedbacks[MESA_SHADER_GEOMETRY], false);
2982 }
2983 modules[pre_stage] = NULL;
2984 }
2985
2986 for (int i = 0; i < MESA_SHADER_STAGES; ++i) {
2987 if(modules[i] && !pipeline->shaders[i]) {
2988 if (i == MESA_SHADER_TESS_CTRL) {
2989 keys[MESA_SHADER_TESS_CTRL].tcs.num_inputs = util_last_bit64(pipeline->shaders[MESA_SHADER_VERTEX]->info.vs.ls_outputs_written);
2990 }
2991 if (i == MESA_SHADER_TESS_EVAL) {
2992 keys[MESA_SHADER_TESS_EVAL].tes.num_patches = pipeline->shaders[MESA_SHADER_TESS_CTRL]->info.tcs.num_patches;
2993 keys[MESA_SHADER_TESS_EVAL].tes.tcs_num_outputs = util_last_bit64(pipeline->shaders[MESA_SHADER_TESS_CTRL]->info.tcs.outputs_written);
2994 }
2995
2996 radv_start_feedback(stage_feedbacks[i]);
2997
2998 pipeline->shaders[i] = radv_shader_variant_compile(device, modules[i], &nir[i], 1,
2999 pipeline->layout,
3000 keys + i, infos + i, keep_executable_info,
3001 keep_statistic_info, &binaries[i]);
3002
3003 radv_stop_feedback(stage_feedbacks[i], false);
3004 }
3005 }
3006
3007 if (!keep_executable_info && !keep_statistic_info) {
3008 radv_pipeline_cache_insert_shaders(device, cache, hash, pipeline->shaders,
3009 binaries);
3010 }
3011
3012 for (int i = 0; i < MESA_SHADER_STAGES; ++i) {
3013 free(binaries[i]);
3014 if (nir[i]) {
3015 ralloc_free(nir[i]);
3016
3017 if (radv_can_dump_shader_stats(device, modules[i]))
3018 radv_shader_dump_stats(device,
3019 pipeline->shaders[i],
3020 i, stderr);
3021 }
3022 }
3023
3024 if (fs_m.nir)
3025 ralloc_free(fs_m.nir);
3026
3027 radv_stop_feedback(pipeline_feedback, false);
3028 return VK_SUCCESS;
3029 }
3030
3031 static uint32_t
3032 radv_pipeline_stage_to_user_data_0(struct radv_pipeline *pipeline,
3033 gl_shader_stage stage, enum chip_class chip_class)
3034 {
3035 bool has_gs = radv_pipeline_has_gs(pipeline);
3036 bool has_tess = radv_pipeline_has_tess(pipeline);
3037 bool has_ngg = radv_pipeline_has_ngg(pipeline);
3038
3039 switch (stage) {
3040 case MESA_SHADER_FRAGMENT:
3041 return R_00B030_SPI_SHADER_USER_DATA_PS_0;
3042 case MESA_SHADER_VERTEX:
3043 if (has_tess) {
3044 if (chip_class >= GFX10) {
3045 return R_00B430_SPI_SHADER_USER_DATA_HS_0;
3046 } else if (chip_class == GFX9) {
3047 return R_00B430_SPI_SHADER_USER_DATA_LS_0;
3048 } else {
3049 return R_00B530_SPI_SHADER_USER_DATA_LS_0;
3050 }
3051
3052 }
3053
3054 if (has_gs) {
3055 if (chip_class >= GFX10) {
3056 return R_00B230_SPI_SHADER_USER_DATA_GS_0;
3057 } else {
3058 return R_00B330_SPI_SHADER_USER_DATA_ES_0;
3059 }
3060 }
3061
3062 if (has_ngg)
3063 return R_00B230_SPI_SHADER_USER_DATA_GS_0;
3064
3065 return R_00B130_SPI_SHADER_USER_DATA_VS_0;
3066 case MESA_SHADER_GEOMETRY:
3067 return chip_class == GFX9 ? R_00B330_SPI_SHADER_USER_DATA_ES_0 :
3068 R_00B230_SPI_SHADER_USER_DATA_GS_0;
3069 case MESA_SHADER_COMPUTE:
3070 return R_00B900_COMPUTE_USER_DATA_0;
3071 case MESA_SHADER_TESS_CTRL:
3072 return chip_class == GFX9 ? R_00B430_SPI_SHADER_USER_DATA_LS_0 :
3073 R_00B430_SPI_SHADER_USER_DATA_HS_0;
3074 case MESA_SHADER_TESS_EVAL:
3075 if (has_gs) {
3076 return chip_class >= GFX10 ? R_00B230_SPI_SHADER_USER_DATA_GS_0 :
3077 R_00B330_SPI_SHADER_USER_DATA_ES_0;
3078 } else if (has_ngg) {
3079 return R_00B230_SPI_SHADER_USER_DATA_GS_0;
3080 } else {
3081 return R_00B130_SPI_SHADER_USER_DATA_VS_0;
3082 }
3083 default:
3084 unreachable("unknown shader");
3085 }
3086 }
3087
3088 struct radv_bin_size_entry {
3089 unsigned bpp;
3090 VkExtent2D extent;
3091 };
3092
3093 static VkExtent2D
3094 radv_gfx9_compute_bin_size(struct radv_pipeline *pipeline, const VkGraphicsPipelineCreateInfo *pCreateInfo)
3095 {
3096 static const struct radv_bin_size_entry color_size_table[][3][9] = {
3097 {
3098 /* One RB / SE */
3099 {
3100 /* One shader engine */
3101 { 0, {128, 128}},
3102 { 1, { 64, 128}},
3103 { 2, { 32, 128}},
3104 { 3, { 16, 128}},
3105 { 17, { 0, 0}},
3106 { UINT_MAX, { 0, 0}},
3107 },
3108 {
3109 /* Two shader engines */
3110 { 0, {128, 128}},
3111 { 2, { 64, 128}},
3112 { 3, { 32, 128}},
3113 { 5, { 16, 128}},
3114 { 17, { 0, 0}},
3115 { UINT_MAX, { 0, 0}},
3116 },
3117 {
3118 /* Four shader engines */
3119 { 0, {128, 128}},
3120 { 3, { 64, 128}},
3121 { 5, { 16, 128}},
3122 { 17, { 0, 0}},
3123 { UINT_MAX, { 0, 0}},
3124 },
3125 },
3126 {
3127 /* Two RB / SE */
3128 {
3129 /* One shader engine */
3130 { 0, {128, 128}},
3131 { 2, { 64, 128}},
3132 { 3, { 32, 128}},
3133 { 5, { 16, 128}},
3134 { 33, { 0, 0}},
3135 { UINT_MAX, { 0, 0}},
3136 },
3137 {
3138 /* Two shader engines */
3139 { 0, {128, 128}},
3140 { 3, { 64, 128}},
3141 { 5, { 32, 128}},
3142 { 9, { 16, 128}},
3143 { 33, { 0, 0}},
3144 { UINT_MAX, { 0, 0}},
3145 },
3146 {
3147 /* Four shader engines */
3148 { 0, {256, 256}},
3149 { 2, {128, 256}},
3150 { 3, {128, 128}},
3151 { 5, { 64, 128}},
3152 { 9, { 16, 128}},
3153 { 33, { 0, 0}},
3154 { UINT_MAX, { 0, 0}},
3155 },
3156 },
3157 {
3158 /* Four RB / SE */
3159 {
3160 /* One shader engine */
3161 { 0, {128, 256}},
3162 { 2, {128, 128}},
3163 { 3, { 64, 128}},
3164 { 5, { 32, 128}},
3165 { 9, { 16, 128}},
3166 { 33, { 0, 0}},
3167 { UINT_MAX, { 0, 0}},
3168 },
3169 {
3170 /* Two shader engines */
3171 { 0, {256, 256}},
3172 { 2, {128, 256}},
3173 { 3, {128, 128}},
3174 { 5, { 64, 128}},
3175 { 9, { 32, 128}},
3176 { 17, { 16, 128}},
3177 { 33, { 0, 0}},
3178 { UINT_MAX, { 0, 0}},
3179 },
3180 {
3181 /* Four shader engines */
3182 { 0, {256, 512}},
3183 { 2, {256, 256}},
3184 { 3, {128, 256}},
3185 { 5, {128, 128}},
3186 { 9, { 64, 128}},
3187 { 17, { 16, 128}},
3188 { 33, { 0, 0}},
3189 { UINT_MAX, { 0, 0}},
3190 },
3191 },
3192 };
3193 static const struct radv_bin_size_entry ds_size_table[][3][9] = {
3194 {
3195 // One RB / SE
3196 {
3197 // One shader engine
3198 { 0, {128, 256}},
3199 { 2, {128, 128}},
3200 { 4, { 64, 128}},
3201 { 7, { 32, 128}},
3202 { 13, { 16, 128}},
3203 { 49, { 0, 0}},
3204 { UINT_MAX, { 0, 0}},
3205 },
3206 {
3207 // Two shader engines
3208 { 0, {256, 256}},
3209 { 2, {128, 256}},
3210 { 4, {128, 128}},
3211 { 7, { 64, 128}},
3212 { 13, { 32, 128}},
3213 { 25, { 16, 128}},
3214 { 49, { 0, 0}},
3215 { UINT_MAX, { 0, 0}},
3216 },
3217 {
3218 // Four shader engines
3219 { 0, {256, 512}},
3220 { 2, {256, 256}},
3221 { 4, {128, 256}},
3222 { 7, {128, 128}},
3223 { 13, { 64, 128}},
3224 { 25, { 16, 128}},
3225 { 49, { 0, 0}},
3226 { UINT_MAX, { 0, 0}},
3227 },
3228 },
3229 {
3230 // Two RB / SE
3231 {
3232 // One shader engine
3233 { 0, {256, 256}},
3234 { 2, {128, 256}},
3235 { 4, {128, 128}},
3236 { 7, { 64, 128}},
3237 { 13, { 32, 128}},
3238 { 25, { 16, 128}},
3239 { 97, { 0, 0}},
3240 { UINT_MAX, { 0, 0}},
3241 },
3242 {
3243 // Two shader engines
3244 { 0, {256, 512}},
3245 { 2, {256, 256}},
3246 { 4, {128, 256}},
3247 { 7, {128, 128}},
3248 { 13, { 64, 128}},
3249 { 25, { 32, 128}},
3250 { 49, { 16, 128}},
3251 { 97, { 0, 0}},
3252 { UINT_MAX, { 0, 0}},
3253 },
3254 {
3255 // Four shader engines
3256 { 0, {512, 512}},
3257 { 2, {256, 512}},
3258 { 4, {256, 256}},
3259 { 7, {128, 256}},
3260 { 13, {128, 128}},
3261 { 25, { 64, 128}},
3262 { 49, { 16, 128}},
3263 { 97, { 0, 0}},
3264 { UINT_MAX, { 0, 0}},
3265 },
3266 },
3267 {
3268 // Four RB / SE
3269 {
3270 // One shader engine
3271 { 0, {256, 512}},
3272 { 2, {256, 256}},
3273 { 4, {128, 256}},
3274 { 7, {128, 128}},
3275 { 13, { 64, 128}},
3276 { 25, { 32, 128}},
3277 { 49, { 16, 128}},
3278 { UINT_MAX, { 0, 0}},
3279 },
3280 {
3281 // Two shader engines
3282 { 0, {512, 512}},
3283 { 2, {256, 512}},
3284 { 4, {256, 256}},
3285 { 7, {128, 256}},
3286 { 13, {128, 128}},
3287 { 25, { 64, 128}},
3288 { 49, { 32, 128}},
3289 { 97, { 16, 128}},
3290 { UINT_MAX, { 0, 0}},
3291 },
3292 {
3293 // Four shader engines
3294 { 0, {512, 512}},
3295 { 4, {256, 512}},
3296 { 7, {256, 256}},
3297 { 13, {128, 256}},
3298 { 25, {128, 128}},
3299 { 49, { 64, 128}},
3300 { 97, { 16, 128}},
3301 { UINT_MAX, { 0, 0}},
3302 },
3303 },
3304 };
3305
3306 RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
3307 struct radv_subpass *subpass = pass->subpasses + pCreateInfo->subpass;
3308 VkExtent2D extent = {512, 512};
3309
3310 unsigned log_num_rb_per_se =
3311 util_logbase2_ceil(pipeline->device->physical_device->rad_info.num_render_backends /
3312 pipeline->device->physical_device->rad_info.max_se);
3313 unsigned log_num_se = util_logbase2_ceil(pipeline->device->physical_device->rad_info.max_se);
3314
3315 unsigned total_samples = 1u << G_028BE0_MSAA_NUM_SAMPLES(pipeline->graphics.ms.pa_sc_aa_config);
3316 unsigned ps_iter_samples = 1u << G_028804_PS_ITER_SAMPLES(pipeline->graphics.ms.db_eqaa);
3317 unsigned effective_samples = total_samples;
3318 unsigned color_bytes_per_pixel = 0;
3319
3320 const VkPipelineColorBlendStateCreateInfo *vkblend =
3321 radv_pipeline_get_color_blend_state(pCreateInfo);
3322 if (vkblend) {
3323 for (unsigned i = 0; i < subpass->color_count; i++) {
3324 if (!vkblend->pAttachments[i].colorWriteMask)
3325 continue;
3326
3327 if (subpass->color_attachments[i].attachment == VK_ATTACHMENT_UNUSED)
3328 continue;
3329
3330 VkFormat format = pass->attachments[subpass->color_attachments[i].attachment].format;
3331 color_bytes_per_pixel += vk_format_get_blocksize(format);
3332 }
3333
3334 /* MSAA images typically don't use all samples all the time. */
3335 if (effective_samples >= 2 && ps_iter_samples <= 1)
3336 effective_samples = 2;
3337 color_bytes_per_pixel *= effective_samples;
3338 }
3339
3340 const struct radv_bin_size_entry *color_entry = color_size_table[log_num_rb_per_se][log_num_se];
3341 while(color_entry[1].bpp <= color_bytes_per_pixel)
3342 ++color_entry;
3343
3344 extent = color_entry->extent;
3345
3346 if (subpass->depth_stencil_attachment) {
3347 struct radv_render_pass_attachment *attachment = pass->attachments + subpass->depth_stencil_attachment->attachment;
3348
3349 /* Coefficients taken from AMDVLK */
3350 unsigned depth_coeff = vk_format_is_depth(attachment->format) ? 5 : 0;
3351 unsigned stencil_coeff = vk_format_is_stencil(attachment->format) ? 1 : 0;
3352 unsigned ds_bytes_per_pixel = 4 * (depth_coeff + stencil_coeff) * total_samples;
3353
3354 const struct radv_bin_size_entry *ds_entry = ds_size_table[log_num_rb_per_se][log_num_se];
3355 while(ds_entry[1].bpp <= ds_bytes_per_pixel)
3356 ++ds_entry;
3357
3358 if (ds_entry->extent.width * ds_entry->extent.height < extent.width * extent.height)
3359 extent = ds_entry->extent;
3360 }
3361
3362 return extent;
3363 }
3364
3365 static VkExtent2D
3366 radv_gfx10_compute_bin_size(struct radv_pipeline *pipeline, const VkGraphicsPipelineCreateInfo *pCreateInfo)
3367 {
3368 RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
3369 struct radv_subpass *subpass = pass->subpasses + pCreateInfo->subpass;
3370 VkExtent2D extent = {512, 512};
3371
3372 const unsigned db_tag_size = 64;
3373 const unsigned db_tag_count = 312;
3374 const unsigned color_tag_size = 1024;
3375 const unsigned color_tag_count = 31;
3376 const unsigned fmask_tag_size = 256;
3377 const unsigned fmask_tag_count = 44;
3378
3379 const unsigned rb_count = pipeline->device->physical_device->rad_info.num_render_backends;
3380 const unsigned pipe_count = MAX2(rb_count, pipeline->device->physical_device->rad_info.num_sdp_interfaces);
3381
3382 const unsigned db_tag_part = (db_tag_count * rb_count / pipe_count) * db_tag_size * pipe_count;
3383 const unsigned color_tag_part = (color_tag_count * rb_count / pipe_count) * color_tag_size * pipe_count;
3384 const unsigned fmask_tag_part = (fmask_tag_count * rb_count / pipe_count) * fmask_tag_size * pipe_count;
3385
3386 const unsigned total_samples = 1u << G_028BE0_MSAA_NUM_SAMPLES(pipeline->graphics.ms.pa_sc_aa_config);
3387 const unsigned samples_log = util_logbase2_ceil(total_samples);
3388
3389 unsigned color_bytes_per_pixel = 0;
3390 unsigned fmask_bytes_per_pixel = 0;
3391
3392 const VkPipelineColorBlendStateCreateInfo *vkblend =
3393 radv_pipeline_get_color_blend_state(pCreateInfo);
3394 if (vkblend) {
3395 for (unsigned i = 0; i < subpass->color_count; i++) {
3396 if (!vkblend->pAttachments[i].colorWriteMask)
3397 continue;
3398
3399 if (subpass->color_attachments[i].attachment == VK_ATTACHMENT_UNUSED)
3400 continue;
3401
3402 VkFormat format = pass->attachments[subpass->color_attachments[i].attachment].format;
3403 color_bytes_per_pixel += vk_format_get_blocksize(format);
3404
3405 if (total_samples > 1) {
3406 assert(samples_log <= 3);
3407 const unsigned fmask_array[] = {0, 1, 1, 4};
3408 fmask_bytes_per_pixel += fmask_array[samples_log];
3409 }
3410 }
3411
3412 color_bytes_per_pixel *= total_samples;
3413 }
3414 color_bytes_per_pixel = MAX2(color_bytes_per_pixel, 1);
3415
3416 const unsigned color_pixel_count_log = util_logbase2(color_tag_part / color_bytes_per_pixel);
3417 extent.width = 1ull << ((color_pixel_count_log + 1) / 2);
3418 extent.height = 1ull << (color_pixel_count_log / 2);
3419
3420 if (fmask_bytes_per_pixel) {
3421 const unsigned fmask_pixel_count_log = util_logbase2(fmask_tag_part / fmask_bytes_per_pixel);
3422
3423 const VkExtent2D fmask_extent = (VkExtent2D){
3424 .width = 1ull << ((fmask_pixel_count_log + 1) / 2),
3425 .height = 1ull << (color_pixel_count_log / 2)
3426 };
3427
3428 if (fmask_extent.width * fmask_extent.height < extent.width * extent.height)
3429 extent = fmask_extent;
3430 }
3431
3432 if (subpass->depth_stencil_attachment) {
3433 struct radv_render_pass_attachment *attachment = pass->attachments + subpass->depth_stencil_attachment->attachment;
3434
3435 /* Coefficients taken from AMDVLK */
3436 unsigned depth_coeff = vk_format_is_depth(attachment->format) ? 5 : 0;
3437 unsigned stencil_coeff = vk_format_is_stencil(attachment->format) ? 1 : 0;
3438 unsigned db_bytes_per_pixel = (depth_coeff + stencil_coeff) * total_samples;
3439
3440 const unsigned db_pixel_count_log = util_logbase2(db_tag_part / db_bytes_per_pixel);
3441
3442 const VkExtent2D db_extent = (VkExtent2D){
3443 .width = 1ull << ((db_pixel_count_log + 1) / 2),
3444 .height = 1ull << (color_pixel_count_log / 2)
3445 };
3446
3447 if (db_extent.width * db_extent.height < extent.width * extent.height)
3448 extent = db_extent;
3449 }
3450
3451 extent.width = MAX2(extent.width, 128);
3452 extent.height = MAX2(extent.width, 64);
3453
3454 return extent;
3455 }
3456
3457 static void
3458 radv_pipeline_generate_disabled_binning_state(struct radeon_cmdbuf *ctx_cs,
3459 struct radv_pipeline *pipeline,
3460 const VkGraphicsPipelineCreateInfo *pCreateInfo)
3461 {
3462 uint32_t pa_sc_binner_cntl_0 =
3463 S_028C44_BINNING_MODE(V_028C44_DISABLE_BINNING_USE_LEGACY_SC) |
3464 S_028C44_DISABLE_START_OF_PRIM(1);
3465 uint32_t db_dfsm_control = S_028060_PUNCHOUT_MODE(V_028060_FORCE_OFF);
3466
3467 if (pipeline->device->physical_device->rad_info.chip_class >= GFX10) {
3468 RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
3469 struct radv_subpass *subpass = pass->subpasses + pCreateInfo->subpass;
3470 const VkPipelineColorBlendStateCreateInfo *vkblend =
3471 radv_pipeline_get_color_blend_state(pCreateInfo);
3472 unsigned min_bytes_per_pixel = 0;
3473
3474 if (vkblend) {
3475 for (unsigned i = 0; i < subpass->color_count; i++) {
3476 if (!vkblend->pAttachments[i].colorWriteMask)
3477 continue;
3478
3479 if (subpass->color_attachments[i].attachment == VK_ATTACHMENT_UNUSED)
3480 continue;
3481
3482 VkFormat format = pass->attachments[subpass->color_attachments[i].attachment].format;
3483 unsigned bytes = vk_format_get_blocksize(format);
3484 if (!min_bytes_per_pixel || bytes < min_bytes_per_pixel)
3485 min_bytes_per_pixel = bytes;
3486 }
3487 }
3488
3489 pa_sc_binner_cntl_0 =
3490 S_028C44_BINNING_MODE(V_028C44_DISABLE_BINNING_USE_NEW_SC) |
3491 S_028C44_BIN_SIZE_X(0) |
3492 S_028C44_BIN_SIZE_Y(0) |
3493 S_028C44_BIN_SIZE_X_EXTEND(2) | /* 128 */
3494 S_028C44_BIN_SIZE_Y_EXTEND(min_bytes_per_pixel <= 4 ? 2 : 1) | /* 128 or 64 */
3495 S_028C44_DISABLE_START_OF_PRIM(1);
3496 }
3497
3498 pipeline->graphics.binning.pa_sc_binner_cntl_0 = pa_sc_binner_cntl_0;
3499 pipeline->graphics.binning.db_dfsm_control = db_dfsm_control;
3500 }
3501
3502 struct radv_binning_settings
3503 radv_get_binning_settings(const struct radv_physical_device *pdev)
3504 {
3505 struct radv_binning_settings settings;
3506 if (pdev->rad_info.has_dedicated_vram) {
3507 if (pdev->rad_info.num_render_backends > 4) {
3508 settings.context_states_per_bin = 1;
3509 settings.persistent_states_per_bin = 1;
3510 } else {
3511 settings.context_states_per_bin = 3;
3512 settings.persistent_states_per_bin = 8;
3513 }
3514 settings.fpovs_per_batch = 63;
3515 } else {
3516 /* The context states are affected by the scissor bug. */
3517 settings.context_states_per_bin = 6;
3518 /* 32 causes hangs for RAVEN. */
3519 settings.persistent_states_per_bin = 16;
3520 settings.fpovs_per_batch = 63;
3521 }
3522
3523 if (pdev->rad_info.has_gfx9_scissor_bug)
3524 settings.context_states_per_bin = 1;
3525
3526 return settings;
3527 }
3528
3529 static void
3530 radv_pipeline_generate_binning_state(struct radeon_cmdbuf *ctx_cs,
3531 struct radv_pipeline *pipeline,
3532 const VkGraphicsPipelineCreateInfo *pCreateInfo,
3533 const struct radv_blend_state *blend)
3534 {
3535 if (pipeline->device->physical_device->rad_info.chip_class < GFX9)
3536 return;
3537
3538 VkExtent2D bin_size;
3539 if (pipeline->device->physical_device->rad_info.chip_class >= GFX10) {
3540 bin_size = radv_gfx10_compute_bin_size(pipeline, pCreateInfo);
3541 } else if (pipeline->device->physical_device->rad_info.chip_class == GFX9) {
3542 bin_size = radv_gfx9_compute_bin_size(pipeline, pCreateInfo);
3543 } else
3544 unreachable("Unhandled generation for binning bin size calculation");
3545
3546 if (pipeline->device->pbb_allowed && bin_size.width && bin_size.height) {
3547 struct radv_binning_settings settings =
3548 radv_get_binning_settings(pipeline->device->physical_device);
3549
3550 bool disable_start_of_prim = true;
3551 uint32_t db_dfsm_control = S_028060_PUNCHOUT_MODE(V_028060_FORCE_OFF);
3552
3553 const struct radv_shader_variant *ps = pipeline->shaders[MESA_SHADER_FRAGMENT];
3554
3555 if (pipeline->device->dfsm_allowed && ps &&
3556 !ps->info.ps.can_discard &&
3557 !ps->info.ps.writes_memory &&
3558 blend->cb_target_enabled_4bit) {
3559 db_dfsm_control = S_028060_PUNCHOUT_MODE(V_028060_AUTO);
3560 disable_start_of_prim = (blend->blend_enable_4bit & blend->cb_target_enabled_4bit) != 0;
3561 }
3562
3563 const uint32_t pa_sc_binner_cntl_0 =
3564 S_028C44_BINNING_MODE(V_028C44_BINNING_ALLOWED) |
3565 S_028C44_BIN_SIZE_X(bin_size.width == 16) |
3566 S_028C44_BIN_SIZE_Y(bin_size.height == 16) |
3567 S_028C44_BIN_SIZE_X_EXTEND(util_logbase2(MAX2(bin_size.width, 32)) - 5) |
3568 S_028C44_BIN_SIZE_Y_EXTEND(util_logbase2(MAX2(bin_size.height, 32)) - 5) |
3569 S_028C44_CONTEXT_STATES_PER_BIN(settings.context_states_per_bin - 1) |
3570 S_028C44_PERSISTENT_STATES_PER_BIN(settings.persistent_states_per_bin - 1) |
3571 S_028C44_DISABLE_START_OF_PRIM(disable_start_of_prim) |
3572 S_028C44_FPOVS_PER_BATCH(settings.fpovs_per_batch) |
3573 S_028C44_OPTIMAL_BIN_SELECTION(1);
3574
3575 pipeline->graphics.binning.pa_sc_binner_cntl_0 = pa_sc_binner_cntl_0;
3576 pipeline->graphics.binning.db_dfsm_control = db_dfsm_control;
3577 } else
3578 radv_pipeline_generate_disabled_binning_state(ctx_cs, pipeline, pCreateInfo);
3579 }
3580
3581
3582 static void
3583 radv_pipeline_generate_depth_stencil_state(struct radeon_cmdbuf *ctx_cs,
3584 struct radv_pipeline *pipeline,
3585 const VkGraphicsPipelineCreateInfo *pCreateInfo,
3586 const struct radv_graphics_pipeline_create_info *extra)
3587 {
3588 const VkPipelineDepthStencilStateCreateInfo *vkds = radv_pipeline_get_depth_stencil_state(pCreateInfo);
3589 RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
3590 struct radv_subpass *subpass = pass->subpasses + pCreateInfo->subpass;
3591 struct radv_shader_variant *ps = pipeline->shaders[MESA_SHADER_FRAGMENT];
3592 struct radv_render_pass_attachment *attachment = NULL;
3593 uint32_t db_depth_control = 0;
3594 uint32_t db_render_control = 0, db_render_override2 = 0;
3595 uint32_t db_render_override = 0;
3596
3597 if (subpass->depth_stencil_attachment)
3598 attachment = pass->attachments + subpass->depth_stencil_attachment->attachment;
3599
3600 bool has_depth_attachment = attachment && vk_format_is_depth(attachment->format);
3601 bool has_stencil_attachment = attachment && vk_format_is_stencil(attachment->format);
3602
3603 if (vkds && has_depth_attachment) {
3604 db_depth_control = S_028800_Z_ENABLE(vkds->depthTestEnable ? 1 : 0) |
3605 S_028800_Z_WRITE_ENABLE(vkds->depthWriteEnable ? 1 : 0) |
3606 S_028800_ZFUNC(vkds->depthCompareOp) |
3607 S_028800_DEPTH_BOUNDS_ENABLE(vkds->depthBoundsTestEnable ? 1 : 0);
3608
3609 /* from amdvlk: For 4xAA and 8xAA need to decompress on flush for better performance */
3610 db_render_override2 |= S_028010_DECOMPRESS_Z_ON_FLUSH(attachment->samples > 2);
3611
3612 if (pipeline->device->physical_device->rad_info.chip_class >= GFX10_3)
3613 db_render_override2 |= S_028010_CENTROID_COMPUTATION_MODE_GFX103(2);
3614 }
3615
3616 if (has_stencil_attachment && vkds && vkds->stencilTestEnable) {
3617 db_depth_control |= S_028800_STENCIL_ENABLE(1) | S_028800_BACKFACE_ENABLE(1);
3618 db_depth_control |= S_028800_STENCILFUNC(vkds->front.compareOp);
3619
3620 db_depth_control |= S_028800_STENCILFUNC_BF(vkds->back.compareOp);
3621 }
3622
3623 if (attachment && extra) {
3624 db_render_control |= S_028000_DEPTH_CLEAR_ENABLE(extra->db_depth_clear);
3625 db_render_control |= S_028000_STENCIL_CLEAR_ENABLE(extra->db_stencil_clear);
3626
3627 db_render_control |= S_028000_RESUMMARIZE_ENABLE(extra->resummarize_enable);
3628 db_render_control |= S_028000_DEPTH_COMPRESS_DISABLE(extra->depth_compress_disable);
3629 db_render_control |= S_028000_STENCIL_COMPRESS_DISABLE(extra->stencil_compress_disable);
3630 db_render_override2 |= S_028010_DISABLE_ZMASK_EXPCLEAR_OPTIMIZATION(extra->db_depth_disable_expclear);
3631 db_render_override2 |= S_028010_DISABLE_SMEM_EXPCLEAR_OPTIMIZATION(extra->db_stencil_disable_expclear);
3632 }
3633
3634 db_render_override |= S_02800C_FORCE_HIS_ENABLE0(V_02800C_FORCE_DISABLE) |
3635 S_02800C_FORCE_HIS_ENABLE1(V_02800C_FORCE_DISABLE);
3636
3637 if (!pCreateInfo->pRasterizationState->depthClampEnable &&
3638 ps->info.ps.writes_z) {
3639 /* From VK_EXT_depth_range_unrestricted spec:
3640 *
3641 * "The behavior described in Primitive Clipping still applies.
3642 * If depth clamping is disabled the depth values are still
3643 * clipped to 0 ≤ zc ≤ wc before the viewport transform. If
3644 * depth clamping is enabled the above equation is ignored and
3645 * the depth values are instead clamped to the VkViewport
3646 * minDepth and maxDepth values, which in the case of this
3647 * extension can be outside of the 0.0 to 1.0 range."
3648 */
3649 db_render_override |= S_02800C_DISABLE_VIEWPORT_CLAMP(1);
3650 }
3651
3652 radeon_set_context_reg(ctx_cs, R_028000_DB_RENDER_CONTROL, db_render_control);
3653 radeon_set_context_reg(ctx_cs, R_02800C_DB_RENDER_OVERRIDE, db_render_override);
3654 radeon_set_context_reg(ctx_cs, R_028010_DB_RENDER_OVERRIDE2, db_render_override2);
3655
3656 pipeline->graphics.db_depth_control = db_depth_control;
3657 }
3658
3659 static void
3660 radv_pipeline_generate_blend_state(struct radeon_cmdbuf *ctx_cs,
3661 struct radv_pipeline *pipeline,
3662 const struct radv_blend_state *blend)
3663 {
3664 radeon_set_context_reg_seq(ctx_cs, R_028780_CB_BLEND0_CONTROL, 8);
3665 radeon_emit_array(ctx_cs, blend->cb_blend_control,
3666 8);
3667 radeon_set_context_reg(ctx_cs, R_028808_CB_COLOR_CONTROL, blend->cb_color_control);
3668 radeon_set_context_reg(ctx_cs, R_028B70_DB_ALPHA_TO_MASK, blend->db_alpha_to_mask);
3669
3670 if (pipeline->device->physical_device->rad_info.has_rbplus) {
3671
3672 radeon_set_context_reg_seq(ctx_cs, R_028760_SX_MRT0_BLEND_OPT, 8);
3673 radeon_emit_array(ctx_cs, blend->sx_mrt_blend_opt, 8);
3674 }
3675
3676 radeon_set_context_reg(ctx_cs, R_028714_SPI_SHADER_COL_FORMAT, blend->spi_shader_col_format);
3677
3678 radeon_set_context_reg(ctx_cs, R_028238_CB_TARGET_MASK, blend->cb_target_mask);
3679 radeon_set_context_reg(ctx_cs, R_02823C_CB_SHADER_MASK, blend->cb_shader_mask);
3680
3681 pipeline->graphics.col_format = blend->spi_shader_col_format;
3682 pipeline->graphics.cb_target_mask = blend->cb_target_mask;
3683 }
3684
3685 static const VkConservativeRasterizationModeEXT
3686 radv_get_conservative_raster_mode(const VkPipelineRasterizationStateCreateInfo *pCreateInfo)
3687 {
3688 const VkPipelineRasterizationConservativeStateCreateInfoEXT *conservative_raster =
3689 vk_find_struct_const(pCreateInfo->pNext, PIPELINE_RASTERIZATION_CONSERVATIVE_STATE_CREATE_INFO_EXT);
3690
3691 if (!conservative_raster)
3692 return VK_CONSERVATIVE_RASTERIZATION_MODE_DISABLED_EXT;
3693 return conservative_raster->conservativeRasterizationMode;
3694 }
3695
3696 static void
3697 radv_pipeline_generate_raster_state(struct radeon_cmdbuf *ctx_cs,
3698 struct radv_pipeline *pipeline,
3699 const VkGraphicsPipelineCreateInfo *pCreateInfo)
3700 {
3701 const VkPipelineRasterizationStateCreateInfo *vkraster = pCreateInfo->pRasterizationState;
3702 const VkConservativeRasterizationModeEXT mode =
3703 radv_get_conservative_raster_mode(vkraster);
3704 uint32_t pa_sc_conservative_rast = S_028C4C_NULL_SQUAD_AA_MASK_ENABLE(1);
3705 bool depth_clip_disable = vkraster->depthClampEnable;
3706
3707 const VkPipelineRasterizationDepthClipStateCreateInfoEXT *depth_clip_state =
3708 vk_find_struct_const(vkraster->pNext, PIPELINE_RASTERIZATION_DEPTH_CLIP_STATE_CREATE_INFO_EXT);
3709 if (depth_clip_state) {
3710 depth_clip_disable = !depth_clip_state->depthClipEnable;
3711 }
3712
3713 radeon_set_context_reg(ctx_cs, R_028810_PA_CL_CLIP_CNTL,
3714 S_028810_DX_CLIP_SPACE_DEF(1) | // vulkan uses DX conventions.
3715 S_028810_ZCLIP_NEAR_DISABLE(depth_clip_disable ? 1 : 0) |
3716 S_028810_ZCLIP_FAR_DISABLE(depth_clip_disable ? 1 : 0) |
3717 S_028810_DX_RASTERIZATION_KILL(vkraster->rasterizerDiscardEnable ? 1 : 0) |
3718 S_028810_DX_LINEAR_ATTR_CLIP_ENA(1));
3719
3720 pipeline->graphics.pa_su_sc_mode_cntl =
3721 S_028814_FACE(vkraster->frontFace) |
3722 S_028814_CULL_FRONT(!!(vkraster->cullMode & VK_CULL_MODE_FRONT_BIT)) |
3723 S_028814_CULL_BACK(!!(vkraster->cullMode & VK_CULL_MODE_BACK_BIT)) |
3724 S_028814_POLY_MODE(vkraster->polygonMode != VK_POLYGON_MODE_FILL) |
3725 S_028814_POLYMODE_FRONT_PTYPE(si_translate_fill(vkraster->polygonMode)) |
3726 S_028814_POLYMODE_BACK_PTYPE(si_translate_fill(vkraster->polygonMode)) |
3727 S_028814_POLY_OFFSET_FRONT_ENABLE(vkraster->depthBiasEnable ? 1 : 0) |
3728 S_028814_POLY_OFFSET_BACK_ENABLE(vkraster->depthBiasEnable ? 1 : 0) |
3729 S_028814_POLY_OFFSET_PARA_ENABLE(vkraster->depthBiasEnable ? 1 : 0);
3730
3731 radeon_set_context_reg(ctx_cs, R_028BDC_PA_SC_LINE_CNTL,
3732 S_028BDC_DX10_DIAMOND_TEST_ENA(1));
3733
3734 /* Conservative rasterization. */
3735 if (mode != VK_CONSERVATIVE_RASTERIZATION_MODE_DISABLED_EXT) {
3736 struct radv_multisample_state *ms = &pipeline->graphics.ms;
3737
3738 ms->pa_sc_aa_config |= S_028BE0_AA_MASK_CENTROID_DTMN(1);
3739 ms->db_eqaa |= S_028804_ENABLE_POSTZ_OVERRASTERIZATION(1) |
3740 S_028804_OVERRASTERIZATION_AMOUNT(4);
3741
3742 pa_sc_conservative_rast = S_028C4C_PREZ_AA_MASK_ENABLE(1) |
3743 S_028C4C_POSTZ_AA_MASK_ENABLE(1) |
3744 S_028C4C_CENTROID_SAMPLE_OVERRIDE(1);
3745
3746 if (mode == VK_CONSERVATIVE_RASTERIZATION_MODE_OVERESTIMATE_EXT) {
3747 pa_sc_conservative_rast |=
3748 S_028C4C_OVER_RAST_ENABLE(1) |
3749 S_028C4C_OVER_RAST_SAMPLE_SELECT(0) |
3750 S_028C4C_UNDER_RAST_ENABLE(0) |
3751 S_028C4C_UNDER_RAST_SAMPLE_SELECT(1) |
3752 S_028C4C_PBB_UNCERTAINTY_REGION_ENABLE(1);
3753 } else {
3754 assert(mode == VK_CONSERVATIVE_RASTERIZATION_MODE_UNDERESTIMATE_EXT);
3755 pa_sc_conservative_rast |=
3756 S_028C4C_OVER_RAST_ENABLE(0) |
3757 S_028C4C_OVER_RAST_SAMPLE_SELECT(1) |
3758 S_028C4C_UNDER_RAST_ENABLE(1) |
3759 S_028C4C_UNDER_RAST_SAMPLE_SELECT(0) |
3760 S_028C4C_PBB_UNCERTAINTY_REGION_ENABLE(0);
3761 }
3762 }
3763
3764 radeon_set_context_reg(ctx_cs, R_028C4C_PA_SC_CONSERVATIVE_RASTERIZATION_CNTL,
3765 pa_sc_conservative_rast);
3766 }
3767
3768
3769 static void
3770 radv_pipeline_generate_multisample_state(struct radeon_cmdbuf *ctx_cs,
3771 struct radv_pipeline *pipeline)
3772 {
3773 struct radv_multisample_state *ms = &pipeline->graphics.ms;
3774
3775 radeon_set_context_reg_seq(ctx_cs, R_028C38_PA_SC_AA_MASK_X0Y0_X1Y0, 2);
3776 radeon_emit(ctx_cs, ms->pa_sc_aa_mask[0]);
3777 radeon_emit(ctx_cs, ms->pa_sc_aa_mask[1]);
3778
3779 radeon_set_context_reg(ctx_cs, R_028804_DB_EQAA, ms->db_eqaa);
3780 radeon_set_context_reg(ctx_cs, R_028A48_PA_SC_MODE_CNTL_0, ms->pa_sc_mode_cntl_0);
3781 radeon_set_context_reg(ctx_cs, R_028A4C_PA_SC_MODE_CNTL_1, ms->pa_sc_mode_cntl_1);
3782 radeon_set_context_reg(ctx_cs, R_028BE0_PA_SC_AA_CONFIG, ms->pa_sc_aa_config);
3783
3784 /* The exclusion bits can be set to improve rasterization efficiency
3785 * if no sample lies on the pixel boundary (-8 sample offset). It's
3786 * currently always TRUE because the driver doesn't support 16 samples.
3787 */
3788 bool exclusion = pipeline->device->physical_device->rad_info.chip_class >= GFX7;
3789 radeon_set_context_reg(ctx_cs, R_02882C_PA_SU_PRIM_FILTER_CNTL,
3790 S_02882C_XMAX_RIGHT_EXCLUSION(exclusion) |
3791 S_02882C_YMAX_BOTTOM_EXCLUSION(exclusion));
3792
3793 /* GFX9: Flush DFSM when the AA mode changes. */
3794 if (pipeline->device->dfsm_allowed) {
3795 radeon_emit(ctx_cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
3796 radeon_emit(ctx_cs, EVENT_TYPE(V_028A90_FLUSH_DFSM) | EVENT_INDEX(0));
3797 }
3798 }
3799
3800 static void
3801 radv_pipeline_generate_vgt_gs_mode(struct radeon_cmdbuf *ctx_cs,
3802 struct radv_pipeline *pipeline)
3803 {
3804 const struct radv_vs_output_info *outinfo = get_vs_output_info(pipeline);
3805 const struct radv_shader_variant *vs =
3806 pipeline->shaders[MESA_SHADER_TESS_EVAL] ?
3807 pipeline->shaders[MESA_SHADER_TESS_EVAL] :
3808 pipeline->shaders[MESA_SHADER_VERTEX];
3809 unsigned vgt_primitiveid_en = 0;
3810 uint32_t vgt_gs_mode = 0;
3811
3812 if (radv_pipeline_has_ngg(pipeline))
3813 return;
3814
3815 if (radv_pipeline_has_gs(pipeline)) {
3816 const struct radv_shader_variant *gs =
3817 pipeline->shaders[MESA_SHADER_GEOMETRY];
3818
3819 vgt_gs_mode = ac_vgt_gs_mode(gs->info.gs.vertices_out,
3820 pipeline->device->physical_device->rad_info.chip_class);
3821 } else if (outinfo->export_prim_id || vs->info.uses_prim_id) {
3822 vgt_gs_mode = S_028A40_MODE(V_028A40_GS_SCENARIO_A);
3823 vgt_primitiveid_en |= S_028A84_PRIMITIVEID_EN(1);
3824 }
3825
3826 radeon_set_context_reg(ctx_cs, R_028A84_VGT_PRIMITIVEID_EN, vgt_primitiveid_en);
3827 radeon_set_context_reg(ctx_cs, R_028A40_VGT_GS_MODE, vgt_gs_mode);
3828 }
3829
3830 static void
3831 radv_pipeline_generate_hw_vs(struct radeon_cmdbuf *ctx_cs,
3832 struct radeon_cmdbuf *cs,
3833 struct radv_pipeline *pipeline,
3834 struct radv_shader_variant *shader)
3835 {
3836 uint64_t va = radv_buffer_get_va(shader->bo) + shader->bo_offset;
3837
3838 radeon_set_sh_reg_seq(cs, R_00B120_SPI_SHADER_PGM_LO_VS, 4);
3839 radeon_emit(cs, va >> 8);
3840 radeon_emit(cs, S_00B124_MEM_BASE(va >> 40));
3841 radeon_emit(cs, shader->config.rsrc1);
3842 radeon_emit(cs, shader->config.rsrc2);
3843
3844 const struct radv_vs_output_info *outinfo = get_vs_output_info(pipeline);
3845 unsigned clip_dist_mask, cull_dist_mask, total_mask;
3846 clip_dist_mask = outinfo->clip_dist_mask;
3847 cull_dist_mask = outinfo->cull_dist_mask;
3848 total_mask = clip_dist_mask | cull_dist_mask;
3849 bool misc_vec_ena = outinfo->writes_pointsize ||
3850 outinfo->writes_layer ||
3851 outinfo->writes_viewport_index;
3852 unsigned spi_vs_out_config, nparams;
3853
3854 /* VS is required to export at least one param. */
3855 nparams = MAX2(outinfo->param_exports, 1);
3856 spi_vs_out_config = S_0286C4_VS_EXPORT_COUNT(nparams - 1);
3857
3858 if (pipeline->device->physical_device->rad_info.chip_class >= GFX10) {
3859 spi_vs_out_config |= S_0286C4_NO_PC_EXPORT(outinfo->param_exports == 0);
3860 }
3861
3862 radeon_set_context_reg(ctx_cs, R_0286C4_SPI_VS_OUT_CONFIG, spi_vs_out_config);
3863
3864 radeon_set_context_reg(ctx_cs, R_02870C_SPI_SHADER_POS_FORMAT,
3865 S_02870C_POS0_EXPORT_FORMAT(V_02870C_SPI_SHADER_4COMP) |
3866 S_02870C_POS1_EXPORT_FORMAT(outinfo->pos_exports > 1 ?
3867 V_02870C_SPI_SHADER_4COMP :
3868 V_02870C_SPI_SHADER_NONE) |
3869 S_02870C_POS2_EXPORT_FORMAT(outinfo->pos_exports > 2 ?
3870 V_02870C_SPI_SHADER_4COMP :
3871 V_02870C_SPI_SHADER_NONE) |
3872 S_02870C_POS3_EXPORT_FORMAT(outinfo->pos_exports > 3 ?
3873 V_02870C_SPI_SHADER_4COMP :
3874 V_02870C_SPI_SHADER_NONE));
3875
3876 radeon_set_context_reg(ctx_cs, R_02881C_PA_CL_VS_OUT_CNTL,
3877 S_02881C_USE_VTX_POINT_SIZE(outinfo->writes_pointsize) |
3878 S_02881C_USE_VTX_RENDER_TARGET_INDX(outinfo->writes_layer) |
3879 S_02881C_USE_VTX_VIEWPORT_INDX(outinfo->writes_viewport_index) |
3880 S_02881C_VS_OUT_MISC_VEC_ENA(misc_vec_ena) |
3881 S_02881C_VS_OUT_MISC_SIDE_BUS_ENA(misc_vec_ena) |
3882 S_02881C_VS_OUT_CCDIST0_VEC_ENA((total_mask & 0x0f) != 0) |
3883 S_02881C_VS_OUT_CCDIST1_VEC_ENA((total_mask & 0xf0) != 0) |
3884 S_02881C_BYPASS_PRIM_RATE_COMBINER_GFX103(pipeline->device->physical_device->rad_info.chip_class >= GFX10_3) |
3885 cull_dist_mask << 8 |
3886 clip_dist_mask);
3887
3888 if (pipeline->device->physical_device->rad_info.chip_class <= GFX8)
3889 radeon_set_context_reg(ctx_cs, R_028AB4_VGT_REUSE_OFF,
3890 outinfo->writes_viewport_index);
3891 }
3892
3893 static void
3894 radv_pipeline_generate_hw_es(struct radeon_cmdbuf *cs,
3895 struct radv_pipeline *pipeline,
3896 struct radv_shader_variant *shader)
3897 {
3898 uint64_t va = radv_buffer_get_va(shader->bo) + shader->bo_offset;
3899
3900 radeon_set_sh_reg_seq(cs, R_00B320_SPI_SHADER_PGM_LO_ES, 4);
3901 radeon_emit(cs, va >> 8);
3902 radeon_emit(cs, S_00B324_MEM_BASE(va >> 40));
3903 radeon_emit(cs, shader->config.rsrc1);
3904 radeon_emit(cs, shader->config.rsrc2);
3905 }
3906
3907 static void
3908 radv_pipeline_generate_hw_ls(struct radeon_cmdbuf *cs,
3909 struct radv_pipeline *pipeline,
3910 struct radv_shader_variant *shader,
3911 const struct radv_tessellation_state *tess)
3912 {
3913 uint64_t va = radv_buffer_get_va(shader->bo) + shader->bo_offset;
3914 uint32_t rsrc2 = shader->config.rsrc2;
3915
3916 radeon_set_sh_reg_seq(cs, R_00B520_SPI_SHADER_PGM_LO_LS, 2);
3917 radeon_emit(cs, va >> 8);
3918 radeon_emit(cs, S_00B524_MEM_BASE(va >> 40));
3919
3920 rsrc2 |= S_00B52C_LDS_SIZE(tess->lds_size);
3921 if (pipeline->device->physical_device->rad_info.chip_class == GFX7 &&
3922 pipeline->device->physical_device->rad_info.family != CHIP_HAWAII)
3923 radeon_set_sh_reg(cs, R_00B52C_SPI_SHADER_PGM_RSRC2_LS, rsrc2);
3924
3925 radeon_set_sh_reg_seq(cs, R_00B528_SPI_SHADER_PGM_RSRC1_LS, 2);
3926 radeon_emit(cs, shader->config.rsrc1);
3927 radeon_emit(cs, rsrc2);
3928 }
3929
3930 static void
3931 radv_pipeline_generate_hw_ngg(struct radeon_cmdbuf *ctx_cs,
3932 struct radeon_cmdbuf *cs,
3933 struct radv_pipeline *pipeline,
3934 struct radv_shader_variant *shader)
3935 {
3936 uint64_t va = radv_buffer_get_va(shader->bo) + shader->bo_offset;
3937 gl_shader_stage es_type =
3938 radv_pipeline_has_tess(pipeline) ? MESA_SHADER_TESS_EVAL : MESA_SHADER_VERTEX;
3939 struct radv_shader_variant *es =
3940 es_type == MESA_SHADER_TESS_EVAL ? pipeline->shaders[MESA_SHADER_TESS_EVAL] : pipeline->shaders[MESA_SHADER_VERTEX];
3941 const struct gfx10_ngg_info *ngg_state = &shader->info.ngg_info;
3942
3943 radeon_set_sh_reg_seq(cs, R_00B320_SPI_SHADER_PGM_LO_ES, 2);
3944 radeon_emit(cs, va >> 8);
3945 radeon_emit(cs, S_00B324_MEM_BASE(va >> 40));
3946 radeon_set_sh_reg_seq(cs, R_00B228_SPI_SHADER_PGM_RSRC1_GS, 2);
3947 radeon_emit(cs, shader->config.rsrc1);
3948 radeon_emit(cs, shader->config.rsrc2);
3949
3950 const struct radv_vs_output_info *outinfo = get_vs_output_info(pipeline);
3951 unsigned clip_dist_mask, cull_dist_mask, total_mask;
3952 clip_dist_mask = outinfo->clip_dist_mask;
3953 cull_dist_mask = outinfo->cull_dist_mask;
3954 total_mask = clip_dist_mask | cull_dist_mask;
3955 bool misc_vec_ena = outinfo->writes_pointsize ||
3956 outinfo->writes_layer ||
3957 outinfo->writes_viewport_index;
3958 bool es_enable_prim_id = outinfo->export_prim_id ||
3959 (es && es->info.uses_prim_id);
3960 bool break_wave_at_eoi = false;
3961 unsigned ge_cntl;
3962 unsigned nparams;
3963
3964 if (es_type == MESA_SHADER_TESS_EVAL) {
3965 struct radv_shader_variant *gs =
3966 pipeline->shaders[MESA_SHADER_GEOMETRY];
3967
3968 if (es_enable_prim_id || (gs && gs->info.uses_prim_id))
3969 break_wave_at_eoi = true;
3970 }
3971
3972 nparams = MAX2(outinfo->param_exports, 1);
3973 radeon_set_context_reg(ctx_cs, R_0286C4_SPI_VS_OUT_CONFIG,
3974 S_0286C4_VS_EXPORT_COUNT(nparams - 1) |
3975 S_0286C4_NO_PC_EXPORT(outinfo->param_exports == 0));
3976
3977 radeon_set_context_reg(ctx_cs, R_028708_SPI_SHADER_IDX_FORMAT,
3978 S_028708_IDX0_EXPORT_FORMAT(V_028708_SPI_SHADER_1COMP));
3979 radeon_set_context_reg(ctx_cs, R_02870C_SPI_SHADER_POS_FORMAT,
3980 S_02870C_POS0_EXPORT_FORMAT(V_02870C_SPI_SHADER_4COMP) |
3981 S_02870C_POS1_EXPORT_FORMAT(outinfo->pos_exports > 1 ?
3982 V_02870C_SPI_SHADER_4COMP :
3983 V_02870C_SPI_SHADER_NONE) |
3984 S_02870C_POS2_EXPORT_FORMAT(outinfo->pos_exports > 2 ?
3985 V_02870C_SPI_SHADER_4COMP :
3986 V_02870C_SPI_SHADER_NONE) |
3987 S_02870C_POS3_EXPORT_FORMAT(outinfo->pos_exports > 3 ?
3988 V_02870C_SPI_SHADER_4COMP :
3989 V_02870C_SPI_SHADER_NONE));
3990
3991 radeon_set_context_reg(ctx_cs, R_02881C_PA_CL_VS_OUT_CNTL,
3992 S_02881C_USE_VTX_POINT_SIZE(outinfo->writes_pointsize) |
3993 S_02881C_USE_VTX_RENDER_TARGET_INDX(outinfo->writes_layer) |
3994 S_02881C_USE_VTX_VIEWPORT_INDX(outinfo->writes_viewport_index) |
3995 S_02881C_VS_OUT_MISC_VEC_ENA(misc_vec_ena) |
3996 S_02881C_VS_OUT_MISC_SIDE_BUS_ENA(misc_vec_ena) |
3997 S_02881C_VS_OUT_CCDIST0_VEC_ENA((total_mask & 0x0f) != 0) |
3998 S_02881C_VS_OUT_CCDIST1_VEC_ENA((total_mask & 0xf0) != 0) |
3999 S_02881C_BYPASS_PRIM_RATE_COMBINER_GFX103(pipeline->device->physical_device->rad_info.chip_class >= GFX10_3) |
4000 cull_dist_mask << 8 |
4001 clip_dist_mask);
4002
4003 radeon_set_context_reg(ctx_cs, R_028A84_VGT_PRIMITIVEID_EN,
4004 S_028A84_PRIMITIVEID_EN(es_enable_prim_id) |
4005 S_028A84_NGG_DISABLE_PROVOK_REUSE(outinfo->export_prim_id));
4006
4007 radeon_set_context_reg(ctx_cs, R_028AAC_VGT_ESGS_RING_ITEMSIZE,
4008 ngg_state->vgt_esgs_ring_itemsize);
4009
4010 /* NGG specific registers. */
4011 struct radv_shader_variant *gs = pipeline->shaders[MESA_SHADER_GEOMETRY];
4012 uint32_t gs_num_invocations = gs ? gs->info.gs.invocations : 1;
4013
4014 radeon_set_context_reg(ctx_cs, R_028A44_VGT_GS_ONCHIP_CNTL,
4015 S_028A44_ES_VERTS_PER_SUBGRP(ngg_state->hw_max_esverts) |
4016 S_028A44_GS_PRIMS_PER_SUBGRP(ngg_state->max_gsprims) |
4017 S_028A44_GS_INST_PRIMS_IN_SUBGRP(ngg_state->max_gsprims * gs_num_invocations));
4018 radeon_set_context_reg(ctx_cs, R_0287FC_GE_MAX_OUTPUT_PER_SUBGROUP,
4019 S_0287FC_MAX_VERTS_PER_SUBGROUP(ngg_state->max_out_verts));
4020 radeon_set_context_reg(ctx_cs, R_028B4C_GE_NGG_SUBGRP_CNTL,
4021 S_028B4C_PRIM_AMP_FACTOR(ngg_state->prim_amp_factor) |
4022 S_028B4C_THDS_PER_SUBGRP(0)); /* for fast launch */
4023 radeon_set_context_reg(ctx_cs, R_028B90_VGT_GS_INSTANCE_CNT,
4024 S_028B90_CNT(gs_num_invocations) |
4025 S_028B90_ENABLE(gs_num_invocations > 1) |
4026 S_028B90_EN_MAX_VERT_OUT_PER_GS_INSTANCE(ngg_state->max_vert_out_per_gs_instance));
4027
4028 /* User edge flags are set by the pos exports. If user edge flags are
4029 * not used, we must use hw-generated edge flags and pass them via
4030 * the prim export to prevent drawing lines on internal edges of
4031 * decomposed primitives (such as quads) with polygon mode = lines.
4032 *
4033 * TODO: We should combine hw-generated edge flags with user edge
4034 * flags in the shader.
4035 */
4036 radeon_set_context_reg(ctx_cs, R_028838_PA_CL_NGG_CNTL,
4037 S_028838_INDEX_BUF_EDGE_FLAG_ENA(!radv_pipeline_has_tess(pipeline) &&
4038 !radv_pipeline_has_gs(pipeline)) |
4039 /* Reuse for NGG. */
4040 S_028838_VERTEX_REUSE_DEPTH_GFX103(pipeline->device->physical_device->rad_info.chip_class >= GFX10_3 ? 30 : 0));
4041
4042 ge_cntl = S_03096C_PRIM_GRP_SIZE(ngg_state->max_gsprims) |
4043 S_03096C_VERT_GRP_SIZE(256) | /* 256 = disable vertex grouping */
4044 S_03096C_BREAK_WAVE_AT_EOI(break_wave_at_eoi);
4045
4046 /* Bug workaround for a possible hang with non-tessellation cases.
4047 * Tessellation always sets GE_CNTL.VERT_GRP_SIZE = 0
4048 *
4049 * Requirement: GE_CNTL.VERT_GRP_SIZE = VGT_GS_ONCHIP_CNTL.ES_VERTS_PER_SUBGRP - 5
4050 */
4051 if (pipeline->device->physical_device->rad_info.chip_class == GFX10 &&
4052 !radv_pipeline_has_tess(pipeline) &&
4053 ngg_state->hw_max_esverts != 256) {
4054 ge_cntl &= C_03096C_VERT_GRP_SIZE;
4055
4056 if (ngg_state->hw_max_esverts > 5) {
4057 ge_cntl |= S_03096C_VERT_GRP_SIZE(ngg_state->hw_max_esverts - 5);
4058 }
4059 }
4060
4061 radeon_set_uconfig_reg(ctx_cs, R_03096C_GE_CNTL, ge_cntl);
4062 }
4063
4064 static void
4065 radv_pipeline_generate_hw_hs(struct radeon_cmdbuf *cs,
4066 struct radv_pipeline *pipeline,
4067 struct radv_shader_variant *shader,
4068 const struct radv_tessellation_state *tess)
4069 {
4070 uint64_t va = radv_buffer_get_va(shader->bo) + shader->bo_offset;
4071
4072 if (pipeline->device->physical_device->rad_info.chip_class >= GFX9) {
4073 unsigned hs_rsrc2 = shader->config.rsrc2;
4074
4075 if (pipeline->device->physical_device->rad_info.chip_class >= GFX10) {
4076 hs_rsrc2 |= S_00B42C_LDS_SIZE_GFX10(tess->lds_size);
4077 } else {
4078 hs_rsrc2 |= S_00B42C_LDS_SIZE_GFX9(tess->lds_size);
4079 }
4080
4081 if (pipeline->device->physical_device->rad_info.chip_class >= GFX10) {
4082 radeon_set_sh_reg_seq(cs, R_00B520_SPI_SHADER_PGM_LO_LS, 2);
4083 radeon_emit(cs, va >> 8);
4084 radeon_emit(cs, S_00B524_MEM_BASE(va >> 40));
4085 } else {
4086 radeon_set_sh_reg_seq(cs, R_00B410_SPI_SHADER_PGM_LO_LS, 2);
4087 radeon_emit(cs, va >> 8);
4088 radeon_emit(cs, S_00B414_MEM_BASE(va >> 40));
4089 }
4090
4091 radeon_set_sh_reg_seq(cs, R_00B428_SPI_SHADER_PGM_RSRC1_HS, 2);
4092 radeon_emit(cs, shader->config.rsrc1);
4093 radeon_emit(cs, hs_rsrc2);
4094 } else {
4095 radeon_set_sh_reg_seq(cs, R_00B420_SPI_SHADER_PGM_LO_HS, 4);
4096 radeon_emit(cs, va >> 8);
4097 radeon_emit(cs, S_00B424_MEM_BASE(va >> 40));
4098 radeon_emit(cs, shader->config.rsrc1);
4099 radeon_emit(cs, shader->config.rsrc2);
4100 }
4101 }
4102
4103 static void
4104 radv_pipeline_generate_vertex_shader(struct radeon_cmdbuf *ctx_cs,
4105 struct radeon_cmdbuf *cs,
4106 struct radv_pipeline *pipeline,
4107 const struct radv_tessellation_state *tess)
4108 {
4109 struct radv_shader_variant *vs;
4110
4111 /* Skip shaders merged into HS/GS */
4112 vs = pipeline->shaders[MESA_SHADER_VERTEX];
4113 if (!vs)
4114 return;
4115
4116 if (vs->info.vs.as_ls)
4117 radv_pipeline_generate_hw_ls(cs, pipeline, vs, tess);
4118 else if (vs->info.vs.as_es)
4119 radv_pipeline_generate_hw_es(cs, pipeline, vs);
4120 else if (vs->info.is_ngg)
4121 radv_pipeline_generate_hw_ngg(ctx_cs, cs, pipeline, vs);
4122 else
4123 radv_pipeline_generate_hw_vs(ctx_cs, cs, pipeline, vs);
4124 }
4125
4126 static void
4127 radv_pipeline_generate_tess_shaders(struct radeon_cmdbuf *ctx_cs,
4128 struct radeon_cmdbuf *cs,
4129 struct radv_pipeline *pipeline,
4130 const struct radv_tessellation_state *tess)
4131 {
4132 if (!radv_pipeline_has_tess(pipeline))
4133 return;
4134
4135 struct radv_shader_variant *tes, *tcs;
4136
4137 tcs = pipeline->shaders[MESA_SHADER_TESS_CTRL];
4138 tes = pipeline->shaders[MESA_SHADER_TESS_EVAL];
4139
4140 if (tes) {
4141 if (tes->info.is_ngg) {
4142 radv_pipeline_generate_hw_ngg(ctx_cs, cs, pipeline, tes);
4143 } else if (tes->info.tes.as_es)
4144 radv_pipeline_generate_hw_es(cs, pipeline, tes);
4145 else
4146 radv_pipeline_generate_hw_vs(ctx_cs, cs, pipeline, tes);
4147 }
4148
4149 radv_pipeline_generate_hw_hs(cs, pipeline, tcs, tess);
4150
4151 radeon_set_context_reg(ctx_cs, R_028B6C_VGT_TF_PARAM,
4152 tess->tf_param);
4153
4154 if (pipeline->device->physical_device->rad_info.chip_class >= GFX7)
4155 radeon_set_context_reg_idx(ctx_cs, R_028B58_VGT_LS_HS_CONFIG, 2,
4156 tess->ls_hs_config);
4157 else
4158 radeon_set_context_reg(ctx_cs, R_028B58_VGT_LS_HS_CONFIG,
4159 tess->ls_hs_config);
4160
4161 if (pipeline->device->physical_device->rad_info.chip_class >= GFX10 &&
4162 !radv_pipeline_has_gs(pipeline) && !radv_pipeline_has_ngg(pipeline)) {
4163 radeon_set_context_reg(ctx_cs, R_028A44_VGT_GS_ONCHIP_CNTL,
4164 S_028A44_ES_VERTS_PER_SUBGRP(250) |
4165 S_028A44_GS_PRIMS_PER_SUBGRP(126) |
4166 S_028A44_GS_INST_PRIMS_IN_SUBGRP(126));
4167 }
4168 }
4169
4170 static void
4171 radv_pipeline_generate_hw_gs(struct radeon_cmdbuf *ctx_cs,
4172 struct radeon_cmdbuf *cs,
4173 struct radv_pipeline *pipeline,
4174 struct radv_shader_variant *gs)
4175 {
4176 const struct gfx9_gs_info *gs_state = &gs->info.gs_ring_info;
4177 unsigned gs_max_out_vertices;
4178 uint8_t *num_components;
4179 uint8_t max_stream;
4180 unsigned offset;
4181 uint64_t va;
4182
4183 gs_max_out_vertices = gs->info.gs.vertices_out;
4184 max_stream = gs->info.gs.max_stream;
4185 num_components = gs->info.gs.num_stream_output_components;
4186
4187 offset = num_components[0] * gs_max_out_vertices;
4188
4189 radeon_set_context_reg_seq(ctx_cs, R_028A60_VGT_GSVS_RING_OFFSET_1, 3);
4190 radeon_emit(ctx_cs, offset);
4191 if (max_stream >= 1)
4192 offset += num_components[1] * gs_max_out_vertices;
4193 radeon_emit(ctx_cs, offset);
4194 if (max_stream >= 2)
4195 offset += num_components[2] * gs_max_out_vertices;
4196 radeon_emit(ctx_cs, offset);
4197 if (max_stream >= 3)
4198 offset += num_components[3] * gs_max_out_vertices;
4199 radeon_set_context_reg(ctx_cs, R_028AB0_VGT_GSVS_RING_ITEMSIZE, offset);
4200
4201 radeon_set_context_reg_seq(ctx_cs, R_028B5C_VGT_GS_VERT_ITEMSIZE, 4);
4202 radeon_emit(ctx_cs, num_components[0]);
4203 radeon_emit(ctx_cs, (max_stream >= 1) ? num_components[1] : 0);
4204 radeon_emit(ctx_cs, (max_stream >= 2) ? num_components[2] : 0);
4205 radeon_emit(ctx_cs, (max_stream >= 3) ? num_components[3] : 0);
4206
4207 uint32_t gs_num_invocations = gs->info.gs.invocations;
4208 radeon_set_context_reg(ctx_cs, R_028B90_VGT_GS_INSTANCE_CNT,
4209 S_028B90_CNT(MIN2(gs_num_invocations, 127)) |
4210 S_028B90_ENABLE(gs_num_invocations > 0));
4211
4212 radeon_set_context_reg(ctx_cs, R_028AAC_VGT_ESGS_RING_ITEMSIZE,
4213 gs_state->vgt_esgs_ring_itemsize);
4214
4215 va = radv_buffer_get_va(gs->bo) + gs->bo_offset;
4216
4217 if (pipeline->device->physical_device->rad_info.chip_class >= GFX9) {
4218 if (pipeline->device->physical_device->rad_info.chip_class >= GFX10) {
4219 radeon_set_sh_reg_seq(cs, R_00B320_SPI_SHADER_PGM_LO_ES, 2);
4220 radeon_emit(cs, va >> 8);
4221 radeon_emit(cs, S_00B324_MEM_BASE(va >> 40));
4222 } else {
4223 radeon_set_sh_reg_seq(cs, R_00B210_SPI_SHADER_PGM_LO_ES, 2);
4224 radeon_emit(cs, va >> 8);
4225 radeon_emit(cs, S_00B214_MEM_BASE(va >> 40));
4226 }
4227
4228 radeon_set_sh_reg_seq(cs, R_00B228_SPI_SHADER_PGM_RSRC1_GS, 2);
4229 radeon_emit(cs, gs->config.rsrc1);
4230 radeon_emit(cs, gs->config.rsrc2 | S_00B22C_LDS_SIZE(gs_state->lds_size));
4231
4232 radeon_set_context_reg(ctx_cs, R_028A44_VGT_GS_ONCHIP_CNTL, gs_state->vgt_gs_onchip_cntl);
4233 radeon_set_context_reg(ctx_cs, R_028A94_VGT_GS_MAX_PRIMS_PER_SUBGROUP, gs_state->vgt_gs_max_prims_per_subgroup);
4234 } else {
4235 radeon_set_sh_reg_seq(cs, R_00B220_SPI_SHADER_PGM_LO_GS, 4);
4236 radeon_emit(cs, va >> 8);
4237 radeon_emit(cs, S_00B224_MEM_BASE(va >> 40));
4238 radeon_emit(cs, gs->config.rsrc1);
4239 radeon_emit(cs, gs->config.rsrc2);
4240 }
4241
4242 radv_pipeline_generate_hw_vs(ctx_cs, cs, pipeline, pipeline->gs_copy_shader);
4243 }
4244
4245 static void
4246 radv_pipeline_generate_geometry_shader(struct radeon_cmdbuf *ctx_cs,
4247 struct radeon_cmdbuf *cs,
4248 struct radv_pipeline *pipeline)
4249 {
4250 struct radv_shader_variant *gs;
4251
4252 gs = pipeline->shaders[MESA_SHADER_GEOMETRY];
4253 if (!gs)
4254 return;
4255
4256 if (gs->info.is_ngg)
4257 radv_pipeline_generate_hw_ngg(ctx_cs, cs, pipeline, gs);
4258 else
4259 radv_pipeline_generate_hw_gs(ctx_cs, cs, pipeline, gs);
4260
4261 radeon_set_context_reg(ctx_cs, R_028B38_VGT_GS_MAX_VERT_OUT,
4262 gs->info.gs.vertices_out);
4263 }
4264
4265 static uint32_t offset_to_ps_input(uint32_t offset, bool flat_shade,
4266 bool explicit, bool float16)
4267 {
4268 uint32_t ps_input_cntl;
4269 if (offset <= AC_EXP_PARAM_OFFSET_31) {
4270 ps_input_cntl = S_028644_OFFSET(offset);
4271 if (flat_shade || explicit)
4272 ps_input_cntl |= S_028644_FLAT_SHADE(1);
4273 if (explicit) {
4274 /* Force parameter cache to be read in passthrough
4275 * mode.
4276 */
4277 ps_input_cntl |= S_028644_OFFSET(1 << 5);
4278 }
4279 if (float16) {
4280 ps_input_cntl |= S_028644_FP16_INTERP_MODE(1) |
4281 S_028644_ATTR0_VALID(1);
4282 }
4283 } else {
4284 /* The input is a DEFAULT_VAL constant. */
4285 assert(offset >= AC_EXP_PARAM_DEFAULT_VAL_0000 &&
4286 offset <= AC_EXP_PARAM_DEFAULT_VAL_1111);
4287 offset -= AC_EXP_PARAM_DEFAULT_VAL_0000;
4288 ps_input_cntl = S_028644_OFFSET(0x20) |
4289 S_028644_DEFAULT_VAL(offset);
4290 }
4291 return ps_input_cntl;
4292 }
4293
4294 static void
4295 radv_pipeline_generate_ps_inputs(struct radeon_cmdbuf *ctx_cs,
4296 struct radv_pipeline *pipeline)
4297 {
4298 struct radv_shader_variant *ps = pipeline->shaders[MESA_SHADER_FRAGMENT];
4299 const struct radv_vs_output_info *outinfo = get_vs_output_info(pipeline);
4300 uint32_t ps_input_cntl[32];
4301
4302 unsigned ps_offset = 0;
4303
4304 if (ps->info.ps.prim_id_input) {
4305 unsigned vs_offset = outinfo->vs_output_param_offset[VARYING_SLOT_PRIMITIVE_ID];
4306 if (vs_offset != AC_EXP_PARAM_UNDEFINED) {
4307 ps_input_cntl[ps_offset] = offset_to_ps_input(vs_offset, true, false, false);
4308 ++ps_offset;
4309 }
4310 }
4311
4312 if (ps->info.ps.layer_input ||
4313 ps->info.needs_multiview_view_index) {
4314 unsigned vs_offset = outinfo->vs_output_param_offset[VARYING_SLOT_LAYER];
4315 if (vs_offset != AC_EXP_PARAM_UNDEFINED)
4316 ps_input_cntl[ps_offset] = offset_to_ps_input(vs_offset, true, false, false);
4317 else
4318 ps_input_cntl[ps_offset] = offset_to_ps_input(AC_EXP_PARAM_DEFAULT_VAL_0000, true, false, false);
4319 ++ps_offset;
4320 }
4321
4322 if (ps->info.ps.viewport_index_input) {
4323 unsigned vs_offset = outinfo->vs_output_param_offset[VARYING_SLOT_VIEWPORT];
4324 if (vs_offset != AC_EXP_PARAM_UNDEFINED)
4325 ps_input_cntl[ps_offset] = offset_to_ps_input(vs_offset, true, false, false);
4326 else
4327 ps_input_cntl[ps_offset] = offset_to_ps_input(AC_EXP_PARAM_DEFAULT_VAL_0000, true, false, false);
4328 ++ps_offset;
4329 }
4330
4331 if (ps->info.ps.has_pcoord) {
4332 unsigned val;
4333 val = S_028644_PT_SPRITE_TEX(1) | S_028644_OFFSET(0x20);
4334 ps_input_cntl[ps_offset] = val;
4335 ps_offset++;
4336 }
4337
4338 if (ps->info.ps.num_input_clips_culls) {
4339 unsigned vs_offset;
4340
4341 vs_offset = outinfo->vs_output_param_offset[VARYING_SLOT_CLIP_DIST0];
4342 if (vs_offset != AC_EXP_PARAM_UNDEFINED) {
4343 ps_input_cntl[ps_offset] = offset_to_ps_input(vs_offset, false, false, false);
4344 ++ps_offset;
4345 }
4346
4347 vs_offset = outinfo->vs_output_param_offset[VARYING_SLOT_CLIP_DIST1];
4348 if (vs_offset != AC_EXP_PARAM_UNDEFINED &&
4349 ps->info.ps.num_input_clips_culls > 4) {
4350 ps_input_cntl[ps_offset] = offset_to_ps_input(vs_offset, false, false, false);
4351 ++ps_offset;
4352 }
4353 }
4354
4355 for (unsigned i = 0; i < 32 && (1u << i) <= ps->info.ps.input_mask; ++i) {
4356 unsigned vs_offset;
4357 bool flat_shade;
4358 bool explicit;
4359 bool float16;
4360 if (!(ps->info.ps.input_mask & (1u << i)))
4361 continue;
4362
4363 vs_offset = outinfo->vs_output_param_offset[VARYING_SLOT_VAR0 + i];
4364 if (vs_offset == AC_EXP_PARAM_UNDEFINED) {
4365 ps_input_cntl[ps_offset] = S_028644_OFFSET(0x20);
4366 ++ps_offset;
4367 continue;
4368 }
4369
4370 flat_shade = !!(ps->info.ps.flat_shaded_mask & (1u << ps_offset));
4371 explicit = !!(ps->info.ps.explicit_shaded_mask & (1u << ps_offset));
4372 float16 = !!(ps->info.ps.float16_shaded_mask & (1u << ps_offset));
4373
4374 ps_input_cntl[ps_offset] = offset_to_ps_input(vs_offset, flat_shade, explicit, float16);
4375 ++ps_offset;
4376 }
4377
4378 if (ps_offset) {
4379 radeon_set_context_reg_seq(ctx_cs, R_028644_SPI_PS_INPUT_CNTL_0, ps_offset);
4380 for (unsigned i = 0; i < ps_offset; i++) {
4381 radeon_emit(ctx_cs, ps_input_cntl[i]);
4382 }
4383 }
4384 }
4385
4386 static uint32_t
4387 radv_compute_db_shader_control(const struct radv_device *device,
4388 const struct radv_pipeline *pipeline,
4389 const struct radv_shader_variant *ps)
4390 {
4391 unsigned conservative_z_export = V_02880C_EXPORT_ANY_Z;
4392 unsigned z_order;
4393 if (ps->info.ps.early_fragment_test || !ps->info.ps.writes_memory)
4394 z_order = V_02880C_EARLY_Z_THEN_LATE_Z;
4395 else
4396 z_order = V_02880C_LATE_Z;
4397
4398 if (ps->info.ps.depth_layout == FRAG_DEPTH_LAYOUT_GREATER)
4399 conservative_z_export = V_02880C_EXPORT_GREATER_THAN_Z;
4400 else if (ps->info.ps.depth_layout == FRAG_DEPTH_LAYOUT_LESS)
4401 conservative_z_export = V_02880C_EXPORT_LESS_THAN_Z;
4402
4403 bool disable_rbplus = device->physical_device->rad_info.has_rbplus &&
4404 !device->physical_device->rad_info.rbplus_allowed;
4405
4406 /* It shouldn't be needed to export gl_SampleMask when MSAA is disabled
4407 * but this appears to break Project Cars (DXVK). See
4408 * https://bugs.freedesktop.org/show_bug.cgi?id=109401
4409 */
4410 bool mask_export_enable = ps->info.ps.writes_sample_mask;
4411
4412 return S_02880C_Z_EXPORT_ENABLE(ps->info.ps.writes_z) |
4413 S_02880C_STENCIL_TEST_VAL_EXPORT_ENABLE(ps->info.ps.writes_stencil) |
4414 S_02880C_KILL_ENABLE(!!ps->info.ps.can_discard) |
4415 S_02880C_MASK_EXPORT_ENABLE(mask_export_enable) |
4416 S_02880C_CONSERVATIVE_Z_EXPORT(conservative_z_export) |
4417 S_02880C_Z_ORDER(z_order) |
4418 S_02880C_DEPTH_BEFORE_SHADER(ps->info.ps.early_fragment_test) |
4419 S_02880C_PRE_SHADER_DEPTH_COVERAGE_ENABLE(ps->info.ps.post_depth_coverage) |
4420 S_02880C_EXEC_ON_HIER_FAIL(ps->info.ps.writes_memory) |
4421 S_02880C_EXEC_ON_NOOP(ps->info.ps.writes_memory) |
4422 S_02880C_DUAL_QUAD_DISABLE(disable_rbplus);
4423 }
4424
4425 static void
4426 radv_pipeline_generate_fragment_shader(struct radeon_cmdbuf *ctx_cs,
4427 struct radeon_cmdbuf *cs,
4428 struct radv_pipeline *pipeline)
4429 {
4430 struct radv_shader_variant *ps;
4431 uint64_t va;
4432 assert (pipeline->shaders[MESA_SHADER_FRAGMENT]);
4433
4434 ps = pipeline->shaders[MESA_SHADER_FRAGMENT];
4435 va = radv_buffer_get_va(ps->bo) + ps->bo_offset;
4436
4437 radeon_set_sh_reg_seq(cs, R_00B020_SPI_SHADER_PGM_LO_PS, 4);
4438 radeon_emit(cs, va >> 8);
4439 radeon_emit(cs, S_00B024_MEM_BASE(va >> 40));
4440 radeon_emit(cs, ps->config.rsrc1);
4441 radeon_emit(cs, ps->config.rsrc2);
4442
4443 radeon_set_context_reg(ctx_cs, R_02880C_DB_SHADER_CONTROL,
4444 radv_compute_db_shader_control(pipeline->device,
4445 pipeline, ps));
4446
4447 radeon_set_context_reg(ctx_cs, R_0286CC_SPI_PS_INPUT_ENA,
4448 ps->config.spi_ps_input_ena);
4449
4450 radeon_set_context_reg(ctx_cs, R_0286D0_SPI_PS_INPUT_ADDR,
4451 ps->config.spi_ps_input_addr);
4452
4453 radeon_set_context_reg(ctx_cs, R_0286D8_SPI_PS_IN_CONTROL,
4454 S_0286D8_NUM_INTERP(ps->info.ps.num_interp) |
4455 S_0286D8_PS_W32_EN(ps->info.wave_size == 32));
4456
4457 radeon_set_context_reg(ctx_cs, R_0286E0_SPI_BARYC_CNTL, pipeline->graphics.spi_baryc_cntl);
4458
4459 radeon_set_context_reg(ctx_cs, R_028710_SPI_SHADER_Z_FORMAT,
4460 ac_get_spi_shader_z_format(ps->info.ps.writes_z,
4461 ps->info.ps.writes_stencil,
4462 ps->info.ps.writes_sample_mask));
4463
4464 if (pipeline->device->dfsm_allowed) {
4465 /* optimise this? */
4466 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
4467 radeon_emit(cs, EVENT_TYPE(V_028A90_FLUSH_DFSM) | EVENT_INDEX(0));
4468 }
4469 }
4470
4471 static void
4472 radv_pipeline_generate_vgt_vertex_reuse(struct radeon_cmdbuf *ctx_cs,
4473 struct radv_pipeline *pipeline)
4474 {
4475 if (pipeline->device->physical_device->rad_info.family < CHIP_POLARIS10 ||
4476 pipeline->device->physical_device->rad_info.chip_class >= GFX10)
4477 return;
4478
4479 unsigned vtx_reuse_depth = 30;
4480 if (radv_pipeline_has_tess(pipeline) &&
4481 radv_get_shader(pipeline, MESA_SHADER_TESS_EVAL)->info.tes.spacing == TESS_SPACING_FRACTIONAL_ODD) {
4482 vtx_reuse_depth = 14;
4483 }
4484 radeon_set_context_reg(ctx_cs, R_028C58_VGT_VERTEX_REUSE_BLOCK_CNTL,
4485 S_028C58_VTX_REUSE_DEPTH(vtx_reuse_depth));
4486 }
4487
4488 static void
4489 radv_pipeline_generate_vgt_shader_config(struct radeon_cmdbuf *ctx_cs,
4490 const struct radv_pipeline *pipeline)
4491 {
4492 uint32_t stages = 0;
4493 if (radv_pipeline_has_tess(pipeline)) {
4494 stages |= S_028B54_LS_EN(V_028B54_LS_STAGE_ON) |
4495 S_028B54_HS_EN(1) | S_028B54_DYNAMIC_HS(1);
4496
4497 if (radv_pipeline_has_gs(pipeline))
4498 stages |= S_028B54_ES_EN(V_028B54_ES_STAGE_DS) |
4499 S_028B54_GS_EN(1);
4500 else if (radv_pipeline_has_ngg(pipeline))
4501 stages |= S_028B54_ES_EN(V_028B54_ES_STAGE_DS);
4502 else
4503 stages |= S_028B54_VS_EN(V_028B54_VS_STAGE_DS);
4504 } else if (radv_pipeline_has_gs(pipeline)) {
4505 stages |= S_028B54_ES_EN(V_028B54_ES_STAGE_REAL) |
4506 S_028B54_GS_EN(1);
4507 } else if (radv_pipeline_has_ngg(pipeline)) {
4508 stages |= S_028B54_ES_EN(V_028B54_ES_STAGE_REAL);
4509 }
4510
4511 if (radv_pipeline_has_ngg(pipeline)) {
4512 stages |= S_028B54_PRIMGEN_EN(1);
4513 if (pipeline->streamout_shader)
4514 stages |= S_028B54_NGG_WAVE_ID_EN(1);
4515 if (radv_pipeline_has_ngg_passthrough(pipeline))
4516 stages |= S_028B54_PRIMGEN_PASSTHRU_EN(1);
4517 } else if (radv_pipeline_has_gs(pipeline)) {
4518 stages |= S_028B54_VS_EN(V_028B54_VS_STAGE_COPY_SHADER);
4519 }
4520
4521 if (pipeline->device->physical_device->rad_info.chip_class >= GFX9)
4522 stages |= S_028B54_MAX_PRIMGRP_IN_WAVE(2);
4523
4524 if (pipeline->device->physical_device->rad_info.chip_class >= GFX10) {
4525 uint8_t hs_size = 64, gs_size = 64, vs_size = 64;
4526
4527 if (radv_pipeline_has_tess(pipeline))
4528 hs_size = pipeline->shaders[MESA_SHADER_TESS_CTRL]->info.wave_size;
4529
4530 if (pipeline->shaders[MESA_SHADER_GEOMETRY]) {
4531 vs_size = gs_size = pipeline->shaders[MESA_SHADER_GEOMETRY]->info.wave_size;
4532 if (pipeline->gs_copy_shader)
4533 vs_size = pipeline->gs_copy_shader->info.wave_size;
4534 } else if (pipeline->shaders[MESA_SHADER_TESS_EVAL])
4535 vs_size = pipeline->shaders[MESA_SHADER_TESS_EVAL]->info.wave_size;
4536 else if (pipeline->shaders[MESA_SHADER_VERTEX])
4537 vs_size = pipeline->shaders[MESA_SHADER_VERTEX]->info.wave_size;
4538
4539 if (radv_pipeline_has_ngg(pipeline))
4540 gs_size = vs_size;
4541
4542 /* legacy GS only supports Wave64 */
4543 stages |= S_028B54_HS_W32_EN(hs_size == 32 ? 1 : 0) |
4544 S_028B54_GS_W32_EN(gs_size == 32 ? 1 : 0) |
4545 S_028B54_VS_W32_EN(vs_size == 32 ? 1 : 0);
4546 }
4547
4548 radeon_set_context_reg(ctx_cs, R_028B54_VGT_SHADER_STAGES_EN, stages);
4549 }
4550
4551 static void
4552 radv_pipeline_generate_cliprect_rule(struct radeon_cmdbuf *ctx_cs,
4553 const VkGraphicsPipelineCreateInfo *pCreateInfo)
4554 {
4555 const VkPipelineDiscardRectangleStateCreateInfoEXT *discard_rectangle_info =
4556 vk_find_struct_const(pCreateInfo->pNext, PIPELINE_DISCARD_RECTANGLE_STATE_CREATE_INFO_EXT);
4557 uint32_t cliprect_rule = 0;
4558
4559 if (!discard_rectangle_info) {
4560 cliprect_rule = 0xffff;
4561 } else {
4562 for (unsigned i = 0; i < (1u << MAX_DISCARD_RECTANGLES); ++i) {
4563 /* Interpret i as a bitmask, and then set the bit in
4564 * the mask if that combination of rectangles in which
4565 * the pixel is contained should pass the cliprect
4566 * test.
4567 */
4568 unsigned relevant_subset = i & ((1u << discard_rectangle_info->discardRectangleCount) - 1);
4569
4570 if (discard_rectangle_info->discardRectangleMode == VK_DISCARD_RECTANGLE_MODE_INCLUSIVE_EXT &&
4571 !relevant_subset)
4572 continue;
4573
4574 if (discard_rectangle_info->discardRectangleMode == VK_DISCARD_RECTANGLE_MODE_EXCLUSIVE_EXT &&
4575 relevant_subset)
4576 continue;
4577
4578 cliprect_rule |= 1u << i;
4579 }
4580 }
4581
4582 radeon_set_context_reg(ctx_cs, R_02820C_PA_SC_CLIPRECT_RULE, cliprect_rule);
4583 }
4584
4585 static void
4586 gfx10_pipeline_generate_ge_cntl(struct radeon_cmdbuf *ctx_cs,
4587 struct radv_pipeline *pipeline)
4588 {
4589 bool break_wave_at_eoi = false;
4590 unsigned primgroup_size;
4591 unsigned vertgroup_size = 256; /* 256 = disable vertex grouping */
4592
4593 if (radv_pipeline_has_tess(pipeline)) {
4594 primgroup_size = pipeline->shaders[MESA_SHADER_TESS_CTRL]->info.tcs.num_patches;
4595 } else if (radv_pipeline_has_gs(pipeline)) {
4596 const struct gfx9_gs_info *gs_state =
4597 &pipeline->shaders[MESA_SHADER_GEOMETRY]->info.gs_ring_info;
4598 unsigned vgt_gs_onchip_cntl = gs_state->vgt_gs_onchip_cntl;
4599 primgroup_size = G_028A44_GS_PRIMS_PER_SUBGRP(vgt_gs_onchip_cntl);
4600 } else {
4601 primgroup_size = 128; /* recommended without a GS and tess */
4602 }
4603
4604 if (radv_pipeline_has_tess(pipeline)) {
4605 if (pipeline->shaders[MESA_SHADER_TESS_CTRL]->info.uses_prim_id ||
4606 radv_get_shader(pipeline, MESA_SHADER_TESS_EVAL)->info.uses_prim_id)
4607 break_wave_at_eoi = true;
4608 }
4609
4610 radeon_set_uconfig_reg(ctx_cs, R_03096C_GE_CNTL,
4611 S_03096C_PRIM_GRP_SIZE(primgroup_size) |
4612 S_03096C_VERT_GRP_SIZE(vertgroup_size) |
4613 S_03096C_PACKET_TO_ONE_PA(0) /* line stipple */ |
4614 S_03096C_BREAK_WAVE_AT_EOI(break_wave_at_eoi));
4615 }
4616
4617 static void
4618 radv_pipeline_generate_pm4(struct radv_pipeline *pipeline,
4619 const VkGraphicsPipelineCreateInfo *pCreateInfo,
4620 const struct radv_graphics_pipeline_create_info *extra,
4621 const struct radv_blend_state *blend,
4622 const struct radv_tessellation_state *tess,
4623 unsigned gs_out)
4624 {
4625 struct radeon_cmdbuf *ctx_cs = &pipeline->ctx_cs;
4626 struct radeon_cmdbuf *cs = &pipeline->cs;
4627
4628 cs->max_dw = 64;
4629 ctx_cs->max_dw = 256;
4630 cs->buf = malloc(4 * (cs->max_dw + ctx_cs->max_dw));
4631 ctx_cs->buf = cs->buf + cs->max_dw;
4632
4633 radv_pipeline_generate_depth_stencil_state(ctx_cs, pipeline, pCreateInfo, extra);
4634 radv_pipeline_generate_blend_state(ctx_cs, pipeline, blend);
4635 radv_pipeline_generate_raster_state(ctx_cs, pipeline, pCreateInfo);
4636 radv_pipeline_generate_multisample_state(ctx_cs, pipeline);
4637 radv_pipeline_generate_vgt_gs_mode(ctx_cs, pipeline);
4638 radv_pipeline_generate_vertex_shader(ctx_cs, cs, pipeline, tess);
4639 radv_pipeline_generate_tess_shaders(ctx_cs, cs, pipeline, tess);
4640 radv_pipeline_generate_geometry_shader(ctx_cs, cs, pipeline);
4641 radv_pipeline_generate_fragment_shader(ctx_cs, cs, pipeline);
4642 radv_pipeline_generate_ps_inputs(ctx_cs, pipeline);
4643 radv_pipeline_generate_vgt_vertex_reuse(ctx_cs, pipeline);
4644 radv_pipeline_generate_binning_state(ctx_cs, pipeline, pCreateInfo, blend);
4645 radv_pipeline_generate_vgt_shader_config(ctx_cs, pipeline);
4646 radv_pipeline_generate_cliprect_rule(ctx_cs, pCreateInfo);
4647
4648 if (pipeline->device->physical_device->rad_info.chip_class >= GFX10 && !radv_pipeline_has_ngg(pipeline))
4649 gfx10_pipeline_generate_ge_cntl(ctx_cs, pipeline);
4650
4651 radeon_set_context_reg(ctx_cs, R_028A6C_VGT_GS_OUT_PRIM_TYPE, gs_out);
4652
4653 pipeline->ctx_cs_hash = _mesa_hash_data(ctx_cs->buf, ctx_cs->cdw * 4);
4654
4655 assert(ctx_cs->cdw <= ctx_cs->max_dw);
4656 assert(cs->cdw <= cs->max_dw);
4657 }
4658
4659 static struct radv_ia_multi_vgt_param_helpers
4660 radv_compute_ia_multi_vgt_param_helpers(struct radv_pipeline *pipeline)
4661 {
4662 struct radv_ia_multi_vgt_param_helpers ia_multi_vgt_param = {0};
4663 const struct radv_device *device = pipeline->device;
4664
4665 if (radv_pipeline_has_tess(pipeline))
4666 ia_multi_vgt_param.primgroup_size = pipeline->shaders[MESA_SHADER_TESS_CTRL]->info.tcs.num_patches;
4667 else if (radv_pipeline_has_gs(pipeline))
4668 ia_multi_vgt_param.primgroup_size = 64;
4669 else
4670 ia_multi_vgt_param.primgroup_size = 128; /* recommended without a GS */
4671
4672 /* GS requirement. */
4673 ia_multi_vgt_param.partial_es_wave = false;
4674 if (radv_pipeline_has_gs(pipeline) && device->physical_device->rad_info.chip_class <= GFX8)
4675 if (SI_GS_PER_ES / ia_multi_vgt_param.primgroup_size >= pipeline->device->gs_table_depth - 3)
4676 ia_multi_vgt_param.partial_es_wave = true;
4677
4678 ia_multi_vgt_param.ia_switch_on_eoi = false;
4679 if (pipeline->shaders[MESA_SHADER_FRAGMENT]->info.ps.prim_id_input)
4680 ia_multi_vgt_param.ia_switch_on_eoi = true;
4681 if (radv_pipeline_has_gs(pipeline) &&
4682 pipeline->shaders[MESA_SHADER_GEOMETRY]->info.uses_prim_id)
4683 ia_multi_vgt_param.ia_switch_on_eoi = true;
4684 if (radv_pipeline_has_tess(pipeline)) {
4685 /* SWITCH_ON_EOI must be set if PrimID is used. */
4686 if (pipeline->shaders[MESA_SHADER_TESS_CTRL]->info.uses_prim_id ||
4687 radv_get_shader(pipeline, MESA_SHADER_TESS_EVAL)->info.uses_prim_id)
4688 ia_multi_vgt_param.ia_switch_on_eoi = true;
4689 }
4690
4691 ia_multi_vgt_param.partial_vs_wave = false;
4692 if (radv_pipeline_has_tess(pipeline)) {
4693 /* Bug with tessellation and GS on Bonaire and older 2 SE chips. */
4694 if ((device->physical_device->rad_info.family == CHIP_TAHITI ||
4695 device->physical_device->rad_info.family == CHIP_PITCAIRN ||
4696 device->physical_device->rad_info.family == CHIP_BONAIRE) &&
4697 radv_pipeline_has_gs(pipeline))
4698 ia_multi_vgt_param.partial_vs_wave = true;
4699 /* Needed for 028B6C_DISTRIBUTION_MODE != 0 */
4700 if (device->physical_device->rad_info.has_distributed_tess) {
4701 if (radv_pipeline_has_gs(pipeline)) {
4702 if (device->physical_device->rad_info.chip_class <= GFX8)
4703 ia_multi_vgt_param.partial_es_wave = true;
4704 } else {
4705 ia_multi_vgt_param.partial_vs_wave = true;
4706 }
4707 }
4708 }
4709
4710 if (radv_pipeline_has_gs(pipeline)) {
4711 /* On these chips there is the possibility of a hang if the
4712 * pipeline uses a GS and partial_vs_wave is not set.
4713 *
4714 * This mostly does not hit 4-SE chips, as those typically set
4715 * ia_switch_on_eoi and then partial_vs_wave is set for pipelines
4716 * with GS due to another workaround.
4717 *
4718 * Reproducer: https://bugs.freedesktop.org/show_bug.cgi?id=109242
4719 */
4720 if (device->physical_device->rad_info.family == CHIP_TONGA ||
4721 device->physical_device->rad_info.family == CHIP_FIJI ||
4722 device->physical_device->rad_info.family == CHIP_POLARIS10 ||
4723 device->physical_device->rad_info.family == CHIP_POLARIS11 ||
4724 device->physical_device->rad_info.family == CHIP_POLARIS12 ||
4725 device->physical_device->rad_info.family == CHIP_VEGAM) {
4726 ia_multi_vgt_param.partial_vs_wave = true;
4727 }
4728 }
4729
4730 ia_multi_vgt_param.base =
4731 S_028AA8_PRIMGROUP_SIZE(ia_multi_vgt_param.primgroup_size - 1) |
4732 /* The following field was moved to VGT_SHADER_STAGES_EN in GFX9. */
4733 S_028AA8_MAX_PRIMGRP_IN_WAVE(device->physical_device->rad_info.chip_class == GFX8 ? 2 : 0) |
4734 S_030960_EN_INST_OPT_BASIC(device->physical_device->rad_info.chip_class >= GFX9) |
4735 S_030960_EN_INST_OPT_ADV(device->physical_device->rad_info.chip_class >= GFX9);
4736
4737 return ia_multi_vgt_param;
4738 }
4739
4740
4741 static void
4742 radv_compute_vertex_input_state(struct radv_pipeline *pipeline,
4743 const VkGraphicsPipelineCreateInfo *pCreateInfo)
4744 {
4745 const VkPipelineVertexInputStateCreateInfo *vi_info =
4746 pCreateInfo->pVertexInputState;
4747
4748 for (uint32_t i = 0; i < vi_info->vertexBindingDescriptionCount; i++) {
4749 const VkVertexInputBindingDescription *desc =
4750 &vi_info->pVertexBindingDescriptions[i];
4751
4752 pipeline->binding_stride[desc->binding] = desc->stride;
4753 pipeline->num_vertex_bindings =
4754 MAX2(pipeline->num_vertex_bindings, desc->binding + 1);
4755 }
4756 }
4757
4758 static struct radv_shader_variant *
4759 radv_pipeline_get_streamout_shader(struct radv_pipeline *pipeline)
4760 {
4761 int i;
4762
4763 for (i = MESA_SHADER_GEOMETRY; i >= MESA_SHADER_VERTEX; i--) {
4764 struct radv_shader_variant *shader =
4765 radv_get_shader(pipeline, i);
4766
4767 if (shader && shader->info.so.num_outputs > 0)
4768 return shader;
4769 }
4770
4771 return NULL;
4772 }
4773
4774 static VkResult
4775 radv_pipeline_init(struct radv_pipeline *pipeline,
4776 struct radv_device *device,
4777 struct radv_pipeline_cache *cache,
4778 const VkGraphicsPipelineCreateInfo *pCreateInfo,
4779 const struct radv_graphics_pipeline_create_info *extra)
4780 {
4781 VkResult result;
4782 bool has_view_index = false;
4783
4784 RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
4785 struct radv_subpass *subpass = pass->subpasses + pCreateInfo->subpass;
4786 if (subpass->view_mask)
4787 has_view_index = true;
4788
4789 pipeline->device = device;
4790 pipeline->layout = radv_pipeline_layout_from_handle(pCreateInfo->layout);
4791 assert(pipeline->layout);
4792
4793 struct radv_blend_state blend = radv_pipeline_init_blend_state(pipeline, pCreateInfo, extra);
4794
4795 const VkPipelineCreationFeedbackCreateInfoEXT *creation_feedback =
4796 vk_find_struct_const(pCreateInfo->pNext, PIPELINE_CREATION_FEEDBACK_CREATE_INFO_EXT);
4797 radv_init_feedback(creation_feedback);
4798
4799 VkPipelineCreationFeedbackEXT *pipeline_feedback = creation_feedback ? creation_feedback->pPipelineCreationFeedback : NULL;
4800
4801 const VkPipelineShaderStageCreateInfo *pStages[MESA_SHADER_STAGES] = { 0, };
4802 VkPipelineCreationFeedbackEXT *stage_feedbacks[MESA_SHADER_STAGES] = { 0 };
4803 for (uint32_t i = 0; i < pCreateInfo->stageCount; i++) {
4804 gl_shader_stage stage = ffs(pCreateInfo->pStages[i].stage) - 1;
4805 pStages[stage] = &pCreateInfo->pStages[i];
4806 if(creation_feedback)
4807 stage_feedbacks[stage] = &creation_feedback->pPipelineStageCreationFeedbacks[i];
4808 }
4809
4810 struct radv_pipeline_key key = radv_generate_graphics_pipeline_key(pipeline, pCreateInfo, &blend, has_view_index);
4811
4812 result = radv_create_shaders(pipeline, device, cache, &key, pStages,
4813 pCreateInfo->flags, pipeline_feedback,
4814 stage_feedbacks);
4815 if (result != VK_SUCCESS)
4816 return result;
4817
4818 pipeline->graphics.spi_baryc_cntl = S_0286E0_FRONT_FACE_ALL_BITS(1);
4819 radv_pipeline_init_multisample_state(pipeline, &blend, pCreateInfo);
4820 uint32_t gs_out;
4821
4822 pipeline->graphics.can_use_guardband = radv_prim_can_use_guardband(pCreateInfo->pInputAssemblyState->topology);
4823
4824 if (radv_pipeline_has_gs(pipeline)) {
4825 gs_out = si_conv_gl_prim_to_gs_out(pipeline->shaders[MESA_SHADER_GEOMETRY]->info.gs.output_prim);
4826 pipeline->graphics.can_use_guardband = gs_out == V_028A6C_OUTPRIM_TYPE_TRISTRIP;
4827 } else if (radv_pipeline_has_tess(pipeline)) {
4828 if (pipeline->shaders[MESA_SHADER_TESS_EVAL]->info.tes.point_mode)
4829 gs_out = V_028A6C_OUTPRIM_TYPE_POINTLIST;
4830 else
4831 gs_out = si_conv_gl_prim_to_gs_out(pipeline->shaders[MESA_SHADER_TESS_EVAL]->info.tes.primitive_mode);
4832 pipeline->graphics.can_use_guardband = gs_out == V_028A6C_OUTPRIM_TYPE_TRISTRIP;
4833 } else {
4834 gs_out = si_conv_prim_to_gs_out(pCreateInfo->pInputAssemblyState->topology);
4835 }
4836 if (extra && extra->use_rectlist) {
4837 gs_out = V_028A6C_OUTPRIM_TYPE_TRISTRIP;
4838 pipeline->graphics.can_use_guardband = true;
4839 if (radv_pipeline_has_ngg(pipeline))
4840 gs_out = V_028A6C_VGT_OUT_RECT_V0;
4841 }
4842 pipeline->graphics.prim_restart_enable = !!pCreateInfo->pInputAssemblyState->primitiveRestartEnable;
4843
4844 radv_pipeline_init_dynamic_state(pipeline, pCreateInfo, extra);
4845
4846 /* Ensure that some export memory is always allocated, for two reasons:
4847 *
4848 * 1) Correctness: The hardware ignores the EXEC mask if no export
4849 * memory is allocated, so KILL and alpha test do not work correctly
4850 * without this.
4851 * 2) Performance: Every shader needs at least a NULL export, even when
4852 * it writes no color/depth output. The NULL export instruction
4853 * stalls without this setting.
4854 *
4855 * Don't add this to CB_SHADER_MASK.
4856 *
4857 * GFX10 supports pixel shaders without exports by setting both the
4858 * color and Z formats to SPI_SHADER_ZERO. The hw will skip export
4859 * instructions if any are present.
4860 */
4861 struct radv_shader_variant *ps = pipeline->shaders[MESA_SHADER_FRAGMENT];
4862 if ((pipeline->device->physical_device->rad_info.chip_class <= GFX9 ||
4863 ps->info.ps.can_discard) &&
4864 !blend.spi_shader_col_format) {
4865 if (!ps->info.ps.writes_z &&
4866 !ps->info.ps.writes_stencil &&
4867 !ps->info.ps.writes_sample_mask)
4868 blend.spi_shader_col_format = V_028714_SPI_SHADER_32_R;
4869 }
4870
4871 blend.cb_shader_mask = ps->info.ps.cb_shader_mask;
4872
4873 if (extra &&
4874 (extra->custom_blend_mode == V_028808_CB_ELIMINATE_FAST_CLEAR ||
4875 extra->custom_blend_mode == V_028808_CB_FMASK_DECOMPRESS ||
4876 extra->custom_blend_mode == V_028808_CB_DCC_DECOMPRESS ||
4877 extra->custom_blend_mode == V_028808_CB_RESOLVE)) {
4878 /* According to the CB spec states, CB_SHADER_MASK should be
4879 * set to enable writes to all four channels of MRT0.
4880 */
4881 blend.cb_shader_mask = 0xf;
4882 }
4883
4884 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
4885 if (pipeline->shaders[i]) {
4886 pipeline->need_indirect_descriptor_sets |= pipeline->shaders[i]->info.need_indirect_descriptor_sets;
4887 }
4888 }
4889
4890 if (radv_pipeline_has_gs(pipeline) && !radv_pipeline_has_ngg(pipeline)) {
4891 struct radv_shader_variant *gs =
4892 pipeline->shaders[MESA_SHADER_GEOMETRY];
4893
4894 calculate_gs_ring_sizes(pipeline, &gs->info.gs_ring_info);
4895 }
4896
4897 struct radv_tessellation_state tess = {0};
4898 if (radv_pipeline_has_tess(pipeline)) {
4899 pipeline->graphics.tess_patch_control_points =
4900 pCreateInfo->pTessellationState->patchControlPoints;
4901 tess = calculate_tess_state(pipeline, pCreateInfo);
4902 }
4903
4904 pipeline->graphics.ia_multi_vgt_param = radv_compute_ia_multi_vgt_param_helpers(pipeline);
4905
4906 radv_compute_vertex_input_state(pipeline, pCreateInfo);
4907
4908 for (uint32_t i = 0; i < MESA_SHADER_STAGES; i++)
4909 pipeline->user_data_0[i] = radv_pipeline_stage_to_user_data_0(pipeline, i, device->physical_device->rad_info.chip_class);
4910
4911 struct radv_userdata_info *loc = radv_lookup_user_sgpr(pipeline, MESA_SHADER_VERTEX,
4912 AC_UD_VS_BASE_VERTEX_START_INSTANCE);
4913 if (loc->sgpr_idx != -1) {
4914 pipeline->graphics.vtx_base_sgpr = pipeline->user_data_0[MESA_SHADER_VERTEX];
4915 pipeline->graphics.vtx_base_sgpr += loc->sgpr_idx * 4;
4916 if (radv_get_shader(pipeline, MESA_SHADER_VERTEX)->info.vs.needs_draw_id)
4917 pipeline->graphics.vtx_emit_num = 3;
4918 else
4919 pipeline->graphics.vtx_emit_num = 2;
4920 }
4921
4922 /* Find the last vertex shader stage that eventually uses streamout. */
4923 pipeline->streamout_shader = radv_pipeline_get_streamout_shader(pipeline);
4924
4925 result = radv_pipeline_scratch_init(device, pipeline);
4926 radv_pipeline_generate_pm4(pipeline, pCreateInfo, extra, &blend, &tess, gs_out);
4927
4928 return result;
4929 }
4930
4931 VkResult
4932 radv_graphics_pipeline_create(
4933 VkDevice _device,
4934 VkPipelineCache _cache,
4935 const VkGraphicsPipelineCreateInfo *pCreateInfo,
4936 const struct radv_graphics_pipeline_create_info *extra,
4937 const VkAllocationCallbacks *pAllocator,
4938 VkPipeline *pPipeline)
4939 {
4940 RADV_FROM_HANDLE(radv_device, device, _device);
4941 RADV_FROM_HANDLE(radv_pipeline_cache, cache, _cache);
4942 struct radv_pipeline *pipeline;
4943 VkResult result;
4944
4945 pipeline = vk_zalloc2(&device->vk.alloc, pAllocator, sizeof(*pipeline), 8,
4946 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
4947 if (pipeline == NULL)
4948 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
4949
4950 vk_object_base_init(&device->vk, &pipeline->base,
4951 VK_OBJECT_TYPE_PIPELINE);
4952
4953 result = radv_pipeline_init(pipeline, device, cache,
4954 pCreateInfo, extra);
4955 if (result != VK_SUCCESS) {
4956 radv_pipeline_destroy(device, pipeline, pAllocator);
4957 return result;
4958 }
4959
4960 *pPipeline = radv_pipeline_to_handle(pipeline);
4961
4962 return VK_SUCCESS;
4963 }
4964
4965 VkResult radv_CreateGraphicsPipelines(
4966 VkDevice _device,
4967 VkPipelineCache pipelineCache,
4968 uint32_t count,
4969 const VkGraphicsPipelineCreateInfo* pCreateInfos,
4970 const VkAllocationCallbacks* pAllocator,
4971 VkPipeline* pPipelines)
4972 {
4973 VkResult result = VK_SUCCESS;
4974 unsigned i = 0;
4975
4976 for (; i < count; i++) {
4977 VkResult r;
4978 r = radv_graphics_pipeline_create(_device,
4979 pipelineCache,
4980 &pCreateInfos[i],
4981 NULL, pAllocator, &pPipelines[i]);
4982 if (r != VK_SUCCESS) {
4983 result = r;
4984 pPipelines[i] = VK_NULL_HANDLE;
4985
4986 if (pCreateInfos[i].flags & VK_PIPELINE_CREATE_EARLY_RETURN_ON_FAILURE_BIT_EXT)
4987 break;
4988 }
4989 }
4990
4991 for (; i < count; ++i)
4992 pPipelines[i] = VK_NULL_HANDLE;
4993
4994 return result;
4995 }
4996
4997 static void
4998 radv_pipeline_generate_hw_cs(struct radeon_cmdbuf *cs,
4999 struct radv_pipeline *pipeline)
5000 {
5001 struct radv_shader_variant *shader = pipeline->shaders[MESA_SHADER_COMPUTE];
5002 uint64_t va = radv_buffer_get_va(shader->bo) + shader->bo_offset;
5003 struct radv_device *device = pipeline->device;
5004
5005 radeon_set_sh_reg_seq(cs, R_00B830_COMPUTE_PGM_LO, 2);
5006 radeon_emit(cs, va >> 8);
5007 radeon_emit(cs, S_00B834_DATA(va >> 40));
5008
5009 radeon_set_sh_reg_seq(cs, R_00B848_COMPUTE_PGM_RSRC1, 2);
5010 radeon_emit(cs, shader->config.rsrc1);
5011 radeon_emit(cs, shader->config.rsrc2);
5012 if (device->physical_device->rad_info.chip_class >= GFX10) {
5013 radeon_set_sh_reg(cs, R_00B8A0_COMPUTE_PGM_RSRC3, shader->config.rsrc3);
5014 }
5015 }
5016
5017 static void
5018 radv_pipeline_generate_compute_state(struct radeon_cmdbuf *cs,
5019 struct radv_pipeline *pipeline)
5020 {
5021 struct radv_shader_variant *shader = pipeline->shaders[MESA_SHADER_COMPUTE];
5022 struct radv_device *device = pipeline->device;
5023 unsigned threads_per_threadgroup;
5024 unsigned threadgroups_per_cu = 1;
5025 unsigned waves_per_threadgroup;
5026 unsigned max_waves_per_sh = 0;
5027
5028 /* Calculate best compute resource limits. */
5029 threads_per_threadgroup = shader->info.cs.block_size[0] *
5030 shader->info.cs.block_size[1] *
5031 shader->info.cs.block_size[2];
5032 waves_per_threadgroup = DIV_ROUND_UP(threads_per_threadgroup,
5033 shader->info.wave_size);
5034
5035 if (device->physical_device->rad_info.chip_class >= GFX10 &&
5036 waves_per_threadgroup == 1)
5037 threadgroups_per_cu = 2;
5038
5039 radeon_set_sh_reg(cs, R_00B854_COMPUTE_RESOURCE_LIMITS,
5040 ac_get_compute_resource_limits(&device->physical_device->rad_info,
5041 waves_per_threadgroup,
5042 max_waves_per_sh,
5043 threadgroups_per_cu));
5044
5045 radeon_set_sh_reg_seq(cs, R_00B81C_COMPUTE_NUM_THREAD_X, 3);
5046 radeon_emit(cs, S_00B81C_NUM_THREAD_FULL(shader->info.cs.block_size[0]));
5047 radeon_emit(cs, S_00B81C_NUM_THREAD_FULL(shader->info.cs.block_size[1]));
5048 radeon_emit(cs, S_00B81C_NUM_THREAD_FULL(shader->info.cs.block_size[2]));
5049 }
5050
5051 static void
5052 radv_compute_generate_pm4(struct radv_pipeline *pipeline)
5053 {
5054 struct radv_device *device = pipeline->device;
5055 struct radeon_cmdbuf *cs = &pipeline->cs;
5056
5057 cs->max_dw = device->physical_device->rad_info.chip_class >= GFX10 ? 19 : 16;
5058 cs->buf = malloc(cs->max_dw * 4);
5059
5060 radv_pipeline_generate_hw_cs(cs, pipeline);
5061 radv_pipeline_generate_compute_state(cs, pipeline);
5062
5063 assert(pipeline->cs.cdw <= pipeline->cs.max_dw);
5064 }
5065
5066 static struct radv_pipeline_key
5067 radv_generate_compute_pipeline_key(struct radv_pipeline *pipeline,
5068 const VkComputePipelineCreateInfo *pCreateInfo)
5069 {
5070 const VkPipelineShaderStageCreateInfo *stage = &pCreateInfo->stage;
5071 struct radv_pipeline_key key;
5072 memset(&key, 0, sizeof(key));
5073
5074 if (pCreateInfo->flags & VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT)
5075 key.optimisations_disabled = 1;
5076
5077 const VkPipelineShaderStageRequiredSubgroupSizeCreateInfoEXT *subgroup_size =
5078 vk_find_struct_const(stage->pNext,
5079 PIPELINE_SHADER_STAGE_REQUIRED_SUBGROUP_SIZE_CREATE_INFO_EXT);
5080
5081 if (subgroup_size) {
5082 assert(subgroup_size->requiredSubgroupSize == 32 ||
5083 subgroup_size->requiredSubgroupSize == 64);
5084 key.compute_subgroup_size = subgroup_size->requiredSubgroupSize;
5085 }
5086
5087 return key;
5088 }
5089
5090 static VkResult radv_compute_pipeline_create(
5091 VkDevice _device,
5092 VkPipelineCache _cache,
5093 const VkComputePipelineCreateInfo* pCreateInfo,
5094 const VkAllocationCallbacks* pAllocator,
5095 VkPipeline* pPipeline)
5096 {
5097 RADV_FROM_HANDLE(radv_device, device, _device);
5098 RADV_FROM_HANDLE(radv_pipeline_cache, cache, _cache);
5099 const VkPipelineShaderStageCreateInfo *pStages[MESA_SHADER_STAGES] = { 0, };
5100 VkPipelineCreationFeedbackEXT *stage_feedbacks[MESA_SHADER_STAGES] = { 0 };
5101 struct radv_pipeline *pipeline;
5102 VkResult result;
5103
5104 pipeline = vk_zalloc2(&device->vk.alloc, pAllocator, sizeof(*pipeline), 8,
5105 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
5106 if (pipeline == NULL)
5107 return vk_error(device->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
5108
5109 vk_object_base_init(&device->vk, &pipeline->base,
5110 VK_OBJECT_TYPE_PIPELINE);
5111
5112 pipeline->device = device;
5113 pipeline->layout = radv_pipeline_layout_from_handle(pCreateInfo->layout);
5114 assert(pipeline->layout);
5115
5116 const VkPipelineCreationFeedbackCreateInfoEXT *creation_feedback =
5117 vk_find_struct_const(pCreateInfo->pNext, PIPELINE_CREATION_FEEDBACK_CREATE_INFO_EXT);
5118 radv_init_feedback(creation_feedback);
5119
5120 VkPipelineCreationFeedbackEXT *pipeline_feedback = creation_feedback ? creation_feedback->pPipelineCreationFeedback : NULL;
5121 if (creation_feedback)
5122 stage_feedbacks[MESA_SHADER_COMPUTE] = &creation_feedback->pPipelineStageCreationFeedbacks[0];
5123
5124 pStages[MESA_SHADER_COMPUTE] = &pCreateInfo->stage;
5125
5126 struct radv_pipeline_key key =
5127 radv_generate_compute_pipeline_key(pipeline, pCreateInfo);
5128
5129 result = radv_create_shaders(pipeline, device, cache, &key, pStages,
5130 pCreateInfo->flags, pipeline_feedback,
5131 stage_feedbacks);
5132 if (result != VK_SUCCESS) {
5133 radv_pipeline_destroy(device, pipeline, pAllocator);
5134 return result;
5135 }
5136
5137 pipeline->user_data_0[MESA_SHADER_COMPUTE] = radv_pipeline_stage_to_user_data_0(pipeline, MESA_SHADER_COMPUTE, device->physical_device->rad_info.chip_class);
5138 pipeline->need_indirect_descriptor_sets |= pipeline->shaders[MESA_SHADER_COMPUTE]->info.need_indirect_descriptor_sets;
5139 result = radv_pipeline_scratch_init(device, pipeline);
5140 if (result != VK_SUCCESS) {
5141 radv_pipeline_destroy(device, pipeline, pAllocator);
5142 return result;
5143 }
5144
5145 radv_compute_generate_pm4(pipeline);
5146
5147 *pPipeline = radv_pipeline_to_handle(pipeline);
5148
5149 return VK_SUCCESS;
5150 }
5151
5152 VkResult radv_CreateComputePipelines(
5153 VkDevice _device,
5154 VkPipelineCache pipelineCache,
5155 uint32_t count,
5156 const VkComputePipelineCreateInfo* pCreateInfos,
5157 const VkAllocationCallbacks* pAllocator,
5158 VkPipeline* pPipelines)
5159 {
5160 VkResult result = VK_SUCCESS;
5161
5162 unsigned i = 0;
5163 for (; i < count; i++) {
5164 VkResult r;
5165 r = radv_compute_pipeline_create(_device, pipelineCache,
5166 &pCreateInfos[i],
5167 pAllocator, &pPipelines[i]);
5168 if (r != VK_SUCCESS) {
5169 result = r;
5170 pPipelines[i] = VK_NULL_HANDLE;
5171
5172 if (pCreateInfos[i].flags & VK_PIPELINE_CREATE_EARLY_RETURN_ON_FAILURE_BIT_EXT)
5173 break;
5174 }
5175 }
5176
5177 for (; i < count; ++i)
5178 pPipelines[i] = VK_NULL_HANDLE;
5179
5180 return result;
5181 }
5182
5183
5184 static uint32_t radv_get_executable_count(const struct radv_pipeline *pipeline)
5185 {
5186 uint32_t ret = 0;
5187 for (int i = 0; i < MESA_SHADER_STAGES; ++i) {
5188 if (!pipeline->shaders[i])
5189 continue;
5190
5191 if (i == MESA_SHADER_GEOMETRY &&
5192 !radv_pipeline_has_ngg(pipeline)) {
5193 ret += 2u;
5194 } else {
5195 ret += 1u;
5196 }
5197
5198 }
5199 return ret;
5200 }
5201
5202 static struct radv_shader_variant *
5203 radv_get_shader_from_executable_index(const struct radv_pipeline *pipeline, int index, gl_shader_stage *stage)
5204 {
5205 for (int i = 0; i < MESA_SHADER_STAGES; ++i) {
5206 if (!pipeline->shaders[i])
5207 continue;
5208 if (!index) {
5209 *stage = i;
5210 return pipeline->shaders[i];
5211 }
5212
5213 --index;
5214
5215 if (i == MESA_SHADER_GEOMETRY &&
5216 !radv_pipeline_has_ngg(pipeline)) {
5217 if (!index) {
5218 *stage = i;
5219 return pipeline->gs_copy_shader;
5220 }
5221 --index;
5222 }
5223 }
5224
5225 *stage = -1;
5226 return NULL;
5227 }
5228
5229 /* Basically strlcpy (which does not exist on linux) specialized for
5230 * descriptions. */
5231 static void desc_copy(char *desc, const char *src) {
5232 int len = strlen(src);
5233 assert(len < VK_MAX_DESCRIPTION_SIZE);
5234 memcpy(desc, src, len);
5235 memset(desc + len, 0, VK_MAX_DESCRIPTION_SIZE - len);
5236 }
5237
5238 VkResult radv_GetPipelineExecutablePropertiesKHR(
5239 VkDevice _device,
5240 const VkPipelineInfoKHR* pPipelineInfo,
5241 uint32_t* pExecutableCount,
5242 VkPipelineExecutablePropertiesKHR* pProperties)
5243 {
5244 RADV_FROM_HANDLE(radv_pipeline, pipeline, pPipelineInfo->pipeline);
5245 const uint32_t total_count = radv_get_executable_count(pipeline);
5246
5247 if (!pProperties) {
5248 *pExecutableCount = total_count;
5249 return VK_SUCCESS;
5250 }
5251
5252 const uint32_t count = MIN2(total_count, *pExecutableCount);
5253 for (unsigned i = 0, executable_idx = 0;
5254 i < MESA_SHADER_STAGES && executable_idx < count; ++i) {
5255 if (!pipeline->shaders[i])
5256 continue;
5257 pProperties[executable_idx].stages = mesa_to_vk_shader_stage(i);
5258 const char *name = NULL;
5259 const char *description = NULL;
5260 switch(i) {
5261 case MESA_SHADER_VERTEX:
5262 name = "Vertex Shader";
5263 description = "Vulkan Vertex Shader";
5264 break;
5265 case MESA_SHADER_TESS_CTRL:
5266 if (!pipeline->shaders[MESA_SHADER_VERTEX]) {
5267 pProperties[executable_idx].stages |= VK_SHADER_STAGE_VERTEX_BIT;
5268 name = "Vertex + Tessellation Control Shaders";
5269 description = "Combined Vulkan Vertex and Tessellation Control Shaders";
5270 } else {
5271 name = "Tessellation Control Shader";
5272 description = "Vulkan Tessellation Control Shader";
5273 }
5274 break;
5275 case MESA_SHADER_TESS_EVAL:
5276 name = "Tessellation Evaluation Shader";
5277 description = "Vulkan Tessellation Evaluation Shader";
5278 break;
5279 case MESA_SHADER_GEOMETRY:
5280 if (radv_pipeline_has_tess(pipeline) && !pipeline->shaders[MESA_SHADER_TESS_EVAL]) {
5281 pProperties[executable_idx].stages |= VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT;
5282 name = "Tessellation Evaluation + Geometry Shaders";
5283 description = "Combined Vulkan Tessellation Evaluation and Geometry Shaders";
5284 } else if (!radv_pipeline_has_tess(pipeline) && !pipeline->shaders[MESA_SHADER_VERTEX]) {
5285 pProperties[executable_idx].stages |= VK_SHADER_STAGE_VERTEX_BIT;
5286 name = "Vertex + Geometry Shader";
5287 description = "Combined Vulkan Vertex and Geometry Shaders";
5288 } else {
5289 name = "Geometry Shader";
5290 description = "Vulkan Geometry Shader";
5291 }
5292 break;
5293 case MESA_SHADER_FRAGMENT:
5294 name = "Fragment Shader";
5295 description = "Vulkan Fragment Shader";
5296 break;
5297 case MESA_SHADER_COMPUTE:
5298 name = "Compute Shader";
5299 description = "Vulkan Compute Shader";
5300 break;
5301 }
5302
5303 pProperties[executable_idx].subgroupSize = pipeline->shaders[i]->info.wave_size;
5304 desc_copy(pProperties[executable_idx].name, name);
5305 desc_copy(pProperties[executable_idx].description, description);
5306
5307 ++executable_idx;
5308 if (i == MESA_SHADER_GEOMETRY &&
5309 !radv_pipeline_has_ngg(pipeline)) {
5310 assert(pipeline->gs_copy_shader);
5311 if (executable_idx >= count)
5312 break;
5313
5314 pProperties[executable_idx].stages = VK_SHADER_STAGE_GEOMETRY_BIT;
5315 pProperties[executable_idx].subgroupSize = 64;
5316 desc_copy(pProperties[executable_idx].name, "GS Copy Shader");
5317 desc_copy(pProperties[executable_idx].description,
5318 "Extra shader stage that loads the GS output ringbuffer into the rasterizer");
5319
5320 ++executable_idx;
5321 }
5322 }
5323
5324 VkResult result = *pExecutableCount < total_count ? VK_INCOMPLETE : VK_SUCCESS;
5325 *pExecutableCount = count;
5326 return result;
5327 }
5328
5329 VkResult radv_GetPipelineExecutableStatisticsKHR(
5330 VkDevice _device,
5331 const VkPipelineExecutableInfoKHR* pExecutableInfo,
5332 uint32_t* pStatisticCount,
5333 VkPipelineExecutableStatisticKHR* pStatistics)
5334 {
5335 RADV_FROM_HANDLE(radv_device, device, _device);
5336 RADV_FROM_HANDLE(radv_pipeline, pipeline, pExecutableInfo->pipeline);
5337 gl_shader_stage stage;
5338 struct radv_shader_variant *shader = radv_get_shader_from_executable_index(pipeline, pExecutableInfo->executableIndex, &stage);
5339
5340 enum chip_class chip_class = device->physical_device->rad_info.chip_class;
5341 unsigned lds_increment = chip_class >= GFX7 ? 512 : 256;
5342 unsigned max_waves = radv_get_max_waves(device, shader, stage);
5343
5344 VkPipelineExecutableStatisticKHR *s = pStatistics;
5345 VkPipelineExecutableStatisticKHR *end = s + (pStatistics ? *pStatisticCount : 0);
5346 VkResult result = VK_SUCCESS;
5347
5348 if (s < end) {
5349 desc_copy(s->name, "SGPRs");
5350 desc_copy(s->description, "Number of SGPR registers allocated per subgroup");
5351 s->format = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR;
5352 s->value.u64 = shader->config.num_sgprs;
5353 }
5354 ++s;
5355
5356 if (s < end) {
5357 desc_copy(s->name, "VGPRs");
5358 desc_copy(s->description, "Number of VGPR registers allocated per subgroup");
5359 s->format = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR;
5360 s->value.u64 = shader->config.num_vgprs;
5361 }
5362 ++s;
5363
5364 if (s < end) {
5365 desc_copy(s->name, "Spilled SGPRs");
5366 desc_copy(s->description, "Number of SGPR registers spilled per subgroup");
5367 s->format = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR;
5368 s->value.u64 = shader->config.spilled_sgprs;
5369 }
5370 ++s;
5371
5372 if (s < end) {
5373 desc_copy(s->name, "Spilled VGPRs");
5374 desc_copy(s->description, "Number of VGPR registers spilled per subgroup");
5375 s->format = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR;
5376 s->value.u64 = shader->config.spilled_vgprs;
5377 }
5378 ++s;
5379
5380 if (s < end) {
5381 desc_copy(s->name, "PrivMem VGPRs");
5382 desc_copy(s->description, "Number of VGPRs stored in private memory per subgroup");
5383 s->format = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR;
5384 s->value.u64 = shader->info.private_mem_vgprs;
5385 }
5386 ++s;
5387
5388 if (s < end) {
5389 desc_copy(s->name, "Code size");
5390 desc_copy(s->description, "Code size in bytes");
5391 s->format = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR;
5392 s->value.u64 = shader->exec_size;
5393 }
5394 ++s;
5395
5396 if (s < end) {
5397 desc_copy(s->name, "LDS size");
5398 desc_copy(s->description, "LDS size in bytes per workgroup");
5399 s->format = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR;
5400 s->value.u64 = shader->config.lds_size * lds_increment;
5401 }
5402 ++s;
5403
5404 if (s < end) {
5405 desc_copy(s->name, "Scratch size");
5406 desc_copy(s->description, "Private memory in bytes per subgroup");
5407 s->format = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR;
5408 s->value.u64 = shader->config.scratch_bytes_per_wave;
5409 }
5410 ++s;
5411
5412 if (s < end) {
5413 desc_copy(s->name, "Subgroups per SIMD");
5414 desc_copy(s->description, "The maximum number of subgroups in flight on a SIMD unit");
5415 s->format = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR;
5416 s->value.u64 = max_waves;
5417 }
5418 ++s;
5419
5420 if (shader->statistics) {
5421 for (unsigned i = 0; i < shader->statistics->count; i++) {
5422 struct radv_compiler_statistic_info *info = &shader->statistics->infos[i];
5423 uint32_t value = shader->statistics->values[i];
5424 if (s < end) {
5425 desc_copy(s->name, info->name);
5426 desc_copy(s->description, info->desc);
5427 s->format = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR;
5428 s->value.u64 = value;
5429 }
5430 ++s;
5431 }
5432 }
5433
5434 if (!pStatistics)
5435 *pStatisticCount = s - pStatistics;
5436 else if (s > end) {
5437 *pStatisticCount = end - pStatistics;
5438 result = VK_INCOMPLETE;
5439 } else {
5440 *pStatisticCount = s - pStatistics;
5441 }
5442
5443 return result;
5444 }
5445
5446 static VkResult radv_copy_representation(void *data, size_t *data_size, const char *src)
5447 {
5448 size_t total_size = strlen(src) + 1;
5449
5450 if (!data) {
5451 *data_size = total_size;
5452 return VK_SUCCESS;
5453 }
5454
5455 size_t size = MIN2(total_size, *data_size);
5456
5457 memcpy(data, src, size);
5458 if (size)
5459 *((char*)data + size - 1) = 0;
5460 return size < total_size ? VK_INCOMPLETE : VK_SUCCESS;
5461 }
5462
5463 VkResult radv_GetPipelineExecutableInternalRepresentationsKHR(
5464 VkDevice device,
5465 const VkPipelineExecutableInfoKHR* pExecutableInfo,
5466 uint32_t* pInternalRepresentationCount,
5467 VkPipelineExecutableInternalRepresentationKHR* pInternalRepresentations)
5468 {
5469 RADV_FROM_HANDLE(radv_pipeline, pipeline, pExecutableInfo->pipeline);
5470 gl_shader_stage stage;
5471 struct radv_shader_variant *shader = radv_get_shader_from_executable_index(pipeline, pExecutableInfo->executableIndex, &stage);
5472
5473 VkPipelineExecutableInternalRepresentationKHR *p = pInternalRepresentations;
5474 VkPipelineExecutableInternalRepresentationKHR *end = p + (pInternalRepresentations ? *pInternalRepresentationCount : 0);
5475 VkResult result = VK_SUCCESS;
5476 /* optimized NIR */
5477 if (p < end) {
5478 p->isText = true;
5479 desc_copy(p->name, "NIR Shader(s)");
5480 desc_copy(p->description, "The optimized NIR shader(s)");
5481 if (radv_copy_representation(p->pData, &p->dataSize, shader->nir_string) != VK_SUCCESS)
5482 result = VK_INCOMPLETE;
5483 }
5484 ++p;
5485
5486 /* backend IR */
5487 if (p < end) {
5488 p->isText = true;
5489 if (pipeline->device->physical_device->use_llvm) {
5490 desc_copy(p->name, "LLVM IR");
5491 desc_copy(p->description, "The LLVM IR after some optimizations");
5492 } else {
5493 desc_copy(p->name, "ACO IR");
5494 desc_copy(p->description, "The ACO IR after some optimizations");
5495 }
5496 if (radv_copy_representation(p->pData, &p->dataSize, shader->ir_string) != VK_SUCCESS)
5497 result = VK_INCOMPLETE;
5498 }
5499 ++p;
5500
5501 /* Disassembler */
5502 if (p < end) {
5503 p->isText = true;
5504 desc_copy(p->name, "Assembly");
5505 desc_copy(p->description, "Final Assembly");
5506 if (radv_copy_representation(p->pData, &p->dataSize, shader->disasm_string) != VK_SUCCESS)
5507 result = VK_INCOMPLETE;
5508 }
5509 ++p;
5510
5511 if (!pInternalRepresentations)
5512 *pInternalRepresentationCount = p - pInternalRepresentations;
5513 else if(p > end) {
5514 result = VK_INCOMPLETE;
5515 *pInternalRepresentationCount = end - pInternalRepresentations;
5516 } else {
5517 *pInternalRepresentationCount = p - pInternalRepresentations;
5518 }
5519
5520 return result;
5521 }