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