radeonsi: export SampleMask from pixel shaders at full rate
[mesa.git] / src / gallium / drivers / radeonsi / si_state_shaders.c
1 /*
2 * Copyright 2012 Advanced Micro Devices, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Christian König <christian.koenig@amd.com>
25 * Marek Olšák <maraeo@gmail.com>
26 */
27
28 #include "si_pipe.h"
29 #include "si_shader.h"
30 #include "sid.h"
31 #include "radeon/r600_cs.h"
32
33 #include "tgsi/tgsi_parse.h"
34 #include "tgsi/tgsi_ureg.h"
35 #include "util/hash_table.h"
36 #include "util/u_hash.h"
37 #include "util/u_memory.h"
38 #include "util/u_prim.h"
39 #include "util/u_simple_shaders.h"
40
41 /* SHADER_CACHE */
42
43 /**
44 * Return the TGSI binary in a buffer. The first 4 bytes contain its size as
45 * integer.
46 */
47 static void *si_get_tgsi_binary(struct si_shader_selector *sel)
48 {
49 unsigned tgsi_size = tgsi_num_tokens(sel->tokens) *
50 sizeof(struct tgsi_token);
51 unsigned size = 4 + tgsi_size + sizeof(sel->so);
52 char *result = (char*)MALLOC(size);
53
54 if (!result)
55 return NULL;
56
57 *((uint32_t*)result) = size;
58 memcpy(result + 4, sel->tokens, tgsi_size);
59 memcpy(result + 4 + tgsi_size, &sel->so, sizeof(sel->so));
60 return result;
61 }
62
63 /** Copy "data" to "ptr" and return the next dword following copied data. */
64 static uint32_t *write_data(uint32_t *ptr, const void *data, unsigned size)
65 {
66 /* data may be NULL if size == 0 */
67 if (size)
68 memcpy(ptr, data, size);
69 ptr += DIV_ROUND_UP(size, 4);
70 return ptr;
71 }
72
73 /** Read data from "ptr". Return the next dword following the data. */
74 static uint32_t *read_data(uint32_t *ptr, void *data, unsigned size)
75 {
76 memcpy(data, ptr, size);
77 ptr += DIV_ROUND_UP(size, 4);
78 return ptr;
79 }
80
81 /**
82 * Write the size as uint followed by the data. Return the next dword
83 * following the copied data.
84 */
85 static uint32_t *write_chunk(uint32_t *ptr, const void *data, unsigned size)
86 {
87 *ptr++ = size;
88 return write_data(ptr, data, size);
89 }
90
91 /**
92 * Read the size as uint followed by the data. Return both via parameters.
93 * Return the next dword following the data.
94 */
95 static uint32_t *read_chunk(uint32_t *ptr, void **data, unsigned *size)
96 {
97 *size = *ptr++;
98 assert(*data == NULL);
99 if (!*size)
100 return ptr;
101 *data = malloc(*size);
102 return read_data(ptr, *data, *size);
103 }
104
105 /**
106 * Return the shader binary in a buffer. The first 4 bytes contain its size
107 * as integer.
108 */
109 static void *si_get_shader_binary(struct si_shader *shader)
110 {
111 /* There is always a size of data followed by the data itself. */
112 unsigned relocs_size = shader->binary.reloc_count *
113 sizeof(shader->binary.relocs[0]);
114 unsigned disasm_size = strlen(shader->binary.disasm_string) + 1;
115 unsigned llvm_ir_size = shader->binary.llvm_ir_string ?
116 strlen(shader->binary.llvm_ir_string) + 1 : 0;
117 unsigned size =
118 4 + /* total size */
119 4 + /* CRC32 of the data below */
120 align(sizeof(shader->config), 4) +
121 align(sizeof(shader->info), 4) +
122 4 + align(shader->binary.code_size, 4) +
123 4 + align(shader->binary.rodata_size, 4) +
124 4 + align(relocs_size, 4) +
125 4 + align(disasm_size, 4) +
126 4 + align(llvm_ir_size, 4);
127 void *buffer = CALLOC(1, size);
128 uint32_t *ptr = (uint32_t*)buffer;
129
130 if (!buffer)
131 return NULL;
132
133 *ptr++ = size;
134 ptr++; /* CRC32 is calculated at the end. */
135
136 ptr = write_data(ptr, &shader->config, sizeof(shader->config));
137 ptr = write_data(ptr, &shader->info, sizeof(shader->info));
138 ptr = write_chunk(ptr, shader->binary.code, shader->binary.code_size);
139 ptr = write_chunk(ptr, shader->binary.rodata, shader->binary.rodata_size);
140 ptr = write_chunk(ptr, shader->binary.relocs, relocs_size);
141 ptr = write_chunk(ptr, shader->binary.disasm_string, disasm_size);
142 ptr = write_chunk(ptr, shader->binary.llvm_ir_string, llvm_ir_size);
143 assert((char *)ptr - (char *)buffer == size);
144
145 /* Compute CRC32. */
146 ptr = (uint32_t*)buffer;
147 ptr++;
148 *ptr = util_hash_crc32(ptr + 1, size - 8);
149
150 return buffer;
151 }
152
153 static bool si_load_shader_binary(struct si_shader *shader, void *binary)
154 {
155 uint32_t *ptr = (uint32_t*)binary;
156 uint32_t size = *ptr++;
157 uint32_t crc32 = *ptr++;
158 unsigned chunk_size;
159
160 if (util_hash_crc32(ptr, size - 8) != crc32) {
161 fprintf(stderr, "radeonsi: binary shader has invalid CRC32\n");
162 return false;
163 }
164
165 ptr = read_data(ptr, &shader->config, sizeof(shader->config));
166 ptr = read_data(ptr, &shader->info, sizeof(shader->info));
167 ptr = read_chunk(ptr, (void**)&shader->binary.code,
168 &shader->binary.code_size);
169 ptr = read_chunk(ptr, (void**)&shader->binary.rodata,
170 &shader->binary.rodata_size);
171 ptr = read_chunk(ptr, (void**)&shader->binary.relocs, &chunk_size);
172 shader->binary.reloc_count = chunk_size / sizeof(shader->binary.relocs[0]);
173 ptr = read_chunk(ptr, (void**)&shader->binary.disasm_string, &chunk_size);
174 ptr = read_chunk(ptr, (void**)&shader->binary.llvm_ir_string, &chunk_size);
175
176 return true;
177 }
178
179 /**
180 * Insert a shader into the cache. It's assumed the shader is not in the cache.
181 * Use si_shader_cache_load_shader before calling this.
182 *
183 * Returns false on failure, in which case the tgsi_binary should be freed.
184 */
185 static bool si_shader_cache_insert_shader(struct si_screen *sscreen,
186 void *tgsi_binary,
187 struct si_shader *shader)
188 {
189 void *hw_binary;
190 struct hash_entry *entry;
191
192 entry = _mesa_hash_table_search(sscreen->shader_cache, tgsi_binary);
193 if (entry)
194 return false; /* already added */
195
196 hw_binary = si_get_shader_binary(shader);
197 if (!hw_binary)
198 return false;
199
200 if (_mesa_hash_table_insert(sscreen->shader_cache, tgsi_binary,
201 hw_binary) == NULL) {
202 FREE(hw_binary);
203 return false;
204 }
205
206 return true;
207 }
208
209 static bool si_shader_cache_load_shader(struct si_screen *sscreen,
210 void *tgsi_binary,
211 struct si_shader *shader)
212 {
213 struct hash_entry *entry =
214 _mesa_hash_table_search(sscreen->shader_cache, tgsi_binary);
215 if (!entry)
216 return false;
217
218 return si_load_shader_binary(shader, entry->data);
219 }
220
221 static uint32_t si_shader_cache_key_hash(const void *key)
222 {
223 /* The first dword is the key size. */
224 return util_hash_crc32(key, *(uint32_t*)key);
225 }
226
227 static bool si_shader_cache_key_equals(const void *a, const void *b)
228 {
229 uint32_t *keya = (uint32_t*)a;
230 uint32_t *keyb = (uint32_t*)b;
231
232 /* The first dword is the key size. */
233 if (*keya != *keyb)
234 return false;
235
236 return memcmp(keya, keyb, *keya) == 0;
237 }
238
239 static void si_destroy_shader_cache_entry(struct hash_entry *entry)
240 {
241 FREE((void*)entry->key);
242 FREE(entry->data);
243 }
244
245 bool si_init_shader_cache(struct si_screen *sscreen)
246 {
247 pipe_mutex_init(sscreen->shader_cache_mutex);
248 sscreen->shader_cache =
249 _mesa_hash_table_create(NULL,
250 si_shader_cache_key_hash,
251 si_shader_cache_key_equals);
252 return sscreen->shader_cache != NULL;
253 }
254
255 void si_destroy_shader_cache(struct si_screen *sscreen)
256 {
257 if (sscreen->shader_cache)
258 _mesa_hash_table_destroy(sscreen->shader_cache,
259 si_destroy_shader_cache_entry);
260 pipe_mutex_destroy(sscreen->shader_cache_mutex);
261 }
262
263 /* SHADER STATES */
264
265 static void si_set_tesseval_regs(struct si_screen *sscreen,
266 struct si_shader *shader,
267 struct si_pm4_state *pm4)
268 {
269 struct tgsi_shader_info *info = &shader->selector->info;
270 unsigned tes_prim_mode = info->properties[TGSI_PROPERTY_TES_PRIM_MODE];
271 unsigned tes_spacing = info->properties[TGSI_PROPERTY_TES_SPACING];
272 bool tes_vertex_order_cw = info->properties[TGSI_PROPERTY_TES_VERTEX_ORDER_CW];
273 bool tes_point_mode = info->properties[TGSI_PROPERTY_TES_POINT_MODE];
274 unsigned type, partitioning, topology, distribution_mode;
275
276 switch (tes_prim_mode) {
277 case PIPE_PRIM_LINES:
278 type = V_028B6C_TESS_ISOLINE;
279 break;
280 case PIPE_PRIM_TRIANGLES:
281 type = V_028B6C_TESS_TRIANGLE;
282 break;
283 case PIPE_PRIM_QUADS:
284 type = V_028B6C_TESS_QUAD;
285 break;
286 default:
287 assert(0);
288 return;
289 }
290
291 switch (tes_spacing) {
292 case PIPE_TESS_SPACING_FRACTIONAL_ODD:
293 partitioning = V_028B6C_PART_FRAC_ODD;
294 break;
295 case PIPE_TESS_SPACING_FRACTIONAL_EVEN:
296 partitioning = V_028B6C_PART_FRAC_EVEN;
297 break;
298 case PIPE_TESS_SPACING_EQUAL:
299 partitioning = V_028B6C_PART_INTEGER;
300 break;
301 default:
302 assert(0);
303 return;
304 }
305
306 if (tes_point_mode)
307 topology = V_028B6C_OUTPUT_POINT;
308 else if (tes_prim_mode == PIPE_PRIM_LINES)
309 topology = V_028B6C_OUTPUT_LINE;
310 else if (tes_vertex_order_cw)
311 /* for some reason, this must be the other way around */
312 topology = V_028B6C_OUTPUT_TRIANGLE_CCW;
313 else
314 topology = V_028B6C_OUTPUT_TRIANGLE_CW;
315
316 if (sscreen->has_distributed_tess) {
317 if (sscreen->b.family == CHIP_FIJI ||
318 sscreen->b.family >= CHIP_POLARIS10)
319 distribution_mode = V_028B6C_DISTRIBUTION_MODE_TRAPEZOIDS;
320 else
321 distribution_mode = V_028B6C_DISTRIBUTION_MODE_DONUTS;
322 } else
323 distribution_mode = V_028B6C_DISTRIBUTION_MODE_NO_DIST;
324
325 si_pm4_set_reg(pm4, R_028B6C_VGT_TF_PARAM,
326 S_028B6C_TYPE(type) |
327 S_028B6C_PARTITIONING(partitioning) |
328 S_028B6C_TOPOLOGY(topology) |
329 S_028B6C_DISTRIBUTION_MODE(distribution_mode));
330 }
331
332 static void si_shader_ls(struct si_shader *shader)
333 {
334 struct si_pm4_state *pm4;
335 unsigned vgpr_comp_cnt;
336 uint64_t va;
337
338 pm4 = shader->pm4 = CALLOC_STRUCT(si_pm4_state);
339 if (!pm4)
340 return;
341
342 va = shader->bo->gpu_address;
343 si_pm4_add_bo(pm4, shader->bo, RADEON_USAGE_READ, RADEON_PRIO_SHADER_BINARY);
344
345 /* We need at least 2 components for LS.
346 * VGPR0-3: (VertexID, RelAutoindex, ???, InstanceID). */
347 vgpr_comp_cnt = shader->info.uses_instanceid ? 3 : 1;
348
349 si_pm4_set_reg(pm4, R_00B520_SPI_SHADER_PGM_LO_LS, va >> 8);
350 si_pm4_set_reg(pm4, R_00B524_SPI_SHADER_PGM_HI_LS, va >> 40);
351
352 shader->config.rsrc1 = S_00B528_VGPRS((shader->config.num_vgprs - 1) / 4) |
353 S_00B528_SGPRS((shader->config.num_sgprs - 1) / 8) |
354 S_00B528_VGPR_COMP_CNT(vgpr_comp_cnt) |
355 S_00B528_DX10_CLAMP(1) |
356 S_00B528_FLOAT_MODE(shader->config.float_mode);
357 shader->config.rsrc2 = S_00B52C_USER_SGPR(SI_LS_NUM_USER_SGPR) |
358 S_00B52C_SCRATCH_EN(shader->config.scratch_bytes_per_wave > 0);
359 }
360
361 static void si_shader_hs(struct si_shader *shader)
362 {
363 struct si_pm4_state *pm4;
364 uint64_t va;
365
366 pm4 = shader->pm4 = CALLOC_STRUCT(si_pm4_state);
367 if (!pm4)
368 return;
369
370 va = shader->bo->gpu_address;
371 si_pm4_add_bo(pm4, shader->bo, RADEON_USAGE_READ, RADEON_PRIO_SHADER_BINARY);
372
373 si_pm4_set_reg(pm4, R_00B420_SPI_SHADER_PGM_LO_HS, va >> 8);
374 si_pm4_set_reg(pm4, R_00B424_SPI_SHADER_PGM_HI_HS, va >> 40);
375 si_pm4_set_reg(pm4, R_00B428_SPI_SHADER_PGM_RSRC1_HS,
376 S_00B428_VGPRS((shader->config.num_vgprs - 1) / 4) |
377 S_00B428_SGPRS((shader->config.num_sgprs - 1) / 8) |
378 S_00B428_DX10_CLAMP(1) |
379 S_00B428_FLOAT_MODE(shader->config.float_mode));
380 si_pm4_set_reg(pm4, R_00B42C_SPI_SHADER_PGM_RSRC2_HS,
381 S_00B42C_USER_SGPR(SI_TCS_NUM_USER_SGPR) |
382 S_00B42C_OC_LDS_EN(1) |
383 S_00B42C_SCRATCH_EN(shader->config.scratch_bytes_per_wave > 0));
384 }
385
386 static void si_shader_es(struct si_screen *sscreen, struct si_shader *shader)
387 {
388 struct si_pm4_state *pm4;
389 unsigned num_user_sgprs;
390 unsigned vgpr_comp_cnt;
391 uint64_t va;
392 unsigned oc_lds_en;
393
394 pm4 = shader->pm4 = CALLOC_STRUCT(si_pm4_state);
395
396 if (!pm4)
397 return;
398
399 va = shader->bo->gpu_address;
400 si_pm4_add_bo(pm4, shader->bo, RADEON_USAGE_READ, RADEON_PRIO_SHADER_BINARY);
401
402 if (shader->selector->type == PIPE_SHADER_VERTEX) {
403 vgpr_comp_cnt = shader->info.uses_instanceid ? 3 : 0;
404 num_user_sgprs = SI_ES_NUM_USER_SGPR;
405 } else if (shader->selector->type == PIPE_SHADER_TESS_EVAL) {
406 vgpr_comp_cnt = 3; /* all components are needed for TES */
407 num_user_sgprs = SI_TES_NUM_USER_SGPR;
408 } else
409 unreachable("invalid shader selector type");
410
411 oc_lds_en = shader->selector->type == PIPE_SHADER_TESS_EVAL ? 1 : 0;
412
413 si_pm4_set_reg(pm4, R_028AAC_VGT_ESGS_RING_ITEMSIZE,
414 shader->selector->esgs_itemsize / 4);
415 si_pm4_set_reg(pm4, R_00B320_SPI_SHADER_PGM_LO_ES, va >> 8);
416 si_pm4_set_reg(pm4, R_00B324_SPI_SHADER_PGM_HI_ES, va >> 40);
417 si_pm4_set_reg(pm4, R_00B328_SPI_SHADER_PGM_RSRC1_ES,
418 S_00B328_VGPRS((shader->config.num_vgprs - 1) / 4) |
419 S_00B328_SGPRS((shader->config.num_sgprs - 1) / 8) |
420 S_00B328_VGPR_COMP_CNT(vgpr_comp_cnt) |
421 S_00B328_DX10_CLAMP(1) |
422 S_00B328_FLOAT_MODE(shader->config.float_mode));
423 si_pm4_set_reg(pm4, R_00B32C_SPI_SHADER_PGM_RSRC2_ES,
424 S_00B32C_USER_SGPR(num_user_sgprs) |
425 S_00B32C_OC_LDS_EN(oc_lds_en) |
426 S_00B32C_SCRATCH_EN(shader->config.scratch_bytes_per_wave > 0));
427
428 if (shader->selector->type == PIPE_SHADER_TESS_EVAL)
429 si_set_tesseval_regs(sscreen, shader, pm4);
430 }
431
432 /**
433 * Calculate the appropriate setting of VGT_GS_MODE when \p shader is a
434 * geometry shader.
435 */
436 static uint32_t si_vgt_gs_mode(struct si_shader *shader)
437 {
438 unsigned gs_max_vert_out = shader->selector->gs_max_out_vertices;
439 unsigned cut_mode;
440
441 if (gs_max_vert_out <= 128) {
442 cut_mode = V_028A40_GS_CUT_128;
443 } else if (gs_max_vert_out <= 256) {
444 cut_mode = V_028A40_GS_CUT_256;
445 } else if (gs_max_vert_out <= 512) {
446 cut_mode = V_028A40_GS_CUT_512;
447 } else {
448 assert(gs_max_vert_out <= 1024);
449 cut_mode = V_028A40_GS_CUT_1024;
450 }
451
452 return S_028A40_MODE(V_028A40_GS_SCENARIO_G) |
453 S_028A40_CUT_MODE(cut_mode)|
454 S_028A40_ES_WRITE_OPTIMIZE(1) |
455 S_028A40_GS_WRITE_OPTIMIZE(1);
456 }
457
458 static void si_shader_gs(struct si_shader *shader)
459 {
460 unsigned gs_vert_itemsize = shader->selector->gsvs_vertex_size;
461 unsigned gsvs_itemsize = shader->selector->max_gsvs_emit_size >> 2;
462 unsigned gs_num_invocations = shader->selector->gs_num_invocations;
463 struct si_pm4_state *pm4;
464 uint64_t va;
465 unsigned max_stream = shader->selector->max_gs_stream;
466
467 /* The GSVS_RING_ITEMSIZE register takes 15 bits */
468 assert(gsvs_itemsize < (1 << 15));
469
470 pm4 = shader->pm4 = CALLOC_STRUCT(si_pm4_state);
471
472 if (!pm4)
473 return;
474
475 si_pm4_set_reg(pm4, R_028A40_VGT_GS_MODE, si_vgt_gs_mode(shader));
476
477 si_pm4_set_reg(pm4, R_028A60_VGT_GSVS_RING_OFFSET_1, gsvs_itemsize);
478 si_pm4_set_reg(pm4, R_028A64_VGT_GSVS_RING_OFFSET_2, gsvs_itemsize * ((max_stream >= 2) ? 2 : 1));
479 si_pm4_set_reg(pm4, R_028A68_VGT_GSVS_RING_OFFSET_3, gsvs_itemsize * ((max_stream >= 3) ? 3 : 1));
480
481 si_pm4_set_reg(pm4, R_028AB0_VGT_GSVS_RING_ITEMSIZE, gsvs_itemsize * (max_stream + 1));
482
483 si_pm4_set_reg(pm4, R_028B38_VGT_GS_MAX_VERT_OUT, shader->selector->gs_max_out_vertices);
484
485 si_pm4_set_reg(pm4, R_028B5C_VGT_GS_VERT_ITEMSIZE, gs_vert_itemsize >> 2);
486 si_pm4_set_reg(pm4, R_028B60_VGT_GS_VERT_ITEMSIZE_1, (max_stream >= 1) ? gs_vert_itemsize >> 2 : 0);
487 si_pm4_set_reg(pm4, R_028B64_VGT_GS_VERT_ITEMSIZE_2, (max_stream >= 2) ? gs_vert_itemsize >> 2 : 0);
488 si_pm4_set_reg(pm4, R_028B68_VGT_GS_VERT_ITEMSIZE_3, (max_stream >= 3) ? gs_vert_itemsize >> 2 : 0);
489
490 si_pm4_set_reg(pm4, R_028B90_VGT_GS_INSTANCE_CNT,
491 S_028B90_CNT(MIN2(gs_num_invocations, 127)) |
492 S_028B90_ENABLE(gs_num_invocations > 0));
493
494 va = shader->bo->gpu_address;
495 si_pm4_add_bo(pm4, shader->bo, RADEON_USAGE_READ, RADEON_PRIO_SHADER_BINARY);
496 si_pm4_set_reg(pm4, R_00B220_SPI_SHADER_PGM_LO_GS, va >> 8);
497 si_pm4_set_reg(pm4, R_00B224_SPI_SHADER_PGM_HI_GS, va >> 40);
498
499 si_pm4_set_reg(pm4, R_00B228_SPI_SHADER_PGM_RSRC1_GS,
500 S_00B228_VGPRS((shader->config.num_vgprs - 1) / 4) |
501 S_00B228_SGPRS((shader->config.num_sgprs - 1) / 8) |
502 S_00B228_DX10_CLAMP(1) |
503 S_00B228_FLOAT_MODE(shader->config.float_mode));
504 si_pm4_set_reg(pm4, R_00B22C_SPI_SHADER_PGM_RSRC2_GS,
505 S_00B22C_USER_SGPR(SI_GS_NUM_USER_SGPR) |
506 S_00B22C_SCRATCH_EN(shader->config.scratch_bytes_per_wave > 0));
507 }
508
509 /**
510 * Compute the state for \p shader, which will run as a vertex shader on the
511 * hardware.
512 *
513 * If \p gs is non-NULL, it points to the geometry shader for which this shader
514 * is the copy shader.
515 */
516 static void si_shader_vs(struct si_screen *sscreen, struct si_shader *shader,
517 struct si_shader *gs)
518 {
519 struct si_pm4_state *pm4;
520 unsigned num_user_sgprs;
521 unsigned nparams, vgpr_comp_cnt;
522 uint64_t va;
523 unsigned oc_lds_en;
524 unsigned window_space =
525 shader->selector->info.properties[TGSI_PROPERTY_VS_WINDOW_SPACE_POSITION];
526 bool enable_prim_id = si_vs_exports_prim_id(shader);
527
528 pm4 = shader->pm4 = CALLOC_STRUCT(si_pm4_state);
529
530 if (!pm4)
531 return;
532
533 /* We always write VGT_GS_MODE in the VS state, because every switch
534 * between different shader pipelines involving a different GS or no
535 * GS at all involves a switch of the VS (different GS use different
536 * copy shaders). On the other hand, when the API switches from a GS to
537 * no GS and then back to the same GS used originally, the GS state is
538 * not sent again.
539 */
540 if (!gs) {
541 si_pm4_set_reg(pm4, R_028A40_VGT_GS_MODE,
542 S_028A40_MODE(enable_prim_id ? V_028A40_GS_SCENARIO_A : 0));
543 si_pm4_set_reg(pm4, R_028A84_VGT_PRIMITIVEID_EN, enable_prim_id);
544 } else {
545 si_pm4_set_reg(pm4, R_028A40_VGT_GS_MODE, si_vgt_gs_mode(gs));
546 si_pm4_set_reg(pm4, R_028A84_VGT_PRIMITIVEID_EN, 0);
547 }
548
549 va = shader->bo->gpu_address;
550 si_pm4_add_bo(pm4, shader->bo, RADEON_USAGE_READ, RADEON_PRIO_SHADER_BINARY);
551
552 if (gs) {
553 vgpr_comp_cnt = 0; /* only VertexID is needed for GS-COPY. */
554 num_user_sgprs = SI_GSCOPY_NUM_USER_SGPR;
555 } else if (shader->selector->type == PIPE_SHADER_VERTEX) {
556 vgpr_comp_cnt = shader->info.uses_instanceid ? 3 : (enable_prim_id ? 2 : 0);
557 num_user_sgprs = SI_VS_NUM_USER_SGPR;
558 } else if (shader->selector->type == PIPE_SHADER_TESS_EVAL) {
559 vgpr_comp_cnt = 3; /* all components are needed for TES */
560 num_user_sgprs = SI_TES_NUM_USER_SGPR;
561 } else
562 unreachable("invalid shader selector type");
563
564 /* VS is required to export at least one param. */
565 nparams = MAX2(shader->info.nr_param_exports, 1);
566 si_pm4_set_reg(pm4, R_0286C4_SPI_VS_OUT_CONFIG,
567 S_0286C4_VS_EXPORT_COUNT(nparams - 1));
568
569 si_pm4_set_reg(pm4, R_02870C_SPI_SHADER_POS_FORMAT,
570 S_02870C_POS0_EXPORT_FORMAT(V_02870C_SPI_SHADER_4COMP) |
571 S_02870C_POS1_EXPORT_FORMAT(shader->info.nr_pos_exports > 1 ?
572 V_02870C_SPI_SHADER_4COMP :
573 V_02870C_SPI_SHADER_NONE) |
574 S_02870C_POS2_EXPORT_FORMAT(shader->info.nr_pos_exports > 2 ?
575 V_02870C_SPI_SHADER_4COMP :
576 V_02870C_SPI_SHADER_NONE) |
577 S_02870C_POS3_EXPORT_FORMAT(shader->info.nr_pos_exports > 3 ?
578 V_02870C_SPI_SHADER_4COMP :
579 V_02870C_SPI_SHADER_NONE));
580
581 oc_lds_en = shader->selector->type == PIPE_SHADER_TESS_EVAL ? 1 : 0;
582
583 si_pm4_set_reg(pm4, R_00B120_SPI_SHADER_PGM_LO_VS, va >> 8);
584 si_pm4_set_reg(pm4, R_00B124_SPI_SHADER_PGM_HI_VS, va >> 40);
585 si_pm4_set_reg(pm4, R_00B128_SPI_SHADER_PGM_RSRC1_VS,
586 S_00B128_VGPRS((shader->config.num_vgprs - 1) / 4) |
587 S_00B128_SGPRS((shader->config.num_sgprs - 1) / 8) |
588 S_00B128_VGPR_COMP_CNT(vgpr_comp_cnt) |
589 S_00B128_DX10_CLAMP(1) |
590 S_00B128_FLOAT_MODE(shader->config.float_mode));
591 si_pm4_set_reg(pm4, R_00B12C_SPI_SHADER_PGM_RSRC2_VS,
592 S_00B12C_USER_SGPR(num_user_sgprs) |
593 S_00B12C_OC_LDS_EN(oc_lds_en) |
594 S_00B12C_SO_BASE0_EN(!!shader->selector->so.stride[0]) |
595 S_00B12C_SO_BASE1_EN(!!shader->selector->so.stride[1]) |
596 S_00B12C_SO_BASE2_EN(!!shader->selector->so.stride[2]) |
597 S_00B12C_SO_BASE3_EN(!!shader->selector->so.stride[3]) |
598 S_00B12C_SO_EN(!!shader->selector->so.num_outputs) |
599 S_00B12C_SCRATCH_EN(shader->config.scratch_bytes_per_wave > 0));
600 if (window_space)
601 si_pm4_set_reg(pm4, R_028818_PA_CL_VTE_CNTL,
602 S_028818_VTX_XY_FMT(1) | S_028818_VTX_Z_FMT(1));
603 else
604 si_pm4_set_reg(pm4, R_028818_PA_CL_VTE_CNTL,
605 S_028818_VTX_W0_FMT(1) |
606 S_028818_VPORT_X_SCALE_ENA(1) | S_028818_VPORT_X_OFFSET_ENA(1) |
607 S_028818_VPORT_Y_SCALE_ENA(1) | S_028818_VPORT_Y_OFFSET_ENA(1) |
608 S_028818_VPORT_Z_SCALE_ENA(1) | S_028818_VPORT_Z_OFFSET_ENA(1));
609
610 if (shader->selector->type == PIPE_SHADER_TESS_EVAL)
611 si_set_tesseval_regs(sscreen, shader, pm4);
612 }
613
614 static unsigned si_get_ps_num_interp(struct si_shader *ps)
615 {
616 struct tgsi_shader_info *info = &ps->selector->info;
617 unsigned num_colors = !!(info->colors_read & 0x0f) +
618 !!(info->colors_read & 0xf0);
619 unsigned num_interp = ps->selector->info.num_inputs +
620 (ps->key.ps.prolog.color_two_side ? num_colors : 0);
621
622 assert(num_interp <= 32);
623 return MIN2(num_interp, 32);
624 }
625
626 static unsigned si_get_spi_shader_col_format(struct si_shader *shader)
627 {
628 unsigned value = shader->key.ps.epilog.spi_shader_col_format;
629 unsigned i, num_targets = (util_last_bit(value) + 3) / 4;
630
631 /* If the i-th target format is set, all previous target formats must
632 * be non-zero to avoid hangs.
633 */
634 for (i = 0; i < num_targets; i++)
635 if (!(value & (0xf << (i * 4))))
636 value |= V_028714_SPI_SHADER_32_R << (i * 4);
637
638 return value;
639 }
640
641 static unsigned si_get_cb_shader_mask(unsigned spi_shader_col_format)
642 {
643 unsigned i, cb_shader_mask = 0;
644
645 for (i = 0; i < 8; i++) {
646 switch ((spi_shader_col_format >> (i * 4)) & 0xf) {
647 case V_028714_SPI_SHADER_ZERO:
648 break;
649 case V_028714_SPI_SHADER_32_R:
650 cb_shader_mask |= 0x1 << (i * 4);
651 break;
652 case V_028714_SPI_SHADER_32_GR:
653 cb_shader_mask |= 0x3 << (i * 4);
654 break;
655 case V_028714_SPI_SHADER_32_AR:
656 cb_shader_mask |= 0x9 << (i * 4);
657 break;
658 case V_028714_SPI_SHADER_FP16_ABGR:
659 case V_028714_SPI_SHADER_UNORM16_ABGR:
660 case V_028714_SPI_SHADER_SNORM16_ABGR:
661 case V_028714_SPI_SHADER_UINT16_ABGR:
662 case V_028714_SPI_SHADER_SINT16_ABGR:
663 case V_028714_SPI_SHADER_32_ABGR:
664 cb_shader_mask |= 0xf << (i * 4);
665 break;
666 default:
667 assert(0);
668 }
669 }
670 return cb_shader_mask;
671 }
672
673 static void si_shader_ps(struct si_shader *shader)
674 {
675 struct tgsi_shader_info *info = &shader->selector->info;
676 struct si_pm4_state *pm4;
677 unsigned spi_ps_in_control, spi_shader_col_format, cb_shader_mask;
678 unsigned spi_baryc_cntl = S_0286E0_FRONT_FACE_ALL_BITS(1);
679 uint64_t va;
680 unsigned input_ena = shader->config.spi_ps_input_ena;
681
682 /* we need to enable at least one of them, otherwise we hang the GPU */
683 assert(G_0286CC_PERSP_SAMPLE_ENA(input_ena) ||
684 G_0286CC_PERSP_CENTER_ENA(input_ena) ||
685 G_0286CC_PERSP_CENTROID_ENA(input_ena) ||
686 G_0286CC_PERSP_PULL_MODEL_ENA(input_ena) ||
687 G_0286CC_LINEAR_SAMPLE_ENA(input_ena) ||
688 G_0286CC_LINEAR_CENTER_ENA(input_ena) ||
689 G_0286CC_LINEAR_CENTROID_ENA(input_ena) ||
690 G_0286CC_LINE_STIPPLE_TEX_ENA(input_ena));
691
692 pm4 = shader->pm4 = CALLOC_STRUCT(si_pm4_state);
693
694 if (!pm4)
695 return;
696
697 /* SPI_BARYC_CNTL.POS_FLOAT_LOCATION
698 * Possible vaules:
699 * 0 -> Position = pixel center
700 * 1 -> Position = pixel centroid
701 * 2 -> Position = at sample position
702 *
703 * From GLSL 4.5 specification, section 7.1:
704 * "The variable gl_FragCoord is available as an input variable from
705 * within fragment shaders and it holds the window relative coordinates
706 * (x, y, z, 1/w) values for the fragment. If multi-sampling, this
707 * value can be for any location within the pixel, or one of the
708 * fragment samples. The use of centroid does not further restrict
709 * this value to be inside the current primitive."
710 *
711 * Meaning that centroid has no effect and we can return anything within
712 * the pixel. Thus, return the value at sample position, because that's
713 * the most accurate one shaders can get.
714 */
715 spi_baryc_cntl |= S_0286E0_POS_FLOAT_LOCATION(2);
716
717 if (info->properties[TGSI_PROPERTY_FS_COORD_PIXEL_CENTER] ==
718 TGSI_FS_COORD_PIXEL_CENTER_INTEGER)
719 spi_baryc_cntl |= S_0286E0_POS_FLOAT_ULC(1);
720
721 spi_shader_col_format = si_get_spi_shader_col_format(shader);
722 cb_shader_mask = si_get_cb_shader_mask(spi_shader_col_format);
723
724 /* Ensure that some export memory is always allocated, for two reasons:
725 *
726 * 1) Correctness: The hardware ignores the EXEC mask if no export
727 * memory is allocated, so KILL and alpha test do not work correctly
728 * without this.
729 * 2) Performance: Every shader needs at least a NULL export, even when
730 * it writes no color/depth output. The NULL export instruction
731 * stalls without this setting.
732 *
733 * Don't add this to CB_SHADER_MASK.
734 */
735 if (!spi_shader_col_format &&
736 !info->writes_z && !info->writes_stencil && !info->writes_samplemask)
737 spi_shader_col_format = V_028714_SPI_SHADER_32_R;
738
739 si_pm4_set_reg(pm4, R_0286CC_SPI_PS_INPUT_ENA, input_ena);
740 si_pm4_set_reg(pm4, R_0286D0_SPI_PS_INPUT_ADDR,
741 shader->config.spi_ps_input_addr);
742
743 /* Set interpolation controls. */
744 spi_ps_in_control = S_0286D8_NUM_INTERP(si_get_ps_num_interp(shader));
745
746 /* Set registers. */
747 si_pm4_set_reg(pm4, R_0286E0_SPI_BARYC_CNTL, spi_baryc_cntl);
748 si_pm4_set_reg(pm4, R_0286D8_SPI_PS_IN_CONTROL, spi_ps_in_control);
749
750 si_pm4_set_reg(pm4, R_028710_SPI_SHADER_Z_FORMAT,
751 si_get_spi_shader_z_format(info->writes_z,
752 info->writes_stencil,
753 info->writes_samplemask));
754
755 si_pm4_set_reg(pm4, R_028714_SPI_SHADER_COL_FORMAT, spi_shader_col_format);
756 si_pm4_set_reg(pm4, R_02823C_CB_SHADER_MASK, cb_shader_mask);
757
758 va = shader->bo->gpu_address;
759 si_pm4_add_bo(pm4, shader->bo, RADEON_USAGE_READ, RADEON_PRIO_SHADER_BINARY);
760 si_pm4_set_reg(pm4, R_00B020_SPI_SHADER_PGM_LO_PS, va >> 8);
761 si_pm4_set_reg(pm4, R_00B024_SPI_SHADER_PGM_HI_PS, va >> 40);
762
763 si_pm4_set_reg(pm4, R_00B028_SPI_SHADER_PGM_RSRC1_PS,
764 S_00B028_VGPRS((shader->config.num_vgprs - 1) / 4) |
765 S_00B028_SGPRS((shader->config.num_sgprs - 1) / 8) |
766 S_00B028_DX10_CLAMP(1) |
767 S_00B028_FLOAT_MODE(shader->config.float_mode));
768 si_pm4_set_reg(pm4, R_00B02C_SPI_SHADER_PGM_RSRC2_PS,
769 S_00B02C_EXTRA_LDS_SIZE(shader->config.lds_size) |
770 S_00B02C_USER_SGPR(SI_PS_NUM_USER_SGPR) |
771 S_00B32C_SCRATCH_EN(shader->config.scratch_bytes_per_wave > 0));
772
773 /* Prefer RE_Z if the shader is complex enough. The requirement is either:
774 * - the shader uses at least 2 VMEM instructions, or
775 * - the code size is at least 50 2-dword instructions or 100 1-dword
776 * instructions.
777 *
778 * Shaders with side effects that must execute independently of the
779 * depth test require LATE_Z.
780 */
781 if (info->writes_memory &&
782 !info->properties[TGSI_PROPERTY_FS_EARLY_DEPTH_STENCIL])
783 shader->z_order = V_02880C_LATE_Z;
784 else if (info->num_memory_instructions >= 2 ||
785 shader->binary.code_size > 100*4)
786 shader->z_order = V_02880C_EARLY_Z_THEN_RE_Z;
787 else
788 shader->z_order = V_02880C_EARLY_Z_THEN_LATE_Z;
789 }
790
791 static void si_shader_init_pm4_state(struct si_screen *sscreen,
792 struct si_shader *shader)
793 {
794
795 if (shader->pm4)
796 si_pm4_free_state_simple(shader->pm4);
797
798 switch (shader->selector->type) {
799 case PIPE_SHADER_VERTEX:
800 if (shader->key.vs.as_ls)
801 si_shader_ls(shader);
802 else if (shader->key.vs.as_es)
803 si_shader_es(sscreen, shader);
804 else
805 si_shader_vs(sscreen, shader, NULL);
806 break;
807 case PIPE_SHADER_TESS_CTRL:
808 si_shader_hs(shader);
809 break;
810 case PIPE_SHADER_TESS_EVAL:
811 if (shader->key.tes.as_es)
812 si_shader_es(sscreen, shader);
813 else
814 si_shader_vs(sscreen, shader, NULL);
815 break;
816 case PIPE_SHADER_GEOMETRY:
817 si_shader_gs(shader);
818 si_shader_vs(sscreen, shader->gs_copy_shader, shader);
819 break;
820 case PIPE_SHADER_FRAGMENT:
821 si_shader_ps(shader);
822 break;
823 default:
824 assert(0);
825 }
826 }
827
828 static unsigned si_get_alpha_test_func(struct si_context *sctx)
829 {
830 /* Alpha-test should be disabled if colorbuffer 0 is integer. */
831 if (sctx->queued.named.dsa &&
832 !sctx->framebuffer.cb0_is_integer)
833 return sctx->queued.named.dsa->alpha_func;
834
835 return PIPE_FUNC_ALWAYS;
836 }
837
838 /* Compute the key for the hw shader variant */
839 static inline void si_shader_selector_key(struct pipe_context *ctx,
840 struct si_shader_selector *sel,
841 union si_shader_key *key)
842 {
843 struct si_context *sctx = (struct si_context *)ctx;
844 unsigned i;
845
846 memset(key, 0, sizeof(*key));
847
848 switch (sel->type) {
849 case PIPE_SHADER_VERTEX:
850 if (sctx->vertex_elements) {
851 unsigned count = MIN2(sel->info.num_inputs,
852 sctx->vertex_elements->count);
853 for (i = 0; i < count; ++i)
854 key->vs.prolog.instance_divisors[i] =
855 sctx->vertex_elements->elements[i].instance_divisor;
856 }
857 if (sctx->tes_shader.cso)
858 key->vs.as_ls = 1;
859 else if (sctx->gs_shader.cso)
860 key->vs.as_es = 1;
861
862 if (!sctx->gs_shader.cso && sctx->ps_shader.cso &&
863 sctx->ps_shader.cso->info.uses_primid)
864 key->vs.epilog.export_prim_id = 1;
865 break;
866 case PIPE_SHADER_TESS_CTRL:
867 key->tcs.epilog.prim_mode =
868 sctx->tes_shader.cso->info.properties[TGSI_PROPERTY_TES_PRIM_MODE];
869
870 if (sel == sctx->fixed_func_tcs_shader.cso)
871 key->tcs.epilog.inputs_to_copy = sctx->vs_shader.cso->outputs_written;
872 break;
873 case PIPE_SHADER_TESS_EVAL:
874 if (sctx->gs_shader.cso)
875 key->tes.as_es = 1;
876 else if (sctx->ps_shader.cso && sctx->ps_shader.cso->info.uses_primid)
877 key->tes.epilog.export_prim_id = 1;
878 break;
879 case PIPE_SHADER_GEOMETRY:
880 break;
881 case PIPE_SHADER_FRAGMENT: {
882 struct si_state_rasterizer *rs = sctx->queued.named.rasterizer;
883 struct si_state_blend *blend = sctx->queued.named.blend;
884
885 if (sel->info.properties[TGSI_PROPERTY_FS_COLOR0_WRITES_ALL_CBUFS] &&
886 sel->info.colors_written == 0x1)
887 key->ps.epilog.last_cbuf = MAX2(sctx->framebuffer.state.nr_cbufs, 1) - 1;
888
889 if (blend) {
890 /* Select the shader color format based on whether
891 * blending or alpha are needed.
892 */
893 key->ps.epilog.spi_shader_col_format =
894 (blend->blend_enable_4bit & blend->need_src_alpha_4bit &
895 sctx->framebuffer.spi_shader_col_format_blend_alpha) |
896 (blend->blend_enable_4bit & ~blend->need_src_alpha_4bit &
897 sctx->framebuffer.spi_shader_col_format_blend) |
898 (~blend->blend_enable_4bit & blend->need_src_alpha_4bit &
899 sctx->framebuffer.spi_shader_col_format_alpha) |
900 (~blend->blend_enable_4bit & ~blend->need_src_alpha_4bit &
901 sctx->framebuffer.spi_shader_col_format);
902
903 /* The output for dual source blending should have
904 * the same format as the first output.
905 */
906 if (blend->dual_src_blend)
907 key->ps.epilog.spi_shader_col_format |=
908 (key->ps.epilog.spi_shader_col_format & 0xf) << 4;
909 } else
910 key->ps.epilog.spi_shader_col_format = sctx->framebuffer.spi_shader_col_format;
911
912 /* If alpha-to-coverage is enabled, we have to export alpha
913 * even if there is no color buffer.
914 */
915 if (!(key->ps.epilog.spi_shader_col_format & 0xf) &&
916 blend && blend->alpha_to_coverage)
917 key->ps.epilog.spi_shader_col_format |= V_028710_SPI_SHADER_32_AR;
918
919 /* On SI and CIK except Hawaii, the CB doesn't clamp outputs
920 * to the range supported by the type if a channel has less
921 * than 16 bits and the export format is 16_ABGR.
922 */
923 if (sctx->b.chip_class <= CIK && sctx->b.family != CHIP_HAWAII)
924 key->ps.epilog.color_is_int8 = sctx->framebuffer.color_is_int8;
925
926 /* Disable unwritten outputs (if WRITE_ALL_CBUFS isn't enabled). */
927 if (!key->ps.epilog.last_cbuf) {
928 key->ps.epilog.spi_shader_col_format &= sel->colors_written_4bit;
929 key->ps.epilog.color_is_int8 &= sel->info.colors_written;
930 }
931
932 if (rs) {
933 bool is_poly = (sctx->current_rast_prim >= PIPE_PRIM_TRIANGLES &&
934 sctx->current_rast_prim <= PIPE_PRIM_POLYGON) ||
935 sctx->current_rast_prim >= PIPE_PRIM_TRIANGLES_ADJACENCY;
936 bool is_line = !is_poly && sctx->current_rast_prim != PIPE_PRIM_POINTS;
937
938 key->ps.prolog.color_two_side = rs->two_side && sel->info.colors_read;
939 key->ps.prolog.flatshade_colors = rs->flatshade && sel->info.colors_read;
940
941 if (sctx->queued.named.blend) {
942 key->ps.epilog.alpha_to_one = sctx->queued.named.blend->alpha_to_one &&
943 rs->multisample_enable &&
944 !sctx->framebuffer.cb0_is_integer;
945 }
946
947 key->ps.prolog.poly_stipple = rs->poly_stipple_enable && is_poly;
948 key->ps.epilog.poly_line_smoothing = ((is_poly && rs->poly_smooth) ||
949 (is_line && rs->line_smooth)) &&
950 sctx->framebuffer.nr_samples <= 1;
951 key->ps.epilog.clamp_color = rs->clamp_fragment_color;
952
953 if (rs->force_persample_interp &&
954 rs->multisample_enable &&
955 sctx->framebuffer.nr_samples > 1 &&
956 sctx->ps_iter_samples > 1) {
957 key->ps.prolog.force_persp_sample_interp =
958 sel->info.uses_persp_center ||
959 sel->info.uses_persp_centroid;
960
961 key->ps.prolog.force_linear_sample_interp =
962 sel->info.uses_linear_center ||
963 sel->info.uses_linear_centroid;
964 } else if (rs->multisample_enable &&
965 sctx->framebuffer.nr_samples > 1) {
966 key->ps.prolog.bc_optimize_for_persp =
967 sel->info.uses_persp_center &&
968 sel->info.uses_persp_centroid;
969 key->ps.prolog.bc_optimize_for_linear =
970 sel->info.uses_linear_center &&
971 sel->info.uses_linear_centroid;
972 } else {
973 /* Make sure SPI doesn't compute more than 1 pair
974 * of (i,j), which is the optimization here. */
975 key->ps.prolog.force_persp_center_interp =
976 sel->info.uses_persp_center +
977 sel->info.uses_persp_centroid +
978 sel->info.uses_persp_sample > 1;
979
980 key->ps.prolog.force_linear_center_interp =
981 sel->info.uses_linear_center +
982 sel->info.uses_linear_centroid +
983 sel->info.uses_linear_sample > 1;
984 }
985 }
986
987 key->ps.epilog.alpha_func = si_get_alpha_test_func(sctx);
988 break;
989 }
990 default:
991 assert(0);
992 }
993 }
994
995 /* Select the hw shader variant depending on the current state. */
996 static int si_shader_select_with_key(struct si_screen *sscreen,
997 struct si_shader_ctx_state *state,
998 union si_shader_key *key,
999 LLVMTargetMachineRef tm,
1000 struct pipe_debug_callback *debug,
1001 bool wait,
1002 bool is_debug_context)
1003 {
1004 struct si_shader_selector *sel = state->cso;
1005 struct si_shader *current = state->current;
1006 struct si_shader *iter, *shader = NULL;
1007 int r;
1008
1009 /* Check if we don't need to change anything.
1010 * This path is also used for most shaders that don't need multiple
1011 * variants, it will cost just a computation of the key and this
1012 * test. */
1013 if (likely(current && memcmp(&current->key, key, sizeof(*key)) == 0))
1014 return 0;
1015
1016 /* This must be done before the mutex is locked, because async GS
1017 * compilation calls this function too, and therefore must enter
1018 * the mutex first.
1019 */
1020 if (wait)
1021 util_queue_job_wait(&sel->ready);
1022
1023 pipe_mutex_lock(sel->mutex);
1024
1025 /* Find the shader variant. */
1026 for (iter = sel->first_variant; iter; iter = iter->next_variant) {
1027 /* Don't check the "current" shader. We checked it above. */
1028 if (current != iter &&
1029 memcmp(&iter->key, key, sizeof(*key)) == 0) {
1030 state->current = iter;
1031 pipe_mutex_unlock(sel->mutex);
1032 return 0;
1033 }
1034 }
1035
1036 /* Build a new shader. */
1037 shader = CALLOC_STRUCT(si_shader);
1038 if (!shader) {
1039 pipe_mutex_unlock(sel->mutex);
1040 return -ENOMEM;
1041 }
1042 shader->selector = sel;
1043 shader->key = *key;
1044
1045 r = si_shader_create(sscreen, tm, shader, debug);
1046 if (unlikely(r)) {
1047 R600_ERR("Failed to build shader variant (type=%u) %d\n",
1048 sel->type, r);
1049 FREE(shader);
1050 pipe_mutex_unlock(sel->mutex);
1051 return r;
1052 }
1053
1054 if (is_debug_context) {
1055 FILE *f = open_memstream(&shader->shader_log,
1056 &shader->shader_log_size);
1057 if (f) {
1058 si_shader_dump(sscreen, shader, NULL, sel->type, f);
1059 fclose(f);
1060 }
1061 }
1062
1063 si_shader_init_pm4_state(sscreen, shader);
1064
1065 if (!sel->last_variant) {
1066 sel->first_variant = shader;
1067 sel->last_variant = shader;
1068 } else {
1069 sel->last_variant->next_variant = shader;
1070 sel->last_variant = shader;
1071 }
1072 state->current = shader;
1073 pipe_mutex_unlock(sel->mutex);
1074 return 0;
1075 }
1076
1077 static int si_shader_select(struct pipe_context *ctx,
1078 struct si_shader_ctx_state *state)
1079 {
1080 struct si_context *sctx = (struct si_context *)ctx;
1081 union si_shader_key key;
1082
1083 si_shader_selector_key(ctx, state->cso, &key);
1084 return si_shader_select_with_key(sctx->screen, state, &key,
1085 sctx->tm, &sctx->b.debug, true,
1086 sctx->is_debug);
1087 }
1088
1089 static void si_parse_next_shader_property(const struct tgsi_shader_info *info,
1090 union si_shader_key *key)
1091 {
1092 unsigned next_shader = info->properties[TGSI_PROPERTY_NEXT_SHADER];
1093
1094 switch (info->processor) {
1095 case PIPE_SHADER_VERTEX:
1096 switch (next_shader) {
1097 case PIPE_SHADER_GEOMETRY:
1098 key->vs.as_es = 1;
1099 break;
1100 case PIPE_SHADER_TESS_CTRL:
1101 case PIPE_SHADER_TESS_EVAL:
1102 key->vs.as_ls = 1;
1103 break;
1104 }
1105 break;
1106
1107 case PIPE_SHADER_TESS_EVAL:
1108 if (next_shader == PIPE_SHADER_GEOMETRY)
1109 key->tes.as_es = 1;
1110 break;
1111 }
1112 }
1113
1114 /**
1115 * Compile the main shader part or the monolithic shader as part of
1116 * si_shader_selector initialization. Since it can be done asynchronously,
1117 * there is no way to report compile failures to applications.
1118 */
1119 void si_init_shader_selector_async(void *job, int thread_index)
1120 {
1121 struct si_shader_selector *sel = (struct si_shader_selector *)job;
1122 struct si_screen *sscreen = sel->screen;
1123 LLVMTargetMachineRef tm;
1124 struct pipe_debug_callback *debug = &sel->debug;
1125 unsigned i;
1126
1127 if (thread_index >= 0) {
1128 assert(thread_index < ARRAY_SIZE(sscreen->tm));
1129 tm = sscreen->tm[thread_index];
1130 if (!debug->async)
1131 debug = NULL;
1132 } else {
1133 tm = sel->tm;
1134 }
1135
1136 /* Compile the main shader part for use with a prolog and/or epilog.
1137 * If this fails, the driver will try to compile a monolithic shader
1138 * on demand.
1139 */
1140 if (sel->type != PIPE_SHADER_GEOMETRY &&
1141 !sscreen->use_monolithic_shaders) {
1142 struct si_shader *shader = CALLOC_STRUCT(si_shader);
1143 void *tgsi_binary;
1144
1145 if (!shader) {
1146 fprintf(stderr, "radeonsi: can't allocate a main shader part\n");
1147 return;
1148 }
1149
1150 shader->selector = sel;
1151 si_parse_next_shader_property(&sel->info, &shader->key);
1152
1153 tgsi_binary = si_get_tgsi_binary(sel);
1154
1155 /* Try to load the shader from the shader cache. */
1156 pipe_mutex_lock(sscreen->shader_cache_mutex);
1157
1158 if (tgsi_binary &&
1159 si_shader_cache_load_shader(sscreen, tgsi_binary, shader)) {
1160 FREE(tgsi_binary);
1161 pipe_mutex_unlock(sscreen->shader_cache_mutex);
1162 } else {
1163 pipe_mutex_unlock(sscreen->shader_cache_mutex);
1164
1165 /* Compile the shader if it hasn't been loaded from the cache. */
1166 if (si_compile_tgsi_shader(sscreen, tm, shader, false,
1167 debug) != 0) {
1168 FREE(shader);
1169 FREE(tgsi_binary);
1170 fprintf(stderr, "radeonsi: can't compile a main shader part\n");
1171 return;
1172 }
1173
1174 if (tgsi_binary) {
1175 pipe_mutex_lock(sscreen->shader_cache_mutex);
1176 if (!si_shader_cache_insert_shader(sscreen, tgsi_binary, shader))
1177 FREE(tgsi_binary);
1178 pipe_mutex_unlock(sscreen->shader_cache_mutex);
1179 }
1180 }
1181
1182 sel->main_shader_part = shader;
1183 }
1184
1185 /* Pre-compilation. */
1186 if (sel->type == PIPE_SHADER_GEOMETRY ||
1187 sscreen->b.debug_flags & DBG_PRECOMPILE) {
1188 struct si_shader_ctx_state state = {sel};
1189 union si_shader_key key;
1190
1191 memset(&key, 0, sizeof(key));
1192 si_parse_next_shader_property(&sel->info, &key);
1193
1194 /* Set reasonable defaults, so that the shader key doesn't
1195 * cause any code to be eliminated.
1196 */
1197 switch (sel->type) {
1198 case PIPE_SHADER_TESS_CTRL:
1199 key.tcs.epilog.prim_mode = PIPE_PRIM_TRIANGLES;
1200 break;
1201 case PIPE_SHADER_FRAGMENT:
1202 key.ps.epilog.alpha_func = PIPE_FUNC_ALWAYS;
1203 for (i = 0; i < 8; i++)
1204 if (sel->info.colors_written & (1 << i))
1205 key.ps.epilog.spi_shader_col_format |=
1206 V_028710_SPI_SHADER_FP16_ABGR << (i * 4);
1207 break;
1208 }
1209
1210 if (si_shader_select_with_key(sscreen, &state, &key, tm, debug,
1211 false, sel->is_debug_context))
1212 fprintf(stderr, "radeonsi: can't create a monolithic shader\n");
1213 }
1214 }
1215
1216 static void *si_create_shader_selector(struct pipe_context *ctx,
1217 const struct pipe_shader_state *state)
1218 {
1219 struct si_screen *sscreen = (struct si_screen *)ctx->screen;
1220 struct si_context *sctx = (struct si_context*)ctx;
1221 struct si_shader_selector *sel = CALLOC_STRUCT(si_shader_selector);
1222 int i;
1223
1224 if (!sel)
1225 return NULL;
1226
1227 sel->screen = sscreen;
1228 sel->tm = sctx->tm;
1229 sel->debug = sctx->b.debug;
1230 sel->is_debug_context = sctx->is_debug;
1231 sel->tokens = tgsi_dup_tokens(state->tokens);
1232 if (!sel->tokens) {
1233 FREE(sel);
1234 return NULL;
1235 }
1236
1237 sel->so = state->stream_output;
1238 tgsi_scan_shader(state->tokens, &sel->info);
1239 sel->type = sel->info.processor;
1240 p_atomic_inc(&sscreen->b.num_shaders_created);
1241
1242 /* Set which opcode uses which (i,j) pair. */
1243 if (sel->info.uses_persp_opcode_interp_centroid)
1244 sel->info.uses_persp_centroid = true;
1245
1246 if (sel->info.uses_linear_opcode_interp_centroid)
1247 sel->info.uses_linear_centroid = true;
1248
1249 if (sel->info.uses_persp_opcode_interp_offset ||
1250 sel->info.uses_persp_opcode_interp_sample)
1251 sel->info.uses_persp_center = true;
1252
1253 if (sel->info.uses_linear_opcode_interp_offset ||
1254 sel->info.uses_linear_opcode_interp_sample)
1255 sel->info.uses_linear_center = true;
1256
1257 switch (sel->type) {
1258 case PIPE_SHADER_GEOMETRY:
1259 sel->gs_output_prim =
1260 sel->info.properties[TGSI_PROPERTY_GS_OUTPUT_PRIM];
1261 sel->gs_max_out_vertices =
1262 sel->info.properties[TGSI_PROPERTY_GS_MAX_OUTPUT_VERTICES];
1263 sel->gs_num_invocations =
1264 sel->info.properties[TGSI_PROPERTY_GS_INVOCATIONS];
1265 sel->gsvs_vertex_size = sel->info.num_outputs * 16;
1266 sel->max_gsvs_emit_size = sel->gsvs_vertex_size *
1267 sel->gs_max_out_vertices;
1268
1269 sel->max_gs_stream = 0;
1270 for (i = 0; i < sel->so.num_outputs; i++)
1271 sel->max_gs_stream = MAX2(sel->max_gs_stream,
1272 sel->so.output[i].stream);
1273
1274 sel->gs_input_verts_per_prim =
1275 u_vertices_per_prim(sel->info.properties[TGSI_PROPERTY_GS_INPUT_PRIM]);
1276 break;
1277
1278 case PIPE_SHADER_TESS_CTRL:
1279 /* Always reserve space for these. */
1280 sel->patch_outputs_written |=
1281 (1llu << si_shader_io_get_unique_index(TGSI_SEMANTIC_TESSINNER, 0)) |
1282 (1llu << si_shader_io_get_unique_index(TGSI_SEMANTIC_TESSOUTER, 0));
1283 /* fall through */
1284 case PIPE_SHADER_VERTEX:
1285 case PIPE_SHADER_TESS_EVAL:
1286 for (i = 0; i < sel->info.num_outputs; i++) {
1287 unsigned name = sel->info.output_semantic_name[i];
1288 unsigned index = sel->info.output_semantic_index[i];
1289
1290 switch (name) {
1291 case TGSI_SEMANTIC_TESSINNER:
1292 case TGSI_SEMANTIC_TESSOUTER:
1293 case TGSI_SEMANTIC_PATCH:
1294 sel->patch_outputs_written |=
1295 1llu << si_shader_io_get_unique_index(name, index);
1296 break;
1297 default:
1298 sel->outputs_written |=
1299 1llu << si_shader_io_get_unique_index(name, index);
1300 }
1301 }
1302 sel->esgs_itemsize = util_last_bit64(sel->outputs_written) * 16;
1303 break;
1304
1305 case PIPE_SHADER_FRAGMENT:
1306 for (i = 0; i < 8; i++)
1307 if (sel->info.colors_written & (1 << i))
1308 sel->colors_written_4bit |= 0xf << (4 * i);
1309
1310 for (i = 0; i < sel->info.num_inputs; i++) {
1311 if (sel->info.input_semantic_name[i] == TGSI_SEMANTIC_COLOR) {
1312 int index = sel->info.input_semantic_index[i];
1313 sel->color_attr_index[index] = i;
1314 }
1315 }
1316 break;
1317 }
1318
1319 /* DB_SHADER_CONTROL */
1320 sel->db_shader_control =
1321 S_02880C_Z_EXPORT_ENABLE(sel->info.writes_z) |
1322 S_02880C_STENCIL_TEST_VAL_EXPORT_ENABLE(sel->info.writes_stencil) |
1323 S_02880C_MASK_EXPORT_ENABLE(sel->info.writes_samplemask) |
1324 S_02880C_KILL_ENABLE(sel->info.uses_kill);
1325
1326 switch (sel->info.properties[TGSI_PROPERTY_FS_DEPTH_LAYOUT]) {
1327 case TGSI_FS_DEPTH_LAYOUT_GREATER:
1328 sel->db_shader_control |=
1329 S_02880C_CONSERVATIVE_Z_EXPORT(V_02880C_EXPORT_GREATER_THAN_Z);
1330 break;
1331 case TGSI_FS_DEPTH_LAYOUT_LESS:
1332 sel->db_shader_control |=
1333 S_02880C_CONSERVATIVE_Z_EXPORT(V_02880C_EXPORT_LESS_THAN_Z);
1334 break;
1335 }
1336
1337 if (sel->info.properties[TGSI_PROPERTY_FS_EARLY_DEPTH_STENCIL])
1338 sel->db_shader_control |= S_02880C_DEPTH_BEFORE_SHADER(1);
1339
1340 if (sel->info.writes_memory)
1341 sel->db_shader_control |= S_02880C_EXEC_ON_HIER_FAIL(1) |
1342 S_02880C_EXEC_ON_NOOP(1);
1343 pipe_mutex_init(sel->mutex);
1344 util_queue_fence_init(&sel->ready);
1345
1346 if ((sctx->b.debug.debug_message && !sctx->b.debug.async) ||
1347 sctx->is_debug ||
1348 r600_can_dump_shader(&sscreen->b, sel->info.processor) ||
1349 !util_queue_is_initialized(&sscreen->shader_compiler_queue))
1350 si_init_shader_selector_async(sel, -1);
1351 else
1352 util_queue_add_job(&sscreen->shader_compiler_queue, sel,
1353 &sel->ready, si_init_shader_selector_async,
1354 NULL);
1355
1356 return sel;
1357 }
1358
1359 static void si_bind_vs_shader(struct pipe_context *ctx, void *state)
1360 {
1361 struct si_context *sctx = (struct si_context *)ctx;
1362 struct si_shader_selector *sel = state;
1363
1364 if (sctx->vs_shader.cso == sel)
1365 return;
1366
1367 sctx->vs_shader.cso = sel;
1368 sctx->vs_shader.current = sel ? sel->first_variant : NULL;
1369 sctx->do_update_shaders = true;
1370 si_mark_atom_dirty(sctx, &sctx->clip_regs);
1371 r600_update_vs_writes_viewport_index(&sctx->b, si_get_vs_info(sctx));
1372 }
1373
1374 static void si_bind_gs_shader(struct pipe_context *ctx, void *state)
1375 {
1376 struct si_context *sctx = (struct si_context *)ctx;
1377 struct si_shader_selector *sel = state;
1378 bool enable_changed = !!sctx->gs_shader.cso != !!sel;
1379
1380 if (sctx->gs_shader.cso == sel)
1381 return;
1382
1383 sctx->gs_shader.cso = sel;
1384 sctx->gs_shader.current = sel ? sel->first_variant : NULL;
1385 sctx->do_update_shaders = true;
1386 si_mark_atom_dirty(sctx, &sctx->clip_regs);
1387 sctx->last_rast_prim = -1; /* reset this so that it gets updated */
1388
1389 if (enable_changed)
1390 si_shader_change_notify(sctx);
1391 r600_update_vs_writes_viewport_index(&sctx->b, si_get_vs_info(sctx));
1392 }
1393
1394 static void si_bind_tcs_shader(struct pipe_context *ctx, void *state)
1395 {
1396 struct si_context *sctx = (struct si_context *)ctx;
1397 struct si_shader_selector *sel = state;
1398 bool enable_changed = !!sctx->tcs_shader.cso != !!sel;
1399
1400 if (sctx->tcs_shader.cso == sel)
1401 return;
1402
1403 sctx->tcs_shader.cso = sel;
1404 sctx->tcs_shader.current = sel ? sel->first_variant : NULL;
1405 sctx->do_update_shaders = true;
1406
1407 if (enable_changed)
1408 sctx->last_tcs = NULL; /* invalidate derived tess state */
1409 }
1410
1411 static void si_bind_tes_shader(struct pipe_context *ctx, void *state)
1412 {
1413 struct si_context *sctx = (struct si_context *)ctx;
1414 struct si_shader_selector *sel = state;
1415 bool enable_changed = !!sctx->tes_shader.cso != !!sel;
1416
1417 if (sctx->tes_shader.cso == sel)
1418 return;
1419
1420 sctx->tes_shader.cso = sel;
1421 sctx->tes_shader.current = sel ? sel->first_variant : NULL;
1422 sctx->do_update_shaders = true;
1423 si_mark_atom_dirty(sctx, &sctx->clip_regs);
1424 sctx->last_rast_prim = -1; /* reset this so that it gets updated */
1425
1426 if (enable_changed) {
1427 si_shader_change_notify(sctx);
1428 sctx->last_tes_sh_base = -1; /* invalidate derived tess state */
1429 }
1430 r600_update_vs_writes_viewport_index(&sctx->b, si_get_vs_info(sctx));
1431 }
1432
1433 static void si_bind_ps_shader(struct pipe_context *ctx, void *state)
1434 {
1435 struct si_context *sctx = (struct si_context *)ctx;
1436 struct si_shader_selector *sel = state;
1437
1438 /* skip if supplied shader is one already in use */
1439 if (sctx->ps_shader.cso == sel)
1440 return;
1441
1442 sctx->ps_shader.cso = sel;
1443 sctx->ps_shader.current = sel ? sel->first_variant : NULL;
1444 sctx->do_update_shaders = true;
1445 si_mark_atom_dirty(sctx, &sctx->cb_render_state);
1446 }
1447
1448 static void si_delete_shader(struct si_context *sctx, struct si_shader *shader)
1449 {
1450 if (shader->pm4) {
1451 switch (shader->selector->type) {
1452 case PIPE_SHADER_VERTEX:
1453 if (shader->key.vs.as_ls)
1454 si_pm4_delete_state(sctx, ls, shader->pm4);
1455 else if (shader->key.vs.as_es)
1456 si_pm4_delete_state(sctx, es, shader->pm4);
1457 else
1458 si_pm4_delete_state(sctx, vs, shader->pm4);
1459 break;
1460 case PIPE_SHADER_TESS_CTRL:
1461 si_pm4_delete_state(sctx, hs, shader->pm4);
1462 break;
1463 case PIPE_SHADER_TESS_EVAL:
1464 if (shader->key.tes.as_es)
1465 si_pm4_delete_state(sctx, es, shader->pm4);
1466 else
1467 si_pm4_delete_state(sctx, vs, shader->pm4);
1468 break;
1469 case PIPE_SHADER_GEOMETRY:
1470 si_pm4_delete_state(sctx, gs, shader->pm4);
1471 si_pm4_delete_state(sctx, vs, shader->gs_copy_shader->pm4);
1472 break;
1473 case PIPE_SHADER_FRAGMENT:
1474 si_pm4_delete_state(sctx, ps, shader->pm4);
1475 break;
1476 }
1477 }
1478
1479 si_shader_destroy(shader);
1480 free(shader);
1481 }
1482
1483 static void si_delete_shader_selector(struct pipe_context *ctx, void *state)
1484 {
1485 struct si_context *sctx = (struct si_context *)ctx;
1486 struct si_shader_selector *sel = (struct si_shader_selector *)state;
1487 struct si_shader *p = sel->first_variant, *c;
1488 struct si_shader_ctx_state *current_shader[SI_NUM_SHADERS] = {
1489 [PIPE_SHADER_VERTEX] = &sctx->vs_shader,
1490 [PIPE_SHADER_TESS_CTRL] = &sctx->tcs_shader,
1491 [PIPE_SHADER_TESS_EVAL] = &sctx->tes_shader,
1492 [PIPE_SHADER_GEOMETRY] = &sctx->gs_shader,
1493 [PIPE_SHADER_FRAGMENT] = &sctx->ps_shader,
1494 };
1495
1496 util_queue_job_wait(&sel->ready);
1497
1498 if (current_shader[sel->type]->cso == sel) {
1499 current_shader[sel->type]->cso = NULL;
1500 current_shader[sel->type]->current = NULL;
1501 }
1502
1503 while (p) {
1504 c = p->next_variant;
1505 si_delete_shader(sctx, p);
1506 p = c;
1507 }
1508
1509 if (sel->main_shader_part)
1510 si_delete_shader(sctx, sel->main_shader_part);
1511
1512 util_queue_fence_destroy(&sel->ready);
1513 pipe_mutex_destroy(sel->mutex);
1514 free(sel->tokens);
1515 free(sel);
1516 }
1517
1518 static unsigned si_get_ps_input_cntl(struct si_context *sctx,
1519 struct si_shader *vs, unsigned name,
1520 unsigned index, unsigned interpolate)
1521 {
1522 struct tgsi_shader_info *vsinfo = &vs->selector->info;
1523 unsigned j, ps_input_cntl = 0;
1524
1525 if (interpolate == TGSI_INTERPOLATE_CONSTANT ||
1526 (interpolate == TGSI_INTERPOLATE_COLOR && sctx->flatshade))
1527 ps_input_cntl |= S_028644_FLAT_SHADE(1);
1528
1529 if (name == TGSI_SEMANTIC_PCOORD ||
1530 (name == TGSI_SEMANTIC_TEXCOORD &&
1531 sctx->sprite_coord_enable & (1 << index))) {
1532 ps_input_cntl |= S_028644_PT_SPRITE_TEX(1);
1533 }
1534
1535 for (j = 0; j < vsinfo->num_outputs; j++) {
1536 if (name == vsinfo->output_semantic_name[j] &&
1537 index == vsinfo->output_semantic_index[j]) {
1538 ps_input_cntl |= S_028644_OFFSET(vs->info.vs_output_param_offset[j]);
1539 break;
1540 }
1541 }
1542
1543 if (name == TGSI_SEMANTIC_PRIMID)
1544 /* PrimID is written after the last output. */
1545 ps_input_cntl |= S_028644_OFFSET(vs->info.vs_output_param_offset[vsinfo->num_outputs]);
1546 else if (j == vsinfo->num_outputs && !G_028644_PT_SPRITE_TEX(ps_input_cntl)) {
1547 /* No corresponding output found, load defaults into input.
1548 * Don't set any other bits.
1549 * (FLAT_SHADE=1 completely changes behavior) */
1550 ps_input_cntl = S_028644_OFFSET(0x20);
1551 /* D3D 9 behaviour. GL is undefined */
1552 if (name == TGSI_SEMANTIC_COLOR && index == 0)
1553 ps_input_cntl |= S_028644_DEFAULT_VAL(3);
1554 }
1555 return ps_input_cntl;
1556 }
1557
1558 static void si_emit_spi_map(struct si_context *sctx, struct r600_atom *atom)
1559 {
1560 struct radeon_winsys_cs *cs = sctx->b.gfx.cs;
1561 struct si_shader *ps = sctx->ps_shader.current;
1562 struct si_shader *vs = si_get_vs_state(sctx);
1563 struct tgsi_shader_info *psinfo = ps ? &ps->selector->info : NULL;
1564 unsigned i, num_interp, num_written = 0, bcol_interp[2];
1565
1566 if (!ps || !ps->selector->info.num_inputs)
1567 return;
1568
1569 num_interp = si_get_ps_num_interp(ps);
1570 assert(num_interp > 0);
1571 radeon_set_context_reg_seq(cs, R_028644_SPI_PS_INPUT_CNTL_0, num_interp);
1572
1573 for (i = 0; i < psinfo->num_inputs; i++) {
1574 unsigned name = psinfo->input_semantic_name[i];
1575 unsigned index = psinfo->input_semantic_index[i];
1576 unsigned interpolate = psinfo->input_interpolate[i];
1577
1578 radeon_emit(cs, si_get_ps_input_cntl(sctx, vs, name, index,
1579 interpolate));
1580 num_written++;
1581
1582 if (name == TGSI_SEMANTIC_COLOR) {
1583 assert(index < ARRAY_SIZE(bcol_interp));
1584 bcol_interp[index] = interpolate;
1585 }
1586 }
1587
1588 if (ps->key.ps.prolog.color_two_side) {
1589 unsigned bcol = TGSI_SEMANTIC_BCOLOR;
1590
1591 for (i = 0; i < 2; i++) {
1592 if (!(psinfo->colors_read & (0xf << (i * 4))))
1593 continue;
1594
1595 radeon_emit(cs, si_get_ps_input_cntl(sctx, vs, bcol,
1596 i, bcol_interp[i]));
1597 num_written++;
1598 }
1599 }
1600 assert(num_interp == num_written);
1601 }
1602
1603 /**
1604 * Writing CONFIG or UCONFIG VGT registers requires VGT_FLUSH before that.
1605 */
1606 static void si_init_config_add_vgt_flush(struct si_context *sctx)
1607 {
1608 if (sctx->init_config_has_vgt_flush)
1609 return;
1610
1611 /* Done by Vulkan before VGT_FLUSH. */
1612 si_pm4_cmd_begin(sctx->init_config, PKT3_EVENT_WRITE);
1613 si_pm4_cmd_add(sctx->init_config,
1614 EVENT_TYPE(V_028A90_VS_PARTIAL_FLUSH) | EVENT_INDEX(4));
1615 si_pm4_cmd_end(sctx->init_config, false);
1616
1617 /* VGT_FLUSH is required even if VGT is idle. It resets VGT pointers. */
1618 si_pm4_cmd_begin(sctx->init_config, PKT3_EVENT_WRITE);
1619 si_pm4_cmd_add(sctx->init_config, EVENT_TYPE(V_028A90_VGT_FLUSH) | EVENT_INDEX(0));
1620 si_pm4_cmd_end(sctx->init_config, false);
1621 sctx->init_config_has_vgt_flush = true;
1622 }
1623
1624 /* Initialize state related to ESGS / GSVS ring buffers */
1625 static bool si_update_gs_ring_buffers(struct si_context *sctx)
1626 {
1627 struct si_shader_selector *es =
1628 sctx->tes_shader.cso ? sctx->tes_shader.cso : sctx->vs_shader.cso;
1629 struct si_shader_selector *gs = sctx->gs_shader.cso;
1630 struct si_pm4_state *pm4;
1631
1632 /* Chip constants. */
1633 unsigned num_se = sctx->screen->b.info.max_se;
1634 unsigned wave_size = 64;
1635 unsigned max_gs_waves = 32 * num_se; /* max 32 per SE on GCN */
1636 unsigned gs_vertex_reuse = 16 * num_se; /* GS_VERTEX_REUSE register (per SE) */
1637 unsigned alignment = 256 * num_se;
1638 /* The maximum size is 63.999 MB per SE. */
1639 unsigned max_size = ((unsigned)(63.999 * 1024 * 1024) & ~255) * num_se;
1640
1641 /* Calculate the minimum size. */
1642 unsigned min_esgs_ring_size = align(es->esgs_itemsize * gs_vertex_reuse *
1643 wave_size, alignment);
1644
1645 /* These are recommended sizes, not minimum sizes. */
1646 unsigned esgs_ring_size = max_gs_waves * 2 * wave_size *
1647 es->esgs_itemsize * gs->gs_input_verts_per_prim;
1648 unsigned gsvs_ring_size = max_gs_waves * 2 * wave_size *
1649 gs->max_gsvs_emit_size * (gs->max_gs_stream + 1);
1650
1651 min_esgs_ring_size = align(min_esgs_ring_size, alignment);
1652 esgs_ring_size = align(esgs_ring_size, alignment);
1653 gsvs_ring_size = align(gsvs_ring_size, alignment);
1654
1655 esgs_ring_size = CLAMP(esgs_ring_size, min_esgs_ring_size, max_size);
1656 gsvs_ring_size = MIN2(gsvs_ring_size, max_size);
1657
1658 /* Some rings don't have to be allocated if shaders don't use them.
1659 * (e.g. no varyings between ES and GS or GS and VS)
1660 */
1661 bool update_esgs = esgs_ring_size &&
1662 (!sctx->esgs_ring ||
1663 sctx->esgs_ring->width0 < esgs_ring_size);
1664 bool update_gsvs = gsvs_ring_size &&
1665 (!sctx->gsvs_ring ||
1666 sctx->gsvs_ring->width0 < gsvs_ring_size);
1667
1668 if (!update_esgs && !update_gsvs)
1669 return true;
1670
1671 if (update_esgs) {
1672 pipe_resource_reference(&sctx->esgs_ring, NULL);
1673 sctx->esgs_ring = pipe_buffer_create(sctx->b.b.screen, PIPE_BIND_CUSTOM,
1674 PIPE_USAGE_DEFAULT,
1675 esgs_ring_size);
1676 if (!sctx->esgs_ring)
1677 return false;
1678 }
1679
1680 if (update_gsvs) {
1681 pipe_resource_reference(&sctx->gsvs_ring, NULL);
1682 sctx->gsvs_ring = pipe_buffer_create(sctx->b.b.screen, PIPE_BIND_CUSTOM,
1683 PIPE_USAGE_DEFAULT,
1684 gsvs_ring_size);
1685 if (!sctx->gsvs_ring)
1686 return false;
1687 }
1688
1689 /* Create the "init_config_gs_rings" state. */
1690 pm4 = CALLOC_STRUCT(si_pm4_state);
1691 if (!pm4)
1692 return false;
1693
1694 if (sctx->b.chip_class >= CIK) {
1695 if (sctx->esgs_ring)
1696 si_pm4_set_reg(pm4, R_030900_VGT_ESGS_RING_SIZE,
1697 sctx->esgs_ring->width0 / 256);
1698 if (sctx->gsvs_ring)
1699 si_pm4_set_reg(pm4, R_030904_VGT_GSVS_RING_SIZE,
1700 sctx->gsvs_ring->width0 / 256);
1701 } else {
1702 if (sctx->esgs_ring)
1703 si_pm4_set_reg(pm4, R_0088C8_VGT_ESGS_RING_SIZE,
1704 sctx->esgs_ring->width0 / 256);
1705 if (sctx->gsvs_ring)
1706 si_pm4_set_reg(pm4, R_0088CC_VGT_GSVS_RING_SIZE,
1707 sctx->gsvs_ring->width0 / 256);
1708 }
1709
1710 /* Set the state. */
1711 if (sctx->init_config_gs_rings)
1712 si_pm4_free_state(sctx, sctx->init_config_gs_rings, ~0);
1713 sctx->init_config_gs_rings = pm4;
1714
1715 if (!sctx->init_config_has_vgt_flush) {
1716 si_init_config_add_vgt_flush(sctx);
1717 si_pm4_upload_indirect_buffer(sctx, sctx->init_config);
1718 }
1719
1720 /* Flush the context to re-emit both init_config states. */
1721 sctx->b.initial_gfx_cs_size = 0; /* force flush */
1722 si_context_gfx_flush(sctx, RADEON_FLUSH_ASYNC, NULL);
1723
1724 /* Set ring bindings. */
1725 if (sctx->esgs_ring) {
1726 si_set_ring_buffer(&sctx->b.b, SI_ES_RING_ESGS,
1727 sctx->esgs_ring, 0, sctx->esgs_ring->width0,
1728 true, true, 4, 64, 0);
1729 si_set_ring_buffer(&sctx->b.b, SI_GS_RING_ESGS,
1730 sctx->esgs_ring, 0, sctx->esgs_ring->width0,
1731 false, false, 0, 0, 0);
1732 }
1733 if (sctx->gsvs_ring)
1734 si_set_ring_buffer(&sctx->b.b, SI_VS_RING_GSVS,
1735 sctx->gsvs_ring, 0, sctx->gsvs_ring->width0,
1736 false, false, 0, 0, 0);
1737 return true;
1738 }
1739
1740 static void si_update_gsvs_ring_bindings(struct si_context *sctx)
1741 {
1742 unsigned gsvs_itemsize = sctx->gs_shader.cso->max_gsvs_emit_size;
1743 uint64_t offset;
1744
1745 if (!sctx->gsvs_ring || gsvs_itemsize == sctx->last_gsvs_itemsize)
1746 return;
1747
1748 sctx->last_gsvs_itemsize = gsvs_itemsize;
1749
1750 si_set_ring_buffer(&sctx->b.b, SI_GS_RING_GSVS0,
1751 sctx->gsvs_ring, gsvs_itemsize,
1752 64, true, true, 4, 16, 0);
1753
1754 offset = gsvs_itemsize * 64;
1755 si_set_ring_buffer(&sctx->b.b, SI_GS_RING_GSVS1,
1756 sctx->gsvs_ring, gsvs_itemsize,
1757 64, true, true, 4, 16, offset);
1758
1759 offset = (gsvs_itemsize * 2) * 64;
1760 si_set_ring_buffer(&sctx->b.b, SI_GS_RING_GSVS2,
1761 sctx->gsvs_ring, gsvs_itemsize,
1762 64, true, true, 4, 16, offset);
1763
1764 offset = (gsvs_itemsize * 3) * 64;
1765 si_set_ring_buffer(&sctx->b.b, SI_GS_RING_GSVS3,
1766 sctx->gsvs_ring, gsvs_itemsize,
1767 64, true, true, 4, 16, offset);
1768 }
1769
1770 /**
1771 * @returns 1 if \p sel has been updated to use a new scratch buffer
1772 * 0 if not
1773 * < 0 if there was a failure
1774 */
1775 static int si_update_scratch_buffer(struct si_context *sctx,
1776 struct si_shader *shader)
1777 {
1778 uint64_t scratch_va = sctx->scratch_buffer->gpu_address;
1779 int r;
1780
1781 if (!shader)
1782 return 0;
1783
1784 /* This shader doesn't need a scratch buffer */
1785 if (shader->config.scratch_bytes_per_wave == 0)
1786 return 0;
1787
1788 /* This shader is already configured to use the current
1789 * scratch buffer. */
1790 if (shader->scratch_bo == sctx->scratch_buffer)
1791 return 0;
1792
1793 assert(sctx->scratch_buffer);
1794
1795 si_shader_apply_scratch_relocs(sctx, shader, &shader->config, scratch_va);
1796
1797 /* Replace the shader bo with a new bo that has the relocs applied. */
1798 r = si_shader_binary_upload(sctx->screen, shader);
1799 if (r)
1800 return r;
1801
1802 /* Update the shader state to use the new shader bo. */
1803 si_shader_init_pm4_state(sctx->screen, shader);
1804
1805 r600_resource_reference(&shader->scratch_bo, sctx->scratch_buffer);
1806
1807 return 1;
1808 }
1809
1810 static unsigned si_get_current_scratch_buffer_size(struct si_context *sctx)
1811 {
1812 return sctx->scratch_buffer ? sctx->scratch_buffer->b.b.width0 : 0;
1813 }
1814
1815 static unsigned si_get_scratch_buffer_bytes_per_wave(struct si_shader *shader)
1816 {
1817 return shader ? shader->config.scratch_bytes_per_wave : 0;
1818 }
1819
1820 static unsigned si_get_max_scratch_bytes_per_wave(struct si_context *sctx)
1821 {
1822 unsigned bytes = 0;
1823
1824 bytes = MAX2(bytes, si_get_scratch_buffer_bytes_per_wave(sctx->ps_shader.current));
1825 bytes = MAX2(bytes, si_get_scratch_buffer_bytes_per_wave(sctx->gs_shader.current));
1826 bytes = MAX2(bytes, si_get_scratch_buffer_bytes_per_wave(sctx->vs_shader.current));
1827 bytes = MAX2(bytes, si_get_scratch_buffer_bytes_per_wave(sctx->tcs_shader.current));
1828 bytes = MAX2(bytes, si_get_scratch_buffer_bytes_per_wave(sctx->tes_shader.current));
1829 return bytes;
1830 }
1831
1832 static bool si_update_spi_tmpring_size(struct si_context *sctx)
1833 {
1834 unsigned current_scratch_buffer_size =
1835 si_get_current_scratch_buffer_size(sctx);
1836 unsigned scratch_bytes_per_wave =
1837 si_get_max_scratch_bytes_per_wave(sctx);
1838 unsigned scratch_needed_size = scratch_bytes_per_wave *
1839 sctx->scratch_waves;
1840 unsigned spi_tmpring_size;
1841 int r;
1842
1843 if (scratch_needed_size > 0) {
1844 if (scratch_needed_size > current_scratch_buffer_size) {
1845 /* Create a bigger scratch buffer */
1846 r600_resource_reference(&sctx->scratch_buffer, NULL);
1847
1848 sctx->scratch_buffer =
1849 si_resource_create_custom(&sctx->screen->b.b,
1850 PIPE_USAGE_DEFAULT, scratch_needed_size);
1851 if (!sctx->scratch_buffer)
1852 return false;
1853 sctx->emit_scratch_reloc = true;
1854 }
1855
1856 /* Update the shaders, so they are using the latest scratch. The
1857 * scratch buffer may have been changed since these shaders were
1858 * last used, so we still need to try to update them, even if
1859 * they require scratch buffers smaller than the current size.
1860 */
1861 r = si_update_scratch_buffer(sctx, sctx->ps_shader.current);
1862 if (r < 0)
1863 return false;
1864 if (r == 1)
1865 si_pm4_bind_state(sctx, ps, sctx->ps_shader.current->pm4);
1866
1867 r = si_update_scratch_buffer(sctx, sctx->gs_shader.current);
1868 if (r < 0)
1869 return false;
1870 if (r == 1)
1871 si_pm4_bind_state(sctx, gs, sctx->gs_shader.current->pm4);
1872
1873 r = si_update_scratch_buffer(sctx, sctx->tcs_shader.current);
1874 if (r < 0)
1875 return false;
1876 if (r == 1)
1877 si_pm4_bind_state(sctx, hs, sctx->tcs_shader.current->pm4);
1878
1879 /* VS can be bound as LS, ES, or VS. */
1880 r = si_update_scratch_buffer(sctx, sctx->vs_shader.current);
1881 if (r < 0)
1882 return false;
1883 if (r == 1) {
1884 if (sctx->tes_shader.current)
1885 si_pm4_bind_state(sctx, ls, sctx->vs_shader.current->pm4);
1886 else if (sctx->gs_shader.current)
1887 si_pm4_bind_state(sctx, es, sctx->vs_shader.current->pm4);
1888 else
1889 si_pm4_bind_state(sctx, vs, sctx->vs_shader.current->pm4);
1890 }
1891
1892 /* TES can be bound as ES or VS. */
1893 r = si_update_scratch_buffer(sctx, sctx->tes_shader.current);
1894 if (r < 0)
1895 return false;
1896 if (r == 1) {
1897 if (sctx->gs_shader.current)
1898 si_pm4_bind_state(sctx, es, sctx->tes_shader.current->pm4);
1899 else
1900 si_pm4_bind_state(sctx, vs, sctx->tes_shader.current->pm4);
1901 }
1902 }
1903
1904 /* The LLVM shader backend should be reporting aligned scratch_sizes. */
1905 assert((scratch_needed_size & ~0x3FF) == scratch_needed_size &&
1906 "scratch size should already be aligned correctly.");
1907
1908 spi_tmpring_size = S_0286E8_WAVES(sctx->scratch_waves) |
1909 S_0286E8_WAVESIZE(scratch_bytes_per_wave >> 10);
1910 if (spi_tmpring_size != sctx->spi_tmpring_size) {
1911 sctx->spi_tmpring_size = spi_tmpring_size;
1912 sctx->emit_scratch_reloc = true;
1913 }
1914 return true;
1915 }
1916
1917 static void si_init_tess_factor_ring(struct si_context *sctx)
1918 {
1919 bool double_offchip_buffers = sctx->b.chip_class >= CIK;
1920 unsigned max_offchip_buffers_per_se = double_offchip_buffers ? 128 : 64;
1921 unsigned max_offchip_buffers = max_offchip_buffers_per_se *
1922 sctx->screen->b.info.max_se;
1923 unsigned offchip_granularity;
1924
1925 switch (sctx->screen->tess_offchip_block_dw_size) {
1926 default:
1927 assert(0);
1928 /* fall through */
1929 case 8192:
1930 offchip_granularity = V_03093C_X_8K_DWORDS;
1931 break;
1932 case 4096:
1933 offchip_granularity = V_03093C_X_4K_DWORDS;
1934 break;
1935 }
1936
1937 switch (sctx->b.chip_class) {
1938 case SI:
1939 max_offchip_buffers = MIN2(max_offchip_buffers, 126);
1940 break;
1941 case CIK:
1942 max_offchip_buffers = MIN2(max_offchip_buffers, 508);
1943 break;
1944 case VI:
1945 default:
1946 max_offchip_buffers = MIN2(max_offchip_buffers, 512);
1947 break;
1948 }
1949
1950 assert(!sctx->tf_ring);
1951 sctx->tf_ring = pipe_buffer_create(sctx->b.b.screen, PIPE_BIND_CUSTOM,
1952 PIPE_USAGE_DEFAULT,
1953 32768 * sctx->screen->b.info.max_se);
1954 if (!sctx->tf_ring)
1955 return;
1956
1957 assert(((sctx->tf_ring->width0 / 4) & C_030938_SIZE) == 0);
1958
1959 sctx->tess_offchip_ring = pipe_buffer_create(sctx->b.b.screen,
1960 PIPE_BIND_CUSTOM,
1961 PIPE_USAGE_DEFAULT,
1962 max_offchip_buffers *
1963 sctx->screen->tess_offchip_block_dw_size * 4);
1964 if (!sctx->tess_offchip_ring)
1965 return;
1966
1967 si_init_config_add_vgt_flush(sctx);
1968
1969 /* Append these registers to the init config state. */
1970 if (sctx->b.chip_class >= CIK) {
1971 if (sctx->b.chip_class >= VI)
1972 --max_offchip_buffers;
1973
1974 si_pm4_set_reg(sctx->init_config, R_030938_VGT_TF_RING_SIZE,
1975 S_030938_SIZE(sctx->tf_ring->width0 / 4));
1976 si_pm4_set_reg(sctx->init_config, R_030940_VGT_TF_MEMORY_BASE,
1977 r600_resource(sctx->tf_ring)->gpu_address >> 8);
1978 si_pm4_set_reg(sctx->init_config, R_03093C_VGT_HS_OFFCHIP_PARAM,
1979 S_03093C_OFFCHIP_BUFFERING(max_offchip_buffers) |
1980 S_03093C_OFFCHIP_GRANULARITY(offchip_granularity));
1981 } else {
1982 assert(offchip_granularity == V_03093C_X_8K_DWORDS);
1983 si_pm4_set_reg(sctx->init_config, R_008988_VGT_TF_RING_SIZE,
1984 S_008988_SIZE(sctx->tf_ring->width0 / 4));
1985 si_pm4_set_reg(sctx->init_config, R_0089B8_VGT_TF_MEMORY_BASE,
1986 r600_resource(sctx->tf_ring)->gpu_address >> 8);
1987 si_pm4_set_reg(sctx->init_config, R_0089B0_VGT_HS_OFFCHIP_PARAM,
1988 S_0089B0_OFFCHIP_BUFFERING(max_offchip_buffers));
1989 }
1990
1991 /* Flush the context to re-emit the init_config state.
1992 * This is done only once in a lifetime of a context.
1993 */
1994 si_pm4_upload_indirect_buffer(sctx, sctx->init_config);
1995 sctx->b.initial_gfx_cs_size = 0; /* force flush */
1996 si_context_gfx_flush(sctx, RADEON_FLUSH_ASYNC, NULL);
1997
1998 si_set_ring_buffer(&sctx->b.b, SI_HS_RING_TESS_FACTOR, sctx->tf_ring,
1999 0, sctx->tf_ring->width0, false, false, 0, 0, 0);
2000
2001 si_set_ring_buffer(&sctx->b.b, SI_HS_RING_TESS_OFFCHIP,
2002 sctx->tess_offchip_ring, 0,
2003 sctx->tess_offchip_ring->width0, false, false, 0, 0, 0);
2004 }
2005
2006 /**
2007 * This is used when TCS is NULL in the VS->TCS->TES chain. In this case,
2008 * VS passes its outputs to TES directly, so the fixed-function shader only
2009 * has to write TESSOUTER and TESSINNER.
2010 */
2011 static void si_generate_fixed_func_tcs(struct si_context *sctx)
2012 {
2013 struct ureg_src outer, inner;
2014 struct ureg_dst tessouter, tessinner;
2015 struct ureg_program *ureg = ureg_create(PIPE_SHADER_TESS_CTRL);
2016
2017 if (!ureg)
2018 return; /* if we get here, we're screwed */
2019
2020 assert(!sctx->fixed_func_tcs_shader.cso);
2021
2022 outer = ureg_DECL_system_value(ureg,
2023 TGSI_SEMANTIC_DEFAULT_TESSOUTER_SI, 0);
2024 inner = ureg_DECL_system_value(ureg,
2025 TGSI_SEMANTIC_DEFAULT_TESSINNER_SI, 0);
2026
2027 tessouter = ureg_DECL_output(ureg, TGSI_SEMANTIC_TESSOUTER, 0);
2028 tessinner = ureg_DECL_output(ureg, TGSI_SEMANTIC_TESSINNER, 0);
2029
2030 ureg_MOV(ureg, tessouter, outer);
2031 ureg_MOV(ureg, tessinner, inner);
2032 ureg_END(ureg);
2033
2034 sctx->fixed_func_tcs_shader.cso =
2035 ureg_create_shader_and_destroy(ureg, &sctx->b.b);
2036 }
2037
2038 static void si_update_vgt_shader_config(struct si_context *sctx)
2039 {
2040 /* Calculate the index of the config.
2041 * 0 = VS, 1 = VS+GS, 2 = VS+Tess, 3 = VS+Tess+GS */
2042 unsigned index = 2*!!sctx->tes_shader.cso + !!sctx->gs_shader.cso;
2043 struct si_pm4_state **pm4 = &sctx->vgt_shader_config[index];
2044
2045 if (!*pm4) {
2046 uint32_t stages = 0;
2047
2048 *pm4 = CALLOC_STRUCT(si_pm4_state);
2049
2050 if (sctx->tes_shader.cso) {
2051 stages |= S_028B54_LS_EN(V_028B54_LS_STAGE_ON) |
2052 S_028B54_HS_EN(1) | S_028B54_DYNAMIC_HS(1);
2053
2054 if (sctx->gs_shader.cso)
2055 stages |= S_028B54_ES_EN(V_028B54_ES_STAGE_DS) |
2056 S_028B54_GS_EN(1) |
2057 S_028B54_VS_EN(V_028B54_VS_STAGE_COPY_SHADER);
2058 else
2059 stages |= S_028B54_VS_EN(V_028B54_VS_STAGE_DS);
2060 } else if (sctx->gs_shader.cso) {
2061 stages |= S_028B54_ES_EN(V_028B54_ES_STAGE_REAL) |
2062 S_028B54_GS_EN(1) |
2063 S_028B54_VS_EN(V_028B54_VS_STAGE_COPY_SHADER);
2064 }
2065
2066 si_pm4_set_reg(*pm4, R_028B54_VGT_SHADER_STAGES_EN, stages);
2067 }
2068 si_pm4_bind_state(sctx, vgt_shader_config, *pm4);
2069 }
2070
2071 static void si_update_so(struct si_context *sctx, struct si_shader_selector *shader)
2072 {
2073 struct pipe_stream_output_info *so = &shader->so;
2074 uint32_t enabled_stream_buffers_mask = 0;
2075 int i;
2076
2077 for (i = 0; i < so->num_outputs; i++)
2078 enabled_stream_buffers_mask |= (1 << so->output[i].output_buffer) << (so->output[i].stream * 4);
2079 sctx->b.streamout.enabled_stream_buffers_mask = enabled_stream_buffers_mask;
2080 sctx->b.streamout.stride_in_dw = shader->so.stride;
2081 }
2082
2083 bool si_update_shaders(struct si_context *sctx)
2084 {
2085 struct pipe_context *ctx = (struct pipe_context*)sctx;
2086 struct si_state_rasterizer *rs = sctx->queued.named.rasterizer;
2087 int r;
2088
2089 /* Update stages before GS. */
2090 if (sctx->tes_shader.cso) {
2091 if (!sctx->tf_ring) {
2092 si_init_tess_factor_ring(sctx);
2093 if (!sctx->tf_ring)
2094 return false;
2095 }
2096
2097 /* VS as LS */
2098 r = si_shader_select(ctx, &sctx->vs_shader);
2099 if (r)
2100 return false;
2101 si_pm4_bind_state(sctx, ls, sctx->vs_shader.current->pm4);
2102
2103 if (sctx->tcs_shader.cso) {
2104 r = si_shader_select(ctx, &sctx->tcs_shader);
2105 if (r)
2106 return false;
2107 si_pm4_bind_state(sctx, hs, sctx->tcs_shader.current->pm4);
2108 } else {
2109 if (!sctx->fixed_func_tcs_shader.cso) {
2110 si_generate_fixed_func_tcs(sctx);
2111 if (!sctx->fixed_func_tcs_shader.cso)
2112 return false;
2113 }
2114
2115 r = si_shader_select(ctx, &sctx->fixed_func_tcs_shader);
2116 if (r)
2117 return false;
2118 si_pm4_bind_state(sctx, hs,
2119 sctx->fixed_func_tcs_shader.current->pm4);
2120 }
2121
2122 r = si_shader_select(ctx, &sctx->tes_shader);
2123 if (r)
2124 return false;
2125
2126 if (sctx->gs_shader.cso) {
2127 /* TES as ES */
2128 si_pm4_bind_state(sctx, es, sctx->tes_shader.current->pm4);
2129 } else {
2130 /* TES as VS */
2131 si_pm4_bind_state(sctx, vs, sctx->tes_shader.current->pm4);
2132 si_update_so(sctx, sctx->tes_shader.cso);
2133 }
2134 } else if (sctx->gs_shader.cso) {
2135 /* VS as ES */
2136 r = si_shader_select(ctx, &sctx->vs_shader);
2137 if (r)
2138 return false;
2139 si_pm4_bind_state(sctx, es, sctx->vs_shader.current->pm4);
2140 } else {
2141 /* VS as VS */
2142 r = si_shader_select(ctx, &sctx->vs_shader);
2143 if (r)
2144 return false;
2145 si_pm4_bind_state(sctx, vs, sctx->vs_shader.current->pm4);
2146 si_update_so(sctx, sctx->vs_shader.cso);
2147 }
2148
2149 /* Update GS. */
2150 if (sctx->gs_shader.cso) {
2151 r = si_shader_select(ctx, &sctx->gs_shader);
2152 if (r)
2153 return false;
2154 si_pm4_bind_state(sctx, gs, sctx->gs_shader.current->pm4);
2155 si_pm4_bind_state(sctx, vs, sctx->gs_shader.current->gs_copy_shader->pm4);
2156 si_update_so(sctx, sctx->gs_shader.cso);
2157
2158 if (!si_update_gs_ring_buffers(sctx))
2159 return false;
2160
2161 si_update_gsvs_ring_bindings(sctx);
2162 } else {
2163 si_pm4_bind_state(sctx, gs, NULL);
2164 si_pm4_bind_state(sctx, es, NULL);
2165 }
2166
2167 si_update_vgt_shader_config(sctx);
2168
2169 if (sctx->ps_shader.cso) {
2170 unsigned db_shader_control;
2171
2172 r = si_shader_select(ctx, &sctx->ps_shader);
2173 if (r)
2174 return false;
2175 si_pm4_bind_state(sctx, ps, sctx->ps_shader.current->pm4);
2176
2177 db_shader_control =
2178 sctx->ps_shader.cso->db_shader_control |
2179 S_02880C_KILL_ENABLE(si_get_alpha_test_func(sctx) != PIPE_FUNC_ALWAYS) |
2180 S_02880C_Z_ORDER(sctx->ps_shader.current->z_order);
2181
2182 if (si_pm4_state_changed(sctx, ps) || si_pm4_state_changed(sctx, vs) ||
2183 sctx->sprite_coord_enable != rs->sprite_coord_enable ||
2184 sctx->flatshade != rs->flatshade) {
2185 sctx->sprite_coord_enable = rs->sprite_coord_enable;
2186 sctx->flatshade = rs->flatshade;
2187 si_mark_atom_dirty(sctx, &sctx->spi_map);
2188 }
2189
2190 if (sctx->b.family == CHIP_STONEY && si_pm4_state_changed(sctx, ps))
2191 si_mark_atom_dirty(sctx, &sctx->cb_render_state);
2192
2193 if (sctx->ps_db_shader_control != db_shader_control) {
2194 sctx->ps_db_shader_control = db_shader_control;
2195 si_mark_atom_dirty(sctx, &sctx->db_render_state);
2196 }
2197
2198 if (sctx->smoothing_enabled != sctx->ps_shader.current->key.ps.epilog.poly_line_smoothing) {
2199 sctx->smoothing_enabled = sctx->ps_shader.current->key.ps.epilog.poly_line_smoothing;
2200 si_mark_atom_dirty(sctx, &sctx->msaa_config);
2201
2202 if (sctx->b.chip_class == SI)
2203 si_mark_atom_dirty(sctx, &sctx->db_render_state);
2204
2205 if (sctx->framebuffer.nr_samples <= 1)
2206 si_mark_atom_dirty(sctx, &sctx->msaa_sample_locs.atom);
2207 }
2208 }
2209
2210 if (si_pm4_state_changed(sctx, ls) ||
2211 si_pm4_state_changed(sctx, hs) ||
2212 si_pm4_state_changed(sctx, es) ||
2213 si_pm4_state_changed(sctx, gs) ||
2214 si_pm4_state_changed(sctx, vs) ||
2215 si_pm4_state_changed(sctx, ps)) {
2216 if (!si_update_spi_tmpring_size(sctx))
2217 return false;
2218 }
2219
2220 sctx->do_update_shaders = false;
2221 return true;
2222 }
2223
2224 void si_init_shader_functions(struct si_context *sctx)
2225 {
2226 si_init_atom(sctx, &sctx->spi_map, &sctx->atoms.s.spi_map, si_emit_spi_map);
2227
2228 sctx->b.b.create_vs_state = si_create_shader_selector;
2229 sctx->b.b.create_tcs_state = si_create_shader_selector;
2230 sctx->b.b.create_tes_state = si_create_shader_selector;
2231 sctx->b.b.create_gs_state = si_create_shader_selector;
2232 sctx->b.b.create_fs_state = si_create_shader_selector;
2233
2234 sctx->b.b.bind_vs_state = si_bind_vs_shader;
2235 sctx->b.b.bind_tcs_state = si_bind_tcs_shader;
2236 sctx->b.b.bind_tes_state = si_bind_tes_shader;
2237 sctx->b.b.bind_gs_state = si_bind_gs_shader;
2238 sctx->b.b.bind_fs_state = si_bind_ps_shader;
2239
2240 sctx->b.b.delete_vs_state = si_delete_shader_selector;
2241 sctx->b.b.delete_tcs_state = si_delete_shader_selector;
2242 sctx->b.b.delete_tes_state = si_delete_shader_selector;
2243 sctx->b.b.delete_gs_state = si_delete_shader_selector;
2244 sctx->b.b.delete_fs_state = si_delete_shader_selector;
2245 }