c3458fa037240326c62dfc10079562e28b699780
[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/mesa-sha1.h"
29 #include "util/u_atomic.h"
30 #include "radv_debug.h"
31 #include "radv_private.h"
32 #include "radv_shader.h"
33 #include "nir/nir.h"
34 #include "nir/nir_builder.h"
35 #include "spirv/nir_spirv.h"
36 #include "vk_util.h"
37
38 #include <llvm-c/Core.h>
39 #include <llvm-c/TargetMachine.h>
40
41 #include "sid.h"
42 #include "gfx9d.h"
43 #include "r600d_common.h"
44 #include "ac_binary.h"
45 #include "ac_llvm_util.h"
46 #include "ac_nir_to_llvm.h"
47 #include "vk_format.h"
48 #include "util/debug.h"
49 #include "ac_exp_param.h"
50
51 static void
52 radv_pipeline_destroy(struct radv_device *device,
53 struct radv_pipeline *pipeline,
54 const VkAllocationCallbacks* allocator)
55 {
56 for (unsigned i = 0; i < MESA_SHADER_STAGES; ++i)
57 if (pipeline->shaders[i])
58 radv_shader_variant_destroy(device, pipeline->shaders[i]);
59
60 if (pipeline->gs_copy_shader)
61 radv_shader_variant_destroy(device, pipeline->gs_copy_shader);
62
63 vk_free2(&device->alloc, allocator, pipeline);
64 }
65
66 void radv_DestroyPipeline(
67 VkDevice _device,
68 VkPipeline _pipeline,
69 const VkAllocationCallbacks* pAllocator)
70 {
71 RADV_FROM_HANDLE(radv_device, device, _device);
72 RADV_FROM_HANDLE(radv_pipeline, pipeline, _pipeline);
73
74 if (!_pipeline)
75 return;
76
77 radv_pipeline_destroy(device, pipeline, pAllocator);
78 }
79
80 static void radv_dump_pipeline_stats(struct radv_device *device, struct radv_pipeline *pipeline)
81 {
82 int i;
83
84 for (i = 0; i < MESA_SHADER_STAGES; i++) {
85 if (!pipeline->shaders[i])
86 continue;
87
88 radv_shader_dump_stats(device, pipeline->shaders[i], i, stderr);
89 }
90 }
91
92 static struct radv_shader_variant *
93 radv_pipeline_compile(struct radv_pipeline *pipeline,
94 struct radv_pipeline_cache *cache,
95 struct radv_shader_module *module,
96 const char *entrypoint,
97 gl_shader_stage stage,
98 const VkSpecializationInfo *spec_info,
99 struct radv_pipeline_layout *layout,
100 const struct ac_shader_variant_key *key)
101 {
102 unsigned char sha1[20];
103 unsigned char gs_copy_sha1[20];
104 struct radv_shader_variant *variant;
105 nir_shader *nir;
106 void *code = NULL;
107 unsigned code_size = 0;
108
109 if (module->nir)
110 _mesa_sha1_compute(module->nir->info.name,
111 strlen(module->nir->info.name),
112 module->sha1);
113
114 radv_hash_shader(sha1, module, entrypoint, spec_info, layout, key, 0);
115 if (stage == MESA_SHADER_GEOMETRY)
116 radv_hash_shader(gs_copy_sha1, module, entrypoint, spec_info,
117 layout, key, 1);
118
119 variant = radv_create_shader_variant_from_pipeline_cache(pipeline->device,
120 cache,
121 sha1);
122
123 if (stage == MESA_SHADER_GEOMETRY) {
124 pipeline->gs_copy_shader =
125 radv_create_shader_variant_from_pipeline_cache(
126 pipeline->device,
127 cache,
128 gs_copy_sha1);
129 }
130
131 if (variant &&
132 (stage != MESA_SHADER_GEOMETRY || pipeline->gs_copy_shader))
133 return variant;
134
135 nir = radv_shader_compile_to_nir(pipeline->device,
136 module, entrypoint, stage,
137 spec_info);
138 if (nir == NULL)
139 return NULL;
140
141 if (!variant) {
142 variant = radv_shader_variant_create(pipeline->device, module, nir,
143 layout, key, &code,
144 &code_size);
145 }
146
147 if (stage == MESA_SHADER_GEOMETRY && !pipeline->gs_copy_shader) {
148 void *gs_copy_code = NULL;
149 unsigned gs_copy_code_size = 0;
150 pipeline->gs_copy_shader = radv_create_gs_copy_shader(
151 pipeline->device, nir, &gs_copy_code,
152 &gs_copy_code_size, key->has_multiview_view_index);
153
154 if (pipeline->gs_copy_shader) {
155 pipeline->gs_copy_shader =
156 radv_pipeline_cache_insert_shader(pipeline->device,
157 cache,
158 gs_copy_sha1,
159 pipeline->gs_copy_shader,
160 gs_copy_code,
161 gs_copy_code_size);
162 }
163
164 free(gs_copy_code);
165 }
166 if (!module->nir && !pipeline->device->trace_bo)
167 ralloc_free(nir);
168
169 if (variant)
170 variant = radv_pipeline_cache_insert_shader(pipeline->device,
171 cache, sha1,
172 variant, code,
173 code_size);
174
175 if (code)
176 free(code);
177 return variant;
178 }
179
180 static struct ac_shader_variant_key
181 radv_compute_tes_key(bool as_es, bool export_prim_id)
182 {
183 struct ac_shader_variant_key key;
184 memset(&key, 0, sizeof(key));
185 key.tes.as_es = as_es;
186 /* export prim id only happens when no geom shader */
187 if (!as_es)
188 key.tes.export_prim_id = export_prim_id;
189 return key;
190 }
191
192 static struct ac_shader_variant_key
193 radv_compute_tcs_key(unsigned primitive_mode, unsigned input_vertices)
194 {
195 struct ac_shader_variant_key key;
196 memset(&key, 0, sizeof(key));
197 key.tcs.primitive_mode = primitive_mode;
198 key.tcs.input_vertices = input_vertices;
199 return key;
200 }
201
202 static void
203 radv_tess_pipeline_compile(struct radv_pipeline *pipeline,
204 struct radv_pipeline_cache *cache,
205 struct radv_shader_module *tcs_module,
206 struct radv_shader_module *tes_module,
207 const char *tcs_entrypoint,
208 const char *tes_entrypoint,
209 const VkSpecializationInfo *tcs_spec_info,
210 const VkSpecializationInfo *tes_spec_info,
211 struct radv_pipeline_layout *layout,
212 unsigned input_vertices,
213 bool has_view_index)
214 {
215 unsigned char tcs_sha1[20], tes_sha1[20];
216 struct radv_shader_variant *tes_variant = NULL, *tcs_variant = NULL;
217 nir_shader *tes_nir, *tcs_nir;
218 void *tes_code = NULL, *tcs_code = NULL;
219 unsigned tes_code_size = 0, tcs_code_size = 0;
220 struct ac_shader_variant_key tes_key;
221 struct ac_shader_variant_key tcs_key;
222
223 tes_key = radv_compute_tes_key(radv_pipeline_has_gs(pipeline),
224 pipeline->shaders[MESA_SHADER_FRAGMENT]->info.fs.prim_id_input);
225 tes_key.has_multiview_view_index = has_view_index;
226 if (tes_module->nir)
227 _mesa_sha1_compute(tes_module->nir->info.name,
228 strlen(tes_module->nir->info.name),
229 tes_module->sha1);
230 radv_hash_shader(tes_sha1, tes_module, tes_entrypoint, tes_spec_info, layout, &tes_key, 0);
231
232 tes_variant = radv_create_shader_variant_from_pipeline_cache(pipeline->device,
233 cache,
234 tes_sha1);
235
236 if (tes_variant) {
237 tcs_key = radv_compute_tcs_key(tes_variant->info.tes.primitive_mode, input_vertices);
238
239 if (tcs_module->nir)
240 _mesa_sha1_compute(tcs_module->nir->info.name,
241 strlen(tcs_module->nir->info.name),
242 tcs_module->sha1);
243
244 radv_hash_shader(tcs_sha1, tcs_module, tcs_entrypoint, tcs_spec_info, layout, &tcs_key, 0);
245
246 tcs_variant = radv_create_shader_variant_from_pipeline_cache(pipeline->device,
247 cache,
248 tcs_sha1);
249 }
250
251 if (tcs_variant && tes_variant) {
252 pipeline->shaders[MESA_SHADER_TESS_CTRL] = tcs_variant;
253 pipeline->shaders[MESA_SHADER_TESS_EVAL] = tes_variant;
254 return;
255 }
256
257 tes_nir = radv_shader_compile_to_nir(pipeline->device,
258 tes_module, tes_entrypoint, MESA_SHADER_TESS_EVAL,
259 tes_spec_info);
260 if (tes_nir == NULL)
261 return;
262
263 tcs_nir = radv_shader_compile_to_nir(pipeline->device,
264 tcs_module, tcs_entrypoint, MESA_SHADER_TESS_CTRL,
265 tcs_spec_info);
266 if (tcs_nir == NULL)
267 return;
268
269 nir_lower_tes_patch_vertices(tes_nir,
270 tcs_nir->info.tess.tcs_vertices_out);
271
272 tes_variant = radv_shader_variant_create(pipeline->device, tes_module, tes_nir,
273 layout, &tes_key, &tes_code,
274 &tes_code_size);
275
276 tcs_key = radv_compute_tcs_key(tes_nir->info.tess.primitive_mode, input_vertices);
277 if (tcs_module->nir)
278 _mesa_sha1_compute(tcs_module->nir->info.name,
279 strlen(tcs_module->nir->info.name),
280 tcs_module->sha1);
281
282 radv_hash_shader(tcs_sha1, tcs_module, tcs_entrypoint, tcs_spec_info, layout, &tcs_key, 0);
283
284 tcs_variant = radv_shader_variant_create(pipeline->device, tcs_module, tcs_nir,
285 layout, &tcs_key, &tcs_code,
286 &tcs_code_size);
287
288 if (!tes_module->nir && !pipeline->device->trace_bo)
289 ralloc_free(tes_nir);
290
291 if (!tcs_module->nir && !pipeline->device->trace_bo)
292 ralloc_free(tcs_nir);
293
294 if (tes_variant)
295 tes_variant = radv_pipeline_cache_insert_shader(pipeline->device, cache, tes_sha1, tes_variant,
296 tes_code, tes_code_size);
297
298 if (tcs_variant)
299 tcs_variant = radv_pipeline_cache_insert_shader(pipeline->device, cache, tcs_sha1, tcs_variant,
300 tcs_code, tcs_code_size);
301
302 if (tes_code)
303 free(tes_code);
304 if (tcs_code)
305 free(tcs_code);
306 pipeline->shaders[MESA_SHADER_TESS_CTRL] = tcs_variant;
307 pipeline->shaders[MESA_SHADER_TESS_EVAL] = tes_variant;
308 return;
309 }
310
311 static VkResult
312 radv_pipeline_scratch_init(struct radv_device *device,
313 struct radv_pipeline *pipeline)
314 {
315 unsigned scratch_bytes_per_wave = 0;
316 unsigned max_waves = 0;
317 unsigned min_waves = 1;
318
319 for (int i = 0; i < MESA_SHADER_STAGES; ++i) {
320 if (pipeline->shaders[i]) {
321 unsigned max_stage_waves = device->scratch_waves;
322
323 scratch_bytes_per_wave = MAX2(scratch_bytes_per_wave,
324 pipeline->shaders[i]->config.scratch_bytes_per_wave);
325
326 max_stage_waves = MIN2(max_stage_waves,
327 4 * device->physical_device->rad_info.num_good_compute_units *
328 (256 / pipeline->shaders[i]->config.num_vgprs));
329 max_waves = MAX2(max_waves, max_stage_waves);
330 }
331 }
332
333 if (pipeline->shaders[MESA_SHADER_COMPUTE]) {
334 unsigned group_size = pipeline->shaders[MESA_SHADER_COMPUTE]->info.cs.block_size[0] *
335 pipeline->shaders[MESA_SHADER_COMPUTE]->info.cs.block_size[1] *
336 pipeline->shaders[MESA_SHADER_COMPUTE]->info.cs.block_size[2];
337 min_waves = MAX2(min_waves, round_up_u32(group_size, 64));
338 }
339
340 if (scratch_bytes_per_wave)
341 max_waves = MIN2(max_waves, 0xffffffffu / scratch_bytes_per_wave);
342
343 if (scratch_bytes_per_wave && max_waves < min_waves) {
344 /* Not really true at this moment, but will be true on first
345 * execution. Avoid having hanging shaders. */
346 return VK_ERROR_OUT_OF_DEVICE_MEMORY;
347 }
348 pipeline->scratch_bytes_per_wave = scratch_bytes_per_wave;
349 pipeline->max_waves = max_waves;
350 return VK_SUCCESS;
351 }
352
353 static uint32_t si_translate_blend_function(VkBlendOp op)
354 {
355 switch (op) {
356 case VK_BLEND_OP_ADD:
357 return V_028780_COMB_DST_PLUS_SRC;
358 case VK_BLEND_OP_SUBTRACT:
359 return V_028780_COMB_SRC_MINUS_DST;
360 case VK_BLEND_OP_REVERSE_SUBTRACT:
361 return V_028780_COMB_DST_MINUS_SRC;
362 case VK_BLEND_OP_MIN:
363 return V_028780_COMB_MIN_DST_SRC;
364 case VK_BLEND_OP_MAX:
365 return V_028780_COMB_MAX_DST_SRC;
366 default:
367 return 0;
368 }
369 }
370
371 static uint32_t si_translate_blend_factor(VkBlendFactor factor)
372 {
373 switch (factor) {
374 case VK_BLEND_FACTOR_ZERO:
375 return V_028780_BLEND_ZERO;
376 case VK_BLEND_FACTOR_ONE:
377 return V_028780_BLEND_ONE;
378 case VK_BLEND_FACTOR_SRC_COLOR:
379 return V_028780_BLEND_SRC_COLOR;
380 case VK_BLEND_FACTOR_ONE_MINUS_SRC_COLOR:
381 return V_028780_BLEND_ONE_MINUS_SRC_COLOR;
382 case VK_BLEND_FACTOR_DST_COLOR:
383 return V_028780_BLEND_DST_COLOR;
384 case VK_BLEND_FACTOR_ONE_MINUS_DST_COLOR:
385 return V_028780_BLEND_ONE_MINUS_DST_COLOR;
386 case VK_BLEND_FACTOR_SRC_ALPHA:
387 return V_028780_BLEND_SRC_ALPHA;
388 case VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA:
389 return V_028780_BLEND_ONE_MINUS_SRC_ALPHA;
390 case VK_BLEND_FACTOR_DST_ALPHA:
391 return V_028780_BLEND_DST_ALPHA;
392 case VK_BLEND_FACTOR_ONE_MINUS_DST_ALPHA:
393 return V_028780_BLEND_ONE_MINUS_DST_ALPHA;
394 case VK_BLEND_FACTOR_CONSTANT_COLOR:
395 return V_028780_BLEND_CONSTANT_COLOR;
396 case VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR:
397 return V_028780_BLEND_ONE_MINUS_CONSTANT_COLOR;
398 case VK_BLEND_FACTOR_CONSTANT_ALPHA:
399 return V_028780_BLEND_CONSTANT_ALPHA;
400 case VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA:
401 return V_028780_BLEND_ONE_MINUS_CONSTANT_ALPHA;
402 case VK_BLEND_FACTOR_SRC_ALPHA_SATURATE:
403 return V_028780_BLEND_SRC_ALPHA_SATURATE;
404 case VK_BLEND_FACTOR_SRC1_COLOR:
405 return V_028780_BLEND_SRC1_COLOR;
406 case VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR:
407 return V_028780_BLEND_INV_SRC1_COLOR;
408 case VK_BLEND_FACTOR_SRC1_ALPHA:
409 return V_028780_BLEND_SRC1_ALPHA;
410 case VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA:
411 return V_028780_BLEND_INV_SRC1_ALPHA;
412 default:
413 return 0;
414 }
415 }
416
417 static uint32_t si_translate_blend_opt_function(VkBlendOp op)
418 {
419 switch (op) {
420 case VK_BLEND_OP_ADD:
421 return V_028760_OPT_COMB_ADD;
422 case VK_BLEND_OP_SUBTRACT:
423 return V_028760_OPT_COMB_SUBTRACT;
424 case VK_BLEND_OP_REVERSE_SUBTRACT:
425 return V_028760_OPT_COMB_REVSUBTRACT;
426 case VK_BLEND_OP_MIN:
427 return V_028760_OPT_COMB_MIN;
428 case VK_BLEND_OP_MAX:
429 return V_028760_OPT_COMB_MAX;
430 default:
431 return V_028760_OPT_COMB_BLEND_DISABLED;
432 }
433 }
434
435 static uint32_t si_translate_blend_opt_factor(VkBlendFactor factor, bool is_alpha)
436 {
437 switch (factor) {
438 case VK_BLEND_FACTOR_ZERO:
439 return V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_ALL;
440 case VK_BLEND_FACTOR_ONE:
441 return V_028760_BLEND_OPT_PRESERVE_ALL_IGNORE_NONE;
442 case VK_BLEND_FACTOR_SRC_COLOR:
443 return is_alpha ? V_028760_BLEND_OPT_PRESERVE_A1_IGNORE_A0
444 : V_028760_BLEND_OPT_PRESERVE_C1_IGNORE_C0;
445 case VK_BLEND_FACTOR_ONE_MINUS_SRC_COLOR:
446 return is_alpha ? V_028760_BLEND_OPT_PRESERVE_A0_IGNORE_A1
447 : V_028760_BLEND_OPT_PRESERVE_C0_IGNORE_C1;
448 case VK_BLEND_FACTOR_SRC_ALPHA:
449 return V_028760_BLEND_OPT_PRESERVE_A1_IGNORE_A0;
450 case VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA:
451 return V_028760_BLEND_OPT_PRESERVE_A0_IGNORE_A1;
452 case VK_BLEND_FACTOR_SRC_ALPHA_SATURATE:
453 return is_alpha ? V_028760_BLEND_OPT_PRESERVE_ALL_IGNORE_NONE
454 : V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_A0;
455 default:
456 return V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_NONE;
457 }
458 }
459
460 /**
461 * Get rid of DST in the blend factors by commuting the operands:
462 * func(src * DST, dst * 0) ---> func(src * 0, dst * SRC)
463 */
464 static void si_blend_remove_dst(unsigned *func, unsigned *src_factor,
465 unsigned *dst_factor, unsigned expected_dst,
466 unsigned replacement_src)
467 {
468 if (*src_factor == expected_dst &&
469 *dst_factor == VK_BLEND_FACTOR_ZERO) {
470 *src_factor = VK_BLEND_FACTOR_ZERO;
471 *dst_factor = replacement_src;
472
473 /* Commuting the operands requires reversing subtractions. */
474 if (*func == VK_BLEND_OP_SUBTRACT)
475 *func = VK_BLEND_OP_REVERSE_SUBTRACT;
476 else if (*func == VK_BLEND_OP_REVERSE_SUBTRACT)
477 *func = VK_BLEND_OP_SUBTRACT;
478 }
479 }
480
481 static bool si_blend_factor_uses_dst(unsigned factor)
482 {
483 return factor == VK_BLEND_FACTOR_DST_COLOR ||
484 factor == VK_BLEND_FACTOR_DST_ALPHA ||
485 factor == VK_BLEND_FACTOR_SRC_ALPHA_SATURATE ||
486 factor == VK_BLEND_FACTOR_ONE_MINUS_DST_ALPHA ||
487 factor == VK_BLEND_FACTOR_ONE_MINUS_DST_COLOR;
488 }
489
490 static bool is_dual_src(VkBlendFactor factor)
491 {
492 switch (factor) {
493 case VK_BLEND_FACTOR_SRC1_COLOR:
494 case VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR:
495 case VK_BLEND_FACTOR_SRC1_ALPHA:
496 case VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA:
497 return true;
498 default:
499 return false;
500 }
501 }
502
503 static unsigned si_choose_spi_color_format(VkFormat vk_format,
504 bool blend_enable,
505 bool blend_need_alpha)
506 {
507 const struct vk_format_description *desc = vk_format_description(vk_format);
508 unsigned format, ntype, swap;
509
510 /* Alpha is needed for alpha-to-coverage.
511 * Blending may be with or without alpha.
512 */
513 unsigned normal = 0; /* most optimal, may not support blending or export alpha */
514 unsigned alpha = 0; /* exports alpha, but may not support blending */
515 unsigned blend = 0; /* supports blending, but may not export alpha */
516 unsigned blend_alpha = 0; /* least optimal, supports blending and exports alpha */
517
518 format = radv_translate_colorformat(vk_format);
519 ntype = radv_translate_color_numformat(vk_format, desc,
520 vk_format_get_first_non_void_channel(vk_format));
521 swap = radv_translate_colorswap(vk_format, false);
522
523 /* Choose the SPI color formats. These are required values for Stoney/RB+.
524 * Other chips have multiple choices, though they are not necessarily better.
525 */
526 switch (format) {
527 case V_028C70_COLOR_5_6_5:
528 case V_028C70_COLOR_1_5_5_5:
529 case V_028C70_COLOR_5_5_5_1:
530 case V_028C70_COLOR_4_4_4_4:
531 case V_028C70_COLOR_10_11_11:
532 case V_028C70_COLOR_11_11_10:
533 case V_028C70_COLOR_8:
534 case V_028C70_COLOR_8_8:
535 case V_028C70_COLOR_8_8_8_8:
536 case V_028C70_COLOR_10_10_10_2:
537 case V_028C70_COLOR_2_10_10_10:
538 if (ntype == V_028C70_NUMBER_UINT)
539 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_UINT16_ABGR;
540 else if (ntype == V_028C70_NUMBER_SINT)
541 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_SINT16_ABGR;
542 else
543 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_FP16_ABGR;
544 break;
545
546 case V_028C70_COLOR_16:
547 case V_028C70_COLOR_16_16:
548 case V_028C70_COLOR_16_16_16_16:
549 if (ntype == V_028C70_NUMBER_UNORM ||
550 ntype == V_028C70_NUMBER_SNORM) {
551 /* UNORM16 and SNORM16 don't support blending */
552 if (ntype == V_028C70_NUMBER_UNORM)
553 normal = alpha = V_028714_SPI_SHADER_UNORM16_ABGR;
554 else
555 normal = alpha = V_028714_SPI_SHADER_SNORM16_ABGR;
556
557 /* Use 32 bits per channel for blending. */
558 if (format == V_028C70_COLOR_16) {
559 if (swap == V_028C70_SWAP_STD) { /* R */
560 blend = V_028714_SPI_SHADER_32_R;
561 blend_alpha = V_028714_SPI_SHADER_32_AR;
562 } else if (swap == V_028C70_SWAP_ALT_REV) /* A */
563 blend = blend_alpha = V_028714_SPI_SHADER_32_AR;
564 else
565 assert(0);
566 } else if (format == V_028C70_COLOR_16_16) {
567 if (swap == V_028C70_SWAP_STD) { /* RG */
568 blend = V_028714_SPI_SHADER_32_GR;
569 blend_alpha = V_028714_SPI_SHADER_32_ABGR;
570 } else if (swap == V_028C70_SWAP_ALT) /* RA */
571 blend = blend_alpha = V_028714_SPI_SHADER_32_AR;
572 else
573 assert(0);
574 } else /* 16_16_16_16 */
575 blend = blend_alpha = V_028714_SPI_SHADER_32_ABGR;
576 } else if (ntype == V_028C70_NUMBER_UINT)
577 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_UINT16_ABGR;
578 else if (ntype == V_028C70_NUMBER_SINT)
579 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_SINT16_ABGR;
580 else if (ntype == V_028C70_NUMBER_FLOAT)
581 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_FP16_ABGR;
582 else
583 assert(0);
584 break;
585
586 case V_028C70_COLOR_32:
587 if (swap == V_028C70_SWAP_STD) { /* R */
588 blend = normal = V_028714_SPI_SHADER_32_R;
589 alpha = blend_alpha = V_028714_SPI_SHADER_32_AR;
590 } else if (swap == V_028C70_SWAP_ALT_REV) /* A */
591 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_32_AR;
592 else
593 assert(0);
594 break;
595
596 case V_028C70_COLOR_32_32:
597 if (swap == V_028C70_SWAP_STD) { /* RG */
598 blend = normal = V_028714_SPI_SHADER_32_GR;
599 alpha = blend_alpha = V_028714_SPI_SHADER_32_ABGR;
600 } else if (swap == V_028C70_SWAP_ALT) /* RA */
601 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_32_AR;
602 else
603 assert(0);
604 break;
605
606 case V_028C70_COLOR_32_32_32_32:
607 case V_028C70_COLOR_8_24:
608 case V_028C70_COLOR_24_8:
609 case V_028C70_COLOR_X24_8_32_FLOAT:
610 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_32_ABGR;
611 break;
612
613 default:
614 unreachable("unhandled blend format");
615 }
616
617 if (blend_enable && blend_need_alpha)
618 return blend_alpha;
619 else if(blend_need_alpha)
620 return alpha;
621 else if(blend_enable)
622 return blend;
623 else
624 return normal;
625 }
626
627 static unsigned si_get_cb_shader_mask(unsigned spi_shader_col_format)
628 {
629 unsigned i, cb_shader_mask = 0;
630
631 for (i = 0; i < 8; i++) {
632 switch ((spi_shader_col_format >> (i * 4)) & 0xf) {
633 case V_028714_SPI_SHADER_ZERO:
634 break;
635 case V_028714_SPI_SHADER_32_R:
636 cb_shader_mask |= 0x1 << (i * 4);
637 break;
638 case V_028714_SPI_SHADER_32_GR:
639 cb_shader_mask |= 0x3 << (i * 4);
640 break;
641 case V_028714_SPI_SHADER_32_AR:
642 cb_shader_mask |= 0x9 << (i * 4);
643 break;
644 case V_028714_SPI_SHADER_FP16_ABGR:
645 case V_028714_SPI_SHADER_UNORM16_ABGR:
646 case V_028714_SPI_SHADER_SNORM16_ABGR:
647 case V_028714_SPI_SHADER_UINT16_ABGR:
648 case V_028714_SPI_SHADER_SINT16_ABGR:
649 case V_028714_SPI_SHADER_32_ABGR:
650 cb_shader_mask |= 0xf << (i * 4);
651 break;
652 default:
653 assert(0);
654 }
655 }
656 return cb_shader_mask;
657 }
658
659 static void
660 radv_pipeline_compute_spi_color_formats(struct radv_pipeline *pipeline,
661 const VkGraphicsPipelineCreateInfo *pCreateInfo,
662 uint32_t blend_enable,
663 uint32_t blend_need_alpha,
664 bool single_cb_enable,
665 bool blend_mrt0_is_dual_src)
666 {
667 RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
668 struct radv_subpass *subpass = pass->subpasses + pCreateInfo->subpass;
669 struct radv_blend_state *blend = &pipeline->graphics.blend;
670 unsigned col_format = 0;
671
672 for (unsigned i = 0; i < (single_cb_enable ? 1 : subpass->color_count); ++i) {
673 unsigned cf;
674
675 if (subpass->color_attachments[i].attachment == VK_ATTACHMENT_UNUSED) {
676 cf = V_028714_SPI_SHADER_ZERO;
677 } else {
678 struct radv_render_pass_attachment *attachment = pass->attachments + subpass->color_attachments[i].attachment;
679
680 cf = si_choose_spi_color_format(attachment->format,
681 blend_enable & (1 << i),
682 blend_need_alpha & (1 << i));
683 }
684
685 col_format |= cf << (4 * i);
686 }
687
688 blend->cb_shader_mask = si_get_cb_shader_mask(col_format);
689
690 if (blend_mrt0_is_dual_src)
691 col_format |= (col_format & 0xf) << 4;
692 blend->spi_shader_col_format = col_format;
693 }
694
695 static bool
696 format_is_int8(VkFormat format)
697 {
698 const struct vk_format_description *desc = vk_format_description(format);
699 int channel = vk_format_get_first_non_void_channel(format);
700
701 return channel >= 0 && desc->channel[channel].pure_integer &&
702 desc->channel[channel].size == 8;
703 }
704
705 static bool
706 format_is_int10(VkFormat format)
707 {
708 const struct vk_format_description *desc = vk_format_description(format);
709
710 if (desc->nr_channels != 4)
711 return false;
712 for (unsigned i = 0; i < 4; i++) {
713 if (desc->channel[i].pure_integer && desc->channel[i].size == 10)
714 return true;
715 }
716 return false;
717 }
718
719 unsigned radv_format_meta_fs_key(VkFormat format)
720 {
721 unsigned col_format = si_choose_spi_color_format(format, false, false) - 1;
722 bool is_int8 = format_is_int8(format);
723 bool is_int10 = format_is_int10(format);
724
725 return col_format + (is_int8 ? 3 : is_int10 ? 5 : 0);
726 }
727
728 static void
729 radv_pipeline_compute_get_int_clamp(const VkGraphicsPipelineCreateInfo *pCreateInfo,
730 unsigned *is_int8, unsigned *is_int10)
731 {
732 RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
733 struct radv_subpass *subpass = pass->subpasses + pCreateInfo->subpass;
734 *is_int8 = 0;
735 *is_int10 = 0;
736
737 for (unsigned i = 0; i < subpass->color_count; ++i) {
738 struct radv_render_pass_attachment *attachment;
739
740 if (subpass->color_attachments[i].attachment == VK_ATTACHMENT_UNUSED)
741 continue;
742
743 attachment = pass->attachments + subpass->color_attachments[i].attachment;
744
745 if (format_is_int8(attachment->format))
746 *is_int8 |= 1 << i;
747 if (format_is_int10(attachment->format))
748 *is_int10 |= 1 << i;
749 }
750 }
751
752 static void
753 radv_pipeline_init_blend_state(struct radv_pipeline *pipeline,
754 const VkGraphicsPipelineCreateInfo *pCreateInfo,
755 const struct radv_graphics_pipeline_create_info *extra)
756 {
757 const VkPipelineColorBlendStateCreateInfo *vkblend = pCreateInfo->pColorBlendState;
758 const VkPipelineMultisampleStateCreateInfo *vkms = pCreateInfo->pMultisampleState;
759 struct radv_blend_state *blend = &pipeline->graphics.blend;
760 unsigned mode = V_028808_CB_NORMAL;
761 uint32_t blend_enable = 0, blend_need_alpha = 0;
762 bool blend_mrt0_is_dual_src = false;
763 int i;
764 bool single_cb_enable = false;
765
766 if (!vkblend)
767 return;
768
769 if (extra && extra->custom_blend_mode) {
770 single_cb_enable = true;
771 mode = extra->custom_blend_mode;
772 }
773 blend->cb_color_control = 0;
774 if (vkblend->logicOpEnable)
775 blend->cb_color_control |= S_028808_ROP3(vkblend->logicOp | (vkblend->logicOp << 4));
776 else
777 blend->cb_color_control |= S_028808_ROP3(0xcc);
778
779 blend->db_alpha_to_mask = S_028B70_ALPHA_TO_MASK_OFFSET0(2) |
780 S_028B70_ALPHA_TO_MASK_OFFSET1(2) |
781 S_028B70_ALPHA_TO_MASK_OFFSET2(2) |
782 S_028B70_ALPHA_TO_MASK_OFFSET3(2);
783
784 if (vkms && vkms->alphaToCoverageEnable) {
785 blend->db_alpha_to_mask |= S_028B70_ALPHA_TO_MASK_ENABLE(1);
786 }
787
788 blend->cb_target_mask = 0;
789 for (i = 0; i < vkblend->attachmentCount; i++) {
790 const VkPipelineColorBlendAttachmentState *att = &vkblend->pAttachments[i];
791 unsigned blend_cntl = 0;
792 unsigned srcRGB_opt, dstRGB_opt, srcA_opt, dstA_opt;
793 VkBlendOp eqRGB = att->colorBlendOp;
794 VkBlendFactor srcRGB = att->srcColorBlendFactor;
795 VkBlendFactor dstRGB = att->dstColorBlendFactor;
796 VkBlendOp eqA = att->alphaBlendOp;
797 VkBlendFactor srcA = att->srcAlphaBlendFactor;
798 VkBlendFactor dstA = att->dstAlphaBlendFactor;
799
800 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);
801
802 if (!att->colorWriteMask)
803 continue;
804
805 blend->cb_target_mask |= (unsigned)att->colorWriteMask << (4 * i);
806 if (!att->blendEnable) {
807 blend->cb_blend_control[i] = blend_cntl;
808 continue;
809 }
810
811 if (is_dual_src(srcRGB) || is_dual_src(dstRGB) || is_dual_src(srcA) || is_dual_src(dstA))
812 if (i == 0)
813 blend_mrt0_is_dual_src = true;
814
815 if (eqRGB == VK_BLEND_OP_MIN || eqRGB == VK_BLEND_OP_MAX) {
816 srcRGB = VK_BLEND_FACTOR_ONE;
817 dstRGB = VK_BLEND_FACTOR_ONE;
818 }
819 if (eqA == VK_BLEND_OP_MIN || eqA == VK_BLEND_OP_MAX) {
820 srcA = VK_BLEND_FACTOR_ONE;
821 dstA = VK_BLEND_FACTOR_ONE;
822 }
823
824 /* Blending optimizations for RB+.
825 * These transformations don't change the behavior.
826 *
827 * First, get rid of DST in the blend factors:
828 * func(src * DST, dst * 0) ---> func(src * 0, dst * SRC)
829 */
830 si_blend_remove_dst(&eqRGB, &srcRGB, &dstRGB,
831 VK_BLEND_FACTOR_DST_COLOR,
832 VK_BLEND_FACTOR_SRC_COLOR);
833
834 si_blend_remove_dst(&eqA, &srcA, &dstA,
835 VK_BLEND_FACTOR_DST_COLOR,
836 VK_BLEND_FACTOR_SRC_COLOR);
837
838 si_blend_remove_dst(&eqA, &srcA, &dstA,
839 VK_BLEND_FACTOR_DST_ALPHA,
840 VK_BLEND_FACTOR_SRC_ALPHA);
841
842 /* Look up the ideal settings from tables. */
843 srcRGB_opt = si_translate_blend_opt_factor(srcRGB, false);
844 dstRGB_opt = si_translate_blend_opt_factor(dstRGB, false);
845 srcA_opt = si_translate_blend_opt_factor(srcA, true);
846 dstA_opt = si_translate_blend_opt_factor(dstA, true);
847
848 /* Handle interdependencies. */
849 if (si_blend_factor_uses_dst(srcRGB))
850 dstRGB_opt = V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_NONE;
851 if (si_blend_factor_uses_dst(srcA))
852 dstA_opt = V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_NONE;
853
854 if (srcRGB == VK_BLEND_FACTOR_SRC_ALPHA_SATURATE &&
855 (dstRGB == VK_BLEND_FACTOR_ZERO ||
856 dstRGB == VK_BLEND_FACTOR_SRC_ALPHA ||
857 dstRGB == VK_BLEND_FACTOR_SRC_ALPHA_SATURATE))
858 dstRGB_opt = V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_A0;
859
860 /* Set the final value. */
861 blend->sx_mrt_blend_opt[i] =
862 S_028760_COLOR_SRC_OPT(srcRGB_opt) |
863 S_028760_COLOR_DST_OPT(dstRGB_opt) |
864 S_028760_COLOR_COMB_FCN(si_translate_blend_opt_function(eqRGB)) |
865 S_028760_ALPHA_SRC_OPT(srcA_opt) |
866 S_028760_ALPHA_DST_OPT(dstA_opt) |
867 S_028760_ALPHA_COMB_FCN(si_translate_blend_opt_function(eqA));
868 blend_cntl |= S_028780_ENABLE(1);
869
870 blend_cntl |= S_028780_COLOR_COMB_FCN(si_translate_blend_function(eqRGB));
871 blend_cntl |= S_028780_COLOR_SRCBLEND(si_translate_blend_factor(srcRGB));
872 blend_cntl |= S_028780_COLOR_DESTBLEND(si_translate_blend_factor(dstRGB));
873 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
874 blend_cntl |= S_028780_SEPARATE_ALPHA_BLEND(1);
875 blend_cntl |= S_028780_ALPHA_COMB_FCN(si_translate_blend_function(eqA));
876 blend_cntl |= S_028780_ALPHA_SRCBLEND(si_translate_blend_factor(srcA));
877 blend_cntl |= S_028780_ALPHA_DESTBLEND(si_translate_blend_factor(dstA));
878 }
879 blend->cb_blend_control[i] = blend_cntl;
880
881 blend_enable |= 1 << i;
882
883 if (srcRGB == VK_BLEND_FACTOR_SRC_ALPHA ||
884 dstRGB == VK_BLEND_FACTOR_SRC_ALPHA ||
885 srcRGB == VK_BLEND_FACTOR_SRC_ALPHA_SATURATE ||
886 dstRGB == VK_BLEND_FACTOR_SRC_ALPHA_SATURATE ||
887 srcRGB == VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA ||
888 dstRGB == VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA)
889 blend_need_alpha |= 1 << i;
890 }
891 for (i = vkblend->attachmentCount; i < 8; i++) {
892 blend->cb_blend_control[i] = 0;
893 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);
894 }
895
896 /* disable RB+ for now */
897 if (pipeline->device->physical_device->has_rbplus)
898 blend->cb_color_control |= S_028808_DISABLE_DUAL_QUAD(1);
899
900 if (blend->cb_target_mask)
901 blend->cb_color_control |= S_028808_MODE(mode);
902 else
903 blend->cb_color_control |= S_028808_MODE(V_028808_CB_DISABLE);
904
905 radv_pipeline_compute_spi_color_formats(pipeline, pCreateInfo,
906 blend_enable, blend_need_alpha, single_cb_enable, blend_mrt0_is_dual_src);
907 }
908
909 static uint32_t si_translate_stencil_op(enum VkStencilOp op)
910 {
911 switch (op) {
912 case VK_STENCIL_OP_KEEP:
913 return V_02842C_STENCIL_KEEP;
914 case VK_STENCIL_OP_ZERO:
915 return V_02842C_STENCIL_ZERO;
916 case VK_STENCIL_OP_REPLACE:
917 return V_02842C_STENCIL_REPLACE_TEST;
918 case VK_STENCIL_OP_INCREMENT_AND_CLAMP:
919 return V_02842C_STENCIL_ADD_CLAMP;
920 case VK_STENCIL_OP_DECREMENT_AND_CLAMP:
921 return V_02842C_STENCIL_SUB_CLAMP;
922 case VK_STENCIL_OP_INVERT:
923 return V_02842C_STENCIL_INVERT;
924 case VK_STENCIL_OP_INCREMENT_AND_WRAP:
925 return V_02842C_STENCIL_ADD_WRAP;
926 case VK_STENCIL_OP_DECREMENT_AND_WRAP:
927 return V_02842C_STENCIL_SUB_WRAP;
928 default:
929 return 0;
930 }
931 }
932 static void
933 radv_pipeline_init_depth_stencil_state(struct radv_pipeline *pipeline,
934 const VkGraphicsPipelineCreateInfo *pCreateInfo,
935 const struct radv_graphics_pipeline_create_info *extra)
936 {
937 const VkPipelineDepthStencilStateCreateInfo *vkds = pCreateInfo->pDepthStencilState;
938 struct radv_depth_stencil_state *ds = &pipeline->graphics.ds;
939
940 if (!vkds)
941 return;
942
943 RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
944 struct radv_subpass *subpass = pass->subpasses + pCreateInfo->subpass;
945 if (subpass->depth_stencil_attachment.attachment == VK_ATTACHMENT_UNUSED)
946 return;
947
948 struct radv_render_pass_attachment *attachment = pass->attachments + subpass->depth_stencil_attachment.attachment;
949 bool has_depth_attachment = vk_format_is_depth(attachment->format);
950 bool has_stencil_attachment = vk_format_is_stencil(attachment->format);
951
952 if (has_depth_attachment) {
953 ds->db_depth_control = S_028800_Z_ENABLE(vkds->depthTestEnable ? 1 : 0) |
954 S_028800_Z_WRITE_ENABLE(vkds->depthWriteEnable ? 1 : 0) |
955 S_028800_ZFUNC(vkds->depthCompareOp) |
956 S_028800_DEPTH_BOUNDS_ENABLE(vkds->depthBoundsTestEnable ? 1 : 0);
957 }
958
959 if (has_stencil_attachment && vkds->stencilTestEnable) {
960 ds->db_depth_control |= S_028800_STENCIL_ENABLE(1) | S_028800_BACKFACE_ENABLE(1);
961 ds->db_depth_control |= S_028800_STENCILFUNC(vkds->front.compareOp);
962 ds->db_stencil_control |= S_02842C_STENCILFAIL(si_translate_stencil_op(vkds->front.failOp));
963 ds->db_stencil_control |= S_02842C_STENCILZPASS(si_translate_stencil_op(vkds->front.passOp));
964 ds->db_stencil_control |= S_02842C_STENCILZFAIL(si_translate_stencil_op(vkds->front.depthFailOp));
965
966 ds->db_depth_control |= S_028800_STENCILFUNC_BF(vkds->back.compareOp);
967 ds->db_stencil_control |= S_02842C_STENCILFAIL_BF(si_translate_stencil_op(vkds->back.failOp));
968 ds->db_stencil_control |= S_02842C_STENCILZPASS_BF(si_translate_stencil_op(vkds->back.passOp));
969 ds->db_stencil_control |= S_02842C_STENCILZFAIL_BF(si_translate_stencil_op(vkds->back.depthFailOp));
970 }
971
972 if (extra) {
973
974 ds->db_render_control |= S_028000_DEPTH_CLEAR_ENABLE(extra->db_depth_clear);
975 ds->db_render_control |= S_028000_STENCIL_CLEAR_ENABLE(extra->db_stencil_clear);
976
977 ds->db_render_control |= S_028000_RESUMMARIZE_ENABLE(extra->db_resummarize);
978 ds->db_render_control |= S_028000_DEPTH_COMPRESS_DISABLE(extra->db_flush_depth_inplace);
979 ds->db_render_control |= S_028000_STENCIL_COMPRESS_DISABLE(extra->db_flush_stencil_inplace);
980 ds->db_render_override2 |= S_028010_DISABLE_ZMASK_EXPCLEAR_OPTIMIZATION(extra->db_depth_disable_expclear);
981 ds->db_render_override2 |= S_028010_DISABLE_SMEM_EXPCLEAR_OPTIMIZATION(extra->db_stencil_disable_expclear);
982 }
983 }
984
985 static uint32_t si_translate_fill(VkPolygonMode func)
986 {
987 switch(func) {
988 case VK_POLYGON_MODE_FILL:
989 return V_028814_X_DRAW_TRIANGLES;
990 case VK_POLYGON_MODE_LINE:
991 return V_028814_X_DRAW_LINES;
992 case VK_POLYGON_MODE_POINT:
993 return V_028814_X_DRAW_POINTS;
994 default:
995 assert(0);
996 return V_028814_X_DRAW_POINTS;
997 }
998 }
999 static void
1000 radv_pipeline_init_raster_state(struct radv_pipeline *pipeline,
1001 const VkGraphicsPipelineCreateInfo *pCreateInfo)
1002 {
1003 const VkPipelineRasterizationStateCreateInfo *vkraster = pCreateInfo->pRasterizationState;
1004 struct radv_raster_state *raster = &pipeline->graphics.raster;
1005
1006 raster->spi_interp_control =
1007 S_0286D4_FLAT_SHADE_ENA(1) |
1008 S_0286D4_PNT_SPRITE_ENA(1) |
1009 S_0286D4_PNT_SPRITE_OVRD_X(V_0286D4_SPI_PNT_SPRITE_SEL_S) |
1010 S_0286D4_PNT_SPRITE_OVRD_Y(V_0286D4_SPI_PNT_SPRITE_SEL_T) |
1011 S_0286D4_PNT_SPRITE_OVRD_Z(V_0286D4_SPI_PNT_SPRITE_SEL_0) |
1012 S_0286D4_PNT_SPRITE_OVRD_W(V_0286D4_SPI_PNT_SPRITE_SEL_1) |
1013 S_0286D4_PNT_SPRITE_TOP_1(0); // vulkan is top to bottom - 1.0 at bottom
1014
1015
1016 raster->pa_cl_clip_cntl = S_028810_PS_UCP_MODE(3) |
1017 S_028810_DX_CLIP_SPACE_DEF(1) | // vulkan uses DX conventions.
1018 S_028810_ZCLIP_NEAR_DISABLE(vkraster->depthClampEnable ? 1 : 0) |
1019 S_028810_ZCLIP_FAR_DISABLE(vkraster->depthClampEnable ? 1 : 0) |
1020 S_028810_DX_RASTERIZATION_KILL(vkraster->rasterizerDiscardEnable ? 1 : 0) |
1021 S_028810_DX_LINEAR_ATTR_CLIP_ENA(1);
1022
1023 raster->pa_su_vtx_cntl =
1024 S_028BE4_PIX_CENTER(1) | // TODO verify
1025 S_028BE4_ROUND_MODE(V_028BE4_X_ROUND_TO_EVEN) |
1026 S_028BE4_QUANT_MODE(V_028BE4_X_16_8_FIXED_POINT_1_256TH);
1027
1028 raster->pa_su_sc_mode_cntl =
1029 S_028814_FACE(vkraster->frontFace) |
1030 S_028814_CULL_FRONT(!!(vkraster->cullMode & VK_CULL_MODE_FRONT_BIT)) |
1031 S_028814_CULL_BACK(!!(vkraster->cullMode & VK_CULL_MODE_BACK_BIT)) |
1032 S_028814_POLY_MODE(vkraster->polygonMode != VK_POLYGON_MODE_FILL) |
1033 S_028814_POLYMODE_FRONT_PTYPE(si_translate_fill(vkraster->polygonMode)) |
1034 S_028814_POLYMODE_BACK_PTYPE(si_translate_fill(vkraster->polygonMode)) |
1035 S_028814_POLY_OFFSET_FRONT_ENABLE(vkraster->depthBiasEnable ? 1 : 0) |
1036 S_028814_POLY_OFFSET_BACK_ENABLE(vkraster->depthBiasEnable ? 1 : 0) |
1037 S_028814_POLY_OFFSET_PARA_ENABLE(vkraster->depthBiasEnable ? 1 : 0);
1038
1039 }
1040
1041 static void
1042 radv_pipeline_init_multisample_state(struct radv_pipeline *pipeline,
1043 const VkGraphicsPipelineCreateInfo *pCreateInfo)
1044 {
1045 const VkPipelineMultisampleStateCreateInfo *vkms = pCreateInfo->pMultisampleState;
1046 struct radv_multisample_state *ms = &pipeline->graphics.ms;
1047 unsigned num_tile_pipes = pipeline->device->physical_device->rad_info.num_tile_pipes;
1048 int ps_iter_samples = 1;
1049 uint32_t mask = 0xffff;
1050
1051 if (vkms)
1052 ms->num_samples = vkms->rasterizationSamples;
1053 else
1054 ms->num_samples = 1;
1055
1056 if (vkms && vkms->sampleShadingEnable) {
1057 ps_iter_samples = ceil(vkms->minSampleShading * ms->num_samples);
1058 } else if (pipeline->shaders[MESA_SHADER_FRAGMENT]->info.info.ps.force_persample) {
1059 ps_iter_samples = ms->num_samples;
1060 }
1061
1062 ms->pa_sc_line_cntl = S_028BDC_DX10_DIAMOND_TEST_ENA(1);
1063 ms->pa_sc_aa_config = 0;
1064 ms->db_eqaa = S_028804_HIGH_QUALITY_INTERSECTIONS(1) |
1065 S_028804_STATIC_ANCHOR_ASSOCIATIONS(1);
1066 ms->pa_sc_mode_cntl_1 =
1067 S_028A4C_WALK_FENCE_ENABLE(1) | //TODO linear dst fixes
1068 S_028A4C_WALK_FENCE_SIZE(num_tile_pipes == 2 ? 2 : 3) |
1069 /* always 1: */
1070 S_028A4C_WALK_ALIGN8_PRIM_FITS_ST(1) |
1071 S_028A4C_SUPERTILE_WALK_ORDER_ENABLE(1) |
1072 S_028A4C_TILE_WALK_ORDER_ENABLE(1) |
1073 S_028A4C_MULTI_SHADER_ENGINE_PRIM_DISCARD_ENABLE(1) |
1074 EG_S_028A4C_FORCE_EOV_CNTDWN_ENABLE(1) |
1075 EG_S_028A4C_FORCE_EOV_REZ_ENABLE(1);
1076 ms->pa_sc_mode_cntl_0 = S_028A48_ALTERNATE_RBS_PER_TILE(pipeline->device->physical_device->rad_info.chip_class >= GFX9);
1077
1078 if (ms->num_samples > 1) {
1079 unsigned log_samples = util_logbase2(ms->num_samples);
1080 unsigned log_ps_iter_samples = util_logbase2(util_next_power_of_two(ps_iter_samples));
1081 ms->pa_sc_mode_cntl_0 |= S_028A48_MSAA_ENABLE(1);
1082 ms->pa_sc_line_cntl |= S_028BDC_EXPAND_LINE_WIDTH(1); /* CM_R_028BDC_PA_SC_LINE_CNTL */
1083 ms->db_eqaa |= S_028804_MAX_ANCHOR_SAMPLES(log_samples) |
1084 S_028804_PS_ITER_SAMPLES(log_ps_iter_samples) |
1085 S_028804_MASK_EXPORT_NUM_SAMPLES(log_samples) |
1086 S_028804_ALPHA_TO_MASK_NUM_SAMPLES(log_samples);
1087 ms->pa_sc_aa_config |= S_028BE0_MSAA_NUM_SAMPLES(log_samples) |
1088 S_028BE0_MAX_SAMPLE_DIST(radv_cayman_get_maxdist(log_samples)) |
1089 S_028BE0_MSAA_EXPOSED_SAMPLES(log_samples); /* CM_R_028BE0_PA_SC_AA_CONFIG */
1090 ms->pa_sc_mode_cntl_1 |= EG_S_028A4C_PS_ITER_SAMPLE(ps_iter_samples > 1);
1091 }
1092
1093 const struct VkPipelineRasterizationStateRasterizationOrderAMD *raster_order =
1094 vk_find_struct_const(pCreateInfo->pRasterizationState->pNext, PIPELINE_RASTERIZATION_STATE_RASTERIZATION_ORDER_AMD);
1095 if (raster_order && raster_order->rasterizationOrder == VK_RASTERIZATION_ORDER_RELAXED_AMD) {
1096 ms->pa_sc_mode_cntl_1 |= S_028A4C_OUT_OF_ORDER_PRIMITIVE_ENABLE(1) |
1097 S_028A4C_OUT_OF_ORDER_WATER_MARK(0x7);
1098 }
1099
1100 if (vkms && vkms->pSampleMask) {
1101 mask = vkms->pSampleMask[0] & 0xffff;
1102 }
1103
1104 ms->pa_sc_aa_mask[0] = mask | (mask << 16);
1105 ms->pa_sc_aa_mask[1] = mask | (mask << 16);
1106 }
1107
1108 static bool
1109 radv_prim_can_use_guardband(enum VkPrimitiveTopology topology)
1110 {
1111 switch (topology) {
1112 case VK_PRIMITIVE_TOPOLOGY_POINT_LIST:
1113 case VK_PRIMITIVE_TOPOLOGY_LINE_LIST:
1114 case VK_PRIMITIVE_TOPOLOGY_LINE_STRIP:
1115 case VK_PRIMITIVE_TOPOLOGY_LINE_LIST_WITH_ADJACENCY:
1116 case VK_PRIMITIVE_TOPOLOGY_LINE_STRIP_WITH_ADJACENCY:
1117 return false;
1118 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST:
1119 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP:
1120 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN:
1121 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST_WITH_ADJACENCY:
1122 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_WITH_ADJACENCY:
1123 case VK_PRIMITIVE_TOPOLOGY_PATCH_LIST:
1124 return true;
1125 default:
1126 unreachable("unhandled primitive type");
1127 }
1128 }
1129
1130 static uint32_t
1131 si_translate_prim(enum VkPrimitiveTopology topology)
1132 {
1133 switch (topology) {
1134 case VK_PRIMITIVE_TOPOLOGY_POINT_LIST:
1135 return V_008958_DI_PT_POINTLIST;
1136 case VK_PRIMITIVE_TOPOLOGY_LINE_LIST:
1137 return V_008958_DI_PT_LINELIST;
1138 case VK_PRIMITIVE_TOPOLOGY_LINE_STRIP:
1139 return V_008958_DI_PT_LINESTRIP;
1140 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST:
1141 return V_008958_DI_PT_TRILIST;
1142 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP:
1143 return V_008958_DI_PT_TRISTRIP;
1144 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN:
1145 return V_008958_DI_PT_TRIFAN;
1146 case VK_PRIMITIVE_TOPOLOGY_LINE_LIST_WITH_ADJACENCY:
1147 return V_008958_DI_PT_LINELIST_ADJ;
1148 case VK_PRIMITIVE_TOPOLOGY_LINE_STRIP_WITH_ADJACENCY:
1149 return V_008958_DI_PT_LINESTRIP_ADJ;
1150 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST_WITH_ADJACENCY:
1151 return V_008958_DI_PT_TRILIST_ADJ;
1152 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_WITH_ADJACENCY:
1153 return V_008958_DI_PT_TRISTRIP_ADJ;
1154 case VK_PRIMITIVE_TOPOLOGY_PATCH_LIST:
1155 return V_008958_DI_PT_PATCH;
1156 default:
1157 assert(0);
1158 return 0;
1159 }
1160 }
1161
1162 static uint32_t
1163 si_conv_gl_prim_to_gs_out(unsigned gl_prim)
1164 {
1165 switch (gl_prim) {
1166 case 0: /* GL_POINTS */
1167 return V_028A6C_OUTPRIM_TYPE_POINTLIST;
1168 case 1: /* GL_LINES */
1169 case 3: /* GL_LINE_STRIP */
1170 case 0xA: /* GL_LINE_STRIP_ADJACENCY_ARB */
1171 case 0x8E7A: /* GL_ISOLINES */
1172 return V_028A6C_OUTPRIM_TYPE_LINESTRIP;
1173
1174 case 4: /* GL_TRIANGLES */
1175 case 0xc: /* GL_TRIANGLES_ADJACENCY_ARB */
1176 case 5: /* GL_TRIANGLE_STRIP */
1177 case 7: /* GL_QUADS */
1178 return V_028A6C_OUTPRIM_TYPE_TRISTRIP;
1179 default:
1180 assert(0);
1181 return 0;
1182 }
1183 }
1184
1185 static uint32_t
1186 si_conv_prim_to_gs_out(enum VkPrimitiveTopology topology)
1187 {
1188 switch (topology) {
1189 case VK_PRIMITIVE_TOPOLOGY_POINT_LIST:
1190 case VK_PRIMITIVE_TOPOLOGY_PATCH_LIST:
1191 return V_028A6C_OUTPRIM_TYPE_POINTLIST;
1192 case VK_PRIMITIVE_TOPOLOGY_LINE_LIST:
1193 case VK_PRIMITIVE_TOPOLOGY_LINE_STRIP:
1194 case VK_PRIMITIVE_TOPOLOGY_LINE_LIST_WITH_ADJACENCY:
1195 case VK_PRIMITIVE_TOPOLOGY_LINE_STRIP_WITH_ADJACENCY:
1196 return V_028A6C_OUTPRIM_TYPE_LINESTRIP;
1197 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST:
1198 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP:
1199 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN:
1200 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST_WITH_ADJACENCY:
1201 case VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_WITH_ADJACENCY:
1202 return V_028A6C_OUTPRIM_TYPE_TRISTRIP;
1203 default:
1204 assert(0);
1205 return 0;
1206 }
1207 }
1208
1209 static unsigned si_map_swizzle(unsigned swizzle)
1210 {
1211 switch (swizzle) {
1212 case VK_SWIZZLE_Y:
1213 return V_008F0C_SQ_SEL_Y;
1214 case VK_SWIZZLE_Z:
1215 return V_008F0C_SQ_SEL_Z;
1216 case VK_SWIZZLE_W:
1217 return V_008F0C_SQ_SEL_W;
1218 case VK_SWIZZLE_0:
1219 return V_008F0C_SQ_SEL_0;
1220 case VK_SWIZZLE_1:
1221 return V_008F0C_SQ_SEL_1;
1222 default: /* VK_SWIZZLE_X */
1223 return V_008F0C_SQ_SEL_X;
1224 }
1225 }
1226
1227 static void
1228 radv_pipeline_init_dynamic_state(struct radv_pipeline *pipeline,
1229 const VkGraphicsPipelineCreateInfo *pCreateInfo)
1230 {
1231 radv_cmd_dirty_mask_t states = RADV_CMD_DIRTY_DYNAMIC_ALL;
1232 RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
1233 struct radv_subpass *subpass = &pass->subpasses[pCreateInfo->subpass];
1234
1235 pipeline->dynamic_state = default_dynamic_state;
1236
1237 if (pCreateInfo->pDynamicState) {
1238 /* Remove all of the states that are marked as dynamic */
1239 uint32_t count = pCreateInfo->pDynamicState->dynamicStateCount;
1240 for (uint32_t s = 0; s < count; s++)
1241 states &= ~(1 << pCreateInfo->pDynamicState->pDynamicStates[s]);
1242 }
1243
1244 struct radv_dynamic_state *dynamic = &pipeline->dynamic_state;
1245
1246 /* Section 9.2 of the Vulkan 1.0.15 spec says:
1247 *
1248 * pViewportState is [...] NULL if the pipeline
1249 * has rasterization disabled.
1250 */
1251 if (!pCreateInfo->pRasterizationState->rasterizerDiscardEnable) {
1252 assert(pCreateInfo->pViewportState);
1253
1254 dynamic->viewport.count = pCreateInfo->pViewportState->viewportCount;
1255 if (states & (1 << VK_DYNAMIC_STATE_VIEWPORT)) {
1256 typed_memcpy(dynamic->viewport.viewports,
1257 pCreateInfo->pViewportState->pViewports,
1258 pCreateInfo->pViewportState->viewportCount);
1259 }
1260
1261 dynamic->scissor.count = pCreateInfo->pViewportState->scissorCount;
1262 if (states & (1 << VK_DYNAMIC_STATE_SCISSOR)) {
1263 typed_memcpy(dynamic->scissor.scissors,
1264 pCreateInfo->pViewportState->pScissors,
1265 pCreateInfo->pViewportState->scissorCount);
1266 }
1267 }
1268
1269 if (states & (1 << VK_DYNAMIC_STATE_LINE_WIDTH)) {
1270 assert(pCreateInfo->pRasterizationState);
1271 dynamic->line_width = pCreateInfo->pRasterizationState->lineWidth;
1272 }
1273
1274 if (states & (1 << VK_DYNAMIC_STATE_DEPTH_BIAS)) {
1275 assert(pCreateInfo->pRasterizationState);
1276 dynamic->depth_bias.bias =
1277 pCreateInfo->pRasterizationState->depthBiasConstantFactor;
1278 dynamic->depth_bias.clamp =
1279 pCreateInfo->pRasterizationState->depthBiasClamp;
1280 dynamic->depth_bias.slope =
1281 pCreateInfo->pRasterizationState->depthBiasSlopeFactor;
1282 }
1283
1284 /* Section 9.2 of the Vulkan 1.0.15 spec says:
1285 *
1286 * pColorBlendState is [...] NULL if the pipeline has rasterization
1287 * disabled or if the subpass of the render pass the pipeline is
1288 * created against does not use any color attachments.
1289 */
1290 bool uses_color_att = false;
1291 for (unsigned i = 0; i < subpass->color_count; ++i) {
1292 if (subpass->color_attachments[i].attachment != VK_ATTACHMENT_UNUSED) {
1293 uses_color_att = true;
1294 break;
1295 }
1296 }
1297
1298 if (uses_color_att && states & (1 << VK_DYNAMIC_STATE_BLEND_CONSTANTS)) {
1299 assert(pCreateInfo->pColorBlendState);
1300 typed_memcpy(dynamic->blend_constants,
1301 pCreateInfo->pColorBlendState->blendConstants, 4);
1302 }
1303
1304 /* If there is no depthstencil attachment, then don't read
1305 * pDepthStencilState. The Vulkan spec states that pDepthStencilState may
1306 * be NULL in this case. Even if pDepthStencilState is non-NULL, there is
1307 * no need to override the depthstencil defaults in
1308 * radv_pipeline::dynamic_state when there is no depthstencil attachment.
1309 *
1310 * Section 9.2 of the Vulkan 1.0.15 spec says:
1311 *
1312 * pDepthStencilState is [...] NULL if the pipeline has rasterization
1313 * disabled or if the subpass of the render pass the pipeline is created
1314 * against does not use a depth/stencil attachment.
1315 */
1316 if (!pCreateInfo->pRasterizationState->rasterizerDiscardEnable &&
1317 subpass->depth_stencil_attachment.attachment != VK_ATTACHMENT_UNUSED) {
1318 assert(pCreateInfo->pDepthStencilState);
1319
1320 if (states & (1 << VK_DYNAMIC_STATE_DEPTH_BOUNDS)) {
1321 dynamic->depth_bounds.min =
1322 pCreateInfo->pDepthStencilState->minDepthBounds;
1323 dynamic->depth_bounds.max =
1324 pCreateInfo->pDepthStencilState->maxDepthBounds;
1325 }
1326
1327 if (states & (1 << VK_DYNAMIC_STATE_STENCIL_COMPARE_MASK)) {
1328 dynamic->stencil_compare_mask.front =
1329 pCreateInfo->pDepthStencilState->front.compareMask;
1330 dynamic->stencil_compare_mask.back =
1331 pCreateInfo->pDepthStencilState->back.compareMask;
1332 }
1333
1334 if (states & (1 << VK_DYNAMIC_STATE_STENCIL_WRITE_MASK)) {
1335 dynamic->stencil_write_mask.front =
1336 pCreateInfo->pDepthStencilState->front.writeMask;
1337 dynamic->stencil_write_mask.back =
1338 pCreateInfo->pDepthStencilState->back.writeMask;
1339 }
1340
1341 if (states & (1 << VK_DYNAMIC_STATE_STENCIL_REFERENCE)) {
1342 dynamic->stencil_reference.front =
1343 pCreateInfo->pDepthStencilState->front.reference;
1344 dynamic->stencil_reference.back =
1345 pCreateInfo->pDepthStencilState->back.reference;
1346 }
1347 }
1348
1349 pipeline->dynamic_state_mask = states;
1350 }
1351
1352 static struct ac_shader_variant_key
1353 radv_compute_vs_key(const VkGraphicsPipelineCreateInfo *pCreateInfo, bool as_es, bool as_ls, bool export_prim_id)
1354 {
1355 struct ac_shader_variant_key key;
1356 const VkPipelineVertexInputStateCreateInfo *input_state =
1357 pCreateInfo->pVertexInputState;
1358
1359 memset(&key, 0, sizeof(key));
1360 key.vs.instance_rate_inputs = 0;
1361 key.vs.as_es = as_es;
1362 key.vs.as_ls = as_ls;
1363 key.vs.export_prim_id = export_prim_id;
1364
1365 for (unsigned i = 0; i < input_state->vertexAttributeDescriptionCount; ++i) {
1366 unsigned binding;
1367 binding = input_state->pVertexAttributeDescriptions[i].binding;
1368 if (input_state->pVertexBindingDescriptions[binding].inputRate)
1369 key.vs.instance_rate_inputs |= 1u << input_state->pVertexAttributeDescriptions[i].location;
1370 }
1371 return key;
1372 }
1373
1374 static void
1375 calculate_gs_ring_sizes(struct radv_pipeline *pipeline)
1376 {
1377 struct radv_device *device = pipeline->device;
1378 unsigned num_se = device->physical_device->rad_info.max_se;
1379 unsigned wave_size = 64;
1380 unsigned max_gs_waves = 32 * num_se; /* max 32 per SE on GCN */
1381 unsigned gs_vertex_reuse = 16 * num_se; /* GS_VERTEX_REUSE register (per SE) */
1382 unsigned alignment = 256 * num_se;
1383 /* The maximum size is 63.999 MB per SE. */
1384 unsigned max_size = ((unsigned)(63.999 * 1024 * 1024) & ~255) * num_se;
1385 struct ac_shader_variant_info *gs_info = &pipeline->shaders[MESA_SHADER_GEOMETRY]->info;
1386 struct ac_es_output_info *es_info = radv_pipeline_has_tess(pipeline) ?
1387 &pipeline->shaders[MESA_SHADER_TESS_EVAL]->info.tes.es_info :
1388 &pipeline->shaders[MESA_SHADER_VERTEX]->info.vs.es_info;
1389
1390 /* Calculate the minimum size. */
1391 unsigned min_esgs_ring_size = align(es_info->esgs_itemsize * gs_vertex_reuse *
1392 wave_size, alignment);
1393 /* These are recommended sizes, not minimum sizes. */
1394 unsigned esgs_ring_size = max_gs_waves * 2 * wave_size *
1395 es_info->esgs_itemsize * gs_info->gs.vertices_in;
1396 unsigned gsvs_ring_size = max_gs_waves * 2 * wave_size *
1397 gs_info->gs.max_gsvs_emit_size * 1; // no streams in VK (gs->max_gs_stream + 1);
1398
1399 min_esgs_ring_size = align(min_esgs_ring_size, alignment);
1400 esgs_ring_size = align(esgs_ring_size, alignment);
1401 gsvs_ring_size = align(gsvs_ring_size, alignment);
1402
1403 pipeline->graphics.esgs_ring_size = CLAMP(esgs_ring_size, min_esgs_ring_size, max_size);
1404 pipeline->graphics.gsvs_ring_size = MIN2(gsvs_ring_size, max_size);
1405 }
1406
1407 static void si_multiwave_lds_size_workaround(struct radv_device *device,
1408 unsigned *lds_size)
1409 {
1410 /* SPI barrier management bug:
1411 * Make sure we have at least 4k of LDS in use to avoid the bug.
1412 * It applies to workgroup sizes of more than one wavefront.
1413 */
1414 if (device->physical_device->rad_info.family == CHIP_BONAIRE ||
1415 device->physical_device->rad_info.family == CHIP_KABINI ||
1416 device->physical_device->rad_info.family == CHIP_MULLINS)
1417 *lds_size = MAX2(*lds_size, 8);
1418 }
1419
1420 static void
1421 calculate_tess_state(struct radv_pipeline *pipeline,
1422 const VkGraphicsPipelineCreateInfo *pCreateInfo)
1423 {
1424 unsigned num_tcs_input_cp = pCreateInfo->pTessellationState->patchControlPoints;
1425 unsigned num_tcs_output_cp, num_tcs_inputs, num_tcs_outputs;
1426 unsigned num_tcs_patch_outputs;
1427 unsigned input_vertex_size, output_vertex_size, pervertex_output_patch_size;
1428 unsigned input_patch_size, output_patch_size, output_patch0_offset;
1429 unsigned lds_size, hardware_lds_size;
1430 unsigned perpatch_output_offset;
1431 unsigned num_patches;
1432 struct radv_tessellation_state *tess = &pipeline->graphics.tess;
1433
1434 /* This calculates how shader inputs and outputs among VS, TCS, and TES
1435 * are laid out in LDS. */
1436 num_tcs_inputs = util_last_bit64(pipeline->shaders[MESA_SHADER_VERTEX]->info.vs.outputs_written);
1437
1438 num_tcs_outputs = util_last_bit64(pipeline->shaders[MESA_SHADER_TESS_CTRL]->info.tcs.outputs_written); //tcs->outputs_written
1439 num_tcs_output_cp = pipeline->shaders[MESA_SHADER_TESS_CTRL]->info.tcs.tcs_vertices_out; //TCS VERTICES OUT
1440 num_tcs_patch_outputs = util_last_bit64(pipeline->shaders[MESA_SHADER_TESS_CTRL]->info.tcs.patch_outputs_written);
1441
1442 /* Ensure that we only need one wave per SIMD so we don't need to check
1443 * resource usage. Also ensures that the number of tcs in and out
1444 * vertices per threadgroup are at most 256.
1445 */
1446 input_vertex_size = num_tcs_inputs * 16;
1447 output_vertex_size = num_tcs_outputs * 16;
1448
1449 input_patch_size = num_tcs_input_cp * input_vertex_size;
1450
1451 pervertex_output_patch_size = num_tcs_output_cp * output_vertex_size;
1452 output_patch_size = pervertex_output_patch_size + num_tcs_patch_outputs * 16;
1453 /* Ensure that we only need one wave per SIMD so we don't need to check
1454 * resource usage. Also ensures that the number of tcs in and out
1455 * vertices per threadgroup are at most 256.
1456 */
1457 num_patches = 64 / MAX2(num_tcs_input_cp, num_tcs_output_cp) * 4;
1458
1459 /* Make sure that the data fits in LDS. This assumes the shaders only
1460 * use LDS for the inputs and outputs.
1461 */
1462 hardware_lds_size = pipeline->device->physical_device->rad_info.chip_class >= CIK ? 65536 : 32768;
1463 num_patches = MIN2(num_patches, hardware_lds_size / (input_patch_size + output_patch_size));
1464
1465 /* Make sure the output data fits in the offchip buffer */
1466 num_patches = MIN2(num_patches,
1467 (pipeline->device->tess_offchip_block_dw_size * 4) /
1468 output_patch_size);
1469
1470 /* Not necessary for correctness, but improves performance. The
1471 * specific value is taken from the proprietary driver.
1472 */
1473 num_patches = MIN2(num_patches, 40);
1474
1475 /* SI bug workaround - limit LS-HS threadgroups to only one wave. */
1476 if (pipeline->device->physical_device->rad_info.chip_class == SI) {
1477 unsigned one_wave = 64 / MAX2(num_tcs_input_cp, num_tcs_output_cp);
1478 num_patches = MIN2(num_patches, one_wave);
1479 }
1480
1481 output_patch0_offset = input_patch_size * num_patches;
1482 perpatch_output_offset = output_patch0_offset + pervertex_output_patch_size;
1483
1484 lds_size = output_patch0_offset + output_patch_size * num_patches;
1485
1486 if (pipeline->device->physical_device->rad_info.chip_class >= CIK) {
1487 assert(lds_size <= 65536);
1488 lds_size = align(lds_size, 512) / 512;
1489 } else {
1490 assert(lds_size <= 32768);
1491 lds_size = align(lds_size, 256) / 256;
1492 }
1493 si_multiwave_lds_size_workaround(pipeline->device, &lds_size);
1494
1495 tess->lds_size = lds_size;
1496
1497 tess->tcs_in_layout = (input_patch_size / 4) |
1498 ((input_vertex_size / 4) << 13);
1499 tess->tcs_out_layout = (output_patch_size / 4) |
1500 ((output_vertex_size / 4) << 13);
1501 tess->tcs_out_offsets = (output_patch0_offset / 16) |
1502 ((perpatch_output_offset / 16) << 16);
1503 tess->offchip_layout = (pervertex_output_patch_size * num_patches << 16) |
1504 (num_tcs_output_cp << 9) | num_patches;
1505
1506 tess->ls_hs_config = S_028B58_NUM_PATCHES(num_patches) |
1507 S_028B58_HS_NUM_INPUT_CP(num_tcs_input_cp) |
1508 S_028B58_HS_NUM_OUTPUT_CP(num_tcs_output_cp);
1509 tess->num_patches = num_patches;
1510 tess->num_tcs_input_cp = num_tcs_input_cp;
1511
1512 struct radv_shader_variant *tes = pipeline->shaders[MESA_SHADER_TESS_EVAL];
1513 unsigned type = 0, partitioning = 0, topology = 0, distribution_mode = 0;
1514
1515 switch (tes->info.tes.primitive_mode) {
1516 case GL_TRIANGLES:
1517 type = V_028B6C_TESS_TRIANGLE;
1518 break;
1519 case GL_QUADS:
1520 type = V_028B6C_TESS_QUAD;
1521 break;
1522 case GL_ISOLINES:
1523 type = V_028B6C_TESS_ISOLINE;
1524 break;
1525 }
1526
1527 switch (tes->info.tes.spacing) {
1528 case TESS_SPACING_EQUAL:
1529 partitioning = V_028B6C_PART_INTEGER;
1530 break;
1531 case TESS_SPACING_FRACTIONAL_ODD:
1532 partitioning = V_028B6C_PART_FRAC_ODD;
1533 break;
1534 case TESS_SPACING_FRACTIONAL_EVEN:
1535 partitioning = V_028B6C_PART_FRAC_EVEN;
1536 break;
1537 default:
1538 break;
1539 }
1540
1541 bool ccw = tes->info.tes.ccw;
1542 const VkPipelineTessellationDomainOriginStateCreateInfoKHR *domain_origin_state =
1543 vk_find_struct_const(pCreateInfo->pTessellationState,
1544 PIPELINE_TESSELLATION_DOMAIN_ORIGIN_STATE_CREATE_INFO_KHR);
1545
1546 if (domain_origin_state && domain_origin_state->domainOrigin != VK_TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT_KHR)
1547 ccw = !ccw;
1548
1549 if (tes->info.tes.point_mode)
1550 topology = V_028B6C_OUTPUT_POINT;
1551 else if (tes->info.tes.primitive_mode == GL_ISOLINES)
1552 topology = V_028B6C_OUTPUT_LINE;
1553 else if (ccw)
1554 topology = V_028B6C_OUTPUT_TRIANGLE_CCW;
1555 else
1556 topology = V_028B6C_OUTPUT_TRIANGLE_CW;
1557
1558 if (pipeline->device->has_distributed_tess) {
1559 if (pipeline->device->physical_device->rad_info.family == CHIP_FIJI ||
1560 pipeline->device->physical_device->rad_info.family >= CHIP_POLARIS10)
1561 distribution_mode = V_028B6C_DISTRIBUTION_MODE_TRAPEZOIDS;
1562 else
1563 distribution_mode = V_028B6C_DISTRIBUTION_MODE_DONUTS;
1564 } else
1565 distribution_mode = V_028B6C_DISTRIBUTION_MODE_NO_DIST;
1566
1567 tess->tf_param = S_028B6C_TYPE(type) |
1568 S_028B6C_PARTITIONING(partitioning) |
1569 S_028B6C_TOPOLOGY(topology) |
1570 S_028B6C_DISTRIBUTION_MODE(distribution_mode);
1571 }
1572
1573 static const struct radv_prim_vertex_count prim_size_table[] = {
1574 [V_008958_DI_PT_NONE] = {0, 0},
1575 [V_008958_DI_PT_POINTLIST] = {1, 1},
1576 [V_008958_DI_PT_LINELIST] = {2, 2},
1577 [V_008958_DI_PT_LINESTRIP] = {2, 1},
1578 [V_008958_DI_PT_TRILIST] = {3, 3},
1579 [V_008958_DI_PT_TRIFAN] = {3, 1},
1580 [V_008958_DI_PT_TRISTRIP] = {3, 1},
1581 [V_008958_DI_PT_LINELIST_ADJ] = {4, 4},
1582 [V_008958_DI_PT_LINESTRIP_ADJ] = {4, 1},
1583 [V_008958_DI_PT_TRILIST_ADJ] = {6, 6},
1584 [V_008958_DI_PT_TRISTRIP_ADJ] = {6, 2},
1585 [V_008958_DI_PT_RECTLIST] = {3, 3},
1586 [V_008958_DI_PT_LINELOOP] = {2, 1},
1587 [V_008958_DI_PT_POLYGON] = {3, 1},
1588 [V_008958_DI_PT_2D_TRI_STRIP] = {0, 0},
1589 };
1590
1591 static uint32_t si_vgt_gs_mode(struct radv_shader_variant *gs)
1592 {
1593 unsigned gs_max_vert_out = gs->info.gs.vertices_out;
1594 unsigned cut_mode;
1595
1596 if (gs_max_vert_out <= 128) {
1597 cut_mode = V_028A40_GS_CUT_128;
1598 } else if (gs_max_vert_out <= 256) {
1599 cut_mode = V_028A40_GS_CUT_256;
1600 } else if (gs_max_vert_out <= 512) {
1601 cut_mode = V_028A40_GS_CUT_512;
1602 } else {
1603 assert(gs_max_vert_out <= 1024);
1604 cut_mode = V_028A40_GS_CUT_1024;
1605 }
1606
1607 return S_028A40_MODE(V_028A40_GS_SCENARIO_G) |
1608 S_028A40_CUT_MODE(cut_mode)|
1609 S_028A40_ES_WRITE_OPTIMIZE(1) |
1610 S_028A40_GS_WRITE_OPTIMIZE(1);
1611 }
1612
1613 static void calculate_vgt_gs_mode(struct radv_pipeline *pipeline)
1614 {
1615 struct radv_shader_variant *vs;
1616 vs = radv_pipeline_has_gs(pipeline) ? pipeline->gs_copy_shader : (radv_pipeline_has_tess(pipeline) ? pipeline->shaders[MESA_SHADER_TESS_EVAL] : pipeline->shaders[MESA_SHADER_VERTEX]);
1617
1618 struct ac_vs_output_info *outinfo = &vs->info.vs.outinfo;
1619
1620 pipeline->graphics.vgt_primitiveid_en = false;
1621 pipeline->graphics.vgt_gs_mode = 0;
1622
1623 if (radv_pipeline_has_gs(pipeline)) {
1624 pipeline->graphics.vgt_gs_mode = si_vgt_gs_mode(pipeline->shaders[MESA_SHADER_GEOMETRY]);
1625 } else if (outinfo->export_prim_id) {
1626 pipeline->graphics.vgt_gs_mode = S_028A40_MODE(V_028A40_GS_SCENARIO_A);
1627 pipeline->graphics.vgt_primitiveid_en = true;
1628 }
1629 }
1630
1631 static void calculate_pa_cl_vs_out_cntl(struct radv_pipeline *pipeline)
1632 {
1633 struct radv_shader_variant *vs;
1634 vs = radv_pipeline_has_gs(pipeline) ? pipeline->gs_copy_shader : (radv_pipeline_has_tess(pipeline) ? pipeline->shaders[MESA_SHADER_TESS_EVAL] : pipeline->shaders[MESA_SHADER_VERTEX]);
1635
1636 struct ac_vs_output_info *outinfo = &vs->info.vs.outinfo;
1637
1638 unsigned clip_dist_mask, cull_dist_mask, total_mask;
1639 clip_dist_mask = outinfo->clip_dist_mask;
1640 cull_dist_mask = outinfo->cull_dist_mask;
1641 total_mask = clip_dist_mask | cull_dist_mask;
1642
1643 bool misc_vec_ena = outinfo->writes_pointsize ||
1644 outinfo->writes_layer ||
1645 outinfo->writes_viewport_index;
1646 pipeline->graphics.pa_cl_vs_out_cntl =
1647 S_02881C_USE_VTX_POINT_SIZE(outinfo->writes_pointsize) |
1648 S_02881C_USE_VTX_RENDER_TARGET_INDX(outinfo->writes_layer) |
1649 S_02881C_USE_VTX_VIEWPORT_INDX(outinfo->writes_viewport_index) |
1650 S_02881C_VS_OUT_MISC_VEC_ENA(misc_vec_ena) |
1651 S_02881C_VS_OUT_MISC_SIDE_BUS_ENA(misc_vec_ena) |
1652 S_02881C_VS_OUT_CCDIST0_VEC_ENA((total_mask & 0x0f) != 0) |
1653 S_02881C_VS_OUT_CCDIST1_VEC_ENA((total_mask & 0xf0) != 0) |
1654 cull_dist_mask << 8 |
1655 clip_dist_mask;
1656
1657 }
1658
1659 static uint32_t offset_to_ps_input(uint32_t offset, bool flat_shade)
1660 {
1661 uint32_t ps_input_cntl;
1662 if (offset <= AC_EXP_PARAM_OFFSET_31) {
1663 ps_input_cntl = S_028644_OFFSET(offset);
1664 if (flat_shade)
1665 ps_input_cntl |= S_028644_FLAT_SHADE(1);
1666 } else {
1667 /* The input is a DEFAULT_VAL constant. */
1668 assert(offset >= AC_EXP_PARAM_DEFAULT_VAL_0000 &&
1669 offset <= AC_EXP_PARAM_DEFAULT_VAL_1111);
1670 offset -= AC_EXP_PARAM_DEFAULT_VAL_0000;
1671 ps_input_cntl = S_028644_OFFSET(0x20) |
1672 S_028644_DEFAULT_VAL(offset);
1673 }
1674 return ps_input_cntl;
1675 }
1676
1677 static void calculate_ps_inputs(struct radv_pipeline *pipeline)
1678 {
1679 struct radv_shader_variant *ps, *vs;
1680 struct ac_vs_output_info *outinfo;
1681
1682 ps = pipeline->shaders[MESA_SHADER_FRAGMENT];
1683 vs = radv_pipeline_has_gs(pipeline) ? pipeline->gs_copy_shader : (radv_pipeline_has_tess(pipeline) ? pipeline->shaders[MESA_SHADER_TESS_EVAL] : pipeline->shaders[MESA_SHADER_VERTEX]);
1684
1685 outinfo = &vs->info.vs.outinfo;
1686
1687 unsigned ps_offset = 0;
1688
1689 if (ps->info.fs.prim_id_input) {
1690 unsigned vs_offset = outinfo->vs_output_param_offset[VARYING_SLOT_PRIMITIVE_ID];
1691 if (vs_offset != AC_EXP_PARAM_UNDEFINED) {
1692 pipeline->graphics.ps_input_cntl[ps_offset] = offset_to_ps_input(vs_offset, true);
1693 ++ps_offset;
1694 }
1695 }
1696
1697 if (ps->info.fs.layer_input) {
1698 unsigned vs_offset = outinfo->vs_output_param_offset[VARYING_SLOT_LAYER];
1699 if (vs_offset != AC_EXP_PARAM_UNDEFINED)
1700 pipeline->graphics.ps_input_cntl[ps_offset] = offset_to_ps_input(vs_offset, true);
1701 else
1702 pipeline->graphics.ps_input_cntl[ps_offset] = offset_to_ps_input(AC_EXP_PARAM_DEFAULT_VAL_0000, true);
1703 ++ps_offset;
1704 }
1705
1706 if (ps->info.fs.has_pcoord) {
1707 unsigned val;
1708 val = S_028644_PT_SPRITE_TEX(1) | S_028644_OFFSET(0x20);
1709 pipeline->graphics.ps_input_cntl[ps_offset] = val;
1710 ps_offset++;
1711 }
1712
1713 for (unsigned i = 0; i < 32 && (1u << i) <= ps->info.fs.input_mask; ++i) {
1714 unsigned vs_offset;
1715 bool flat_shade;
1716 if (!(ps->info.fs.input_mask & (1u << i)))
1717 continue;
1718
1719 vs_offset = outinfo->vs_output_param_offset[VARYING_SLOT_VAR0 + i];
1720 if (vs_offset == AC_EXP_PARAM_UNDEFINED) {
1721 pipeline->graphics.ps_input_cntl[ps_offset] = S_028644_OFFSET(0x20);
1722 ++ps_offset;
1723 continue;
1724 }
1725
1726 flat_shade = !!(ps->info.fs.flat_shaded_mask & (1u << ps_offset));
1727
1728 pipeline->graphics.ps_input_cntl[ps_offset] = offset_to_ps_input(vs_offset, flat_shade);
1729 ++ps_offset;
1730 }
1731
1732 pipeline->graphics.ps_input_cntl_num = ps_offset;
1733 }
1734
1735 static VkResult
1736 radv_pipeline_init(struct radv_pipeline *pipeline,
1737 struct radv_device *device,
1738 struct radv_pipeline_cache *cache,
1739 const VkGraphicsPipelineCreateInfo *pCreateInfo,
1740 const struct radv_graphics_pipeline_create_info *extra,
1741 const VkAllocationCallbacks *alloc)
1742 {
1743 struct radv_shader_module fs_m = {0};
1744 VkResult result;
1745 bool has_view_index = false;
1746
1747 RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
1748 struct radv_subpass *subpass = pass->subpasses + pCreateInfo->subpass;
1749 if (subpass->view_mask)
1750 has_view_index = true;
1751 if (alloc == NULL)
1752 alloc = &device->alloc;
1753
1754 pipeline->device = device;
1755 pipeline->layout = radv_pipeline_layout_from_handle(pCreateInfo->layout);
1756
1757 radv_pipeline_init_dynamic_state(pipeline, pCreateInfo);
1758 const VkPipelineShaderStageCreateInfo *pStages[MESA_SHADER_STAGES] = { 0, };
1759 struct radv_shader_module *modules[MESA_SHADER_STAGES] = { 0, };
1760 for (uint32_t i = 0; i < pCreateInfo->stageCount; i++) {
1761 gl_shader_stage stage = ffs(pCreateInfo->pStages[i].stage) - 1;
1762 pStages[stage] = &pCreateInfo->pStages[i];
1763 modules[stage] = radv_shader_module_from_handle(pStages[stage]->module);
1764 }
1765
1766 radv_pipeline_init_blend_state(pipeline, pCreateInfo, extra);
1767
1768 if (!modules[MESA_SHADER_FRAGMENT]) {
1769 nir_builder fs_b;
1770 nir_builder_init_simple_shader(&fs_b, NULL, MESA_SHADER_FRAGMENT, NULL);
1771 fs_b.shader->info.name = ralloc_strdup(fs_b.shader, "noop_fs");
1772 fs_m.nir = fs_b.shader;
1773 modules[MESA_SHADER_FRAGMENT] = &fs_m;
1774 }
1775
1776 if (modules[MESA_SHADER_FRAGMENT]) {
1777 struct ac_shader_variant_key key = {0};
1778 key.fs.col_format = pipeline->graphics.blend.spi_shader_col_format;
1779 if (pCreateInfo->pMultisampleState &&
1780 pCreateInfo->pMultisampleState->rasterizationSamples > 1)
1781 key.fs.multisample = true;
1782
1783 if (pipeline->device->physical_device->rad_info.chip_class < VI)
1784 radv_pipeline_compute_get_int_clamp(pCreateInfo, &key.fs.is_int8, &key.fs.is_int10);
1785
1786 const VkPipelineShaderStageCreateInfo *stage = pStages[MESA_SHADER_FRAGMENT];
1787
1788 pipeline->shaders[MESA_SHADER_FRAGMENT] =
1789 radv_pipeline_compile(pipeline, cache, modules[MESA_SHADER_FRAGMENT],
1790 stage ? stage->pName : "main",
1791 MESA_SHADER_FRAGMENT,
1792 stage ? stage->pSpecializationInfo : NULL,
1793 pipeline->layout, &key);
1794 pipeline->active_stages |= mesa_to_vk_shader_stage(MESA_SHADER_FRAGMENT);
1795 }
1796
1797 if (fs_m.nir)
1798 ralloc_free(fs_m.nir);
1799
1800 if (modules[MESA_SHADER_VERTEX]) {
1801 bool as_es = false;
1802 bool as_ls = false;
1803 bool export_prim_id = false;
1804 if (modules[MESA_SHADER_TESS_CTRL])
1805 as_ls = true;
1806 else if (modules[MESA_SHADER_GEOMETRY])
1807 as_es = true;
1808 else if (pipeline->shaders[MESA_SHADER_FRAGMENT]->info.fs.prim_id_input)
1809 export_prim_id = true;
1810 struct ac_shader_variant_key key = radv_compute_vs_key(pCreateInfo, as_es, as_ls, export_prim_id);
1811 key.has_multiview_view_index = has_view_index;
1812
1813 pipeline->shaders[MESA_SHADER_VERTEX] =
1814 radv_pipeline_compile(pipeline, cache, modules[MESA_SHADER_VERTEX],
1815 pStages[MESA_SHADER_VERTEX]->pName,
1816 MESA_SHADER_VERTEX,
1817 pStages[MESA_SHADER_VERTEX]->pSpecializationInfo,
1818 pipeline->layout, &key);
1819
1820 pipeline->active_stages |= mesa_to_vk_shader_stage(MESA_SHADER_VERTEX);
1821 }
1822
1823 if (modules[MESA_SHADER_GEOMETRY]) {
1824 struct ac_shader_variant_key key = radv_compute_vs_key(pCreateInfo, false, false, false);
1825 key.has_multiview_view_index = has_view_index;
1826
1827 pipeline->shaders[MESA_SHADER_GEOMETRY] =
1828 radv_pipeline_compile(pipeline, cache, modules[MESA_SHADER_GEOMETRY],
1829 pStages[MESA_SHADER_GEOMETRY]->pName,
1830 MESA_SHADER_GEOMETRY,
1831 pStages[MESA_SHADER_GEOMETRY]->pSpecializationInfo,
1832 pipeline->layout, &key);
1833
1834 pipeline->active_stages |= mesa_to_vk_shader_stage(MESA_SHADER_GEOMETRY);
1835 }
1836
1837 if (modules[MESA_SHADER_TESS_EVAL]) {
1838 assert(modules[MESA_SHADER_TESS_CTRL]);
1839
1840 radv_tess_pipeline_compile(pipeline,
1841 cache,
1842 modules[MESA_SHADER_TESS_CTRL],
1843 modules[MESA_SHADER_TESS_EVAL],
1844 pStages[MESA_SHADER_TESS_CTRL]->pName,
1845 pStages[MESA_SHADER_TESS_EVAL]->pName,
1846 pStages[MESA_SHADER_TESS_CTRL]->pSpecializationInfo,
1847 pStages[MESA_SHADER_TESS_EVAL]->pSpecializationInfo,
1848 pipeline->layout,
1849 pCreateInfo->pTessellationState->patchControlPoints,
1850 has_view_index);
1851 pipeline->active_stages |= mesa_to_vk_shader_stage(MESA_SHADER_TESS_EVAL) |
1852 mesa_to_vk_shader_stage(MESA_SHADER_TESS_CTRL);
1853 }
1854
1855 radv_pipeline_init_depth_stencil_state(pipeline, pCreateInfo, extra);
1856 radv_pipeline_init_raster_state(pipeline, pCreateInfo);
1857 radv_pipeline_init_multisample_state(pipeline, pCreateInfo);
1858 pipeline->graphics.prim = si_translate_prim(pCreateInfo->pInputAssemblyState->topology);
1859 pipeline->graphics.can_use_guardband = radv_prim_can_use_guardband(pCreateInfo->pInputAssemblyState->topology);
1860
1861 if (radv_pipeline_has_gs(pipeline)) {
1862 pipeline->graphics.gs_out = si_conv_gl_prim_to_gs_out(pipeline->shaders[MESA_SHADER_GEOMETRY]->info.gs.output_prim);
1863 pipeline->graphics.can_use_guardband = pipeline->graphics.gs_out == V_028A6C_OUTPRIM_TYPE_TRISTRIP;
1864 } else {
1865 pipeline->graphics.gs_out = si_conv_prim_to_gs_out(pCreateInfo->pInputAssemblyState->topology);
1866 }
1867 if (extra && extra->use_rectlist) {
1868 pipeline->graphics.prim = V_008958_DI_PT_RECTLIST;
1869 pipeline->graphics.gs_out = V_028A6C_OUTPRIM_TYPE_TRISTRIP;
1870 pipeline->graphics.can_use_guardband = true;
1871 }
1872 pipeline->graphics.prim_restart_enable = !!pCreateInfo->pInputAssemblyState->primitiveRestartEnable;
1873 /* prim vertex count will need TESS changes */
1874 pipeline->graphics.prim_vertex_count = prim_size_table[pipeline->graphics.prim];
1875
1876 /* Ensure that some export memory is always allocated, for two reasons:
1877 *
1878 * 1) Correctness: The hardware ignores the EXEC mask if no export
1879 * memory is allocated, so KILL and alpha test do not work correctly
1880 * without this.
1881 * 2) Performance: Every shader needs at least a NULL export, even when
1882 * it writes no color/depth output. The NULL export instruction
1883 * stalls without this setting.
1884 *
1885 * Don't add this to CB_SHADER_MASK.
1886 */
1887 struct radv_shader_variant *ps = pipeline->shaders[MESA_SHADER_FRAGMENT];
1888 if (!pipeline->graphics.blend.spi_shader_col_format) {
1889 if (!ps->info.fs.writes_z &&
1890 !ps->info.fs.writes_stencil &&
1891 !ps->info.fs.writes_sample_mask)
1892 pipeline->graphics.blend.spi_shader_col_format = V_028714_SPI_SHADER_32_R;
1893 }
1894
1895 unsigned z_order;
1896 pipeline->graphics.db_shader_control = 0;
1897 if (ps->info.fs.early_fragment_test || !ps->info.fs.writes_memory)
1898 z_order = V_02880C_EARLY_Z_THEN_LATE_Z;
1899 else
1900 z_order = V_02880C_LATE_Z;
1901
1902 pipeline->graphics.db_shader_control =
1903 S_02880C_Z_EXPORT_ENABLE(ps->info.fs.writes_z) |
1904 S_02880C_STENCIL_TEST_VAL_EXPORT_ENABLE(ps->info.fs.writes_stencil) |
1905 S_02880C_KILL_ENABLE(!!ps->info.fs.can_discard) |
1906 S_02880C_MASK_EXPORT_ENABLE(ps->info.fs.writes_sample_mask) |
1907 S_02880C_Z_ORDER(z_order) |
1908 S_02880C_DEPTH_BEFORE_SHADER(ps->info.fs.early_fragment_test) |
1909 S_02880C_EXEC_ON_HIER_FAIL(ps->info.fs.writes_memory) |
1910 S_02880C_EXEC_ON_NOOP(ps->info.fs.writes_memory);
1911
1912 if (pipeline->device->physical_device->has_rbplus)
1913 pipeline->graphics.db_shader_control |= S_02880C_DUAL_QUAD_DISABLE(1);
1914
1915 pipeline->graphics.shader_z_format =
1916 ps->info.fs.writes_sample_mask ? V_028710_SPI_SHADER_32_ABGR :
1917 ps->info.fs.writes_stencil ? V_028710_SPI_SHADER_32_GR :
1918 ps->info.fs.writes_z ? V_028710_SPI_SHADER_32_R :
1919 V_028710_SPI_SHADER_ZERO;
1920
1921 calculate_vgt_gs_mode(pipeline);
1922 calculate_pa_cl_vs_out_cntl(pipeline);
1923 calculate_ps_inputs(pipeline);
1924
1925 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
1926 if (pipeline->shaders[i]) {
1927 pipeline->need_indirect_descriptor_sets |= pipeline->shaders[i]->info.need_indirect_descriptor_sets;
1928 }
1929 }
1930
1931 uint32_t stages = 0;
1932 if (radv_pipeline_has_tess(pipeline)) {
1933 stages |= S_028B54_LS_EN(V_028B54_LS_STAGE_ON) |
1934 S_028B54_HS_EN(1) | S_028B54_DYNAMIC_HS(1);
1935
1936 if (radv_pipeline_has_gs(pipeline))
1937 stages |= S_028B54_ES_EN(V_028B54_ES_STAGE_DS) |
1938 S_028B54_GS_EN(1) |
1939 S_028B54_VS_EN(V_028B54_VS_STAGE_COPY_SHADER);
1940 else
1941 stages |= S_028B54_VS_EN(V_028B54_VS_STAGE_DS);
1942
1943 } else if (radv_pipeline_has_gs(pipeline))
1944 stages |= S_028B54_ES_EN(V_028B54_ES_STAGE_REAL) |
1945 S_028B54_GS_EN(1) |
1946 S_028B54_VS_EN(V_028B54_VS_STAGE_COPY_SHADER);
1947
1948 if (device->physical_device->rad_info.chip_class >= GFX9)
1949 stages |= S_028B54_MAX_PRIMGRP_IN_WAVE(2);
1950
1951 pipeline->graphics.vgt_shader_stages_en = stages;
1952
1953 if (radv_pipeline_has_gs(pipeline))
1954 calculate_gs_ring_sizes(pipeline);
1955
1956 if (radv_pipeline_has_tess(pipeline)) {
1957 if (pipeline->graphics.prim == V_008958_DI_PT_PATCH) {
1958 pipeline->graphics.prim_vertex_count.min = pCreateInfo->pTessellationState->patchControlPoints;
1959 pipeline->graphics.prim_vertex_count.incr = 1;
1960 }
1961 calculate_tess_state(pipeline, pCreateInfo);
1962 }
1963
1964 if (radv_pipeline_has_tess(pipeline))
1965 pipeline->graphics.primgroup_size = pipeline->graphics.tess.num_patches;
1966 else if (radv_pipeline_has_gs(pipeline))
1967 pipeline->graphics.primgroup_size = 64;
1968 else
1969 pipeline->graphics.primgroup_size = 128; /* recommended without a GS */
1970
1971 pipeline->graphics.partial_es_wave = false;
1972 if (pipeline->device->has_distributed_tess) {
1973 if (radv_pipeline_has_gs(pipeline)) {
1974 if (device->physical_device->rad_info.chip_class <= VI)
1975 pipeline->graphics.partial_es_wave = true;
1976 }
1977 }
1978 /* GS requirement. */
1979 if (SI_GS_PER_ES / pipeline->graphics.primgroup_size >= pipeline->device->gs_table_depth - 3)
1980 pipeline->graphics.partial_es_wave = true;
1981
1982 pipeline->graphics.wd_switch_on_eop = false;
1983 if (device->physical_device->rad_info.chip_class >= CIK) {
1984 unsigned prim = pipeline->graphics.prim;
1985 /* WD_SWITCH_ON_EOP has no effect on GPUs with less than
1986 * 4 shader engines. Set 1 to pass the assertion below.
1987 * The other cases are hardware requirements. */
1988 if (device->physical_device->rad_info.max_se < 4 ||
1989 prim == V_008958_DI_PT_POLYGON ||
1990 prim == V_008958_DI_PT_LINELOOP ||
1991 prim == V_008958_DI_PT_TRIFAN ||
1992 prim == V_008958_DI_PT_TRISTRIP_ADJ ||
1993 (pipeline->graphics.prim_restart_enable &&
1994 (device->physical_device->rad_info.family < CHIP_POLARIS10 ||
1995 (prim != V_008958_DI_PT_POINTLIST &&
1996 prim != V_008958_DI_PT_LINESTRIP &&
1997 prim != V_008958_DI_PT_TRISTRIP))))
1998 pipeline->graphics.wd_switch_on_eop = true;
1999 }
2000
2001 pipeline->graphics.ia_switch_on_eoi = false;
2002 if (pipeline->shaders[MESA_SHADER_FRAGMENT]->info.fs.prim_id_input)
2003 pipeline->graphics.ia_switch_on_eoi = true;
2004 if (radv_pipeline_has_gs(pipeline) &&
2005 pipeline->shaders[MESA_SHADER_GEOMETRY]->info.gs.uses_prim_id)
2006 pipeline->graphics.ia_switch_on_eoi = true;
2007 if (radv_pipeline_has_tess(pipeline)) {
2008 /* SWITCH_ON_EOI must be set if PrimID is used. */
2009 if (pipeline->shaders[MESA_SHADER_TESS_CTRL]->info.tcs.uses_prim_id ||
2010 pipeline->shaders[MESA_SHADER_TESS_EVAL]->info.tes.uses_prim_id)
2011 pipeline->graphics.ia_switch_on_eoi = true;
2012 }
2013
2014 pipeline->graphics.partial_vs_wave = false;
2015 if (radv_pipeline_has_tess(pipeline)) {
2016 /* Bug with tessellation and GS on Bonaire and older 2 SE chips. */
2017 if ((device->physical_device->rad_info.family == CHIP_TAHITI ||
2018 device->physical_device->rad_info.family == CHIP_PITCAIRN ||
2019 device->physical_device->rad_info.family == CHIP_BONAIRE) &&
2020 radv_pipeline_has_gs(pipeline))
2021 pipeline->graphics.partial_vs_wave = true;
2022 /* Needed for 028B6C_DISTRIBUTION_MODE != 0 */
2023 if (device->has_distributed_tess) {
2024 if (radv_pipeline_has_gs(pipeline)) {
2025 if (device->physical_device->rad_info.family == CHIP_TONGA ||
2026 device->physical_device->rad_info.family == CHIP_FIJI ||
2027 device->physical_device->rad_info.family == CHIP_POLARIS10 ||
2028 device->physical_device->rad_info.family == CHIP_POLARIS11 ||
2029 device->physical_device->rad_info.family == CHIP_POLARIS12)
2030 pipeline->graphics.partial_vs_wave = true;
2031 } else {
2032 pipeline->graphics.partial_vs_wave = true;
2033 }
2034 }
2035 }
2036
2037 pipeline->graphics.base_ia_multi_vgt_param =
2038 S_028AA8_PRIMGROUP_SIZE(pipeline->graphics.primgroup_size - 1) |
2039 /* The following field was moved to VGT_SHADER_STAGES_EN in GFX9. */
2040 S_028AA8_MAX_PRIMGRP_IN_WAVE(device->physical_device->rad_info.chip_class == VI ? 2 : 0) |
2041 S_030960_EN_INST_OPT_BASIC(device->physical_device->rad_info.chip_class >= GFX9) |
2042 S_030960_EN_INST_OPT_ADV(device->physical_device->rad_info.chip_class >= GFX9);
2043
2044 const VkPipelineVertexInputStateCreateInfo *vi_info =
2045 pCreateInfo->pVertexInputState;
2046 struct radv_vertex_elements_info *velems = &pipeline->vertex_elements;
2047
2048 for (uint32_t i = 0; i < vi_info->vertexAttributeDescriptionCount; i++) {
2049 const VkVertexInputAttributeDescription *desc =
2050 &vi_info->pVertexAttributeDescriptions[i];
2051 unsigned loc = desc->location;
2052 const struct vk_format_description *format_desc;
2053 int first_non_void;
2054 uint32_t num_format, data_format;
2055 format_desc = vk_format_description(desc->format);
2056 first_non_void = vk_format_get_first_non_void_channel(desc->format);
2057
2058 num_format = radv_translate_buffer_numformat(format_desc, first_non_void);
2059 data_format = radv_translate_buffer_dataformat(format_desc, first_non_void);
2060
2061 velems->rsrc_word3[loc] = S_008F0C_DST_SEL_X(si_map_swizzle(format_desc->swizzle[0])) |
2062 S_008F0C_DST_SEL_Y(si_map_swizzle(format_desc->swizzle[1])) |
2063 S_008F0C_DST_SEL_Z(si_map_swizzle(format_desc->swizzle[2])) |
2064 S_008F0C_DST_SEL_W(si_map_swizzle(format_desc->swizzle[3])) |
2065 S_008F0C_NUM_FORMAT(num_format) |
2066 S_008F0C_DATA_FORMAT(data_format);
2067 velems->format_size[loc] = format_desc->block.bits / 8;
2068 velems->offset[loc] = desc->offset;
2069 velems->binding[loc] = desc->binding;
2070 velems->count = MAX2(velems->count, loc + 1);
2071 }
2072
2073 for (uint32_t i = 0; i < vi_info->vertexBindingDescriptionCount; i++) {
2074 const VkVertexInputBindingDescription *desc =
2075 &vi_info->pVertexBindingDescriptions[i];
2076
2077 pipeline->binding_stride[desc->binding] = desc->stride;
2078 }
2079
2080 struct ac_userdata_info *loc = radv_lookup_user_sgpr(pipeline, MESA_SHADER_VERTEX,
2081 AC_UD_VS_BASE_VERTEX_START_INSTANCE);
2082 if (loc->sgpr_idx != -1) {
2083 pipeline->graphics.vtx_base_sgpr = radv_shader_stage_to_user_data_0(MESA_SHADER_VERTEX, radv_pipeline_has_gs(pipeline), radv_pipeline_has_tess(pipeline));
2084 pipeline->graphics.vtx_base_sgpr += loc->sgpr_idx * 4;
2085 if (pipeline->shaders[MESA_SHADER_VERTEX]->info.info.vs.needs_draw_id)
2086 pipeline->graphics.vtx_emit_num = 3;
2087 else
2088 pipeline->graphics.vtx_emit_num = 2;
2089 }
2090 if (device->debug_flags & RADV_DEBUG_DUMP_SHADER_STATS) {
2091 radv_dump_pipeline_stats(device, pipeline);
2092 }
2093
2094 result = radv_pipeline_scratch_init(device, pipeline);
2095 return result;
2096 }
2097
2098 VkResult
2099 radv_graphics_pipeline_create(
2100 VkDevice _device,
2101 VkPipelineCache _cache,
2102 const VkGraphicsPipelineCreateInfo *pCreateInfo,
2103 const struct radv_graphics_pipeline_create_info *extra,
2104 const VkAllocationCallbacks *pAllocator,
2105 VkPipeline *pPipeline)
2106 {
2107 RADV_FROM_HANDLE(radv_device, device, _device);
2108 RADV_FROM_HANDLE(radv_pipeline_cache, cache, _cache);
2109 struct radv_pipeline *pipeline;
2110 VkResult result;
2111
2112 pipeline = vk_alloc2(&device->alloc, pAllocator, sizeof(*pipeline), 8,
2113 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
2114 if (pipeline == NULL)
2115 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
2116
2117 memset(pipeline, 0, sizeof(*pipeline));
2118 result = radv_pipeline_init(pipeline, device, cache,
2119 pCreateInfo, extra, pAllocator);
2120 if (result != VK_SUCCESS) {
2121 radv_pipeline_destroy(device, pipeline, pAllocator);
2122 return result;
2123 }
2124
2125 *pPipeline = radv_pipeline_to_handle(pipeline);
2126
2127 return VK_SUCCESS;
2128 }
2129
2130 VkResult radv_CreateGraphicsPipelines(
2131 VkDevice _device,
2132 VkPipelineCache pipelineCache,
2133 uint32_t count,
2134 const VkGraphicsPipelineCreateInfo* pCreateInfos,
2135 const VkAllocationCallbacks* pAllocator,
2136 VkPipeline* pPipelines)
2137 {
2138 VkResult result = VK_SUCCESS;
2139 unsigned i = 0;
2140
2141 for (; i < count; i++) {
2142 VkResult r;
2143 r = radv_graphics_pipeline_create(_device,
2144 pipelineCache,
2145 &pCreateInfos[i],
2146 NULL, pAllocator, &pPipelines[i]);
2147 if (r != VK_SUCCESS) {
2148 result = r;
2149 pPipelines[i] = VK_NULL_HANDLE;
2150 }
2151 }
2152
2153 return result;
2154 }
2155
2156 static VkResult radv_compute_pipeline_create(
2157 VkDevice _device,
2158 VkPipelineCache _cache,
2159 const VkComputePipelineCreateInfo* pCreateInfo,
2160 const VkAllocationCallbacks* pAllocator,
2161 VkPipeline* pPipeline)
2162 {
2163 RADV_FROM_HANDLE(radv_device, device, _device);
2164 RADV_FROM_HANDLE(radv_pipeline_cache, cache, _cache);
2165 RADV_FROM_HANDLE(radv_shader_module, module, pCreateInfo->stage.module);
2166 struct radv_pipeline *pipeline;
2167 VkResult result;
2168
2169 pipeline = vk_alloc2(&device->alloc, pAllocator, sizeof(*pipeline), 8,
2170 VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
2171 if (pipeline == NULL)
2172 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
2173
2174 memset(pipeline, 0, sizeof(*pipeline));
2175 pipeline->device = device;
2176 pipeline->layout = radv_pipeline_layout_from_handle(pCreateInfo->layout);
2177
2178 pipeline->shaders[MESA_SHADER_COMPUTE] =
2179 radv_pipeline_compile(pipeline, cache, module,
2180 pCreateInfo->stage.pName,
2181 MESA_SHADER_COMPUTE,
2182 pCreateInfo->stage.pSpecializationInfo,
2183 pipeline->layout, NULL);
2184
2185
2186 pipeline->need_indirect_descriptor_sets |= pipeline->shaders[MESA_SHADER_COMPUTE]->info.need_indirect_descriptor_sets;
2187 result = radv_pipeline_scratch_init(device, pipeline);
2188 if (result != VK_SUCCESS) {
2189 radv_pipeline_destroy(device, pipeline, pAllocator);
2190 return result;
2191 }
2192
2193 *pPipeline = radv_pipeline_to_handle(pipeline);
2194
2195 if (device->debug_flags & RADV_DEBUG_DUMP_SHADER_STATS) {
2196 radv_dump_pipeline_stats(device, pipeline);
2197 }
2198 return VK_SUCCESS;
2199 }
2200 VkResult radv_CreateComputePipelines(
2201 VkDevice _device,
2202 VkPipelineCache pipelineCache,
2203 uint32_t count,
2204 const VkComputePipelineCreateInfo* pCreateInfos,
2205 const VkAllocationCallbacks* pAllocator,
2206 VkPipeline* pPipelines)
2207 {
2208 VkResult result = VK_SUCCESS;
2209
2210 unsigned i = 0;
2211 for (; i < count; i++) {
2212 VkResult r;
2213 r = radv_compute_pipeline_create(_device, pipelineCache,
2214 &pCreateInfos[i],
2215 pAllocator, &pPipelines[i]);
2216 if (r != VK_SUCCESS) {
2217 result = r;
2218 pPipelines[i] = VK_NULL_HANDLE;
2219 }
2220 }
2221
2222 return result;
2223 }