326b8f27a15ef28b43576da75cb06462d050f1e5
[mesa.git] / src / gallium / drivers / radeonsi / si_state.c
1 /*
2 * Copyright 2012 Advanced Micro Devices, Inc.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 #include "si_build_pm4.h"
26 #include "sid.h"
27 #include "si_query.h"
28
29 #include "util/u_dual_blend.h"
30 #include "util/u_format.h"
31 #include "util/u_format_s3tc.h"
32 #include "util/u_memory.h"
33 #include "util/u_resource.h"
34 #include "util/u_upload_mgr.h"
35 #include "util/fast_idiv_by_const.h"
36
37 struct gfx10_format {
38 unsigned img_format:9;
39
40 /* Various formats are only supported with workarounds for vertex fetch,
41 * and some 32_32_32 formats are supported natively, but only for buffers
42 * (possibly with some image support, actually, but no filtering). */
43 bool buffers_only:1;
44 };
45
46 #include "gfx10_format_table.h"
47
48 static unsigned si_map_swizzle(unsigned swizzle)
49 {
50 switch (swizzle) {
51 case PIPE_SWIZZLE_Y:
52 return V_008F0C_SQ_SEL_Y;
53 case PIPE_SWIZZLE_Z:
54 return V_008F0C_SQ_SEL_Z;
55 case PIPE_SWIZZLE_W:
56 return V_008F0C_SQ_SEL_W;
57 case PIPE_SWIZZLE_0:
58 return V_008F0C_SQ_SEL_0;
59 case PIPE_SWIZZLE_1:
60 return V_008F0C_SQ_SEL_1;
61 default: /* PIPE_SWIZZLE_X */
62 return V_008F0C_SQ_SEL_X;
63 }
64 }
65
66 /* 12.4 fixed-point */
67 static unsigned si_pack_float_12p4(float x)
68 {
69 return x <= 0 ? 0 :
70 x >= 4096 ? 0xffff : x * 16;
71 }
72
73 /*
74 * Inferred framebuffer and blender state.
75 *
76 * CB_TARGET_MASK is emitted here to avoid a hang with dual source blending
77 * if there is not enough PS outputs.
78 */
79 static void si_emit_cb_render_state(struct si_context *sctx)
80 {
81 struct radeon_cmdbuf *cs = sctx->gfx_cs;
82 struct si_state_blend *blend = sctx->queued.named.blend;
83 /* CB_COLORn_INFO.FORMAT=INVALID should disable unbound colorbuffers,
84 * but you never know. */
85 uint32_t cb_target_mask = sctx->framebuffer.colorbuf_enabled_4bit;
86 unsigned i;
87
88 if (blend)
89 cb_target_mask &= blend->cb_target_mask;
90
91 /* Avoid a hang that happens when dual source blending is enabled
92 * but there is not enough color outputs. This is undefined behavior,
93 * so disable color writes completely.
94 *
95 * Reproducible with Unigine Heaven 4.0 and drirc missing.
96 */
97 if (blend && blend->dual_src_blend &&
98 sctx->ps_shader.cso &&
99 (sctx->ps_shader.cso->info.colors_written & 0x3) != 0x3)
100 cb_target_mask = 0;
101
102 /* GFX9: Flush DFSM when CB_TARGET_MASK changes.
103 * I think we don't have to do anything between IBs.
104 */
105 if (sctx->screen->dfsm_allowed &&
106 sctx->last_cb_target_mask != cb_target_mask) {
107 sctx->last_cb_target_mask = cb_target_mask;
108
109 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
110 radeon_emit(cs, EVENT_TYPE(V_028A90_FLUSH_DFSM) | EVENT_INDEX(0));
111 }
112
113 unsigned initial_cdw = cs->current.cdw;
114 radeon_opt_set_context_reg(sctx, R_028238_CB_TARGET_MASK,
115 SI_TRACKED_CB_TARGET_MASK, cb_target_mask);
116
117 if (sctx->chip_class >= GFX8) {
118 /* DCC MSAA workaround for blending.
119 * Alternatively, we can set CB_COLORi_DCC_CONTROL.OVERWRITE_-
120 * COMBINER_DISABLE, but that would be more complicated.
121 */
122 bool oc_disable = blend &&
123 blend->blend_enable_4bit & cb_target_mask &&
124 sctx->framebuffer.nr_samples >= 2;
125 unsigned watermark = sctx->framebuffer.dcc_overwrite_combiner_watermark;
126
127 radeon_opt_set_context_reg(
128 sctx, R_028424_CB_DCC_CONTROL,
129 SI_TRACKED_CB_DCC_CONTROL,
130 S_028424_OVERWRITE_COMBINER_MRT_SHARING_DISABLE(1) |
131 S_028424_OVERWRITE_COMBINER_WATERMARK(watermark) |
132 S_028424_OVERWRITE_COMBINER_DISABLE(oc_disable) |
133 S_028424_DISABLE_CONSTANT_ENCODE_REG(sctx->screen->has_dcc_constant_encode));
134 }
135
136 /* RB+ register settings. */
137 if (sctx->screen->rbplus_allowed) {
138 unsigned spi_shader_col_format =
139 sctx->ps_shader.cso ?
140 sctx->ps_shader.current->key.part.ps.epilog.spi_shader_col_format : 0;
141 unsigned sx_ps_downconvert = 0;
142 unsigned sx_blend_opt_epsilon = 0;
143 unsigned sx_blend_opt_control = 0;
144
145 for (i = 0; i < sctx->framebuffer.state.nr_cbufs; i++) {
146 struct si_surface *surf =
147 (struct si_surface*)sctx->framebuffer.state.cbufs[i];
148 unsigned format, swap, spi_format, colormask;
149 bool has_alpha, has_rgb;
150
151 if (!surf) {
152 /* If the color buffer is not set, the driver sets 32_R
153 * as the SPI color format, because the hw doesn't allow
154 * holes between color outputs, so also set this to
155 * enable RB+.
156 */
157 sx_ps_downconvert |= V_028754_SX_RT_EXPORT_32_R << (i * 4);
158 continue;
159 }
160
161 format = G_028C70_FORMAT(surf->cb_color_info);
162 swap = G_028C70_COMP_SWAP(surf->cb_color_info);
163 spi_format = (spi_shader_col_format >> (i * 4)) & 0xf;
164 colormask = (cb_target_mask >> (i * 4)) & 0xf;
165
166 /* Set if RGB and A are present. */
167 has_alpha = !G_028C74_FORCE_DST_ALPHA_1(surf->cb_color_attrib);
168
169 if (format == V_028C70_COLOR_8 ||
170 format == V_028C70_COLOR_16 ||
171 format == V_028C70_COLOR_32)
172 has_rgb = !has_alpha;
173 else
174 has_rgb = true;
175
176 /* Check the colormask and export format. */
177 if (!(colormask & (PIPE_MASK_RGBA & ~PIPE_MASK_A)))
178 has_rgb = false;
179 if (!(colormask & PIPE_MASK_A))
180 has_alpha = false;
181
182 if (spi_format == V_028714_SPI_SHADER_ZERO) {
183 has_rgb = false;
184 has_alpha = false;
185 }
186
187 /* Disable value checking for disabled channels. */
188 if (!has_rgb)
189 sx_blend_opt_control |= S_02875C_MRT0_COLOR_OPT_DISABLE(1) << (i * 4);
190 if (!has_alpha)
191 sx_blend_opt_control |= S_02875C_MRT0_ALPHA_OPT_DISABLE(1) << (i * 4);
192
193 /* Enable down-conversion for 32bpp and smaller formats. */
194 switch (format) {
195 case V_028C70_COLOR_8:
196 case V_028C70_COLOR_8_8:
197 case V_028C70_COLOR_8_8_8_8:
198 /* For 1 and 2-channel formats, use the superset thereof. */
199 if (spi_format == V_028714_SPI_SHADER_FP16_ABGR ||
200 spi_format == V_028714_SPI_SHADER_UINT16_ABGR ||
201 spi_format == V_028714_SPI_SHADER_SINT16_ABGR) {
202 sx_ps_downconvert |= V_028754_SX_RT_EXPORT_8_8_8_8 << (i * 4);
203 sx_blend_opt_epsilon |= V_028758_8BIT_FORMAT << (i * 4);
204 }
205 break;
206
207 case V_028C70_COLOR_5_6_5:
208 if (spi_format == V_028714_SPI_SHADER_FP16_ABGR) {
209 sx_ps_downconvert |= V_028754_SX_RT_EXPORT_5_6_5 << (i * 4);
210 sx_blend_opt_epsilon |= V_028758_6BIT_FORMAT << (i * 4);
211 }
212 break;
213
214 case V_028C70_COLOR_1_5_5_5:
215 if (spi_format == V_028714_SPI_SHADER_FP16_ABGR) {
216 sx_ps_downconvert |= V_028754_SX_RT_EXPORT_1_5_5_5 << (i * 4);
217 sx_blend_opt_epsilon |= V_028758_5BIT_FORMAT << (i * 4);
218 }
219 break;
220
221 case V_028C70_COLOR_4_4_4_4:
222 if (spi_format == V_028714_SPI_SHADER_FP16_ABGR) {
223 sx_ps_downconvert |= V_028754_SX_RT_EXPORT_4_4_4_4 << (i * 4);
224 sx_blend_opt_epsilon |= V_028758_4BIT_FORMAT << (i * 4);
225 }
226 break;
227
228 case V_028C70_COLOR_32:
229 if (swap == V_028C70_SWAP_STD &&
230 spi_format == V_028714_SPI_SHADER_32_R)
231 sx_ps_downconvert |= V_028754_SX_RT_EXPORT_32_R << (i * 4);
232 else if (swap == V_028C70_SWAP_ALT_REV &&
233 spi_format == V_028714_SPI_SHADER_32_AR)
234 sx_ps_downconvert |= V_028754_SX_RT_EXPORT_32_A << (i * 4);
235 break;
236
237 case V_028C70_COLOR_16:
238 case V_028C70_COLOR_16_16:
239 /* For 1-channel formats, use the superset thereof. */
240 if (spi_format == V_028714_SPI_SHADER_UNORM16_ABGR ||
241 spi_format == V_028714_SPI_SHADER_SNORM16_ABGR ||
242 spi_format == V_028714_SPI_SHADER_UINT16_ABGR ||
243 spi_format == V_028714_SPI_SHADER_SINT16_ABGR) {
244 if (swap == V_028C70_SWAP_STD ||
245 swap == V_028C70_SWAP_STD_REV)
246 sx_ps_downconvert |= V_028754_SX_RT_EXPORT_16_16_GR << (i * 4);
247 else
248 sx_ps_downconvert |= V_028754_SX_RT_EXPORT_16_16_AR << (i * 4);
249 }
250 break;
251
252 case V_028C70_COLOR_10_11_11:
253 if (spi_format == V_028714_SPI_SHADER_FP16_ABGR) {
254 sx_ps_downconvert |= V_028754_SX_RT_EXPORT_10_11_11 << (i * 4);
255 sx_blend_opt_epsilon |= V_028758_11BIT_FORMAT << (i * 4);
256 }
257 break;
258
259 case V_028C70_COLOR_2_10_10_10:
260 if (spi_format == V_028714_SPI_SHADER_FP16_ABGR) {
261 sx_ps_downconvert |= V_028754_SX_RT_EXPORT_2_10_10_10 << (i * 4);
262 sx_blend_opt_epsilon |= V_028758_10BIT_FORMAT << (i * 4);
263 }
264 break;
265 }
266 }
267
268 /* If there are no color outputs, the first color export is
269 * always enabled as 32_R, so also set this to enable RB+.
270 */
271 if (!sx_ps_downconvert)
272 sx_ps_downconvert = V_028754_SX_RT_EXPORT_32_R;
273
274 /* SX_PS_DOWNCONVERT, SX_BLEND_OPT_EPSILON, SX_BLEND_OPT_CONTROL */
275 radeon_opt_set_context_reg3(sctx, R_028754_SX_PS_DOWNCONVERT,
276 SI_TRACKED_SX_PS_DOWNCONVERT,
277 sx_ps_downconvert, sx_blend_opt_epsilon,
278 sx_blend_opt_control);
279 }
280 if (initial_cdw != cs->current.cdw)
281 sctx->context_roll = true;
282 }
283
284 /*
285 * Blender functions
286 */
287
288 static uint32_t si_translate_blend_function(int blend_func)
289 {
290 switch (blend_func) {
291 case PIPE_BLEND_ADD:
292 return V_028780_COMB_DST_PLUS_SRC;
293 case PIPE_BLEND_SUBTRACT:
294 return V_028780_COMB_SRC_MINUS_DST;
295 case PIPE_BLEND_REVERSE_SUBTRACT:
296 return V_028780_COMB_DST_MINUS_SRC;
297 case PIPE_BLEND_MIN:
298 return V_028780_COMB_MIN_DST_SRC;
299 case PIPE_BLEND_MAX:
300 return V_028780_COMB_MAX_DST_SRC;
301 default:
302 PRINT_ERR("Unknown blend function %d\n", blend_func);
303 assert(0);
304 break;
305 }
306 return 0;
307 }
308
309 static uint32_t si_translate_blend_factor(int blend_fact)
310 {
311 switch (blend_fact) {
312 case PIPE_BLENDFACTOR_ONE:
313 return V_028780_BLEND_ONE;
314 case PIPE_BLENDFACTOR_SRC_COLOR:
315 return V_028780_BLEND_SRC_COLOR;
316 case PIPE_BLENDFACTOR_SRC_ALPHA:
317 return V_028780_BLEND_SRC_ALPHA;
318 case PIPE_BLENDFACTOR_DST_ALPHA:
319 return V_028780_BLEND_DST_ALPHA;
320 case PIPE_BLENDFACTOR_DST_COLOR:
321 return V_028780_BLEND_DST_COLOR;
322 case PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE:
323 return V_028780_BLEND_SRC_ALPHA_SATURATE;
324 case PIPE_BLENDFACTOR_CONST_COLOR:
325 return V_028780_BLEND_CONSTANT_COLOR;
326 case PIPE_BLENDFACTOR_CONST_ALPHA:
327 return V_028780_BLEND_CONSTANT_ALPHA;
328 case PIPE_BLENDFACTOR_ZERO:
329 return V_028780_BLEND_ZERO;
330 case PIPE_BLENDFACTOR_INV_SRC_COLOR:
331 return V_028780_BLEND_ONE_MINUS_SRC_COLOR;
332 case PIPE_BLENDFACTOR_INV_SRC_ALPHA:
333 return V_028780_BLEND_ONE_MINUS_SRC_ALPHA;
334 case PIPE_BLENDFACTOR_INV_DST_ALPHA:
335 return V_028780_BLEND_ONE_MINUS_DST_ALPHA;
336 case PIPE_BLENDFACTOR_INV_DST_COLOR:
337 return V_028780_BLEND_ONE_MINUS_DST_COLOR;
338 case PIPE_BLENDFACTOR_INV_CONST_COLOR:
339 return V_028780_BLEND_ONE_MINUS_CONSTANT_COLOR;
340 case PIPE_BLENDFACTOR_INV_CONST_ALPHA:
341 return V_028780_BLEND_ONE_MINUS_CONSTANT_ALPHA;
342 case PIPE_BLENDFACTOR_SRC1_COLOR:
343 return V_028780_BLEND_SRC1_COLOR;
344 case PIPE_BLENDFACTOR_SRC1_ALPHA:
345 return V_028780_BLEND_SRC1_ALPHA;
346 case PIPE_BLENDFACTOR_INV_SRC1_COLOR:
347 return V_028780_BLEND_INV_SRC1_COLOR;
348 case PIPE_BLENDFACTOR_INV_SRC1_ALPHA:
349 return V_028780_BLEND_INV_SRC1_ALPHA;
350 default:
351 PRINT_ERR("Bad blend factor %d not supported!\n", blend_fact);
352 assert(0);
353 break;
354 }
355 return 0;
356 }
357
358 static uint32_t si_translate_blend_opt_function(int blend_func)
359 {
360 switch (blend_func) {
361 case PIPE_BLEND_ADD:
362 return V_028760_OPT_COMB_ADD;
363 case PIPE_BLEND_SUBTRACT:
364 return V_028760_OPT_COMB_SUBTRACT;
365 case PIPE_BLEND_REVERSE_SUBTRACT:
366 return V_028760_OPT_COMB_REVSUBTRACT;
367 case PIPE_BLEND_MIN:
368 return V_028760_OPT_COMB_MIN;
369 case PIPE_BLEND_MAX:
370 return V_028760_OPT_COMB_MAX;
371 default:
372 return V_028760_OPT_COMB_BLEND_DISABLED;
373 }
374 }
375
376 static uint32_t si_translate_blend_opt_factor(int blend_fact, bool is_alpha)
377 {
378 switch (blend_fact) {
379 case PIPE_BLENDFACTOR_ZERO:
380 return V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_ALL;
381 case PIPE_BLENDFACTOR_ONE:
382 return V_028760_BLEND_OPT_PRESERVE_ALL_IGNORE_NONE;
383 case PIPE_BLENDFACTOR_SRC_COLOR:
384 return is_alpha ? V_028760_BLEND_OPT_PRESERVE_A1_IGNORE_A0
385 : V_028760_BLEND_OPT_PRESERVE_C1_IGNORE_C0;
386 case PIPE_BLENDFACTOR_INV_SRC_COLOR:
387 return is_alpha ? V_028760_BLEND_OPT_PRESERVE_A0_IGNORE_A1
388 : V_028760_BLEND_OPT_PRESERVE_C0_IGNORE_C1;
389 case PIPE_BLENDFACTOR_SRC_ALPHA:
390 return V_028760_BLEND_OPT_PRESERVE_A1_IGNORE_A0;
391 case PIPE_BLENDFACTOR_INV_SRC_ALPHA:
392 return V_028760_BLEND_OPT_PRESERVE_A0_IGNORE_A1;
393 case PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE:
394 return is_alpha ? V_028760_BLEND_OPT_PRESERVE_ALL_IGNORE_NONE
395 : V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_A0;
396 default:
397 return V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_NONE;
398 }
399 }
400
401 static void si_blend_check_commutativity(struct si_screen *sscreen,
402 struct si_state_blend *blend,
403 enum pipe_blend_func func,
404 enum pipe_blendfactor src,
405 enum pipe_blendfactor dst,
406 unsigned chanmask)
407 {
408 /* Src factor is allowed when it does not depend on Dst */
409 static const uint32_t src_allowed =
410 (1u << PIPE_BLENDFACTOR_ONE) |
411 (1u << PIPE_BLENDFACTOR_SRC_COLOR) |
412 (1u << PIPE_BLENDFACTOR_SRC_ALPHA) |
413 (1u << PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE) |
414 (1u << PIPE_BLENDFACTOR_CONST_COLOR) |
415 (1u << PIPE_BLENDFACTOR_CONST_ALPHA) |
416 (1u << PIPE_BLENDFACTOR_SRC1_COLOR) |
417 (1u << PIPE_BLENDFACTOR_SRC1_ALPHA) |
418 (1u << PIPE_BLENDFACTOR_ZERO) |
419 (1u << PIPE_BLENDFACTOR_INV_SRC_COLOR) |
420 (1u << PIPE_BLENDFACTOR_INV_SRC_ALPHA) |
421 (1u << PIPE_BLENDFACTOR_INV_CONST_COLOR) |
422 (1u << PIPE_BLENDFACTOR_INV_CONST_ALPHA) |
423 (1u << PIPE_BLENDFACTOR_INV_SRC1_COLOR) |
424 (1u << PIPE_BLENDFACTOR_INV_SRC1_ALPHA);
425
426 if (dst == PIPE_BLENDFACTOR_ONE &&
427 (src_allowed & (1u << src))) {
428 /* Addition is commutative, but floating point addition isn't
429 * associative: subtle changes can be introduced via different
430 * rounding.
431 *
432 * Out-of-order is also non-deterministic, which means that
433 * this breaks OpenGL invariance requirements. So only enable
434 * out-of-order additive blending if explicitly allowed by a
435 * setting.
436 */
437 if (func == PIPE_BLEND_MAX || func == PIPE_BLEND_MIN ||
438 (func == PIPE_BLEND_ADD && sscreen->commutative_blend_add))
439 blend->commutative_4bit |= chanmask;
440 }
441 }
442
443 /**
444 * Get rid of DST in the blend factors by commuting the operands:
445 * func(src * DST, dst * 0) ---> func(src * 0, dst * SRC)
446 */
447 static void si_blend_remove_dst(unsigned *func, unsigned *src_factor,
448 unsigned *dst_factor, unsigned expected_dst,
449 unsigned replacement_src)
450 {
451 if (*src_factor == expected_dst &&
452 *dst_factor == PIPE_BLENDFACTOR_ZERO) {
453 *src_factor = PIPE_BLENDFACTOR_ZERO;
454 *dst_factor = replacement_src;
455
456 /* Commuting the operands requires reversing subtractions. */
457 if (*func == PIPE_BLEND_SUBTRACT)
458 *func = PIPE_BLEND_REVERSE_SUBTRACT;
459 else if (*func == PIPE_BLEND_REVERSE_SUBTRACT)
460 *func = PIPE_BLEND_SUBTRACT;
461 }
462 }
463
464 static bool si_blend_factor_uses_dst(unsigned factor)
465 {
466 return factor == PIPE_BLENDFACTOR_DST_COLOR ||
467 factor == PIPE_BLENDFACTOR_DST_ALPHA ||
468 factor == PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE ||
469 factor == PIPE_BLENDFACTOR_INV_DST_ALPHA ||
470 factor == PIPE_BLENDFACTOR_INV_DST_COLOR;
471 }
472
473 static void *si_create_blend_state_mode(struct pipe_context *ctx,
474 const struct pipe_blend_state *state,
475 unsigned mode)
476 {
477 struct si_context *sctx = (struct si_context*)ctx;
478 struct si_state_blend *blend = CALLOC_STRUCT(si_state_blend);
479 struct si_pm4_state *pm4 = &blend->pm4;
480 uint32_t sx_mrt_blend_opt[8] = {0};
481 uint32_t color_control = 0;
482
483 if (!blend)
484 return NULL;
485
486 blend->alpha_to_coverage = state->alpha_to_coverage;
487 blend->alpha_to_one = state->alpha_to_one;
488 blend->dual_src_blend = util_blend_state_is_dual(state, 0);
489 blend->logicop_enable = state->logicop_enable;
490
491 if (state->logicop_enable) {
492 color_control |= S_028808_ROP3(state->logicop_func | (state->logicop_func << 4));
493 } else {
494 color_control |= S_028808_ROP3(0xcc);
495 }
496
497 si_pm4_set_reg(pm4, R_028B70_DB_ALPHA_TO_MASK,
498 S_028B70_ALPHA_TO_MASK_ENABLE(state->alpha_to_coverage) |
499 S_028B70_ALPHA_TO_MASK_OFFSET0(3) |
500 S_028B70_ALPHA_TO_MASK_OFFSET1(1) |
501 S_028B70_ALPHA_TO_MASK_OFFSET2(0) |
502 S_028B70_ALPHA_TO_MASK_OFFSET3(2) |
503 S_028B70_OFFSET_ROUND(1));
504
505 if (state->alpha_to_coverage)
506 blend->need_src_alpha_4bit |= 0xf;
507
508 blend->cb_target_mask = 0;
509 blend->cb_target_enabled_4bit = 0;
510
511 for (int i = 0; i < 8; i++) {
512 /* state->rt entries > 0 only written if independent blending */
513 const int j = state->independent_blend_enable ? i : 0;
514
515 unsigned eqRGB = state->rt[j].rgb_func;
516 unsigned srcRGB = state->rt[j].rgb_src_factor;
517 unsigned dstRGB = state->rt[j].rgb_dst_factor;
518 unsigned eqA = state->rt[j].alpha_func;
519 unsigned srcA = state->rt[j].alpha_src_factor;
520 unsigned dstA = state->rt[j].alpha_dst_factor;
521
522 unsigned srcRGB_opt, dstRGB_opt, srcA_opt, dstA_opt;
523 unsigned blend_cntl = 0;
524
525 sx_mrt_blend_opt[i] =
526 S_028760_COLOR_COMB_FCN(V_028760_OPT_COMB_BLEND_DISABLED) |
527 S_028760_ALPHA_COMB_FCN(V_028760_OPT_COMB_BLEND_DISABLED);
528
529 /* Only set dual source blending for MRT0 to avoid a hang. */
530 if (i >= 1 && blend->dual_src_blend) {
531 /* Vulkan does this for dual source blending. */
532 if (i == 1)
533 blend_cntl |= S_028780_ENABLE(1);
534
535 si_pm4_set_reg(pm4, R_028780_CB_BLEND0_CONTROL + i * 4, blend_cntl);
536 continue;
537 }
538
539 /* Only addition and subtraction equations are supported with
540 * dual source blending.
541 */
542 if (blend->dual_src_blend &&
543 (eqRGB == PIPE_BLEND_MIN || eqRGB == PIPE_BLEND_MAX ||
544 eqA == PIPE_BLEND_MIN || eqA == PIPE_BLEND_MAX)) {
545 assert(!"Unsupported equation for dual source blending");
546 si_pm4_set_reg(pm4, R_028780_CB_BLEND0_CONTROL + i * 4, blend_cntl);
547 continue;
548 }
549
550 /* cb_render_state will disable unused ones */
551 blend->cb_target_mask |= (unsigned)state->rt[j].colormask << (4 * i);
552 if (state->rt[j].colormask)
553 blend->cb_target_enabled_4bit |= 0xf << (4 * i);
554
555 if (!state->rt[j].colormask || !state->rt[j].blend_enable) {
556 si_pm4_set_reg(pm4, R_028780_CB_BLEND0_CONTROL + i * 4, blend_cntl);
557 continue;
558 }
559
560 si_blend_check_commutativity(sctx->screen, blend,
561 eqRGB, srcRGB, dstRGB, 0x7 << (4 * i));
562 si_blend_check_commutativity(sctx->screen, blend,
563 eqA, srcA, dstA, 0x8 << (4 * i));
564
565 /* Blending optimizations for RB+.
566 * These transformations don't change the behavior.
567 *
568 * First, get rid of DST in the blend factors:
569 * func(src * DST, dst * 0) ---> func(src * 0, dst * SRC)
570 */
571 si_blend_remove_dst(&eqRGB, &srcRGB, &dstRGB,
572 PIPE_BLENDFACTOR_DST_COLOR,
573 PIPE_BLENDFACTOR_SRC_COLOR);
574 si_blend_remove_dst(&eqA, &srcA, &dstA,
575 PIPE_BLENDFACTOR_DST_COLOR,
576 PIPE_BLENDFACTOR_SRC_COLOR);
577 si_blend_remove_dst(&eqA, &srcA, &dstA,
578 PIPE_BLENDFACTOR_DST_ALPHA,
579 PIPE_BLENDFACTOR_SRC_ALPHA);
580
581 /* Look up the ideal settings from tables. */
582 srcRGB_opt = si_translate_blend_opt_factor(srcRGB, false);
583 dstRGB_opt = si_translate_blend_opt_factor(dstRGB, false);
584 srcA_opt = si_translate_blend_opt_factor(srcA, true);
585 dstA_opt = si_translate_blend_opt_factor(dstA, true);
586
587 /* Handle interdependencies. */
588 if (si_blend_factor_uses_dst(srcRGB))
589 dstRGB_opt = V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_NONE;
590 if (si_blend_factor_uses_dst(srcA))
591 dstA_opt = V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_NONE;
592
593 if (srcRGB == PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE &&
594 (dstRGB == PIPE_BLENDFACTOR_ZERO ||
595 dstRGB == PIPE_BLENDFACTOR_SRC_ALPHA ||
596 dstRGB == PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE))
597 dstRGB_opt = V_028760_BLEND_OPT_PRESERVE_NONE_IGNORE_A0;
598
599 /* Set the final value. */
600 sx_mrt_blend_opt[i] =
601 S_028760_COLOR_SRC_OPT(srcRGB_opt) |
602 S_028760_COLOR_DST_OPT(dstRGB_opt) |
603 S_028760_COLOR_COMB_FCN(si_translate_blend_opt_function(eqRGB)) |
604 S_028760_ALPHA_SRC_OPT(srcA_opt) |
605 S_028760_ALPHA_DST_OPT(dstA_opt) |
606 S_028760_ALPHA_COMB_FCN(si_translate_blend_opt_function(eqA));
607
608 /* Set blend state. */
609 blend_cntl |= S_028780_ENABLE(1);
610 blend_cntl |= S_028780_COLOR_COMB_FCN(si_translate_blend_function(eqRGB));
611 blend_cntl |= S_028780_COLOR_SRCBLEND(si_translate_blend_factor(srcRGB));
612 blend_cntl |= S_028780_COLOR_DESTBLEND(si_translate_blend_factor(dstRGB));
613
614 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
615 blend_cntl |= S_028780_SEPARATE_ALPHA_BLEND(1);
616 blend_cntl |= S_028780_ALPHA_COMB_FCN(si_translate_blend_function(eqA));
617 blend_cntl |= S_028780_ALPHA_SRCBLEND(si_translate_blend_factor(srcA));
618 blend_cntl |= S_028780_ALPHA_DESTBLEND(si_translate_blend_factor(dstA));
619 }
620 si_pm4_set_reg(pm4, R_028780_CB_BLEND0_CONTROL + i * 4, blend_cntl);
621
622 blend->blend_enable_4bit |= 0xfu << (i * 4);
623
624 /* This is only important for formats without alpha. */
625 if (srcRGB == PIPE_BLENDFACTOR_SRC_ALPHA ||
626 dstRGB == PIPE_BLENDFACTOR_SRC_ALPHA ||
627 srcRGB == PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE ||
628 dstRGB == PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE ||
629 srcRGB == PIPE_BLENDFACTOR_INV_SRC_ALPHA ||
630 dstRGB == PIPE_BLENDFACTOR_INV_SRC_ALPHA)
631 blend->need_src_alpha_4bit |= 0xfu << (i * 4);
632 }
633
634 if (blend->cb_target_mask) {
635 color_control |= S_028808_MODE(mode);
636 } else {
637 color_control |= S_028808_MODE(V_028808_CB_DISABLE);
638 }
639
640 if (sctx->screen->rbplus_allowed) {
641 /* Disable RB+ blend optimizations for dual source blending.
642 * Vulkan does this.
643 */
644 if (blend->dual_src_blend) {
645 for (int i = 0; i < 8; i++) {
646 sx_mrt_blend_opt[i] =
647 S_028760_COLOR_COMB_FCN(V_028760_OPT_COMB_NONE) |
648 S_028760_ALPHA_COMB_FCN(V_028760_OPT_COMB_NONE);
649 }
650 }
651
652 for (int i = 0; i < 8; i++)
653 si_pm4_set_reg(pm4, R_028760_SX_MRT0_BLEND_OPT + i * 4,
654 sx_mrt_blend_opt[i]);
655
656 /* RB+ doesn't work with dual source blending, logic op, and RESOLVE. */
657 if (blend->dual_src_blend || state->logicop_enable ||
658 mode == V_028808_CB_RESOLVE)
659 color_control |= S_028808_DISABLE_DUAL_QUAD(1);
660 }
661
662 si_pm4_set_reg(pm4, R_028808_CB_COLOR_CONTROL, color_control);
663 return blend;
664 }
665
666 static void *si_create_blend_state(struct pipe_context *ctx,
667 const struct pipe_blend_state *state)
668 {
669 return si_create_blend_state_mode(ctx, state, V_028808_CB_NORMAL);
670 }
671
672 static void si_bind_blend_state(struct pipe_context *ctx, void *state)
673 {
674 struct si_context *sctx = (struct si_context *)ctx;
675 struct si_state_blend *old_blend = sctx->queued.named.blend;
676 struct si_state_blend *blend = (struct si_state_blend *)state;
677
678 if (!state)
679 return;
680
681 si_pm4_bind_state(sctx, blend, state);
682
683 if (!old_blend ||
684 old_blend->cb_target_mask != blend->cb_target_mask ||
685 old_blend->dual_src_blend != blend->dual_src_blend ||
686 (old_blend->blend_enable_4bit != blend->blend_enable_4bit &&
687 sctx->framebuffer.nr_samples >= 2 &&
688 sctx->screen->dcc_msaa_allowed))
689 si_mark_atom_dirty(sctx, &sctx->atoms.s.cb_render_state);
690
691 if (!old_blend ||
692 old_blend->cb_target_mask != blend->cb_target_mask ||
693 old_blend->alpha_to_coverage != blend->alpha_to_coverage ||
694 old_blend->alpha_to_one != blend->alpha_to_one ||
695 old_blend->dual_src_blend != blend->dual_src_blend ||
696 old_blend->blend_enable_4bit != blend->blend_enable_4bit ||
697 old_blend->need_src_alpha_4bit != blend->need_src_alpha_4bit)
698 sctx->do_update_shaders = true;
699
700 if (sctx->screen->dpbb_allowed &&
701 (!old_blend ||
702 old_blend->alpha_to_coverage != blend->alpha_to_coverage ||
703 old_blend->blend_enable_4bit != blend->blend_enable_4bit ||
704 old_blend->cb_target_enabled_4bit != blend->cb_target_enabled_4bit))
705 si_mark_atom_dirty(sctx, &sctx->atoms.s.dpbb_state);
706
707 if (sctx->screen->has_out_of_order_rast &&
708 (!old_blend ||
709 (old_blend->blend_enable_4bit != blend->blend_enable_4bit ||
710 old_blend->cb_target_enabled_4bit != blend->cb_target_enabled_4bit ||
711 old_blend->commutative_4bit != blend->commutative_4bit ||
712 old_blend->logicop_enable != blend->logicop_enable)))
713 si_mark_atom_dirty(sctx, &sctx->atoms.s.msaa_config);
714 }
715
716 static void si_delete_blend_state(struct pipe_context *ctx, void *state)
717 {
718 struct si_context *sctx = (struct si_context *)ctx;
719 si_pm4_delete_state(sctx, blend, (struct si_state_blend *)state);
720 }
721
722 static void si_set_blend_color(struct pipe_context *ctx,
723 const struct pipe_blend_color *state)
724 {
725 struct si_context *sctx = (struct si_context *)ctx;
726 static const struct pipe_blend_color zeros;
727
728 sctx->blend_color.state = *state;
729 sctx->blend_color.any_nonzeros = memcmp(state, &zeros, sizeof(*state)) != 0;
730 si_mark_atom_dirty(sctx, &sctx->atoms.s.blend_color);
731 }
732
733 static void si_emit_blend_color(struct si_context *sctx)
734 {
735 struct radeon_cmdbuf *cs = sctx->gfx_cs;
736
737 radeon_set_context_reg_seq(cs, R_028414_CB_BLEND_RED, 4);
738 radeon_emit_array(cs, (uint32_t*)sctx->blend_color.state.color, 4);
739 }
740
741 /*
742 * Clipping
743 */
744
745 static void si_set_clip_state(struct pipe_context *ctx,
746 const struct pipe_clip_state *state)
747 {
748 struct si_context *sctx = (struct si_context *)ctx;
749 struct pipe_constant_buffer cb;
750 static const struct pipe_clip_state zeros;
751
752 if (memcmp(&sctx->clip_state.state, state, sizeof(*state)) == 0)
753 return;
754
755 sctx->clip_state.state = *state;
756 sctx->clip_state.any_nonzeros = memcmp(state, &zeros, sizeof(*state)) != 0;
757 si_mark_atom_dirty(sctx, &sctx->atoms.s.clip_state);
758
759 cb.buffer = NULL;
760 cb.user_buffer = state->ucp;
761 cb.buffer_offset = 0;
762 cb.buffer_size = 4*4*8;
763 si_set_rw_buffer(sctx, SI_VS_CONST_CLIP_PLANES, &cb);
764 pipe_resource_reference(&cb.buffer, NULL);
765 }
766
767 static void si_emit_clip_state(struct si_context *sctx)
768 {
769 struct radeon_cmdbuf *cs = sctx->gfx_cs;
770
771 radeon_set_context_reg_seq(cs, R_0285BC_PA_CL_UCP_0_X, 6*4);
772 radeon_emit_array(cs, (uint32_t*)sctx->clip_state.state.ucp, 6*4);
773 }
774
775 static void si_emit_clip_regs(struct si_context *sctx)
776 {
777 struct si_shader *vs = si_get_vs_state(sctx);
778 struct si_shader_selector *vs_sel = vs->selector;
779 struct tgsi_shader_info *info = &vs_sel->info;
780 struct si_state_rasterizer *rs = sctx->queued.named.rasterizer;
781 unsigned window_space =
782 info->properties[TGSI_PROPERTY_VS_WINDOW_SPACE_POSITION];
783 unsigned clipdist_mask = vs_sel->clipdist_mask;
784 unsigned ucp_mask = clipdist_mask ? 0 : rs->clip_plane_enable & SIX_BITS;
785 unsigned culldist_mask = vs_sel->culldist_mask;
786 unsigned total_mask;
787
788 if (vs->key.opt.clip_disable) {
789 assert(!info->culldist_writemask);
790 clipdist_mask = 0;
791 culldist_mask = 0;
792 }
793 total_mask = clipdist_mask | culldist_mask;
794
795 /* Clip distances on points have no effect, so need to be implemented
796 * as cull distances. This applies for the clipvertex case as well.
797 *
798 * Setting this for primitives other than points should have no adverse
799 * effects.
800 */
801 clipdist_mask &= rs->clip_plane_enable;
802 culldist_mask |= clipdist_mask;
803
804 unsigned initial_cdw = sctx->gfx_cs->current.cdw;
805 radeon_opt_set_context_reg(sctx, R_02881C_PA_CL_VS_OUT_CNTL,
806 SI_TRACKED_PA_CL_VS_OUT_CNTL,
807 vs_sel->pa_cl_vs_out_cntl |
808 S_02881C_VS_OUT_CCDIST0_VEC_ENA((total_mask & 0x0F) != 0) |
809 S_02881C_VS_OUT_CCDIST1_VEC_ENA((total_mask & 0xF0) != 0) |
810 clipdist_mask | (culldist_mask << 8));
811 radeon_opt_set_context_reg(sctx, R_028810_PA_CL_CLIP_CNTL,
812 SI_TRACKED_PA_CL_CLIP_CNTL,
813 rs->pa_cl_clip_cntl |
814 ucp_mask |
815 S_028810_CLIP_DISABLE(window_space));
816
817 if (initial_cdw != sctx->gfx_cs->current.cdw)
818 sctx->context_roll = true;
819 }
820
821 /*
822 * inferred state between framebuffer and rasterizer
823 */
824 static void si_update_poly_offset_state(struct si_context *sctx)
825 {
826 struct si_state_rasterizer *rs = sctx->queued.named.rasterizer;
827
828 if (!rs || !rs->uses_poly_offset || !sctx->framebuffer.state.zsbuf) {
829 si_pm4_bind_state(sctx, poly_offset, NULL);
830 return;
831 }
832
833 /* Use the user format, not db_render_format, so that the polygon
834 * offset behaves as expected by applications.
835 */
836 switch (sctx->framebuffer.state.zsbuf->texture->format) {
837 case PIPE_FORMAT_Z16_UNORM:
838 si_pm4_bind_state(sctx, poly_offset, &rs->pm4_poly_offset[0]);
839 break;
840 default: /* 24-bit */
841 si_pm4_bind_state(sctx, poly_offset, &rs->pm4_poly_offset[1]);
842 break;
843 case PIPE_FORMAT_Z32_FLOAT:
844 case PIPE_FORMAT_Z32_FLOAT_S8X24_UINT:
845 si_pm4_bind_state(sctx, poly_offset, &rs->pm4_poly_offset[2]);
846 break;
847 }
848 }
849
850 /*
851 * Rasterizer
852 */
853
854 static uint32_t si_translate_fill(uint32_t func)
855 {
856 switch(func) {
857 case PIPE_POLYGON_MODE_FILL:
858 return V_028814_X_DRAW_TRIANGLES;
859 case PIPE_POLYGON_MODE_LINE:
860 return V_028814_X_DRAW_LINES;
861 case PIPE_POLYGON_MODE_POINT:
862 return V_028814_X_DRAW_POINTS;
863 default:
864 assert(0);
865 return V_028814_X_DRAW_POINTS;
866 }
867 }
868
869 static void *si_create_rs_state(struct pipe_context *ctx,
870 const struct pipe_rasterizer_state *state)
871 {
872 struct si_screen *sscreen = ((struct si_context *)ctx)->screen;
873 struct si_state_rasterizer *rs = CALLOC_STRUCT(si_state_rasterizer);
874 struct si_pm4_state *pm4 = &rs->pm4;
875 unsigned tmp, i;
876 float psize_min, psize_max;
877
878 if (!rs) {
879 return NULL;
880 }
881
882 if (!state->front_ccw) {
883 rs->cull_front = !!(state->cull_face & PIPE_FACE_FRONT);
884 rs->cull_back = !!(state->cull_face & PIPE_FACE_BACK);
885 } else {
886 rs->cull_back = !!(state->cull_face & PIPE_FACE_FRONT);
887 rs->cull_front = !!(state->cull_face & PIPE_FACE_BACK);
888 }
889 rs->depth_clamp_any = !state->depth_clip_near || !state->depth_clip_far;
890 rs->provoking_vertex_first = state->flatshade_first;
891 rs->scissor_enable = state->scissor;
892 rs->clip_halfz = state->clip_halfz;
893 rs->two_side = state->light_twoside;
894 rs->multisample_enable = state->multisample;
895 rs->force_persample_interp = state->force_persample_interp;
896 rs->clip_plane_enable = state->clip_plane_enable;
897 rs->half_pixel_center = state->half_pixel_center;
898 rs->line_stipple_enable = state->line_stipple_enable;
899 rs->poly_stipple_enable = state->poly_stipple_enable;
900 rs->line_smooth = state->line_smooth;
901 rs->line_width = state->line_width;
902 rs->poly_smooth = state->poly_smooth;
903 rs->uses_poly_offset = state->offset_point || state->offset_line ||
904 state->offset_tri;
905 rs->clamp_fragment_color = state->clamp_fragment_color;
906 rs->clamp_vertex_color = state->clamp_vertex_color;
907 rs->flatshade = state->flatshade;
908 rs->flatshade_first = state->flatshade_first;
909 rs->sprite_coord_enable = state->sprite_coord_enable;
910 rs->rasterizer_discard = state->rasterizer_discard;
911 rs->pa_sc_line_stipple = state->line_stipple_enable ?
912 S_028A0C_LINE_PATTERN(state->line_stipple_pattern) |
913 S_028A0C_REPEAT_COUNT(state->line_stipple_factor) : 0;
914 rs->pa_cl_clip_cntl =
915 S_028810_DX_CLIP_SPACE_DEF(state->clip_halfz) |
916 S_028810_ZCLIP_NEAR_DISABLE(!state->depth_clip_near) |
917 S_028810_ZCLIP_FAR_DISABLE(!state->depth_clip_far) |
918 S_028810_DX_RASTERIZATION_KILL(state->rasterizer_discard) |
919 S_028810_DX_LINEAR_ATTR_CLIP_ENA(1);
920
921 si_pm4_set_reg(pm4, R_0286D4_SPI_INTERP_CONTROL_0,
922 S_0286D4_FLAT_SHADE_ENA(1) |
923 S_0286D4_PNT_SPRITE_ENA(state->point_quad_rasterization) |
924 S_0286D4_PNT_SPRITE_OVRD_X(V_0286D4_SPI_PNT_SPRITE_SEL_S) |
925 S_0286D4_PNT_SPRITE_OVRD_Y(V_0286D4_SPI_PNT_SPRITE_SEL_T) |
926 S_0286D4_PNT_SPRITE_OVRD_Z(V_0286D4_SPI_PNT_SPRITE_SEL_0) |
927 S_0286D4_PNT_SPRITE_OVRD_W(V_0286D4_SPI_PNT_SPRITE_SEL_1) |
928 S_0286D4_PNT_SPRITE_TOP_1(state->sprite_coord_mode != PIPE_SPRITE_COORD_UPPER_LEFT));
929
930 /* point size 12.4 fixed point */
931 tmp = (unsigned)(state->point_size * 8.0);
932 si_pm4_set_reg(pm4, R_028A00_PA_SU_POINT_SIZE, S_028A00_HEIGHT(tmp) | S_028A00_WIDTH(tmp));
933
934 if (state->point_size_per_vertex) {
935 psize_min = util_get_min_point_size(state);
936 psize_max = SI_MAX_POINT_SIZE;
937 } else {
938 /* Force the point size to be as if the vertex output was disabled. */
939 psize_min = state->point_size;
940 psize_max = state->point_size;
941 }
942 rs->max_point_size = psize_max;
943
944 /* Divide by two, because 0.5 = 1 pixel. */
945 si_pm4_set_reg(pm4, R_028A04_PA_SU_POINT_MINMAX,
946 S_028A04_MIN_SIZE(si_pack_float_12p4(psize_min/2)) |
947 S_028A04_MAX_SIZE(si_pack_float_12p4(psize_max/2)));
948
949 si_pm4_set_reg(pm4, R_028A08_PA_SU_LINE_CNTL,
950 S_028A08_WIDTH(si_pack_float_12p4(state->line_width/2)));
951 si_pm4_set_reg(pm4, R_028A48_PA_SC_MODE_CNTL_0,
952 S_028A48_LINE_STIPPLE_ENABLE(state->line_stipple_enable) |
953 S_028A48_MSAA_ENABLE(state->multisample ||
954 state->poly_smooth ||
955 state->line_smooth) |
956 S_028A48_VPORT_SCISSOR_ENABLE(1) |
957 S_028A48_ALTERNATE_RBS_PER_TILE(sscreen->info.chip_class >= GFX9));
958
959 si_pm4_set_reg(pm4, R_028B7C_PA_SU_POLY_OFFSET_CLAMP, fui(state->offset_clamp));
960 si_pm4_set_reg(pm4, R_028814_PA_SU_SC_MODE_CNTL,
961 S_028814_PROVOKING_VTX_LAST(!state->flatshade_first) |
962 S_028814_CULL_FRONT((state->cull_face & PIPE_FACE_FRONT) ? 1 : 0) |
963 S_028814_CULL_BACK((state->cull_face & PIPE_FACE_BACK) ? 1 : 0) |
964 S_028814_FACE(!state->front_ccw) |
965 S_028814_POLY_OFFSET_FRONT_ENABLE(util_get_offset(state, state->fill_front)) |
966 S_028814_POLY_OFFSET_BACK_ENABLE(util_get_offset(state, state->fill_back)) |
967 S_028814_POLY_OFFSET_PARA_ENABLE(state->offset_point || state->offset_line) |
968 S_028814_POLY_MODE(state->fill_front != PIPE_POLYGON_MODE_FILL ||
969 state->fill_back != PIPE_POLYGON_MODE_FILL) |
970 S_028814_POLYMODE_FRONT_PTYPE(si_translate_fill(state->fill_front)) |
971 S_028814_POLYMODE_BACK_PTYPE(si_translate_fill(state->fill_back)));
972
973 if (!rs->uses_poly_offset)
974 return rs;
975
976 rs->pm4_poly_offset = CALLOC(3, sizeof(struct si_pm4_state));
977 if (!rs->pm4_poly_offset) {
978 FREE(rs);
979 return NULL;
980 }
981
982 /* Precalculate polygon offset states for 16-bit, 24-bit, and 32-bit zbuffers. */
983 for (i = 0; i < 3; i++) {
984 struct si_pm4_state *pm4 = &rs->pm4_poly_offset[i];
985 float offset_units = state->offset_units;
986 float offset_scale = state->offset_scale * 16.0f;
987 uint32_t pa_su_poly_offset_db_fmt_cntl = 0;
988
989 if (!state->offset_units_unscaled) {
990 switch (i) {
991 case 0: /* 16-bit zbuffer */
992 offset_units *= 4.0f;
993 pa_su_poly_offset_db_fmt_cntl =
994 S_028B78_POLY_OFFSET_NEG_NUM_DB_BITS(-16);
995 break;
996 case 1: /* 24-bit zbuffer */
997 offset_units *= 2.0f;
998 pa_su_poly_offset_db_fmt_cntl =
999 S_028B78_POLY_OFFSET_NEG_NUM_DB_BITS(-24);
1000 break;
1001 case 2: /* 32-bit zbuffer */
1002 offset_units *= 1.0f;
1003 pa_su_poly_offset_db_fmt_cntl = S_028B78_POLY_OFFSET_NEG_NUM_DB_BITS(-23) |
1004 S_028B78_POLY_OFFSET_DB_IS_FLOAT_FMT(1);
1005 break;
1006 }
1007 }
1008
1009 si_pm4_set_reg(pm4, R_028B80_PA_SU_POLY_OFFSET_FRONT_SCALE,
1010 fui(offset_scale));
1011 si_pm4_set_reg(pm4, R_028B84_PA_SU_POLY_OFFSET_FRONT_OFFSET,
1012 fui(offset_units));
1013 si_pm4_set_reg(pm4, R_028B88_PA_SU_POLY_OFFSET_BACK_SCALE,
1014 fui(offset_scale));
1015 si_pm4_set_reg(pm4, R_028B8C_PA_SU_POLY_OFFSET_BACK_OFFSET,
1016 fui(offset_units));
1017 si_pm4_set_reg(pm4, R_028B78_PA_SU_POLY_OFFSET_DB_FMT_CNTL,
1018 pa_su_poly_offset_db_fmt_cntl);
1019 }
1020
1021 return rs;
1022 }
1023
1024 static void si_bind_rs_state(struct pipe_context *ctx, void *state)
1025 {
1026 struct si_context *sctx = (struct si_context *)ctx;
1027 struct si_state_rasterizer *old_rs =
1028 (struct si_state_rasterizer*)sctx->queued.named.rasterizer;
1029 struct si_state_rasterizer *rs = (struct si_state_rasterizer *)state;
1030
1031 if (!state)
1032 return;
1033
1034 if (!old_rs || old_rs->multisample_enable != rs->multisample_enable) {
1035 si_mark_atom_dirty(sctx, &sctx->atoms.s.db_render_state);
1036
1037 /* Update the small primitive filter workaround if necessary. */
1038 if (sctx->screen->has_msaa_sample_loc_bug &&
1039 sctx->framebuffer.nr_samples > 1)
1040 si_mark_atom_dirty(sctx, &sctx->atoms.s.msaa_sample_locs);
1041 }
1042
1043 sctx->current_vs_state &= C_VS_STATE_CLAMP_VERTEX_COLOR;
1044 sctx->current_vs_state |= S_VS_STATE_CLAMP_VERTEX_COLOR(rs->clamp_vertex_color);
1045
1046 si_pm4_bind_state(sctx, rasterizer, rs);
1047 si_update_poly_offset_state(sctx);
1048
1049 if (!old_rs ||
1050 old_rs->scissor_enable != rs->scissor_enable)
1051 si_mark_atom_dirty(sctx, &sctx->atoms.s.scissors);
1052
1053 if (!old_rs ||
1054 old_rs->line_width != rs->line_width ||
1055 old_rs->max_point_size != rs->max_point_size ||
1056 old_rs->half_pixel_center != rs->half_pixel_center)
1057 si_mark_atom_dirty(sctx, &sctx->atoms.s.guardband);
1058
1059 if (!old_rs ||
1060 old_rs->clip_halfz != rs->clip_halfz)
1061 si_mark_atom_dirty(sctx, &sctx->atoms.s.viewports);
1062
1063 if (!old_rs ||
1064 old_rs->clip_plane_enable != rs->clip_plane_enable ||
1065 old_rs->pa_cl_clip_cntl != rs->pa_cl_clip_cntl)
1066 si_mark_atom_dirty(sctx, &sctx->atoms.s.clip_regs);
1067
1068 sctx->ia_multi_vgt_param_key.u.line_stipple_enabled =
1069 rs->line_stipple_enable;
1070
1071 if (!old_rs ||
1072 old_rs->clip_plane_enable != rs->clip_plane_enable ||
1073 old_rs->rasterizer_discard != rs->rasterizer_discard ||
1074 old_rs->sprite_coord_enable != rs->sprite_coord_enable ||
1075 old_rs->flatshade != rs->flatshade ||
1076 old_rs->two_side != rs->two_side ||
1077 old_rs->multisample_enable != rs->multisample_enable ||
1078 old_rs->poly_stipple_enable != rs->poly_stipple_enable ||
1079 old_rs->poly_smooth != rs->poly_smooth ||
1080 old_rs->line_smooth != rs->line_smooth ||
1081 old_rs->clamp_fragment_color != rs->clamp_fragment_color ||
1082 old_rs->force_persample_interp != rs->force_persample_interp)
1083 sctx->do_update_shaders = true;
1084 }
1085
1086 static void si_delete_rs_state(struct pipe_context *ctx, void *state)
1087 {
1088 struct si_context *sctx = (struct si_context *)ctx;
1089 struct si_state_rasterizer *rs = (struct si_state_rasterizer *)state;
1090
1091 if (sctx->queued.named.rasterizer == state)
1092 si_pm4_bind_state(sctx, poly_offset, NULL);
1093
1094 FREE(rs->pm4_poly_offset);
1095 si_pm4_delete_state(sctx, rasterizer, rs);
1096 }
1097
1098 /*
1099 * infeered state between dsa and stencil ref
1100 */
1101 static void si_emit_stencil_ref(struct si_context *sctx)
1102 {
1103 struct radeon_cmdbuf *cs = sctx->gfx_cs;
1104 struct pipe_stencil_ref *ref = &sctx->stencil_ref.state;
1105 struct si_dsa_stencil_ref_part *dsa = &sctx->stencil_ref.dsa_part;
1106
1107 radeon_set_context_reg_seq(cs, R_028430_DB_STENCILREFMASK, 2);
1108 radeon_emit(cs, S_028430_STENCILTESTVAL(ref->ref_value[0]) |
1109 S_028430_STENCILMASK(dsa->valuemask[0]) |
1110 S_028430_STENCILWRITEMASK(dsa->writemask[0]) |
1111 S_028430_STENCILOPVAL(1));
1112 radeon_emit(cs, S_028434_STENCILTESTVAL_BF(ref->ref_value[1]) |
1113 S_028434_STENCILMASK_BF(dsa->valuemask[1]) |
1114 S_028434_STENCILWRITEMASK_BF(dsa->writemask[1]) |
1115 S_028434_STENCILOPVAL_BF(1));
1116 }
1117
1118 static void si_set_stencil_ref(struct pipe_context *ctx,
1119 const struct pipe_stencil_ref *state)
1120 {
1121 struct si_context *sctx = (struct si_context *)ctx;
1122
1123 if (memcmp(&sctx->stencil_ref.state, state, sizeof(*state)) == 0)
1124 return;
1125
1126 sctx->stencil_ref.state = *state;
1127 si_mark_atom_dirty(sctx, &sctx->atoms.s.stencil_ref);
1128 }
1129
1130
1131 /*
1132 * DSA
1133 */
1134
1135 static uint32_t si_translate_stencil_op(int s_op)
1136 {
1137 switch (s_op) {
1138 case PIPE_STENCIL_OP_KEEP:
1139 return V_02842C_STENCIL_KEEP;
1140 case PIPE_STENCIL_OP_ZERO:
1141 return V_02842C_STENCIL_ZERO;
1142 case PIPE_STENCIL_OP_REPLACE:
1143 return V_02842C_STENCIL_REPLACE_TEST;
1144 case PIPE_STENCIL_OP_INCR:
1145 return V_02842C_STENCIL_ADD_CLAMP;
1146 case PIPE_STENCIL_OP_DECR:
1147 return V_02842C_STENCIL_SUB_CLAMP;
1148 case PIPE_STENCIL_OP_INCR_WRAP:
1149 return V_02842C_STENCIL_ADD_WRAP;
1150 case PIPE_STENCIL_OP_DECR_WRAP:
1151 return V_02842C_STENCIL_SUB_WRAP;
1152 case PIPE_STENCIL_OP_INVERT:
1153 return V_02842C_STENCIL_INVERT;
1154 default:
1155 PRINT_ERR("Unknown stencil op %d", s_op);
1156 assert(0);
1157 break;
1158 }
1159 return 0;
1160 }
1161
1162 static bool si_dsa_writes_stencil(const struct pipe_stencil_state *s)
1163 {
1164 return s->enabled && s->writemask &&
1165 (s->fail_op != PIPE_STENCIL_OP_KEEP ||
1166 s->zfail_op != PIPE_STENCIL_OP_KEEP ||
1167 s->zpass_op != PIPE_STENCIL_OP_KEEP);
1168 }
1169
1170 static bool si_order_invariant_stencil_op(enum pipe_stencil_op op)
1171 {
1172 /* REPLACE is normally order invariant, except when the stencil
1173 * reference value is written by the fragment shader. Tracking this
1174 * interaction does not seem worth the effort, so be conservative. */
1175 return op != PIPE_STENCIL_OP_INCR &&
1176 op != PIPE_STENCIL_OP_DECR &&
1177 op != PIPE_STENCIL_OP_REPLACE;
1178 }
1179
1180 /* Compute whether, assuming Z writes are disabled, this stencil state is order
1181 * invariant in the sense that the set of passing fragments as well as the
1182 * final stencil buffer result does not depend on the order of fragments. */
1183 static bool si_order_invariant_stencil_state(const struct pipe_stencil_state *state)
1184 {
1185 return !state->enabled || !state->writemask ||
1186 /* The following assumes that Z writes are disabled. */
1187 (state->func == PIPE_FUNC_ALWAYS &&
1188 si_order_invariant_stencil_op(state->zpass_op) &&
1189 si_order_invariant_stencil_op(state->zfail_op)) ||
1190 (state->func == PIPE_FUNC_NEVER &&
1191 si_order_invariant_stencil_op(state->fail_op));
1192 }
1193
1194 static void *si_create_dsa_state(struct pipe_context *ctx,
1195 const struct pipe_depth_stencil_alpha_state *state)
1196 {
1197 struct si_context *sctx = (struct si_context *)ctx;
1198 struct si_state_dsa *dsa = CALLOC_STRUCT(si_state_dsa);
1199 struct si_pm4_state *pm4 = &dsa->pm4;
1200 unsigned db_depth_control;
1201 uint32_t db_stencil_control = 0;
1202
1203 if (!dsa) {
1204 return NULL;
1205 }
1206
1207 dsa->stencil_ref.valuemask[0] = state->stencil[0].valuemask;
1208 dsa->stencil_ref.valuemask[1] = state->stencil[1].valuemask;
1209 dsa->stencil_ref.writemask[0] = state->stencil[0].writemask;
1210 dsa->stencil_ref.writemask[1] = state->stencil[1].writemask;
1211
1212 db_depth_control = S_028800_Z_ENABLE(state->depth.enabled) |
1213 S_028800_Z_WRITE_ENABLE(state->depth.writemask) |
1214 S_028800_ZFUNC(state->depth.func) |
1215 S_028800_DEPTH_BOUNDS_ENABLE(state->depth.bounds_test);
1216
1217 /* stencil */
1218 if (state->stencil[0].enabled) {
1219 db_depth_control |= S_028800_STENCIL_ENABLE(1);
1220 db_depth_control |= S_028800_STENCILFUNC(state->stencil[0].func);
1221 db_stencil_control |= S_02842C_STENCILFAIL(si_translate_stencil_op(state->stencil[0].fail_op));
1222 db_stencil_control |= S_02842C_STENCILZPASS(si_translate_stencil_op(state->stencil[0].zpass_op));
1223 db_stencil_control |= S_02842C_STENCILZFAIL(si_translate_stencil_op(state->stencil[0].zfail_op));
1224
1225 if (state->stencil[1].enabled) {
1226 db_depth_control |= S_028800_BACKFACE_ENABLE(1);
1227 db_depth_control |= S_028800_STENCILFUNC_BF(state->stencil[1].func);
1228 db_stencil_control |= S_02842C_STENCILFAIL_BF(si_translate_stencil_op(state->stencil[1].fail_op));
1229 db_stencil_control |= S_02842C_STENCILZPASS_BF(si_translate_stencil_op(state->stencil[1].zpass_op));
1230 db_stencil_control |= S_02842C_STENCILZFAIL_BF(si_translate_stencil_op(state->stencil[1].zfail_op));
1231 }
1232 }
1233
1234 /* alpha */
1235 if (state->alpha.enabled) {
1236 dsa->alpha_func = state->alpha.func;
1237
1238 si_pm4_set_reg(pm4, R_00B030_SPI_SHADER_USER_DATA_PS_0 +
1239 SI_SGPR_ALPHA_REF * 4, fui(state->alpha.ref_value));
1240 } else {
1241 dsa->alpha_func = PIPE_FUNC_ALWAYS;
1242 }
1243
1244 si_pm4_set_reg(pm4, R_028800_DB_DEPTH_CONTROL, db_depth_control);
1245 if (state->stencil[0].enabled)
1246 si_pm4_set_reg(pm4, R_02842C_DB_STENCIL_CONTROL, db_stencil_control);
1247 if (state->depth.bounds_test) {
1248 si_pm4_set_reg(pm4, R_028020_DB_DEPTH_BOUNDS_MIN, fui(state->depth.bounds_min));
1249 si_pm4_set_reg(pm4, R_028024_DB_DEPTH_BOUNDS_MAX, fui(state->depth.bounds_max));
1250 }
1251
1252 dsa->depth_enabled = state->depth.enabled;
1253 dsa->depth_write_enabled = state->depth.enabled &&
1254 state->depth.writemask;
1255 dsa->stencil_enabled = state->stencil[0].enabled;
1256 dsa->stencil_write_enabled = state->stencil[0].enabled &&
1257 (si_dsa_writes_stencil(&state->stencil[0]) ||
1258 si_dsa_writes_stencil(&state->stencil[1]));
1259 dsa->db_can_write = dsa->depth_write_enabled ||
1260 dsa->stencil_write_enabled;
1261
1262 bool zfunc_is_ordered =
1263 state->depth.func == PIPE_FUNC_NEVER ||
1264 state->depth.func == PIPE_FUNC_LESS ||
1265 state->depth.func == PIPE_FUNC_LEQUAL ||
1266 state->depth.func == PIPE_FUNC_GREATER ||
1267 state->depth.func == PIPE_FUNC_GEQUAL;
1268
1269 bool nozwrite_and_order_invariant_stencil =
1270 !dsa->db_can_write ||
1271 (!dsa->depth_write_enabled &&
1272 si_order_invariant_stencil_state(&state->stencil[0]) &&
1273 si_order_invariant_stencil_state(&state->stencil[1]));
1274
1275 dsa->order_invariance[1].zs =
1276 nozwrite_and_order_invariant_stencil ||
1277 (!dsa->stencil_write_enabled && zfunc_is_ordered);
1278 dsa->order_invariance[0].zs = !dsa->depth_write_enabled || zfunc_is_ordered;
1279
1280 dsa->order_invariance[1].pass_set =
1281 nozwrite_and_order_invariant_stencil ||
1282 (!dsa->stencil_write_enabled &&
1283 (state->depth.func == PIPE_FUNC_ALWAYS ||
1284 state->depth.func == PIPE_FUNC_NEVER));
1285 dsa->order_invariance[0].pass_set =
1286 !dsa->depth_write_enabled ||
1287 (state->depth.func == PIPE_FUNC_ALWAYS ||
1288 state->depth.func == PIPE_FUNC_NEVER);
1289
1290 dsa->order_invariance[1].pass_last =
1291 sctx->screen->assume_no_z_fights &&
1292 !dsa->stencil_write_enabled &&
1293 dsa->depth_write_enabled && zfunc_is_ordered;
1294 dsa->order_invariance[0].pass_last =
1295 sctx->screen->assume_no_z_fights &&
1296 dsa->depth_write_enabled && zfunc_is_ordered;
1297
1298 return dsa;
1299 }
1300
1301 static void si_bind_dsa_state(struct pipe_context *ctx, void *state)
1302 {
1303 struct si_context *sctx = (struct si_context *)ctx;
1304 struct si_state_dsa *old_dsa = sctx->queued.named.dsa;
1305 struct si_state_dsa *dsa = state;
1306
1307 if (!state)
1308 return;
1309
1310 si_pm4_bind_state(sctx, dsa, dsa);
1311
1312 if (memcmp(&dsa->stencil_ref, &sctx->stencil_ref.dsa_part,
1313 sizeof(struct si_dsa_stencil_ref_part)) != 0) {
1314 sctx->stencil_ref.dsa_part = dsa->stencil_ref;
1315 si_mark_atom_dirty(sctx, &sctx->atoms.s.stencil_ref);
1316 }
1317
1318 if (!old_dsa || old_dsa->alpha_func != dsa->alpha_func)
1319 sctx->do_update_shaders = true;
1320
1321 if (sctx->screen->dpbb_allowed &&
1322 (!old_dsa ||
1323 (old_dsa->depth_enabled != dsa->depth_enabled ||
1324 old_dsa->stencil_enabled != dsa->stencil_enabled ||
1325 old_dsa->db_can_write != dsa->db_can_write)))
1326 si_mark_atom_dirty(sctx, &sctx->atoms.s.dpbb_state);
1327
1328 if (sctx->screen->has_out_of_order_rast &&
1329 (!old_dsa ||
1330 memcmp(old_dsa->order_invariance, dsa->order_invariance,
1331 sizeof(old_dsa->order_invariance))))
1332 si_mark_atom_dirty(sctx, &sctx->atoms.s.msaa_config);
1333 }
1334
1335 static void si_delete_dsa_state(struct pipe_context *ctx, void *state)
1336 {
1337 struct si_context *sctx = (struct si_context *)ctx;
1338 si_pm4_delete_state(sctx, dsa, (struct si_state_dsa *)state);
1339 }
1340
1341 static void *si_create_db_flush_dsa(struct si_context *sctx)
1342 {
1343 struct pipe_depth_stencil_alpha_state dsa = {};
1344
1345 return sctx->b.create_depth_stencil_alpha_state(&sctx->b, &dsa);
1346 }
1347
1348 /* DB RENDER STATE */
1349
1350 static void si_set_active_query_state(struct pipe_context *ctx, boolean enable)
1351 {
1352 struct si_context *sctx = (struct si_context*)ctx;
1353
1354 /* Pipeline stat & streamout queries. */
1355 if (enable) {
1356 sctx->flags &= ~SI_CONTEXT_STOP_PIPELINE_STATS;
1357 sctx->flags |= SI_CONTEXT_START_PIPELINE_STATS;
1358 } else {
1359 sctx->flags &= ~SI_CONTEXT_START_PIPELINE_STATS;
1360 sctx->flags |= SI_CONTEXT_STOP_PIPELINE_STATS;
1361 }
1362
1363 /* Occlusion queries. */
1364 if (sctx->occlusion_queries_disabled != !enable) {
1365 sctx->occlusion_queries_disabled = !enable;
1366 si_mark_atom_dirty(sctx, &sctx->atoms.s.db_render_state);
1367 }
1368 }
1369
1370 void si_set_occlusion_query_state(struct si_context *sctx,
1371 bool old_perfect_enable)
1372 {
1373 si_mark_atom_dirty(sctx, &sctx->atoms.s.db_render_state);
1374
1375 bool perfect_enable = sctx->num_perfect_occlusion_queries != 0;
1376
1377 if (perfect_enable != old_perfect_enable)
1378 si_mark_atom_dirty(sctx, &sctx->atoms.s.msaa_config);
1379 }
1380
1381 void si_save_qbo_state(struct si_context *sctx, struct si_qbo_state *st)
1382 {
1383 st->saved_compute = sctx->cs_shader_state.program;
1384
1385 si_get_pipe_constant_buffer(sctx, PIPE_SHADER_COMPUTE, 0, &st->saved_const0);
1386 si_get_shader_buffers(sctx, PIPE_SHADER_COMPUTE, 0, 3, st->saved_ssbo);
1387
1388 st->saved_ssbo_writable_mask = 0;
1389
1390 for (unsigned i = 0; i < 3; i++) {
1391 if (sctx->const_and_shader_buffers[PIPE_SHADER_COMPUTE].writable_mask &
1392 (1u << si_get_shaderbuf_slot(i)))
1393 st->saved_ssbo_writable_mask |= 1 << i;
1394 }
1395 }
1396
1397 void si_restore_qbo_state(struct si_context *sctx, struct si_qbo_state *st)
1398 {
1399 sctx->b.bind_compute_state(&sctx->b, st->saved_compute);
1400
1401 sctx->b.set_constant_buffer(&sctx->b, PIPE_SHADER_COMPUTE, 0, &st->saved_const0);
1402 pipe_resource_reference(&st->saved_const0.buffer, NULL);
1403
1404 sctx->b.set_shader_buffers(&sctx->b, PIPE_SHADER_COMPUTE, 0, 3, st->saved_ssbo,
1405 st->saved_ssbo_writable_mask);
1406 for (unsigned i = 0; i < 3; ++i)
1407 pipe_resource_reference(&st->saved_ssbo[i].buffer, NULL);
1408 }
1409
1410 static void si_emit_db_render_state(struct si_context *sctx)
1411 {
1412 struct si_state_rasterizer *rs = sctx->queued.named.rasterizer;
1413 unsigned db_shader_control, db_render_control, db_count_control;
1414 unsigned initial_cdw = sctx->gfx_cs->current.cdw;
1415
1416 /* DB_RENDER_CONTROL */
1417 if (sctx->dbcb_depth_copy_enabled ||
1418 sctx->dbcb_stencil_copy_enabled) {
1419 db_render_control =
1420 S_028000_DEPTH_COPY(sctx->dbcb_depth_copy_enabled) |
1421 S_028000_STENCIL_COPY(sctx->dbcb_stencil_copy_enabled) |
1422 S_028000_COPY_CENTROID(1) |
1423 S_028000_COPY_SAMPLE(sctx->dbcb_copy_sample);
1424 } else if (sctx->db_flush_depth_inplace || sctx->db_flush_stencil_inplace) {
1425 db_render_control =
1426 S_028000_DEPTH_COMPRESS_DISABLE(sctx->db_flush_depth_inplace) |
1427 S_028000_STENCIL_COMPRESS_DISABLE(sctx->db_flush_stencil_inplace);
1428 } else {
1429 db_render_control =
1430 S_028000_DEPTH_CLEAR_ENABLE(sctx->db_depth_clear) |
1431 S_028000_STENCIL_CLEAR_ENABLE(sctx->db_stencil_clear);
1432 }
1433
1434 /* DB_COUNT_CONTROL (occlusion queries) */
1435 if (sctx->num_occlusion_queries > 0 &&
1436 !sctx->occlusion_queries_disabled) {
1437 bool perfect = sctx->num_perfect_occlusion_queries > 0;
1438
1439 if (sctx->chip_class >= GFX7) {
1440 unsigned log_sample_rate = sctx->framebuffer.log_samples;
1441
1442 /* Stoney doesn't increment occlusion query counters
1443 * if the sample rate is 16x. Use 8x sample rate instead.
1444 */
1445 if (sctx->family == CHIP_STONEY)
1446 log_sample_rate = MIN2(log_sample_rate, 3);
1447
1448 db_count_control =
1449 S_028004_PERFECT_ZPASS_COUNTS(perfect) |
1450 S_028004_SAMPLE_RATE(log_sample_rate) |
1451 S_028004_ZPASS_ENABLE(1) |
1452 S_028004_SLICE_EVEN_ENABLE(1) |
1453 S_028004_SLICE_ODD_ENABLE(1);
1454 } else {
1455 db_count_control =
1456 S_028004_PERFECT_ZPASS_COUNTS(perfect) |
1457 S_028004_SAMPLE_RATE(sctx->framebuffer.log_samples);
1458 }
1459 } else {
1460 /* Disable occlusion queries. */
1461 if (sctx->chip_class >= GFX7) {
1462 db_count_control = 0;
1463 } else {
1464 db_count_control = S_028004_ZPASS_INCREMENT_DISABLE(1);
1465 }
1466 }
1467
1468 radeon_opt_set_context_reg2(sctx, R_028000_DB_RENDER_CONTROL,
1469 SI_TRACKED_DB_RENDER_CONTROL, db_render_control,
1470 db_count_control);
1471
1472 /* DB_RENDER_OVERRIDE2 */
1473 radeon_opt_set_context_reg(sctx, R_028010_DB_RENDER_OVERRIDE2,
1474 SI_TRACKED_DB_RENDER_OVERRIDE2,
1475 S_028010_DISABLE_ZMASK_EXPCLEAR_OPTIMIZATION(sctx->db_depth_disable_expclear) |
1476 S_028010_DISABLE_SMEM_EXPCLEAR_OPTIMIZATION(sctx->db_stencil_disable_expclear) |
1477 S_028010_DECOMPRESS_Z_ON_FLUSH(sctx->framebuffer.nr_samples >= 4));
1478
1479 db_shader_control = sctx->ps_db_shader_control;
1480
1481 /* Bug workaround for smoothing (overrasterization) on GFX6. */
1482 if (sctx->chip_class == GFX6 && sctx->smoothing_enabled) {
1483 db_shader_control &= C_02880C_Z_ORDER;
1484 db_shader_control |= S_02880C_Z_ORDER(V_02880C_LATE_Z);
1485 }
1486
1487 /* Disable the gl_SampleMask fragment shader output if MSAA is disabled. */
1488 if (!rs->multisample_enable)
1489 db_shader_control &= C_02880C_MASK_EXPORT_ENABLE;
1490
1491 if (sctx->screen->has_rbplus &&
1492 !sctx->screen->rbplus_allowed)
1493 db_shader_control |= S_02880C_DUAL_QUAD_DISABLE(1);
1494
1495 radeon_opt_set_context_reg(sctx, R_02880C_DB_SHADER_CONTROL,
1496 SI_TRACKED_DB_SHADER_CONTROL, db_shader_control);
1497
1498 if (initial_cdw != sctx->gfx_cs->current.cdw)
1499 sctx->context_roll = true;
1500 }
1501
1502 /*
1503 * format translation
1504 */
1505 static uint32_t si_translate_colorformat(enum pipe_format format)
1506 {
1507 const struct util_format_description *desc = util_format_description(format);
1508 if (!desc)
1509 return V_028C70_COLOR_INVALID;
1510
1511 #define HAS_SIZE(x,y,z,w) \
1512 (desc->channel[0].size == (x) && desc->channel[1].size == (y) && \
1513 desc->channel[2].size == (z) && desc->channel[3].size == (w))
1514
1515 if (format == PIPE_FORMAT_R11G11B10_FLOAT) /* isn't plain */
1516 return V_028C70_COLOR_10_11_11;
1517
1518 if (desc->layout != UTIL_FORMAT_LAYOUT_PLAIN)
1519 return V_028C70_COLOR_INVALID;
1520
1521 /* hw cannot support mixed formats (except depth/stencil, since
1522 * stencil is not written to). */
1523 if (desc->is_mixed && desc->colorspace != UTIL_FORMAT_COLORSPACE_ZS)
1524 return V_028C70_COLOR_INVALID;
1525
1526 switch (desc->nr_channels) {
1527 case 1:
1528 switch (desc->channel[0].size) {
1529 case 8:
1530 return V_028C70_COLOR_8;
1531 case 16:
1532 return V_028C70_COLOR_16;
1533 case 32:
1534 return V_028C70_COLOR_32;
1535 }
1536 break;
1537 case 2:
1538 if (desc->channel[0].size == desc->channel[1].size) {
1539 switch (desc->channel[0].size) {
1540 case 8:
1541 return V_028C70_COLOR_8_8;
1542 case 16:
1543 return V_028C70_COLOR_16_16;
1544 case 32:
1545 return V_028C70_COLOR_32_32;
1546 }
1547 } else if (HAS_SIZE(8,24,0,0)) {
1548 return V_028C70_COLOR_24_8;
1549 } else if (HAS_SIZE(24,8,0,0)) {
1550 return V_028C70_COLOR_8_24;
1551 }
1552 break;
1553 case 3:
1554 if (HAS_SIZE(5,6,5,0)) {
1555 return V_028C70_COLOR_5_6_5;
1556 } else if (HAS_SIZE(32,8,24,0)) {
1557 return V_028C70_COLOR_X24_8_32_FLOAT;
1558 }
1559 break;
1560 case 4:
1561 if (desc->channel[0].size == desc->channel[1].size &&
1562 desc->channel[0].size == desc->channel[2].size &&
1563 desc->channel[0].size == desc->channel[3].size) {
1564 switch (desc->channel[0].size) {
1565 case 4:
1566 return V_028C70_COLOR_4_4_4_4;
1567 case 8:
1568 return V_028C70_COLOR_8_8_8_8;
1569 case 16:
1570 return V_028C70_COLOR_16_16_16_16;
1571 case 32:
1572 return V_028C70_COLOR_32_32_32_32;
1573 }
1574 } else if (HAS_SIZE(5,5,5,1)) {
1575 return V_028C70_COLOR_1_5_5_5;
1576 } else if (HAS_SIZE(1,5,5,5)) {
1577 return V_028C70_COLOR_5_5_5_1;
1578 } else if (HAS_SIZE(10,10,10,2)) {
1579 return V_028C70_COLOR_2_10_10_10;
1580 }
1581 break;
1582 }
1583 return V_028C70_COLOR_INVALID;
1584 }
1585
1586 static uint32_t si_colorformat_endian_swap(uint32_t colorformat)
1587 {
1588 if (SI_BIG_ENDIAN) {
1589 switch(colorformat) {
1590 /* 8-bit buffers. */
1591 case V_028C70_COLOR_8:
1592 return V_028C70_ENDIAN_NONE;
1593
1594 /* 16-bit buffers. */
1595 case V_028C70_COLOR_5_6_5:
1596 case V_028C70_COLOR_1_5_5_5:
1597 case V_028C70_COLOR_4_4_4_4:
1598 case V_028C70_COLOR_16:
1599 case V_028C70_COLOR_8_8:
1600 return V_028C70_ENDIAN_8IN16;
1601
1602 /* 32-bit buffers. */
1603 case V_028C70_COLOR_8_8_8_8:
1604 case V_028C70_COLOR_2_10_10_10:
1605 case V_028C70_COLOR_8_24:
1606 case V_028C70_COLOR_24_8:
1607 case V_028C70_COLOR_16_16:
1608 return V_028C70_ENDIAN_8IN32;
1609
1610 /* 64-bit buffers. */
1611 case V_028C70_COLOR_16_16_16_16:
1612 return V_028C70_ENDIAN_8IN16;
1613
1614 case V_028C70_COLOR_32_32:
1615 return V_028C70_ENDIAN_8IN32;
1616
1617 /* 128-bit buffers. */
1618 case V_028C70_COLOR_32_32_32_32:
1619 return V_028C70_ENDIAN_8IN32;
1620 default:
1621 return V_028C70_ENDIAN_NONE; /* Unsupported. */
1622 }
1623 } else {
1624 return V_028C70_ENDIAN_NONE;
1625 }
1626 }
1627
1628 static uint32_t si_translate_dbformat(enum pipe_format format)
1629 {
1630 switch (format) {
1631 case PIPE_FORMAT_Z16_UNORM:
1632 return V_028040_Z_16;
1633 case PIPE_FORMAT_S8_UINT_Z24_UNORM:
1634 case PIPE_FORMAT_X8Z24_UNORM:
1635 case PIPE_FORMAT_Z24X8_UNORM:
1636 case PIPE_FORMAT_Z24_UNORM_S8_UINT:
1637 return V_028040_Z_24; /* deprecated on AMD GCN */
1638 case PIPE_FORMAT_Z32_FLOAT:
1639 case PIPE_FORMAT_Z32_FLOAT_S8X24_UINT:
1640 return V_028040_Z_32_FLOAT;
1641 default:
1642 return V_028040_Z_INVALID;
1643 }
1644 }
1645
1646 /*
1647 * Texture translation
1648 */
1649
1650 static uint32_t si_translate_texformat(struct pipe_screen *screen,
1651 enum pipe_format format,
1652 const struct util_format_description *desc,
1653 int first_non_void)
1654 {
1655 struct si_screen *sscreen = (struct si_screen*)screen;
1656 bool uniform = true;
1657 int i;
1658
1659 assert(sscreen->info.chip_class <= GFX9);
1660
1661 /* Colorspace (return non-RGB formats directly). */
1662 switch (desc->colorspace) {
1663 /* Depth stencil formats */
1664 case UTIL_FORMAT_COLORSPACE_ZS:
1665 switch (format) {
1666 case PIPE_FORMAT_Z16_UNORM:
1667 return V_008F14_IMG_DATA_FORMAT_16;
1668 case PIPE_FORMAT_X24S8_UINT:
1669 case PIPE_FORMAT_S8X24_UINT:
1670 /*
1671 * Implemented as an 8_8_8_8 data format to fix texture
1672 * gathers in stencil sampling. This affects at least
1673 * GL45-CTS.texture_cube_map_array.sampling on GFX8.
1674 */
1675 if (sscreen->info.chip_class <= GFX8)
1676 return V_008F14_IMG_DATA_FORMAT_8_8_8_8;
1677
1678 if (format == PIPE_FORMAT_X24S8_UINT)
1679 return V_008F14_IMG_DATA_FORMAT_8_24;
1680 else
1681 return V_008F14_IMG_DATA_FORMAT_24_8;
1682 case PIPE_FORMAT_Z24X8_UNORM:
1683 case PIPE_FORMAT_Z24_UNORM_S8_UINT:
1684 return V_008F14_IMG_DATA_FORMAT_8_24;
1685 case PIPE_FORMAT_X8Z24_UNORM:
1686 case PIPE_FORMAT_S8_UINT_Z24_UNORM:
1687 return V_008F14_IMG_DATA_FORMAT_24_8;
1688 case PIPE_FORMAT_S8_UINT:
1689 return V_008F14_IMG_DATA_FORMAT_8;
1690 case PIPE_FORMAT_Z32_FLOAT:
1691 return V_008F14_IMG_DATA_FORMAT_32;
1692 case PIPE_FORMAT_X32_S8X24_UINT:
1693 case PIPE_FORMAT_Z32_FLOAT_S8X24_UINT:
1694 return V_008F14_IMG_DATA_FORMAT_X24_8_32;
1695 default:
1696 goto out_unknown;
1697 }
1698
1699 case UTIL_FORMAT_COLORSPACE_YUV:
1700 goto out_unknown; /* TODO */
1701
1702 case UTIL_FORMAT_COLORSPACE_SRGB:
1703 if (desc->nr_channels != 4 && desc->nr_channels != 1)
1704 goto out_unknown;
1705 break;
1706
1707 default:
1708 break;
1709 }
1710
1711 if (desc->layout == UTIL_FORMAT_LAYOUT_RGTC) {
1712 if (!sscreen->info.has_format_bc1_through_bc7)
1713 goto out_unknown;
1714
1715 switch (format) {
1716 case PIPE_FORMAT_RGTC1_SNORM:
1717 case PIPE_FORMAT_LATC1_SNORM:
1718 case PIPE_FORMAT_RGTC1_UNORM:
1719 case PIPE_FORMAT_LATC1_UNORM:
1720 return V_008F14_IMG_DATA_FORMAT_BC4;
1721 case PIPE_FORMAT_RGTC2_SNORM:
1722 case PIPE_FORMAT_LATC2_SNORM:
1723 case PIPE_FORMAT_RGTC2_UNORM:
1724 case PIPE_FORMAT_LATC2_UNORM:
1725 return V_008F14_IMG_DATA_FORMAT_BC5;
1726 default:
1727 goto out_unknown;
1728 }
1729 }
1730
1731 if (desc->layout == UTIL_FORMAT_LAYOUT_ETC &&
1732 (sscreen->info.family == CHIP_STONEY ||
1733 sscreen->info.family == CHIP_VEGA10 ||
1734 sscreen->info.family == CHIP_RAVEN)) {
1735 switch (format) {
1736 case PIPE_FORMAT_ETC1_RGB8:
1737 case PIPE_FORMAT_ETC2_RGB8:
1738 case PIPE_FORMAT_ETC2_SRGB8:
1739 return V_008F14_IMG_DATA_FORMAT_ETC2_RGB;
1740 case PIPE_FORMAT_ETC2_RGB8A1:
1741 case PIPE_FORMAT_ETC2_SRGB8A1:
1742 return V_008F14_IMG_DATA_FORMAT_ETC2_RGBA1;
1743 case PIPE_FORMAT_ETC2_RGBA8:
1744 case PIPE_FORMAT_ETC2_SRGBA8:
1745 return V_008F14_IMG_DATA_FORMAT_ETC2_RGBA;
1746 case PIPE_FORMAT_ETC2_R11_UNORM:
1747 case PIPE_FORMAT_ETC2_R11_SNORM:
1748 return V_008F14_IMG_DATA_FORMAT_ETC2_R;
1749 case PIPE_FORMAT_ETC2_RG11_UNORM:
1750 case PIPE_FORMAT_ETC2_RG11_SNORM:
1751 return V_008F14_IMG_DATA_FORMAT_ETC2_RG;
1752 default:
1753 goto out_unknown;
1754 }
1755 }
1756
1757 if (desc->layout == UTIL_FORMAT_LAYOUT_BPTC) {
1758 if (!sscreen->info.has_format_bc1_through_bc7)
1759 goto out_unknown;
1760
1761 switch (format) {
1762 case PIPE_FORMAT_BPTC_RGBA_UNORM:
1763 case PIPE_FORMAT_BPTC_SRGBA:
1764 return V_008F14_IMG_DATA_FORMAT_BC7;
1765 case PIPE_FORMAT_BPTC_RGB_FLOAT:
1766 case PIPE_FORMAT_BPTC_RGB_UFLOAT:
1767 return V_008F14_IMG_DATA_FORMAT_BC6;
1768 default:
1769 goto out_unknown;
1770 }
1771 }
1772
1773 if (desc->layout == UTIL_FORMAT_LAYOUT_SUBSAMPLED) {
1774 switch (format) {
1775 case PIPE_FORMAT_R8G8_B8G8_UNORM:
1776 case PIPE_FORMAT_G8R8_B8R8_UNORM:
1777 return V_008F14_IMG_DATA_FORMAT_GB_GR;
1778 case PIPE_FORMAT_G8R8_G8B8_UNORM:
1779 case PIPE_FORMAT_R8G8_R8B8_UNORM:
1780 return V_008F14_IMG_DATA_FORMAT_BG_RG;
1781 default:
1782 goto out_unknown;
1783 }
1784 }
1785
1786 if (desc->layout == UTIL_FORMAT_LAYOUT_S3TC) {
1787 if (!sscreen->info.has_format_bc1_through_bc7)
1788 goto out_unknown;
1789
1790 switch (format) {
1791 case PIPE_FORMAT_DXT1_RGB:
1792 case PIPE_FORMAT_DXT1_RGBA:
1793 case PIPE_FORMAT_DXT1_SRGB:
1794 case PIPE_FORMAT_DXT1_SRGBA:
1795 return V_008F14_IMG_DATA_FORMAT_BC1;
1796 case PIPE_FORMAT_DXT3_RGBA:
1797 case PIPE_FORMAT_DXT3_SRGBA:
1798 return V_008F14_IMG_DATA_FORMAT_BC2;
1799 case PIPE_FORMAT_DXT5_RGBA:
1800 case PIPE_FORMAT_DXT5_SRGBA:
1801 return V_008F14_IMG_DATA_FORMAT_BC3;
1802 default:
1803 goto out_unknown;
1804 }
1805 }
1806
1807 if (format == PIPE_FORMAT_R9G9B9E5_FLOAT) {
1808 return V_008F14_IMG_DATA_FORMAT_5_9_9_9;
1809 } else if (format == PIPE_FORMAT_R11G11B10_FLOAT) {
1810 return V_008F14_IMG_DATA_FORMAT_10_11_11;
1811 }
1812
1813 /* R8G8Bx_SNORM - TODO CxV8U8 */
1814
1815 /* hw cannot support mixed formats (except depth/stencil, since only
1816 * depth is read).*/
1817 if (desc->is_mixed && desc->colorspace != UTIL_FORMAT_COLORSPACE_ZS)
1818 goto out_unknown;
1819
1820 /* See whether the components are of the same size. */
1821 for (i = 1; i < desc->nr_channels; i++) {
1822 uniform = uniform && desc->channel[0].size == desc->channel[i].size;
1823 }
1824
1825 /* Non-uniform formats. */
1826 if (!uniform) {
1827 switch(desc->nr_channels) {
1828 case 3:
1829 if (desc->channel[0].size == 5 &&
1830 desc->channel[1].size == 6 &&
1831 desc->channel[2].size == 5) {
1832 return V_008F14_IMG_DATA_FORMAT_5_6_5;
1833 }
1834 goto out_unknown;
1835 case 4:
1836 if (desc->channel[0].size == 5 &&
1837 desc->channel[1].size == 5 &&
1838 desc->channel[2].size == 5 &&
1839 desc->channel[3].size == 1) {
1840 return V_008F14_IMG_DATA_FORMAT_1_5_5_5;
1841 }
1842 if (desc->channel[0].size == 1 &&
1843 desc->channel[1].size == 5 &&
1844 desc->channel[2].size == 5 &&
1845 desc->channel[3].size == 5) {
1846 return V_008F14_IMG_DATA_FORMAT_5_5_5_1;
1847 }
1848 if (desc->channel[0].size == 10 &&
1849 desc->channel[1].size == 10 &&
1850 desc->channel[2].size == 10 &&
1851 desc->channel[3].size == 2) {
1852 return V_008F14_IMG_DATA_FORMAT_2_10_10_10;
1853 }
1854 goto out_unknown;
1855 }
1856 goto out_unknown;
1857 }
1858
1859 if (first_non_void < 0 || first_non_void > 3)
1860 goto out_unknown;
1861
1862 /* uniform formats */
1863 switch (desc->channel[first_non_void].size) {
1864 case 4:
1865 switch (desc->nr_channels) {
1866 #if 0 /* Not supported for render targets */
1867 case 2:
1868 return V_008F14_IMG_DATA_FORMAT_4_4;
1869 #endif
1870 case 4:
1871 return V_008F14_IMG_DATA_FORMAT_4_4_4_4;
1872 }
1873 break;
1874 case 8:
1875 switch (desc->nr_channels) {
1876 case 1:
1877 return V_008F14_IMG_DATA_FORMAT_8;
1878 case 2:
1879 return V_008F14_IMG_DATA_FORMAT_8_8;
1880 case 4:
1881 return V_008F14_IMG_DATA_FORMAT_8_8_8_8;
1882 }
1883 break;
1884 case 16:
1885 switch (desc->nr_channels) {
1886 case 1:
1887 return V_008F14_IMG_DATA_FORMAT_16;
1888 case 2:
1889 return V_008F14_IMG_DATA_FORMAT_16_16;
1890 case 4:
1891 return V_008F14_IMG_DATA_FORMAT_16_16_16_16;
1892 }
1893 break;
1894 case 32:
1895 switch (desc->nr_channels) {
1896 case 1:
1897 return V_008F14_IMG_DATA_FORMAT_32;
1898 case 2:
1899 return V_008F14_IMG_DATA_FORMAT_32_32;
1900 #if 0 /* Not supported for render targets */
1901 case 3:
1902 return V_008F14_IMG_DATA_FORMAT_32_32_32;
1903 #endif
1904 case 4:
1905 return V_008F14_IMG_DATA_FORMAT_32_32_32_32;
1906 }
1907 }
1908
1909 out_unknown:
1910 return ~0;
1911 }
1912
1913 static unsigned si_tex_wrap(unsigned wrap)
1914 {
1915 switch (wrap) {
1916 default:
1917 case PIPE_TEX_WRAP_REPEAT:
1918 return V_008F30_SQ_TEX_WRAP;
1919 case PIPE_TEX_WRAP_CLAMP:
1920 return V_008F30_SQ_TEX_CLAMP_HALF_BORDER;
1921 case PIPE_TEX_WRAP_CLAMP_TO_EDGE:
1922 return V_008F30_SQ_TEX_CLAMP_LAST_TEXEL;
1923 case PIPE_TEX_WRAP_CLAMP_TO_BORDER:
1924 return V_008F30_SQ_TEX_CLAMP_BORDER;
1925 case PIPE_TEX_WRAP_MIRROR_REPEAT:
1926 return V_008F30_SQ_TEX_MIRROR;
1927 case PIPE_TEX_WRAP_MIRROR_CLAMP:
1928 return V_008F30_SQ_TEX_MIRROR_ONCE_HALF_BORDER;
1929 case PIPE_TEX_WRAP_MIRROR_CLAMP_TO_EDGE:
1930 return V_008F30_SQ_TEX_MIRROR_ONCE_LAST_TEXEL;
1931 case PIPE_TEX_WRAP_MIRROR_CLAMP_TO_BORDER:
1932 return V_008F30_SQ_TEX_MIRROR_ONCE_BORDER;
1933 }
1934 }
1935
1936 static unsigned si_tex_mipfilter(unsigned filter)
1937 {
1938 switch (filter) {
1939 case PIPE_TEX_MIPFILTER_NEAREST:
1940 return V_008F38_SQ_TEX_Z_FILTER_POINT;
1941 case PIPE_TEX_MIPFILTER_LINEAR:
1942 return V_008F38_SQ_TEX_Z_FILTER_LINEAR;
1943 default:
1944 case PIPE_TEX_MIPFILTER_NONE:
1945 return V_008F38_SQ_TEX_Z_FILTER_NONE;
1946 }
1947 }
1948
1949 static unsigned si_tex_compare(unsigned compare)
1950 {
1951 switch (compare) {
1952 default:
1953 case PIPE_FUNC_NEVER:
1954 return V_008F30_SQ_TEX_DEPTH_COMPARE_NEVER;
1955 case PIPE_FUNC_LESS:
1956 return V_008F30_SQ_TEX_DEPTH_COMPARE_LESS;
1957 case PIPE_FUNC_EQUAL:
1958 return V_008F30_SQ_TEX_DEPTH_COMPARE_EQUAL;
1959 case PIPE_FUNC_LEQUAL:
1960 return V_008F30_SQ_TEX_DEPTH_COMPARE_LESSEQUAL;
1961 case PIPE_FUNC_GREATER:
1962 return V_008F30_SQ_TEX_DEPTH_COMPARE_GREATER;
1963 case PIPE_FUNC_NOTEQUAL:
1964 return V_008F30_SQ_TEX_DEPTH_COMPARE_NOTEQUAL;
1965 case PIPE_FUNC_GEQUAL:
1966 return V_008F30_SQ_TEX_DEPTH_COMPARE_GREATEREQUAL;
1967 case PIPE_FUNC_ALWAYS:
1968 return V_008F30_SQ_TEX_DEPTH_COMPARE_ALWAYS;
1969 }
1970 }
1971
1972 static unsigned si_tex_dim(struct si_screen *sscreen, struct si_texture *tex,
1973 unsigned view_target, unsigned nr_samples)
1974 {
1975 unsigned res_target = tex->buffer.b.b.target;
1976
1977 if (view_target == PIPE_TEXTURE_CUBE ||
1978 view_target == PIPE_TEXTURE_CUBE_ARRAY)
1979 res_target = view_target;
1980 /* If interpreting cubemaps as something else, set 2D_ARRAY. */
1981 else if (res_target == PIPE_TEXTURE_CUBE ||
1982 res_target == PIPE_TEXTURE_CUBE_ARRAY)
1983 res_target = PIPE_TEXTURE_2D_ARRAY;
1984
1985 /* GFX9 allocates 1D textures as 2D. */
1986 if ((res_target == PIPE_TEXTURE_1D ||
1987 res_target == PIPE_TEXTURE_1D_ARRAY) &&
1988 sscreen->info.chip_class >= GFX9 &&
1989 tex->surface.u.gfx9.resource_type == RADEON_RESOURCE_2D) {
1990 if (res_target == PIPE_TEXTURE_1D)
1991 res_target = PIPE_TEXTURE_2D;
1992 else
1993 res_target = PIPE_TEXTURE_2D_ARRAY;
1994 }
1995
1996 switch (res_target) {
1997 default:
1998 case PIPE_TEXTURE_1D:
1999 return V_008F1C_SQ_RSRC_IMG_1D;
2000 case PIPE_TEXTURE_1D_ARRAY:
2001 return V_008F1C_SQ_RSRC_IMG_1D_ARRAY;
2002 case PIPE_TEXTURE_2D:
2003 case PIPE_TEXTURE_RECT:
2004 return nr_samples > 1 ? V_008F1C_SQ_RSRC_IMG_2D_MSAA :
2005 V_008F1C_SQ_RSRC_IMG_2D;
2006 case PIPE_TEXTURE_2D_ARRAY:
2007 return nr_samples > 1 ? V_008F1C_SQ_RSRC_IMG_2D_MSAA_ARRAY :
2008 V_008F1C_SQ_RSRC_IMG_2D_ARRAY;
2009 case PIPE_TEXTURE_3D:
2010 return V_008F1C_SQ_RSRC_IMG_3D;
2011 case PIPE_TEXTURE_CUBE:
2012 case PIPE_TEXTURE_CUBE_ARRAY:
2013 return V_008F1C_SQ_RSRC_IMG_CUBE;
2014 }
2015 }
2016
2017 /*
2018 * Format support testing
2019 */
2020
2021 static bool si_is_sampler_format_supported(struct pipe_screen *screen, enum pipe_format format)
2022 {
2023 struct si_screen *sscreen = (struct si_screen *)screen;
2024
2025 if (sscreen->info.chip_class >= GFX10) {
2026 const struct gfx10_format *fmt = &gfx10_format_table[format];
2027 if (!fmt->img_format || fmt->buffers_only)
2028 return false;
2029 return true;
2030 }
2031
2032 const struct util_format_description *desc = util_format_description(format);
2033 if (!desc)
2034 return false;
2035
2036 return si_translate_texformat(screen, format, desc,
2037 util_format_get_first_non_void_channel(format)) != ~0U;
2038 }
2039
2040 static uint32_t si_translate_buffer_dataformat(struct pipe_screen *screen,
2041 const struct util_format_description *desc,
2042 int first_non_void)
2043 {
2044 int i;
2045
2046 assert(((struct si_screen *)screen)->info.chip_class <= GFX9);
2047
2048 if (desc->format == PIPE_FORMAT_R11G11B10_FLOAT)
2049 return V_008F0C_BUF_DATA_FORMAT_10_11_11;
2050
2051 assert(first_non_void >= 0);
2052
2053 if (desc->nr_channels == 4 &&
2054 desc->channel[0].size == 10 &&
2055 desc->channel[1].size == 10 &&
2056 desc->channel[2].size == 10 &&
2057 desc->channel[3].size == 2)
2058 return V_008F0C_BUF_DATA_FORMAT_2_10_10_10;
2059
2060 /* See whether the components are of the same size. */
2061 for (i = 0; i < desc->nr_channels; i++) {
2062 if (desc->channel[first_non_void].size != desc->channel[i].size)
2063 return V_008F0C_BUF_DATA_FORMAT_INVALID;
2064 }
2065
2066 switch (desc->channel[first_non_void].size) {
2067 case 8:
2068 switch (desc->nr_channels) {
2069 case 1:
2070 case 3: /* 3 loads */
2071 return V_008F0C_BUF_DATA_FORMAT_8;
2072 case 2:
2073 return V_008F0C_BUF_DATA_FORMAT_8_8;
2074 case 4:
2075 return V_008F0C_BUF_DATA_FORMAT_8_8_8_8;
2076 }
2077 break;
2078 case 16:
2079 switch (desc->nr_channels) {
2080 case 1:
2081 case 3: /* 3 loads */
2082 return V_008F0C_BUF_DATA_FORMAT_16;
2083 case 2:
2084 return V_008F0C_BUF_DATA_FORMAT_16_16;
2085 case 4:
2086 return V_008F0C_BUF_DATA_FORMAT_16_16_16_16;
2087 }
2088 break;
2089 case 32:
2090 switch (desc->nr_channels) {
2091 case 1:
2092 return V_008F0C_BUF_DATA_FORMAT_32;
2093 case 2:
2094 return V_008F0C_BUF_DATA_FORMAT_32_32;
2095 case 3:
2096 return V_008F0C_BUF_DATA_FORMAT_32_32_32;
2097 case 4:
2098 return V_008F0C_BUF_DATA_FORMAT_32_32_32_32;
2099 }
2100 break;
2101 case 64:
2102 /* Legacy double formats. */
2103 switch (desc->nr_channels) {
2104 case 1: /* 1 load */
2105 return V_008F0C_BUF_DATA_FORMAT_32_32;
2106 case 2: /* 1 load */
2107 return V_008F0C_BUF_DATA_FORMAT_32_32_32_32;
2108 case 3: /* 3 loads */
2109 return V_008F0C_BUF_DATA_FORMAT_32_32;
2110 case 4: /* 2 loads */
2111 return V_008F0C_BUF_DATA_FORMAT_32_32_32_32;
2112 }
2113 break;
2114 }
2115
2116 return V_008F0C_BUF_DATA_FORMAT_INVALID;
2117 }
2118
2119 static uint32_t si_translate_buffer_numformat(struct pipe_screen *screen,
2120 const struct util_format_description *desc,
2121 int first_non_void)
2122 {
2123 assert(((struct si_screen *)screen)->info.chip_class <= GFX9);
2124
2125 if (desc->format == PIPE_FORMAT_R11G11B10_FLOAT)
2126 return V_008F0C_BUF_NUM_FORMAT_FLOAT;
2127
2128 assert(first_non_void >= 0);
2129
2130 switch (desc->channel[first_non_void].type) {
2131 case UTIL_FORMAT_TYPE_SIGNED:
2132 case UTIL_FORMAT_TYPE_FIXED:
2133 if (desc->channel[first_non_void].size >= 32 ||
2134 desc->channel[first_non_void].pure_integer)
2135 return V_008F0C_BUF_NUM_FORMAT_SINT;
2136 else if (desc->channel[first_non_void].normalized)
2137 return V_008F0C_BUF_NUM_FORMAT_SNORM;
2138 else
2139 return V_008F0C_BUF_NUM_FORMAT_SSCALED;
2140 break;
2141 case UTIL_FORMAT_TYPE_UNSIGNED:
2142 if (desc->channel[first_non_void].size >= 32 ||
2143 desc->channel[first_non_void].pure_integer)
2144 return V_008F0C_BUF_NUM_FORMAT_UINT;
2145 else if (desc->channel[first_non_void].normalized)
2146 return V_008F0C_BUF_NUM_FORMAT_UNORM;
2147 else
2148 return V_008F0C_BUF_NUM_FORMAT_USCALED;
2149 break;
2150 case UTIL_FORMAT_TYPE_FLOAT:
2151 default:
2152 return V_008F0C_BUF_NUM_FORMAT_FLOAT;
2153 }
2154 }
2155
2156 static unsigned si_is_vertex_format_supported(struct pipe_screen *screen,
2157 enum pipe_format format,
2158 unsigned usage)
2159 {
2160 struct si_screen *sscreen = (struct si_screen *)screen;
2161 const struct util_format_description *desc;
2162 int first_non_void;
2163 unsigned data_format;
2164
2165 assert((usage & ~(PIPE_BIND_SHADER_IMAGE |
2166 PIPE_BIND_SAMPLER_VIEW |
2167 PIPE_BIND_VERTEX_BUFFER)) == 0);
2168
2169 desc = util_format_description(format);
2170 if (!desc)
2171 return 0;
2172
2173 /* There are no native 8_8_8 or 16_16_16 data formats, and we currently
2174 * select 8_8_8_8 and 16_16_16_16 instead. This works reasonably well
2175 * for read-only access (with caveats surrounding bounds checks), but
2176 * obviously fails for write access which we have to implement for
2177 * shader images. Luckily, OpenGL doesn't expect this to be supported
2178 * anyway, and so the only impact is on PBO uploads / downloads, which
2179 * shouldn't be expected to be fast for GL_RGB anyway.
2180 */
2181 if (desc->block.bits == 3 * 8 ||
2182 desc->block.bits == 3 * 16) {
2183 if (usage & (PIPE_BIND_SHADER_IMAGE | PIPE_BIND_SAMPLER_VIEW)) {
2184 usage &= ~(PIPE_BIND_SHADER_IMAGE | PIPE_BIND_SAMPLER_VIEW);
2185 if (!usage)
2186 return 0;
2187 }
2188 }
2189
2190 if (sscreen->info.chip_class >= GFX10) {
2191 const struct gfx10_format *fmt = &gfx10_format_table[format];
2192 if (!fmt->img_format || fmt->img_format >= 128)
2193 return 0;
2194 return usage;
2195 }
2196
2197 first_non_void = util_format_get_first_non_void_channel(format);
2198 data_format = si_translate_buffer_dataformat(screen, desc, first_non_void);
2199 if (data_format == V_008F0C_BUF_DATA_FORMAT_INVALID)
2200 return 0;
2201
2202 return usage;
2203 }
2204
2205 static bool si_is_colorbuffer_format_supported(enum pipe_format format)
2206 {
2207 return si_translate_colorformat(format) != V_028C70_COLOR_INVALID &&
2208 si_translate_colorswap(format, false) != ~0U;
2209 }
2210
2211 static bool si_is_zs_format_supported(enum pipe_format format)
2212 {
2213 return si_translate_dbformat(format) != V_028040_Z_INVALID;
2214 }
2215
2216 static boolean si_is_format_supported(struct pipe_screen *screen,
2217 enum pipe_format format,
2218 enum pipe_texture_target target,
2219 unsigned sample_count,
2220 unsigned storage_sample_count,
2221 unsigned usage)
2222 {
2223 struct si_screen *sscreen = (struct si_screen *)screen;
2224 unsigned retval = 0;
2225
2226 if (target >= PIPE_MAX_TEXTURE_TYPES) {
2227 PRINT_ERR("radeonsi: unsupported texture type %d\n", target);
2228 return false;
2229 }
2230
2231 if (MAX2(1, sample_count) < MAX2(1, storage_sample_count))
2232 return false;
2233
2234 if (sample_count > 1) {
2235 if (!screen->get_param(screen, PIPE_CAP_TEXTURE_MULTISAMPLE))
2236 return false;
2237
2238 if (usage & PIPE_BIND_SHADER_IMAGE)
2239 return false;
2240
2241 /* Only power-of-two sample counts are supported. */
2242 if (!util_is_power_of_two_or_zero(sample_count) ||
2243 !util_is_power_of_two_or_zero(storage_sample_count))
2244 return false;
2245
2246 /* MSAA support without framebuffer attachments. */
2247 if (format == PIPE_FORMAT_NONE && sample_count <= 16)
2248 return true;
2249
2250 if (!sscreen->info.has_eqaa_surface_allocator ||
2251 util_format_is_depth_or_stencil(format)) {
2252 /* Color without EQAA or depth/stencil. */
2253 if (sample_count > 8 ||
2254 sample_count != storage_sample_count)
2255 return false;
2256 } else {
2257 /* Color with EQAA. */
2258 if (sample_count > 16 ||
2259 storage_sample_count > 8)
2260 return false;
2261 }
2262 }
2263
2264 if (usage & (PIPE_BIND_SAMPLER_VIEW |
2265 PIPE_BIND_SHADER_IMAGE)) {
2266 if (target == PIPE_BUFFER) {
2267 retval |= si_is_vertex_format_supported(
2268 screen, format, usage & (PIPE_BIND_SAMPLER_VIEW |
2269 PIPE_BIND_SHADER_IMAGE));
2270 } else {
2271 if (si_is_sampler_format_supported(screen, format))
2272 retval |= usage & (PIPE_BIND_SAMPLER_VIEW |
2273 PIPE_BIND_SHADER_IMAGE);
2274 }
2275 }
2276
2277 if ((usage & (PIPE_BIND_RENDER_TARGET |
2278 PIPE_BIND_DISPLAY_TARGET |
2279 PIPE_BIND_SCANOUT |
2280 PIPE_BIND_SHARED |
2281 PIPE_BIND_BLENDABLE)) &&
2282 si_is_colorbuffer_format_supported(format)) {
2283 retval |= usage &
2284 (PIPE_BIND_RENDER_TARGET |
2285 PIPE_BIND_DISPLAY_TARGET |
2286 PIPE_BIND_SCANOUT |
2287 PIPE_BIND_SHARED);
2288 if (!util_format_is_pure_integer(format) &&
2289 !util_format_is_depth_or_stencil(format))
2290 retval |= usage & PIPE_BIND_BLENDABLE;
2291 }
2292
2293 if ((usage & PIPE_BIND_DEPTH_STENCIL) &&
2294 si_is_zs_format_supported(format)) {
2295 retval |= PIPE_BIND_DEPTH_STENCIL;
2296 }
2297
2298 if (usage & PIPE_BIND_VERTEX_BUFFER) {
2299 retval |= si_is_vertex_format_supported(screen, format,
2300 PIPE_BIND_VERTEX_BUFFER);
2301 }
2302
2303 if ((usage & PIPE_BIND_LINEAR) &&
2304 !util_format_is_compressed(format) &&
2305 !(usage & PIPE_BIND_DEPTH_STENCIL))
2306 retval |= PIPE_BIND_LINEAR;
2307
2308 return retval == usage;
2309 }
2310
2311 /*
2312 * framebuffer handling
2313 */
2314
2315 static void si_choose_spi_color_formats(struct si_surface *surf,
2316 unsigned format, unsigned swap,
2317 unsigned ntype, bool is_depth)
2318 {
2319 /* Alpha is needed for alpha-to-coverage.
2320 * Blending may be with or without alpha.
2321 */
2322 unsigned normal = 0; /* most optimal, may not support blending or export alpha */
2323 unsigned alpha = 0; /* exports alpha, but may not support blending */
2324 unsigned blend = 0; /* supports blending, but may not export alpha */
2325 unsigned blend_alpha = 0; /* least optimal, supports blending and exports alpha */
2326
2327 /* Choose the SPI color formats. These are required values for RB+.
2328 * Other chips have multiple choices, though they are not necessarily better.
2329 */
2330 switch (format) {
2331 case V_028C70_COLOR_5_6_5:
2332 case V_028C70_COLOR_1_5_5_5:
2333 case V_028C70_COLOR_5_5_5_1:
2334 case V_028C70_COLOR_4_4_4_4:
2335 case V_028C70_COLOR_10_11_11:
2336 case V_028C70_COLOR_11_11_10:
2337 case V_028C70_COLOR_8:
2338 case V_028C70_COLOR_8_8:
2339 case V_028C70_COLOR_8_8_8_8:
2340 case V_028C70_COLOR_10_10_10_2:
2341 case V_028C70_COLOR_2_10_10_10:
2342 if (ntype == V_028C70_NUMBER_UINT)
2343 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_UINT16_ABGR;
2344 else if (ntype == V_028C70_NUMBER_SINT)
2345 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_SINT16_ABGR;
2346 else
2347 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_FP16_ABGR;
2348 break;
2349
2350 case V_028C70_COLOR_16:
2351 case V_028C70_COLOR_16_16:
2352 case V_028C70_COLOR_16_16_16_16:
2353 if (ntype == V_028C70_NUMBER_UNORM ||
2354 ntype == V_028C70_NUMBER_SNORM) {
2355 /* UNORM16 and SNORM16 don't support blending */
2356 if (ntype == V_028C70_NUMBER_UNORM)
2357 normal = alpha = V_028714_SPI_SHADER_UNORM16_ABGR;
2358 else
2359 normal = alpha = V_028714_SPI_SHADER_SNORM16_ABGR;
2360
2361 /* Use 32 bits per channel for blending. */
2362 if (format == V_028C70_COLOR_16) {
2363 if (swap == V_028C70_SWAP_STD) { /* R */
2364 blend = V_028714_SPI_SHADER_32_R;
2365 blend_alpha = V_028714_SPI_SHADER_32_AR;
2366 } else if (swap == V_028C70_SWAP_ALT_REV) /* A */
2367 blend = blend_alpha = V_028714_SPI_SHADER_32_AR;
2368 else
2369 assert(0);
2370 } else if (format == V_028C70_COLOR_16_16) {
2371 if (swap == V_028C70_SWAP_STD) { /* RG */
2372 blend = V_028714_SPI_SHADER_32_GR;
2373 blend_alpha = V_028714_SPI_SHADER_32_ABGR;
2374 } else if (swap == V_028C70_SWAP_ALT) /* RA */
2375 blend = blend_alpha = V_028714_SPI_SHADER_32_AR;
2376 else
2377 assert(0);
2378 } else /* 16_16_16_16 */
2379 blend = blend_alpha = V_028714_SPI_SHADER_32_ABGR;
2380 } else if (ntype == V_028C70_NUMBER_UINT)
2381 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_UINT16_ABGR;
2382 else if (ntype == V_028C70_NUMBER_SINT)
2383 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_SINT16_ABGR;
2384 else if (ntype == V_028C70_NUMBER_FLOAT)
2385 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_FP16_ABGR;
2386 else
2387 assert(0);
2388 break;
2389
2390 case V_028C70_COLOR_32:
2391 if (swap == V_028C70_SWAP_STD) { /* R */
2392 blend = normal = V_028714_SPI_SHADER_32_R;
2393 alpha = blend_alpha = V_028714_SPI_SHADER_32_AR;
2394 } else if (swap == V_028C70_SWAP_ALT_REV) /* A */
2395 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_32_AR;
2396 else
2397 assert(0);
2398 break;
2399
2400 case V_028C70_COLOR_32_32:
2401 if (swap == V_028C70_SWAP_STD) { /* RG */
2402 blend = normal = V_028714_SPI_SHADER_32_GR;
2403 alpha = blend_alpha = V_028714_SPI_SHADER_32_ABGR;
2404 } else if (swap == V_028C70_SWAP_ALT) /* RA */
2405 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_32_AR;
2406 else
2407 assert(0);
2408 break;
2409
2410 case V_028C70_COLOR_32_32_32_32:
2411 case V_028C70_COLOR_8_24:
2412 case V_028C70_COLOR_24_8:
2413 case V_028C70_COLOR_X24_8_32_FLOAT:
2414 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_32_ABGR;
2415 break;
2416
2417 default:
2418 assert(0);
2419 return;
2420 }
2421
2422 /* The DB->CB copy needs 32_ABGR. */
2423 if (is_depth)
2424 alpha = blend = blend_alpha = normal = V_028714_SPI_SHADER_32_ABGR;
2425
2426 surf->spi_shader_col_format = normal;
2427 surf->spi_shader_col_format_alpha = alpha;
2428 surf->spi_shader_col_format_blend = blend;
2429 surf->spi_shader_col_format_blend_alpha = blend_alpha;
2430 }
2431
2432 static void si_initialize_color_surface(struct si_context *sctx,
2433 struct si_surface *surf)
2434 {
2435 struct si_texture *tex = (struct si_texture*)surf->base.texture;
2436 unsigned color_info, color_attrib;
2437 unsigned format, swap, ntype, endian;
2438 const struct util_format_description *desc;
2439 int firstchan;
2440 unsigned blend_clamp = 0, blend_bypass = 0;
2441
2442 desc = util_format_description(surf->base.format);
2443 for (firstchan = 0; firstchan < 4; firstchan++) {
2444 if (desc->channel[firstchan].type != UTIL_FORMAT_TYPE_VOID) {
2445 break;
2446 }
2447 }
2448 if (firstchan == 4 || desc->channel[firstchan].type == UTIL_FORMAT_TYPE_FLOAT) {
2449 ntype = V_028C70_NUMBER_FLOAT;
2450 } else {
2451 ntype = V_028C70_NUMBER_UNORM;
2452 if (desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB)
2453 ntype = V_028C70_NUMBER_SRGB;
2454 else if (desc->channel[firstchan].type == UTIL_FORMAT_TYPE_SIGNED) {
2455 if (desc->channel[firstchan].pure_integer) {
2456 ntype = V_028C70_NUMBER_SINT;
2457 } else {
2458 assert(desc->channel[firstchan].normalized);
2459 ntype = V_028C70_NUMBER_SNORM;
2460 }
2461 } else if (desc->channel[firstchan].type == UTIL_FORMAT_TYPE_UNSIGNED) {
2462 if (desc->channel[firstchan].pure_integer) {
2463 ntype = V_028C70_NUMBER_UINT;
2464 } else {
2465 assert(desc->channel[firstchan].normalized);
2466 ntype = V_028C70_NUMBER_UNORM;
2467 }
2468 }
2469 }
2470
2471 format = si_translate_colorformat(surf->base.format);
2472 if (format == V_028C70_COLOR_INVALID) {
2473 PRINT_ERR("Invalid CB format: %d, disabling CB.\n", surf->base.format);
2474 }
2475 assert(format != V_028C70_COLOR_INVALID);
2476 swap = si_translate_colorswap(surf->base.format, false);
2477 endian = si_colorformat_endian_swap(format);
2478
2479 /* blend clamp should be set for all NORM/SRGB types */
2480 if (ntype == V_028C70_NUMBER_UNORM ||
2481 ntype == V_028C70_NUMBER_SNORM ||
2482 ntype == V_028C70_NUMBER_SRGB)
2483 blend_clamp = 1;
2484
2485 /* set blend bypass according to docs if SINT/UINT or
2486 8/24 COLOR variants */
2487 if (ntype == V_028C70_NUMBER_UINT || ntype == V_028C70_NUMBER_SINT ||
2488 format == V_028C70_COLOR_8_24 || format == V_028C70_COLOR_24_8 ||
2489 format == V_028C70_COLOR_X24_8_32_FLOAT) {
2490 blend_clamp = 0;
2491 blend_bypass = 1;
2492 }
2493
2494 if (ntype == V_028C70_NUMBER_UINT || ntype == V_028C70_NUMBER_SINT) {
2495 if (format == V_028C70_COLOR_8 ||
2496 format == V_028C70_COLOR_8_8 ||
2497 format == V_028C70_COLOR_8_8_8_8)
2498 surf->color_is_int8 = true;
2499 else if (format == V_028C70_COLOR_10_10_10_2 ||
2500 format == V_028C70_COLOR_2_10_10_10)
2501 surf->color_is_int10 = true;
2502 }
2503
2504 color_info = S_028C70_FORMAT(format) |
2505 S_028C70_COMP_SWAP(swap) |
2506 S_028C70_BLEND_CLAMP(blend_clamp) |
2507 S_028C70_BLEND_BYPASS(blend_bypass) |
2508 S_028C70_SIMPLE_FLOAT(1) |
2509 S_028C70_ROUND_MODE(ntype != V_028C70_NUMBER_UNORM &&
2510 ntype != V_028C70_NUMBER_SNORM &&
2511 ntype != V_028C70_NUMBER_SRGB &&
2512 format != V_028C70_COLOR_8_24 &&
2513 format != V_028C70_COLOR_24_8) |
2514 S_028C70_NUMBER_TYPE(ntype) |
2515 S_028C70_ENDIAN(endian);
2516
2517 /* Intensity is implemented as Red, so treat it that way. */
2518 color_attrib = S_028C74_FORCE_DST_ALPHA_1(desc->swizzle[3] == PIPE_SWIZZLE_1 ||
2519 util_format_is_intensity(surf->base.format));
2520
2521 if (tex->buffer.b.b.nr_samples > 1) {
2522 unsigned log_samples = util_logbase2(tex->buffer.b.b.nr_samples);
2523 unsigned log_fragments = util_logbase2(tex->buffer.b.b.nr_storage_samples);
2524
2525 color_attrib |= S_028C74_NUM_SAMPLES(log_samples) |
2526 S_028C74_NUM_FRAGMENTS(log_fragments);
2527
2528 if (tex->fmask_offset) {
2529 color_info |= S_028C70_COMPRESSION(1);
2530 unsigned fmask_bankh = util_logbase2(tex->surface.u.legacy.fmask.bankh);
2531
2532 if (sctx->chip_class == GFX6) {
2533 /* due to a hw bug, FMASK_BANK_HEIGHT must be set on GFX6 too */
2534 color_attrib |= S_028C74_FMASK_BANK_HEIGHT(fmask_bankh);
2535 }
2536 }
2537 }
2538
2539 if (sctx->chip_class >= GFX10) {
2540 unsigned min_compressed_block_size = V_028C78_MIN_BLOCK_SIZE_32B;
2541
2542 /* amdvlk: [min-compressed-block-size] should be set to 32 for dGPU and
2543 64 for APU because all of our APUs to date use DIMMs which have
2544 a request granularity size of 64B while all other chips have a
2545 32B request size */
2546 if (!sctx->screen->info.has_dedicated_vram)
2547 min_compressed_block_size = V_028C78_MIN_BLOCK_SIZE_64B;
2548
2549 surf->cb_dcc_control =
2550 S_028C78_MAX_UNCOMPRESSED_BLOCK_SIZE(V_028C78_MAX_BLOCK_SIZE_256B) |
2551 S_028C78_MAX_COMPRESSED_BLOCK_SIZE(V_028C78_MAX_BLOCK_SIZE_128B) |
2552 S_028C78_MIN_COMPRESSED_BLOCK_SIZE(min_compressed_block_size) |
2553 S_028C78_INDEPENDENT_64B_BLOCKS(0) |
2554 S_028C78_INDEPENDENT_128B_BLOCKS(1);
2555 } else if (sctx->chip_class >= GFX8) {
2556 unsigned max_uncompressed_block_size = V_028C78_MAX_BLOCK_SIZE_256B;
2557 unsigned min_compressed_block_size = V_028C78_MIN_BLOCK_SIZE_32B;
2558
2559 /* amdvlk: [min-compressed-block-size] should be set to 32 for dGPU and
2560 64 for APU because all of our APUs to date use DIMMs which have
2561 a request granularity size of 64B while all other chips have a
2562 32B request size */
2563 if (!sctx->screen->info.has_dedicated_vram)
2564 min_compressed_block_size = V_028C78_MIN_BLOCK_SIZE_64B;
2565
2566 if (tex->buffer.b.b.nr_storage_samples > 1) {
2567 if (tex->surface.bpe == 1)
2568 max_uncompressed_block_size = V_028C78_MAX_BLOCK_SIZE_64B;
2569 else if (tex->surface.bpe == 2)
2570 max_uncompressed_block_size = V_028C78_MAX_BLOCK_SIZE_128B;
2571 }
2572
2573 surf->cb_dcc_control = S_028C78_MAX_UNCOMPRESSED_BLOCK_SIZE(max_uncompressed_block_size) |
2574 S_028C78_MIN_COMPRESSED_BLOCK_SIZE(min_compressed_block_size) |
2575 S_028C78_INDEPENDENT_64B_BLOCKS(1);
2576 }
2577
2578 /* This must be set for fast clear to work without FMASK. */
2579 if (!tex->surface.fmask_size && sctx->chip_class == GFX6) {
2580 unsigned bankh = util_logbase2(tex->surface.u.legacy.bankh);
2581 color_attrib |= S_028C74_FMASK_BANK_HEIGHT(bankh);
2582 }
2583
2584 /* GFX10 field has the same base shift as the GFX6 field */
2585 unsigned color_view = S_028C6C_SLICE_START(surf->base.u.tex.first_layer) |
2586 S_028C6C_SLICE_MAX_GFX10(surf->base.u.tex.last_layer);
2587 unsigned mip0_depth = util_max_layer(&tex->buffer.b.b, 0);
2588
2589 if (sctx->chip_class >= GFX10) {
2590 color_view |= S_028C6C_MIP_LEVEL_GFX10(surf->base.u.tex.level);
2591
2592 surf->cb_color_attrib3 = S_028EE0_MIP0_DEPTH(mip0_depth) |
2593 S_028EE0_RESOURCE_TYPE(tex->surface.u.gfx9.resource_type) |
2594 S_028EE0_RESOURCE_LEVEL(1);
2595 } else if (sctx->chip_class == GFX9) {
2596 color_view |= S_028C6C_MIP_LEVEL_GFX9(surf->base.u.tex.level);
2597 color_attrib |= S_028C74_MIP0_DEPTH(mip0_depth) |
2598 S_028C74_RESOURCE_TYPE(tex->surface.u.gfx9.resource_type);
2599 }
2600
2601 if (sctx->chip_class >= GFX9) {
2602 surf->cb_color_attrib2 = S_028C68_MIP0_WIDTH(surf->width0 - 1) |
2603 S_028C68_MIP0_HEIGHT(surf->height0 - 1) |
2604 S_028C68_MAX_MIP(tex->buffer.b.b.last_level);
2605 }
2606
2607 surf->cb_color_view = color_view;
2608 surf->cb_color_info = color_info;
2609 surf->cb_color_attrib = color_attrib;
2610
2611 /* Determine pixel shader export format */
2612 si_choose_spi_color_formats(surf, format, swap, ntype, tex->is_depth);
2613
2614 surf->color_initialized = true;
2615 }
2616
2617 static void si_init_depth_surface(struct si_context *sctx,
2618 struct si_surface *surf)
2619 {
2620 struct si_texture *tex = (struct si_texture*)surf->base.texture;
2621 unsigned level = surf->base.u.tex.level;
2622 unsigned format, stencil_format;
2623 uint32_t z_info, s_info;
2624
2625 format = si_translate_dbformat(tex->db_render_format);
2626 stencil_format = tex->surface.has_stencil ?
2627 V_028044_STENCIL_8 : V_028044_STENCIL_INVALID;
2628
2629 assert(format != V_028040_Z_INVALID);
2630 if (format == V_028040_Z_INVALID)
2631 PRINT_ERR("Invalid DB format: %d, disabling DB.\n", tex->buffer.b.b.format);
2632
2633 surf->db_depth_view = S_028008_SLICE_START(surf->base.u.tex.first_layer) |
2634 S_028008_SLICE_MAX(surf->base.u.tex.last_layer);
2635 surf->db_htile_data_base = 0;
2636 surf->db_htile_surface = 0;
2637
2638 if (sctx->chip_class >= GFX10) {
2639 surf->db_depth_view |= S_028008_SLICE_START_HI(surf->base.u.tex.first_layer >> 11) |
2640 S_028008_SLICE_MAX_HI(surf->base.u.tex.last_layer >> 11);
2641 }
2642
2643 if (sctx->chip_class >= GFX9) {
2644 assert(tex->surface.u.gfx9.surf_offset == 0);
2645 surf->db_depth_base = tex->buffer.gpu_address >> 8;
2646 surf->db_stencil_base = (tex->buffer.gpu_address +
2647 tex->surface.u.gfx9.stencil_offset) >> 8;
2648 z_info = S_028038_FORMAT(format) |
2649 S_028038_NUM_SAMPLES(util_logbase2(tex->buffer.b.b.nr_samples)) |
2650 S_028038_SW_MODE(tex->surface.u.gfx9.surf.swizzle_mode) |
2651 S_028038_MAXMIP(tex->buffer.b.b.last_level);
2652 s_info = S_02803C_FORMAT(stencil_format) |
2653 S_02803C_SW_MODE(tex->surface.u.gfx9.stencil.swizzle_mode);
2654
2655 if (sctx->chip_class == GFX9) {
2656 surf->db_z_info2 = S_028068_EPITCH(tex->surface.u.gfx9.surf.epitch);
2657 surf->db_stencil_info2 = S_02806C_EPITCH(tex->surface.u.gfx9.stencil.epitch);
2658 }
2659 surf->db_depth_view |= S_028008_MIPID(level);
2660 surf->db_depth_size = S_02801C_X_MAX(tex->buffer.b.b.width0 - 1) |
2661 S_02801C_Y_MAX(tex->buffer.b.b.height0 - 1);
2662
2663 if (si_htile_enabled(tex, level, PIPE_MASK_ZS)) {
2664 z_info |= S_028038_TILE_SURFACE_ENABLE(1) |
2665 S_028038_ALLOW_EXPCLEAR(1);
2666
2667 if (tex->tc_compatible_htile) {
2668 unsigned max_zplanes = 4;
2669
2670 if (tex->db_render_format == PIPE_FORMAT_Z16_UNORM &&
2671 tex->buffer.b.b.nr_samples > 1)
2672 max_zplanes = 2;
2673
2674 z_info |= S_028038_DECOMPRESS_ON_N_ZPLANES(max_zplanes + 1);
2675
2676 if (sctx->chip_class >= GFX10) {
2677 z_info |= S_028040_ITERATE_FLUSH(1);
2678 s_info |= S_028044_ITERATE_FLUSH(!tex->htile_stencil_disabled);
2679 } else {
2680 z_info |= S_028038_ITERATE_FLUSH(1);
2681 s_info |= S_02803C_ITERATE_FLUSH(1);
2682 }
2683 }
2684
2685 if (tex->surface.has_stencil && !tex->htile_stencil_disabled) {
2686 /* Stencil buffer workaround ported from the GFX6-GFX8 code.
2687 * See that for explanation.
2688 */
2689 s_info |= S_02803C_ALLOW_EXPCLEAR(tex->buffer.b.b.nr_samples <= 1);
2690 } else {
2691 /* Use all HTILE for depth if there's no stencil. */
2692 s_info |= S_02803C_TILE_STENCIL_DISABLE(1);
2693 }
2694
2695 surf->db_htile_data_base = (tex->buffer.gpu_address +
2696 tex->htile_offset) >> 8;
2697 surf->db_htile_surface = S_028ABC_FULL_CACHE(1) |
2698 S_028ABC_PIPE_ALIGNED(tex->surface.u.gfx9.htile.pipe_aligned);
2699 if (sctx->chip_class == GFX9) {
2700 surf->db_htile_surface |=
2701 S_028ABC_RB_ALIGNED(tex->surface.u.gfx9.htile.rb_aligned);
2702 }
2703 }
2704 } else {
2705 /* GFX6-GFX8 */
2706 struct legacy_surf_level *levelinfo = &tex->surface.u.legacy.level[level];
2707
2708 assert(levelinfo->nblk_x % 8 == 0 && levelinfo->nblk_y % 8 == 0);
2709
2710 surf->db_depth_base = (tex->buffer.gpu_address +
2711 tex->surface.u.legacy.level[level].offset) >> 8;
2712 surf->db_stencil_base = (tex->buffer.gpu_address +
2713 tex->surface.u.legacy.stencil_level[level].offset) >> 8;
2714
2715 z_info = S_028040_FORMAT(format) |
2716 S_028040_NUM_SAMPLES(util_logbase2(tex->buffer.b.b.nr_samples));
2717 s_info = S_028044_FORMAT(stencil_format);
2718 surf->db_depth_info = S_02803C_ADDR5_SWIZZLE_MASK(!tex->tc_compatible_htile);
2719
2720 if (sctx->chip_class >= GFX7) {
2721 struct radeon_info *info = &sctx->screen->info;
2722 unsigned index = tex->surface.u.legacy.tiling_index[level];
2723 unsigned stencil_index = tex->surface.u.legacy.stencil_tiling_index[level];
2724 unsigned macro_index = tex->surface.u.legacy.macro_tile_index;
2725 unsigned tile_mode = info->si_tile_mode_array[index];
2726 unsigned stencil_tile_mode = info->si_tile_mode_array[stencil_index];
2727 unsigned macro_mode = info->cik_macrotile_mode_array[macro_index];
2728
2729 surf->db_depth_info |=
2730 S_02803C_ARRAY_MODE(G_009910_ARRAY_MODE(tile_mode)) |
2731 S_02803C_PIPE_CONFIG(G_009910_PIPE_CONFIG(tile_mode)) |
2732 S_02803C_BANK_WIDTH(G_009990_BANK_WIDTH(macro_mode)) |
2733 S_02803C_BANK_HEIGHT(G_009990_BANK_HEIGHT(macro_mode)) |
2734 S_02803C_MACRO_TILE_ASPECT(G_009990_MACRO_TILE_ASPECT(macro_mode)) |
2735 S_02803C_NUM_BANKS(G_009990_NUM_BANKS(macro_mode));
2736 z_info |= S_028040_TILE_SPLIT(G_009910_TILE_SPLIT(tile_mode));
2737 s_info |= S_028044_TILE_SPLIT(G_009910_TILE_SPLIT(stencil_tile_mode));
2738 } else {
2739 unsigned tile_mode_index = si_tile_mode_index(tex, level, false);
2740 z_info |= S_028040_TILE_MODE_INDEX(tile_mode_index);
2741 tile_mode_index = si_tile_mode_index(tex, level, true);
2742 s_info |= S_028044_TILE_MODE_INDEX(tile_mode_index);
2743 }
2744
2745 surf->db_depth_size = S_028058_PITCH_TILE_MAX((levelinfo->nblk_x / 8) - 1) |
2746 S_028058_HEIGHT_TILE_MAX((levelinfo->nblk_y / 8) - 1);
2747 surf->db_depth_slice = S_02805C_SLICE_TILE_MAX((levelinfo->nblk_x *
2748 levelinfo->nblk_y) / 64 - 1);
2749
2750 if (si_htile_enabled(tex, level, PIPE_MASK_ZS)) {
2751 z_info |= S_028040_TILE_SURFACE_ENABLE(1) |
2752 S_028040_ALLOW_EXPCLEAR(1);
2753
2754 if (tex->surface.has_stencil) {
2755 /* Workaround: For a not yet understood reason, the
2756 * combination of MSAA, fast stencil clear and stencil
2757 * decompress messes with subsequent stencil buffer
2758 * uses. Problem was reproduced on Verde, Bonaire,
2759 * Tonga, and Carrizo.
2760 *
2761 * Disabling EXPCLEAR works around the problem.
2762 *
2763 * Check piglit's arb_texture_multisample-stencil-clear
2764 * test if you want to try changing this.
2765 */
2766 if (tex->buffer.b.b.nr_samples <= 1)
2767 s_info |= S_028044_ALLOW_EXPCLEAR(1);
2768 } else if (!tex->tc_compatible_htile) {
2769 /* Use all of the htile_buffer for depth if there's no stencil.
2770 * This must not be set when TC-compatible HTILE is enabled
2771 * due to a hw bug.
2772 */
2773 s_info |= S_028044_TILE_STENCIL_DISABLE(1);
2774 }
2775
2776 surf->db_htile_data_base = (tex->buffer.gpu_address +
2777 tex->htile_offset) >> 8;
2778 surf->db_htile_surface = S_028ABC_FULL_CACHE(1);
2779
2780 if (tex->tc_compatible_htile) {
2781 surf->db_htile_surface |= S_028ABC_TC_COMPATIBLE(1);
2782
2783 /* 0 = full compression. N = only compress up to N-1 Z planes. */
2784 if (tex->buffer.b.b.nr_samples <= 1)
2785 z_info |= S_028040_DECOMPRESS_ON_N_ZPLANES(5);
2786 else if (tex->buffer.b.b.nr_samples <= 4)
2787 z_info |= S_028040_DECOMPRESS_ON_N_ZPLANES(3);
2788 else
2789 z_info |= S_028040_DECOMPRESS_ON_N_ZPLANES(2);
2790 }
2791 }
2792 }
2793
2794 surf->db_z_info = z_info;
2795 surf->db_stencil_info = s_info;
2796
2797 surf->depth_initialized = true;
2798 }
2799
2800 void si_update_fb_dirtiness_after_rendering(struct si_context *sctx)
2801 {
2802 if (sctx->decompression_enabled)
2803 return;
2804
2805 if (sctx->framebuffer.state.zsbuf) {
2806 struct pipe_surface *surf = sctx->framebuffer.state.zsbuf;
2807 struct si_texture *tex = (struct si_texture *)surf->texture;
2808
2809 tex->dirty_level_mask |= 1 << surf->u.tex.level;
2810
2811 if (tex->surface.has_stencil)
2812 tex->stencil_dirty_level_mask |= 1 << surf->u.tex.level;
2813 }
2814
2815 unsigned compressed_cb_mask = sctx->framebuffer.compressed_cb_mask;
2816 while (compressed_cb_mask) {
2817 unsigned i = u_bit_scan(&compressed_cb_mask);
2818 struct pipe_surface *surf = sctx->framebuffer.state.cbufs[i];
2819 struct si_texture *tex = (struct si_texture*)surf->texture;
2820
2821 if (tex->fmask_offset)
2822 tex->dirty_level_mask |= 1 << surf->u.tex.level;
2823 if (tex->dcc_gather_statistics)
2824 tex->separate_dcc_dirty = true;
2825 }
2826 }
2827
2828 static void si_dec_framebuffer_counters(const struct pipe_framebuffer_state *state)
2829 {
2830 for (int i = 0; i < state->nr_cbufs; ++i) {
2831 struct si_surface *surf = NULL;
2832 struct si_texture *tex;
2833
2834 if (!state->cbufs[i])
2835 continue;
2836 surf = (struct si_surface*)state->cbufs[i];
2837 tex = (struct si_texture*)surf->base.texture;
2838
2839 p_atomic_dec(&tex->framebuffers_bound);
2840 }
2841 }
2842
2843 static void si_set_framebuffer_state(struct pipe_context *ctx,
2844 const struct pipe_framebuffer_state *state)
2845 {
2846 struct si_context *sctx = (struct si_context *)ctx;
2847 struct si_surface *surf = NULL;
2848 struct si_texture *tex;
2849 bool old_any_dst_linear = sctx->framebuffer.any_dst_linear;
2850 unsigned old_nr_samples = sctx->framebuffer.nr_samples;
2851 unsigned old_colorbuf_enabled_4bit = sctx->framebuffer.colorbuf_enabled_4bit;
2852 bool old_has_zsbuf = !!sctx->framebuffer.state.zsbuf;
2853 bool old_has_stencil =
2854 old_has_zsbuf &&
2855 ((struct si_texture*)sctx->framebuffer.state.zsbuf->texture)->surface.has_stencil;
2856 bool unbound = false;
2857 int i;
2858
2859 /* Reject zero-sized framebuffers due to a hw bug on GFX6 that occurs
2860 * when PA_SU_HARDWARE_SCREEN_OFFSET != 0 and any_scissor.BR_X/Y <= 0.
2861 * We could implement the full workaround here, but it's a useless case.
2862 */
2863 if ((!state->width || !state->height) && (state->nr_cbufs || state->zsbuf)) {
2864 unreachable("the framebuffer shouldn't have zero area");
2865 return;
2866 }
2867
2868 si_update_fb_dirtiness_after_rendering(sctx);
2869
2870 for (i = 0; i < sctx->framebuffer.state.nr_cbufs; i++) {
2871 if (!sctx->framebuffer.state.cbufs[i])
2872 continue;
2873
2874 tex = (struct si_texture*)sctx->framebuffer.state.cbufs[i]->texture;
2875 if (tex->dcc_gather_statistics)
2876 vi_separate_dcc_stop_query(sctx, tex);
2877 }
2878
2879 /* Disable DCC if the formats are incompatible. */
2880 for (i = 0; i < state->nr_cbufs; i++) {
2881 if (!state->cbufs[i])
2882 continue;
2883
2884 surf = (struct si_surface*)state->cbufs[i];
2885 tex = (struct si_texture*)surf->base.texture;
2886
2887 if (!surf->dcc_incompatible)
2888 continue;
2889
2890 /* Since the DCC decompression calls back into set_framebuffer-
2891 * _state, we need to unbind the framebuffer, so that
2892 * vi_separate_dcc_stop_query isn't called twice with the same
2893 * color buffer.
2894 */
2895 if (!unbound) {
2896 util_copy_framebuffer_state(&sctx->framebuffer.state, NULL);
2897 unbound = true;
2898 }
2899
2900 if (vi_dcc_enabled(tex, surf->base.u.tex.level))
2901 if (!si_texture_disable_dcc(sctx, tex))
2902 si_decompress_dcc(sctx, tex);
2903
2904 surf->dcc_incompatible = false;
2905 }
2906
2907 /* Only flush TC when changing the framebuffer state, because
2908 * the only client not using TC that can change textures is
2909 * the framebuffer.
2910 *
2911 * Wait for compute shaders because of possible transitions:
2912 * - FB write -> shader read
2913 * - shader write -> FB read
2914 *
2915 * DB caches are flushed on demand (using si_decompress_textures).
2916 *
2917 * When MSAA is enabled, CB and TC caches are flushed on demand
2918 * (after FMASK decompression). Shader write -> FB read transitions
2919 * cannot happen for MSAA textures, because MSAA shader images are
2920 * not supported.
2921 *
2922 * Only flush and wait for CB if there is actually a bound color buffer.
2923 */
2924 if (sctx->framebuffer.uncompressed_cb_mask) {
2925 si_make_CB_shader_coherent(sctx, sctx->framebuffer.nr_samples,
2926 sctx->framebuffer.CB_has_shader_readable_metadata,
2927 sctx->framebuffer.all_DCC_pipe_aligned);
2928 }
2929
2930 sctx->flags |= SI_CONTEXT_CS_PARTIAL_FLUSH;
2931
2932 /* u_blitter doesn't invoke depth decompression when it does multiple
2933 * blits in a row, but the only case when it matters for DB is when
2934 * doing generate_mipmap. So here we flush DB manually between
2935 * individual generate_mipmap blits.
2936 * Note that lower mipmap levels aren't compressed.
2937 */
2938 if (sctx->generate_mipmap_for_depth) {
2939 si_make_DB_shader_coherent(sctx, 1, false,
2940 sctx->framebuffer.DB_has_shader_readable_metadata);
2941 } else if (sctx->chip_class == GFX9) {
2942 /* It appears that DB metadata "leaks" in a sequence of:
2943 * - depth clear
2944 * - DCC decompress for shader image writes (with DB disabled)
2945 * - render with DEPTH_BEFORE_SHADER=1
2946 * Flushing DB metadata works around the problem.
2947 */
2948 sctx->flags |= SI_CONTEXT_FLUSH_AND_INV_DB_META;
2949 }
2950
2951 /* Take the maximum of the old and new count. If the new count is lower,
2952 * dirtying is needed to disable the unbound colorbuffers.
2953 */
2954 sctx->framebuffer.dirty_cbufs |=
2955 (1 << MAX2(sctx->framebuffer.state.nr_cbufs, state->nr_cbufs)) - 1;
2956 sctx->framebuffer.dirty_zsbuf |= sctx->framebuffer.state.zsbuf != state->zsbuf;
2957
2958 si_dec_framebuffer_counters(&sctx->framebuffer.state);
2959 util_copy_framebuffer_state(&sctx->framebuffer.state, state);
2960
2961 sctx->framebuffer.colorbuf_enabled_4bit = 0;
2962 sctx->framebuffer.spi_shader_col_format = 0;
2963 sctx->framebuffer.spi_shader_col_format_alpha = 0;
2964 sctx->framebuffer.spi_shader_col_format_blend = 0;
2965 sctx->framebuffer.spi_shader_col_format_blend_alpha = 0;
2966 sctx->framebuffer.color_is_int8 = 0;
2967 sctx->framebuffer.color_is_int10 = 0;
2968
2969 sctx->framebuffer.compressed_cb_mask = 0;
2970 sctx->framebuffer.uncompressed_cb_mask = 0;
2971 sctx->framebuffer.nr_samples = util_framebuffer_get_num_samples(state);
2972 sctx->framebuffer.nr_color_samples = sctx->framebuffer.nr_samples;
2973 sctx->framebuffer.log_samples = util_logbase2(sctx->framebuffer.nr_samples);
2974 sctx->framebuffer.any_dst_linear = false;
2975 sctx->framebuffer.CB_has_shader_readable_metadata = false;
2976 sctx->framebuffer.DB_has_shader_readable_metadata = false;
2977 sctx->framebuffer.all_DCC_pipe_aligned = true;
2978 unsigned num_bpp64_colorbufs = 0;
2979
2980 for (i = 0; i < state->nr_cbufs; i++) {
2981 if (!state->cbufs[i])
2982 continue;
2983
2984 surf = (struct si_surface*)state->cbufs[i];
2985 tex = (struct si_texture*)surf->base.texture;
2986
2987 if (!surf->color_initialized) {
2988 si_initialize_color_surface(sctx, surf);
2989 }
2990
2991 sctx->framebuffer.colorbuf_enabled_4bit |= 0xf << (i * 4);
2992 sctx->framebuffer.spi_shader_col_format |=
2993 surf->spi_shader_col_format << (i * 4);
2994 sctx->framebuffer.spi_shader_col_format_alpha |=
2995 surf->spi_shader_col_format_alpha << (i * 4);
2996 sctx->framebuffer.spi_shader_col_format_blend |=
2997 surf->spi_shader_col_format_blend << (i * 4);
2998 sctx->framebuffer.spi_shader_col_format_blend_alpha |=
2999 surf->spi_shader_col_format_blend_alpha << (i * 4);
3000
3001 if (surf->color_is_int8)
3002 sctx->framebuffer.color_is_int8 |= 1 << i;
3003 if (surf->color_is_int10)
3004 sctx->framebuffer.color_is_int10 |= 1 << i;
3005
3006 if (tex->fmask_offset)
3007 sctx->framebuffer.compressed_cb_mask |= 1 << i;
3008 else
3009 sctx->framebuffer.uncompressed_cb_mask |= 1 << i;
3010
3011 /* Don't update nr_color_samples for non-AA buffers.
3012 * (e.g. destination of MSAA resolve)
3013 */
3014 if (tex->buffer.b.b.nr_samples >= 2 &&
3015 tex->buffer.b.b.nr_storage_samples < tex->buffer.b.b.nr_samples) {
3016 sctx->framebuffer.nr_color_samples =
3017 MIN2(sctx->framebuffer.nr_color_samples,
3018 tex->buffer.b.b.nr_storage_samples);
3019 sctx->framebuffer.nr_color_samples =
3020 MAX2(1, sctx->framebuffer.nr_color_samples);
3021 }
3022
3023 if (tex->surface.is_linear)
3024 sctx->framebuffer.any_dst_linear = true;
3025 if (tex->surface.bpe >= 8)
3026 num_bpp64_colorbufs++;
3027
3028 if (vi_dcc_enabled(tex, surf->base.u.tex.level)) {
3029 sctx->framebuffer.CB_has_shader_readable_metadata = true;
3030
3031 if (sctx->chip_class >= GFX9 &&
3032 !tex->surface.u.gfx9.dcc.pipe_aligned)
3033 sctx->framebuffer.all_DCC_pipe_aligned = false;
3034 }
3035
3036 si_context_add_resource_size(sctx, surf->base.texture);
3037
3038 p_atomic_inc(&tex->framebuffers_bound);
3039
3040 if (tex->dcc_gather_statistics) {
3041 /* Dirty tracking must be enabled for DCC usage analysis. */
3042 sctx->framebuffer.compressed_cb_mask |= 1 << i;
3043 vi_separate_dcc_start_query(sctx, tex);
3044 }
3045 }
3046
3047 /* For optimal DCC performance. */
3048 if (sctx->chip_class == GFX8)
3049 sctx->framebuffer.dcc_overwrite_combiner_watermark = 4;
3050 else if (num_bpp64_colorbufs >= 5)
3051 sctx->framebuffer.dcc_overwrite_combiner_watermark = 8;
3052 else
3053 sctx->framebuffer.dcc_overwrite_combiner_watermark = 6;
3054
3055 struct si_texture *zstex = NULL;
3056
3057 if (state->zsbuf) {
3058 surf = (struct si_surface*)state->zsbuf;
3059 zstex = (struct si_texture*)surf->base.texture;
3060
3061 if (!surf->depth_initialized) {
3062 si_init_depth_surface(sctx, surf);
3063 }
3064
3065 if (vi_tc_compat_htile_enabled(zstex, surf->base.u.tex.level,
3066 PIPE_MASK_ZS))
3067 sctx->framebuffer.DB_has_shader_readable_metadata = true;
3068
3069 si_context_add_resource_size(sctx, surf->base.texture);
3070 }
3071
3072 si_update_ps_colorbuf0_slot(sctx);
3073 si_update_poly_offset_state(sctx);
3074 si_mark_atom_dirty(sctx, &sctx->atoms.s.cb_render_state);
3075 si_mark_atom_dirty(sctx, &sctx->atoms.s.framebuffer);
3076
3077 if (sctx->screen->dpbb_allowed)
3078 si_mark_atom_dirty(sctx, &sctx->atoms.s.dpbb_state);
3079
3080 if (sctx->framebuffer.any_dst_linear != old_any_dst_linear)
3081 si_mark_atom_dirty(sctx, &sctx->atoms.s.msaa_config);
3082
3083 if (sctx->screen->has_out_of_order_rast &&
3084 (sctx->framebuffer.colorbuf_enabled_4bit != old_colorbuf_enabled_4bit ||
3085 !!sctx->framebuffer.state.zsbuf != old_has_zsbuf ||
3086 (zstex && zstex->surface.has_stencil != old_has_stencil)))
3087 si_mark_atom_dirty(sctx, &sctx->atoms.s.msaa_config);
3088
3089 if (sctx->framebuffer.nr_samples != old_nr_samples) {
3090 struct pipe_constant_buffer constbuf = {0};
3091
3092 si_mark_atom_dirty(sctx, &sctx->atoms.s.msaa_config);
3093 si_mark_atom_dirty(sctx, &sctx->atoms.s.db_render_state);
3094
3095 constbuf.buffer = sctx->sample_pos_buffer;
3096
3097 /* Set sample locations as fragment shader constants. */
3098 switch (sctx->framebuffer.nr_samples) {
3099 case 1:
3100 constbuf.buffer_offset = 0;
3101 break;
3102 case 2:
3103 constbuf.buffer_offset = (ubyte*)sctx->sample_positions.x2 -
3104 (ubyte*)sctx->sample_positions.x1;
3105 break;
3106 case 4:
3107 constbuf.buffer_offset = (ubyte*)sctx->sample_positions.x4 -
3108 (ubyte*)sctx->sample_positions.x1;
3109 break;
3110 case 8:
3111 constbuf.buffer_offset = (ubyte*)sctx->sample_positions.x8 -
3112 (ubyte*)sctx->sample_positions.x1;
3113 break;
3114 case 16:
3115 constbuf.buffer_offset = (ubyte*)sctx->sample_positions.x16 -
3116 (ubyte*)sctx->sample_positions.x1;
3117 break;
3118 default:
3119 PRINT_ERR("Requested an invalid number of samples %i.\n",
3120 sctx->framebuffer.nr_samples);
3121 assert(0);
3122 }
3123 constbuf.buffer_size = sctx->framebuffer.nr_samples * 2 * 4;
3124 si_set_rw_buffer(sctx, SI_PS_CONST_SAMPLE_POSITIONS, &constbuf);
3125
3126 si_mark_atom_dirty(sctx, &sctx->atoms.s.msaa_sample_locs);
3127 }
3128
3129 sctx->do_update_shaders = true;
3130
3131 if (!sctx->decompression_enabled) {
3132 /* Prevent textures decompression when the framebuffer state
3133 * changes come from the decompression passes themselves.
3134 */
3135 sctx->need_check_render_feedback = true;
3136 }
3137 }
3138
3139 static void si_emit_framebuffer_state(struct si_context *sctx)
3140 {
3141 struct radeon_cmdbuf *cs = sctx->gfx_cs;
3142 struct pipe_framebuffer_state *state = &sctx->framebuffer.state;
3143 unsigned i, nr_cbufs = state->nr_cbufs;
3144 struct si_texture *tex = NULL;
3145 struct si_surface *cb = NULL;
3146 unsigned cb_color_info = 0;
3147
3148 /* Colorbuffers. */
3149 for (i = 0; i < nr_cbufs; i++) {
3150 uint64_t cb_color_base, cb_color_fmask, cb_color_cmask, cb_dcc_base;
3151 unsigned cb_color_attrib;
3152
3153 if (!(sctx->framebuffer.dirty_cbufs & (1 << i)))
3154 continue;
3155
3156 cb = (struct si_surface*)state->cbufs[i];
3157 if (!cb) {
3158 radeon_set_context_reg(cs, R_028C70_CB_COLOR0_INFO + i * 0x3C,
3159 S_028C70_FORMAT(V_028C70_COLOR_INVALID));
3160 continue;
3161 }
3162
3163 tex = (struct si_texture *)cb->base.texture;
3164 radeon_add_to_buffer_list(sctx, sctx->gfx_cs,
3165 &tex->buffer, RADEON_USAGE_READWRITE,
3166 tex->buffer.b.b.nr_samples > 1 ?
3167 RADEON_PRIO_COLOR_BUFFER_MSAA :
3168 RADEON_PRIO_COLOR_BUFFER);
3169
3170 if (tex->cmask_buffer && tex->cmask_buffer != &tex->buffer) {
3171 radeon_add_to_buffer_list(sctx, sctx->gfx_cs,
3172 tex->cmask_buffer, RADEON_USAGE_READWRITE,
3173 RADEON_PRIO_SEPARATE_META);
3174 }
3175
3176 if (tex->dcc_separate_buffer)
3177 radeon_add_to_buffer_list(sctx, sctx->gfx_cs,
3178 tex->dcc_separate_buffer,
3179 RADEON_USAGE_READWRITE,
3180 RADEON_PRIO_SEPARATE_META);
3181
3182 /* Compute mutable surface parameters. */
3183 cb_color_base = tex->buffer.gpu_address >> 8;
3184 cb_color_fmask = 0;
3185 cb_color_cmask = tex->cmask_base_address_reg;
3186 cb_dcc_base = 0;
3187 cb_color_info = cb->cb_color_info | tex->cb_color_info;
3188 cb_color_attrib = cb->cb_color_attrib;
3189
3190 if (cb->base.u.tex.level > 0)
3191 cb_color_info &= C_028C70_FAST_CLEAR;
3192
3193 if (tex->fmask_offset) {
3194 cb_color_fmask = (tex->buffer.gpu_address + tex->fmask_offset) >> 8;
3195 cb_color_fmask |= tex->surface.fmask_tile_swizzle;
3196 }
3197
3198 /* Set up DCC. */
3199 if (vi_dcc_enabled(tex, cb->base.u.tex.level)) {
3200 bool is_msaa_resolve_dst = state->cbufs[0] &&
3201 state->cbufs[0]->texture->nr_samples > 1 &&
3202 state->cbufs[1] == &cb->base &&
3203 state->cbufs[1]->texture->nr_samples <= 1;
3204
3205 if (!is_msaa_resolve_dst)
3206 cb_color_info |= S_028C70_DCC_ENABLE(1);
3207
3208 cb_dcc_base = ((!tex->dcc_separate_buffer ? tex->buffer.gpu_address : 0) +
3209 tex->dcc_offset) >> 8;
3210
3211 unsigned dcc_tile_swizzle = tex->surface.tile_swizzle;
3212 dcc_tile_swizzle &= (tex->surface.dcc_alignment - 1) >> 8;
3213 cb_dcc_base |= dcc_tile_swizzle;
3214 }
3215
3216 if (sctx->chip_class >= GFX10) {
3217 unsigned cb_color_attrib3;
3218
3219 /* Set mutable surface parameters. */
3220 cb_color_base += tex->surface.u.gfx9.surf_offset >> 8;
3221 cb_color_base |= tex->surface.tile_swizzle;
3222 if (!tex->fmask_offset)
3223 cb_color_fmask = cb_color_base;
3224 if (cb->base.u.tex.level > 0)
3225 cb_color_cmask = cb_color_base;
3226
3227 cb_color_attrib3 = cb->cb_color_attrib3 |
3228 S_028EE0_COLOR_SW_MODE(tex->surface.u.gfx9.surf.swizzle_mode) |
3229 S_028EE0_FMASK_SW_MODE(tex->surface.u.gfx9.fmask.swizzle_mode) |
3230 S_028EE0_CMASK_PIPE_ALIGNED(tex->surface.u.gfx9.cmask.pipe_aligned) |
3231 S_028EE0_DCC_PIPE_ALIGNED(tex->surface.u.gfx9.dcc.pipe_aligned);
3232
3233 radeon_set_context_reg_seq(cs, R_028C60_CB_COLOR0_BASE + i * 0x3C, 14);
3234 radeon_emit(cs, cb_color_base); /* CB_COLOR0_BASE */
3235 radeon_emit(cs, 0); /* hole */
3236 radeon_emit(cs, 0); /* hole */
3237 radeon_emit(cs, cb->cb_color_view); /* CB_COLOR0_VIEW */
3238 radeon_emit(cs, cb_color_info); /* CB_COLOR0_INFO */
3239 radeon_emit(cs, cb_color_attrib); /* CB_COLOR0_ATTRIB */
3240 radeon_emit(cs, cb->cb_dcc_control); /* CB_COLOR0_DCC_CONTROL */
3241 radeon_emit(cs, cb_color_cmask); /* CB_COLOR0_CMASK */
3242 radeon_emit(cs, 0); /* hole */
3243 radeon_emit(cs, cb_color_fmask); /* CB_COLOR0_FMASK */
3244 radeon_emit(cs, 0); /* hole */
3245 radeon_emit(cs, tex->color_clear_value[0]); /* CB_COLOR0_CLEAR_WORD0 */
3246 radeon_emit(cs, tex->color_clear_value[1]); /* CB_COLOR0_CLEAR_WORD1 */
3247 radeon_emit(cs, cb_dcc_base); /* CB_COLOR0_DCC_BASE */
3248
3249 radeon_set_context_reg(cs, R_028E40_CB_COLOR0_BASE_EXT + i * 4,
3250 cb_color_base >> 32);
3251 radeon_set_context_reg(cs, R_028E60_CB_COLOR0_CMASK_BASE_EXT + i * 4,
3252 cb_color_cmask >> 32);
3253 radeon_set_context_reg(cs, R_028E80_CB_COLOR0_FMASK_BASE_EXT + i * 4,
3254 cb_color_fmask >> 32);
3255 radeon_set_context_reg(cs, R_028EA0_CB_COLOR0_DCC_BASE_EXT + i * 4,
3256 cb_dcc_base >> 32);
3257 radeon_set_context_reg(cs, R_028EC0_CB_COLOR0_ATTRIB2 + i * 4,
3258 cb->cb_color_attrib2);
3259 radeon_set_context_reg(cs, R_028EE0_CB_COLOR0_ATTRIB3 + i * 4,
3260 cb_color_attrib3);
3261 } else if (sctx->chip_class == GFX9) {
3262 struct gfx9_surf_meta_flags meta;
3263
3264 if (tex->dcc_offset)
3265 meta = tex->surface.u.gfx9.dcc;
3266 else
3267 meta = tex->surface.u.gfx9.cmask;
3268
3269 /* Set mutable surface parameters. */
3270 cb_color_base += tex->surface.u.gfx9.surf_offset >> 8;
3271 cb_color_base |= tex->surface.tile_swizzle;
3272 if (!tex->fmask_offset)
3273 cb_color_fmask = cb_color_base;
3274 if (cb->base.u.tex.level > 0)
3275 cb_color_cmask = cb_color_base;
3276 cb_color_attrib |= S_028C74_COLOR_SW_MODE(tex->surface.u.gfx9.surf.swizzle_mode) |
3277 S_028C74_FMASK_SW_MODE(tex->surface.u.gfx9.fmask.swizzle_mode) |
3278 S_028C74_RB_ALIGNED(meta.rb_aligned) |
3279 S_028C74_PIPE_ALIGNED(meta.pipe_aligned);
3280
3281 radeon_set_context_reg_seq(cs, R_028C60_CB_COLOR0_BASE + i * 0x3C, 15);
3282 radeon_emit(cs, cb_color_base); /* CB_COLOR0_BASE */
3283 radeon_emit(cs, S_028C64_BASE_256B(cb_color_base >> 32)); /* CB_COLOR0_BASE_EXT */
3284 radeon_emit(cs, cb->cb_color_attrib2); /* CB_COLOR0_ATTRIB2 */
3285 radeon_emit(cs, cb->cb_color_view); /* CB_COLOR0_VIEW */
3286 radeon_emit(cs, cb_color_info); /* CB_COLOR0_INFO */
3287 radeon_emit(cs, cb_color_attrib); /* CB_COLOR0_ATTRIB */
3288 radeon_emit(cs, cb->cb_dcc_control); /* CB_COLOR0_DCC_CONTROL */
3289 radeon_emit(cs, cb_color_cmask); /* CB_COLOR0_CMASK */
3290 radeon_emit(cs, S_028C80_BASE_256B(cb_color_cmask >> 32)); /* CB_COLOR0_CMASK_BASE_EXT */
3291 radeon_emit(cs, cb_color_fmask); /* CB_COLOR0_FMASK */
3292 radeon_emit(cs, S_028C88_BASE_256B(cb_color_fmask >> 32)); /* CB_COLOR0_FMASK_BASE_EXT */
3293 radeon_emit(cs, tex->color_clear_value[0]); /* CB_COLOR0_CLEAR_WORD0 */
3294 radeon_emit(cs, tex->color_clear_value[1]); /* CB_COLOR0_CLEAR_WORD1 */
3295 radeon_emit(cs, cb_dcc_base); /* CB_COLOR0_DCC_BASE */
3296 radeon_emit(cs, S_028C98_BASE_256B(cb_dcc_base >> 32)); /* CB_COLOR0_DCC_BASE_EXT */
3297
3298 radeon_set_context_reg(cs, R_0287A0_CB_MRT0_EPITCH + i * 4,
3299 S_0287A0_EPITCH(tex->surface.u.gfx9.surf.epitch));
3300 } else {
3301 /* Compute mutable surface parameters (GFX6-GFX8). */
3302 const struct legacy_surf_level *level_info =
3303 &tex->surface.u.legacy.level[cb->base.u.tex.level];
3304 unsigned pitch_tile_max, slice_tile_max, tile_mode_index;
3305 unsigned cb_color_pitch, cb_color_slice, cb_color_fmask_slice;
3306
3307 cb_color_base += level_info->offset >> 8;
3308 /* Only macrotiled modes can set tile swizzle. */
3309 if (level_info->mode == RADEON_SURF_MODE_2D)
3310 cb_color_base |= tex->surface.tile_swizzle;
3311
3312 if (!tex->fmask_offset)
3313 cb_color_fmask = cb_color_base;
3314 if (cb->base.u.tex.level > 0)
3315 cb_color_cmask = cb_color_base;
3316 if (cb_dcc_base)
3317 cb_dcc_base += level_info->dcc_offset >> 8;
3318
3319 pitch_tile_max = level_info->nblk_x / 8 - 1;
3320 slice_tile_max = level_info->nblk_x *
3321 level_info->nblk_y / 64 - 1;
3322 tile_mode_index = si_tile_mode_index(tex, cb->base.u.tex.level, false);
3323
3324 cb_color_attrib |= S_028C74_TILE_MODE_INDEX(tile_mode_index);
3325 cb_color_pitch = S_028C64_TILE_MAX(pitch_tile_max);
3326 cb_color_slice = S_028C68_TILE_MAX(slice_tile_max);
3327
3328 if (tex->fmask_offset) {
3329 if (sctx->chip_class >= GFX7)
3330 cb_color_pitch |= S_028C64_FMASK_TILE_MAX(tex->surface.u.legacy.fmask.pitch_in_pixels / 8 - 1);
3331 cb_color_attrib |= S_028C74_FMASK_TILE_MODE_INDEX(tex->surface.u.legacy.fmask.tiling_index);
3332 cb_color_fmask_slice = S_028C88_TILE_MAX(tex->surface.u.legacy.fmask.slice_tile_max);
3333 } else {
3334 /* This must be set for fast clear to work without FMASK. */
3335 if (sctx->chip_class >= GFX7)
3336 cb_color_pitch |= S_028C64_FMASK_TILE_MAX(pitch_tile_max);
3337 cb_color_attrib |= S_028C74_FMASK_TILE_MODE_INDEX(tile_mode_index);
3338 cb_color_fmask_slice = S_028C88_TILE_MAX(slice_tile_max);
3339 }
3340
3341 radeon_set_context_reg_seq(cs, R_028C60_CB_COLOR0_BASE + i * 0x3C,
3342 sctx->chip_class >= GFX8 ? 14 : 13);
3343 radeon_emit(cs, cb_color_base); /* CB_COLOR0_BASE */
3344 radeon_emit(cs, cb_color_pitch); /* CB_COLOR0_PITCH */
3345 radeon_emit(cs, cb_color_slice); /* CB_COLOR0_SLICE */
3346 radeon_emit(cs, cb->cb_color_view); /* CB_COLOR0_VIEW */
3347 radeon_emit(cs, cb_color_info); /* CB_COLOR0_INFO */
3348 radeon_emit(cs, cb_color_attrib); /* CB_COLOR0_ATTRIB */
3349 radeon_emit(cs, cb->cb_dcc_control); /* CB_COLOR0_DCC_CONTROL */
3350 radeon_emit(cs, cb_color_cmask); /* CB_COLOR0_CMASK */
3351 radeon_emit(cs, tex->surface.u.legacy.cmask_slice_tile_max); /* CB_COLOR0_CMASK_SLICE */
3352 radeon_emit(cs, cb_color_fmask); /* CB_COLOR0_FMASK */
3353 radeon_emit(cs, cb_color_fmask_slice); /* CB_COLOR0_FMASK_SLICE */
3354 radeon_emit(cs, tex->color_clear_value[0]); /* CB_COLOR0_CLEAR_WORD0 */
3355 radeon_emit(cs, tex->color_clear_value[1]); /* CB_COLOR0_CLEAR_WORD1 */
3356
3357 if (sctx->chip_class >= GFX8) /* R_028C94_CB_COLOR0_DCC_BASE */
3358 radeon_emit(cs, cb_dcc_base);
3359 }
3360 }
3361 for (; i < 8 ; i++)
3362 if (sctx->framebuffer.dirty_cbufs & (1 << i))
3363 radeon_set_context_reg(cs, R_028C70_CB_COLOR0_INFO + i * 0x3C, 0);
3364
3365 /* ZS buffer. */
3366 if (state->zsbuf && sctx->framebuffer.dirty_zsbuf) {
3367 struct si_surface *zb = (struct si_surface*)state->zsbuf;
3368 struct si_texture *tex = (struct si_texture*)zb->base.texture;
3369
3370 radeon_add_to_buffer_list(sctx, sctx->gfx_cs,
3371 &tex->buffer, RADEON_USAGE_READWRITE,
3372 zb->base.texture->nr_samples > 1 ?
3373 RADEON_PRIO_DEPTH_BUFFER_MSAA :
3374 RADEON_PRIO_DEPTH_BUFFER);
3375
3376 if (sctx->chip_class >= GFX10) {
3377 radeon_set_context_reg(cs, R_028014_DB_HTILE_DATA_BASE, zb->db_htile_data_base);
3378 radeon_set_context_reg(cs, R_02801C_DB_DEPTH_SIZE_XY, zb->db_depth_size);
3379
3380 radeon_set_context_reg_seq(cs, R_02803C_DB_DEPTH_INFO, 7);
3381 radeon_emit(cs, S_02803C_RESOURCE_LEVEL(1)); /* DB_DEPTH_INFO */
3382 radeon_emit(cs, zb->db_z_info | /* DB_Z_INFO */
3383 S_028038_ZRANGE_PRECISION(tex->depth_clear_value != 0));
3384 radeon_emit(cs, zb->db_stencil_info); /* DB_STENCIL_INFO */
3385 radeon_emit(cs, zb->db_depth_base); /* DB_Z_READ_BASE */
3386 radeon_emit(cs, zb->db_stencil_base); /* DB_STENCIL_READ_BASE */
3387 radeon_emit(cs, zb->db_depth_base); /* DB_Z_WRITE_BASE */
3388 radeon_emit(cs, zb->db_stencil_base); /* DB_STENCIL_WRITE_BASE */
3389
3390 radeon_set_context_reg_seq(cs, R_028068_DB_Z_READ_BASE_HI, 5);
3391 radeon_emit(cs, zb->db_depth_base >> 32); /* DB_Z_READ_BASE_HI */
3392 radeon_emit(cs, zb->db_stencil_base >> 32); /* DB_STENCIL_READ_BASE_HI */
3393 radeon_emit(cs, zb->db_depth_base >> 32); /* DB_Z_WRITE_BASE_HI */
3394 radeon_emit(cs, zb->db_stencil_base >> 32); /* DB_STENCIL_WRITE_BASE_HI */
3395 radeon_emit(cs, zb->db_htile_data_base >> 32); /* DB_HTILE_DATA_BASE_HI */
3396 } else if (sctx->chip_class == GFX9) {
3397 radeon_set_context_reg_seq(cs, R_028014_DB_HTILE_DATA_BASE, 3);
3398 radeon_emit(cs, zb->db_htile_data_base); /* DB_HTILE_DATA_BASE */
3399 radeon_emit(cs, S_028018_BASE_HI(zb->db_htile_data_base >> 32)); /* DB_HTILE_DATA_BASE_HI */
3400 radeon_emit(cs, zb->db_depth_size); /* DB_DEPTH_SIZE */
3401
3402 radeon_set_context_reg_seq(cs, R_028038_DB_Z_INFO, 10);
3403 radeon_emit(cs, zb->db_z_info | /* DB_Z_INFO */
3404 S_028038_ZRANGE_PRECISION(tex->depth_clear_value != 0));
3405 radeon_emit(cs, zb->db_stencil_info); /* DB_STENCIL_INFO */
3406 radeon_emit(cs, zb->db_depth_base); /* DB_Z_READ_BASE */
3407 radeon_emit(cs, S_028044_BASE_HI(zb->db_depth_base >> 32)); /* DB_Z_READ_BASE_HI */
3408 radeon_emit(cs, zb->db_stencil_base); /* DB_STENCIL_READ_BASE */
3409 radeon_emit(cs, S_02804C_BASE_HI(zb->db_stencil_base >> 32)); /* DB_STENCIL_READ_BASE_HI */
3410 radeon_emit(cs, zb->db_depth_base); /* DB_Z_WRITE_BASE */
3411 radeon_emit(cs, S_028054_BASE_HI(zb->db_depth_base >> 32)); /* DB_Z_WRITE_BASE_HI */
3412 radeon_emit(cs, zb->db_stencil_base); /* DB_STENCIL_WRITE_BASE */
3413 radeon_emit(cs, S_02805C_BASE_HI(zb->db_stencil_base >> 32)); /* DB_STENCIL_WRITE_BASE_HI */
3414
3415 radeon_set_context_reg_seq(cs, R_028068_DB_Z_INFO2, 2);
3416 radeon_emit(cs, zb->db_z_info2); /* DB_Z_INFO2 */
3417 radeon_emit(cs, zb->db_stencil_info2); /* DB_STENCIL_INFO2 */
3418 } else {
3419 radeon_set_context_reg(cs, R_028014_DB_HTILE_DATA_BASE, zb->db_htile_data_base);
3420
3421 radeon_set_context_reg_seq(cs, R_02803C_DB_DEPTH_INFO, 9);
3422 radeon_emit(cs, zb->db_depth_info); /* DB_DEPTH_INFO */
3423 radeon_emit(cs, zb->db_z_info | /* DB_Z_INFO */
3424 S_028040_ZRANGE_PRECISION(tex->depth_clear_value != 0));
3425 radeon_emit(cs, zb->db_stencil_info); /* DB_STENCIL_INFO */
3426 radeon_emit(cs, zb->db_depth_base); /* DB_Z_READ_BASE */
3427 radeon_emit(cs, zb->db_stencil_base); /* DB_STENCIL_READ_BASE */
3428 radeon_emit(cs, zb->db_depth_base); /* DB_Z_WRITE_BASE */
3429 radeon_emit(cs, zb->db_stencil_base); /* DB_STENCIL_WRITE_BASE */
3430 radeon_emit(cs, zb->db_depth_size); /* DB_DEPTH_SIZE */
3431 radeon_emit(cs, zb->db_depth_slice); /* DB_DEPTH_SLICE */
3432 }
3433
3434 radeon_set_context_reg_seq(cs, R_028028_DB_STENCIL_CLEAR, 2);
3435 radeon_emit(cs, tex->stencil_clear_value); /* R_028028_DB_STENCIL_CLEAR */
3436 radeon_emit(cs, fui(tex->depth_clear_value)); /* R_02802C_DB_DEPTH_CLEAR */
3437
3438 radeon_set_context_reg(cs, R_028008_DB_DEPTH_VIEW, zb->db_depth_view);
3439 radeon_set_context_reg(cs, R_028ABC_DB_HTILE_SURFACE, zb->db_htile_surface);
3440 } else if (sctx->framebuffer.dirty_zsbuf) {
3441 if (sctx->chip_class == GFX9)
3442 radeon_set_context_reg_seq(cs, R_028038_DB_Z_INFO, 2);
3443 else
3444 radeon_set_context_reg_seq(cs, R_028040_DB_Z_INFO, 2);
3445
3446 radeon_emit(cs, S_028040_FORMAT(V_028040_Z_INVALID)); /* DB_Z_INFO */
3447 radeon_emit(cs, S_028044_FORMAT(V_028044_STENCIL_INVALID)); /* DB_STENCIL_INFO */
3448 }
3449
3450 /* Framebuffer dimensions. */
3451 /* PA_SC_WINDOW_SCISSOR_TL is set in si_init_config() */
3452 radeon_set_context_reg(cs, R_028208_PA_SC_WINDOW_SCISSOR_BR,
3453 S_028208_BR_X(state->width) | S_028208_BR_Y(state->height));
3454
3455 if (sctx->screen->dfsm_allowed) {
3456 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
3457 radeon_emit(cs, EVENT_TYPE(V_028A90_BREAK_BATCH) | EVENT_INDEX(0));
3458 }
3459
3460 sctx->framebuffer.dirty_cbufs = 0;
3461 sctx->framebuffer.dirty_zsbuf = false;
3462 }
3463
3464 static void si_emit_msaa_sample_locs(struct si_context *sctx)
3465 {
3466 struct radeon_cmdbuf *cs = sctx->gfx_cs;
3467 struct si_state_rasterizer *rs = sctx->queued.named.rasterizer;
3468 unsigned nr_samples = sctx->framebuffer.nr_samples;
3469 bool has_msaa_sample_loc_bug = sctx->screen->has_msaa_sample_loc_bug;
3470
3471 /* Smoothing (only possible with nr_samples == 1) uses the same
3472 * sample locations as the MSAA it simulates.
3473 */
3474 if (nr_samples <= 1 && sctx->smoothing_enabled)
3475 nr_samples = SI_NUM_SMOOTH_AA_SAMPLES;
3476
3477 /* On Polaris, the small primitive filter uses the sample locations
3478 * even when MSAA is off, so we need to make sure they're set to 0.
3479 *
3480 * GFX10 uses sample locations unconditionally, so they always need
3481 * to be set up.
3482 */
3483 if ((nr_samples >= 2 || has_msaa_sample_loc_bug ||
3484 sctx->chip_class >= GFX10) &&
3485 nr_samples != sctx->sample_locs_num_samples) {
3486 sctx->sample_locs_num_samples = nr_samples;
3487 si_emit_sample_locations(cs, nr_samples);
3488 }
3489
3490 if (sctx->family >= CHIP_POLARIS10) {
3491 unsigned small_prim_filter_cntl =
3492 S_028830_SMALL_PRIM_FILTER_ENABLE(1) |
3493 /* line bug */
3494 S_028830_LINE_FILTER_DISABLE(sctx->family <= CHIP_POLARIS12);
3495
3496 /* The alternative of setting sample locations to 0 would
3497 * require a DB flush to avoid Z errors, see
3498 * https://bugs.freedesktop.org/show_bug.cgi?id=96908
3499 */
3500 if (has_msaa_sample_loc_bug &&
3501 sctx->framebuffer.nr_samples > 1 &&
3502 !rs->multisample_enable)
3503 small_prim_filter_cntl &= C_028830_SMALL_PRIM_FILTER_ENABLE;
3504
3505 radeon_opt_set_context_reg(sctx,
3506 R_028830_PA_SU_SMALL_PRIM_FILTER_CNTL,
3507 SI_TRACKED_PA_SU_SMALL_PRIM_FILTER_CNTL,
3508 small_prim_filter_cntl);
3509 }
3510
3511 /* The exclusion bits can be set to improve rasterization efficiency
3512 * if no sample lies on the pixel boundary (-8 sample offset).
3513 */
3514 bool exclusion = sctx->chip_class >= GFX7 &&
3515 (!rs->multisample_enable || nr_samples != 16);
3516 radeon_opt_set_context_reg(sctx, R_02882C_PA_SU_PRIM_FILTER_CNTL,
3517 SI_TRACKED_PA_SU_PRIM_FILTER_CNTL,
3518 S_02882C_XMAX_RIGHT_EXCLUSION(exclusion) |
3519 S_02882C_YMAX_BOTTOM_EXCLUSION(exclusion));
3520 }
3521
3522 static bool si_out_of_order_rasterization(struct si_context *sctx)
3523 {
3524 struct si_state_blend *blend = sctx->queued.named.blend;
3525 struct si_state_dsa *dsa = sctx->queued.named.dsa;
3526
3527 if (!sctx->screen->has_out_of_order_rast)
3528 return false;
3529
3530 unsigned colormask = sctx->framebuffer.colorbuf_enabled_4bit;
3531
3532 if (blend) {
3533 colormask &= blend->cb_target_enabled_4bit;
3534 } else {
3535 colormask = 0;
3536 }
3537
3538 /* Conservative: No logic op. */
3539 if (colormask && blend->logicop_enable)
3540 return false;
3541
3542 struct si_dsa_order_invariance dsa_order_invariant = {
3543 .zs = true, .pass_set = true, .pass_last = false
3544 };
3545
3546 if (sctx->framebuffer.state.zsbuf) {
3547 struct si_texture *zstex =
3548 (struct si_texture*)sctx->framebuffer.state.zsbuf->texture;
3549 bool has_stencil = zstex->surface.has_stencil;
3550 dsa_order_invariant = dsa->order_invariance[has_stencil];
3551 if (!dsa_order_invariant.zs)
3552 return false;
3553
3554 /* The set of PS invocations is always order invariant,
3555 * except when early Z/S tests are requested. */
3556 if (sctx->ps_shader.cso &&
3557 sctx->ps_shader.cso->info.writes_memory &&
3558 sctx->ps_shader.cso->info.properties[TGSI_PROPERTY_FS_EARLY_DEPTH_STENCIL] &&
3559 !dsa_order_invariant.pass_set)
3560 return false;
3561
3562 if (sctx->num_perfect_occlusion_queries != 0 &&
3563 !dsa_order_invariant.pass_set)
3564 return false;
3565 }
3566
3567 if (!colormask)
3568 return true;
3569
3570 unsigned blendmask = colormask & blend->blend_enable_4bit;
3571
3572 if (blendmask) {
3573 /* Only commutative blending. */
3574 if (blendmask & ~blend->commutative_4bit)
3575 return false;
3576
3577 if (!dsa_order_invariant.pass_set)
3578 return false;
3579 }
3580
3581 if (colormask & ~blendmask) {
3582 if (!dsa_order_invariant.pass_last)
3583 return false;
3584 }
3585
3586 return true;
3587 }
3588
3589 static void si_emit_msaa_config(struct si_context *sctx)
3590 {
3591 struct radeon_cmdbuf *cs = sctx->gfx_cs;
3592 unsigned num_tile_pipes = sctx->screen->info.num_tile_pipes;
3593 /* 33% faster rendering to linear color buffers */
3594 bool dst_is_linear = sctx->framebuffer.any_dst_linear;
3595 bool out_of_order_rast = si_out_of_order_rasterization(sctx);
3596 unsigned sc_mode_cntl_1 =
3597 S_028A4C_WALK_SIZE(dst_is_linear) |
3598 S_028A4C_WALK_FENCE_ENABLE(!dst_is_linear) |
3599 S_028A4C_WALK_FENCE_SIZE(num_tile_pipes == 2 ? 2 : 3) |
3600 S_028A4C_OUT_OF_ORDER_PRIMITIVE_ENABLE(out_of_order_rast) |
3601 S_028A4C_OUT_OF_ORDER_WATER_MARK(0x7) |
3602 /* always 1: */
3603 S_028A4C_WALK_ALIGN8_PRIM_FITS_ST(1) |
3604 S_028A4C_SUPERTILE_WALK_ORDER_ENABLE(1) |
3605 S_028A4C_TILE_WALK_ORDER_ENABLE(1) |
3606 S_028A4C_MULTI_SHADER_ENGINE_PRIM_DISCARD_ENABLE(1) |
3607 S_028A4C_FORCE_EOV_CNTDWN_ENABLE(1) |
3608 S_028A4C_FORCE_EOV_REZ_ENABLE(1);
3609 unsigned db_eqaa = S_028804_HIGH_QUALITY_INTERSECTIONS(1) |
3610 S_028804_INCOHERENT_EQAA_READS(1) |
3611 S_028804_INTERPOLATE_COMP_Z(1) |
3612 S_028804_STATIC_ANCHOR_ASSOCIATIONS(1);
3613 unsigned coverage_samples, color_samples, z_samples;
3614 struct si_state_rasterizer *rs = sctx->queued.named.rasterizer;
3615
3616 /* S: Coverage samples (up to 16x):
3617 * - Scan conversion samples (PA_SC_AA_CONFIG.MSAA_NUM_SAMPLES)
3618 * - CB FMASK samples (CB_COLORi_ATTRIB.NUM_SAMPLES)
3619 *
3620 * Z: Z/S samples (up to 8x, must be <= coverage samples and >= color samples):
3621 * - Value seen by DB (DB_Z_INFO.NUM_SAMPLES)
3622 * - Value seen by CB, must be correct even if Z/S is unbound (DB_EQAA.MAX_ANCHOR_SAMPLES)
3623 * # Missing samples are derived from Z planes if Z is compressed (up to 16x quality), or
3624 * # from the closest defined sample if Z is uncompressed (same quality as the number of
3625 * # Z samples).
3626 *
3627 * F: Color samples (up to 8x, must be <= coverage samples):
3628 * - CB color samples (CB_COLORi_ATTRIB.NUM_FRAGMENTS)
3629 * - PS iter samples (DB_EQAA.PS_ITER_SAMPLES)
3630 *
3631 * Can be anything between coverage and color samples:
3632 * - SampleMaskIn samples (PA_SC_AA_CONFIG.MSAA_EXPOSED_SAMPLES)
3633 * - SampleMaskOut samples (DB_EQAA.MASK_EXPORT_NUM_SAMPLES)
3634 * - Alpha-to-coverage samples (DB_EQAA.ALPHA_TO_MASK_NUM_SAMPLES)
3635 * - Occlusion query samples (DB_COUNT_CONTROL.SAMPLE_RATE)
3636 * # All are currently set the same as coverage samples.
3637 *
3638 * If color samples < coverage samples, FMASK has a higher bpp to store an "unknown"
3639 * flag for undefined color samples. A shader-based resolve must handle unknowns
3640 * or mask them out with AND. Unknowns can also be guessed from neighbors via
3641 * an edge-detect shader-based resolve, which is required to make "color samples = 1"
3642 * useful. The CB resolve always drops unknowns.
3643 *
3644 * Sensible AA configurations:
3645 * EQAA 16s 8z 8f - might look the same as 16x MSAA if Z is compressed
3646 * EQAA 16s 8z 4f - might look the same as 16x MSAA if Z is compressed
3647 * EQAA 16s 4z 4f - might look the same as 16x MSAA if Z is compressed
3648 * EQAA 8s 8z 8f = 8x MSAA
3649 * EQAA 8s 8z 4f - might look the same as 8x MSAA
3650 * EQAA 8s 8z 2f - might look the same as 8x MSAA with low-density geometry
3651 * EQAA 8s 4z 4f - might look the same as 8x MSAA if Z is compressed
3652 * EQAA 8s 4z 2f - might look the same as 8x MSAA with low-density geometry if Z is compressed
3653 * EQAA 4s 4z 4f = 4x MSAA
3654 * EQAA 4s 4z 2f - might look the same as 4x MSAA with low-density geometry
3655 * EQAA 2s 2z 2f = 2x MSAA
3656 */
3657 if (sctx->framebuffer.nr_samples > 1 && rs->multisample_enable) {
3658 coverage_samples = sctx->framebuffer.nr_samples;
3659 color_samples = sctx->framebuffer.nr_color_samples;
3660
3661 if (sctx->framebuffer.state.zsbuf) {
3662 z_samples = sctx->framebuffer.state.zsbuf->texture->nr_samples;
3663 z_samples = MAX2(1, z_samples);
3664 } else {
3665 z_samples = coverage_samples;
3666 }
3667 } else if (sctx->smoothing_enabled) {
3668 coverage_samples = color_samples = z_samples = SI_NUM_SMOOTH_AA_SAMPLES;
3669 } else {
3670 coverage_samples = color_samples = z_samples = 1;
3671 }
3672
3673 /* Required by OpenGL line rasterization.
3674 *
3675 * TODO: We should also enable perpendicular endcaps for AA lines,
3676 * but that requires implementing line stippling in the pixel
3677 * shader. SC can only do line stippling with axis-aligned
3678 * endcaps.
3679 */
3680 unsigned sc_line_cntl = S_028BDC_DX10_DIAMOND_TEST_ENA(1);
3681 unsigned sc_aa_config = 0;
3682
3683 if (coverage_samples > 1) {
3684 /* distance from the pixel center, indexed by log2(nr_samples) */
3685 static unsigned max_dist[] = {
3686 0, /* unused */
3687 4, /* 2x MSAA */
3688 6, /* 4x MSAA */
3689 7, /* 8x MSAA */
3690 8, /* 16x MSAA */
3691 };
3692 unsigned log_samples = util_logbase2(coverage_samples);
3693 unsigned log_z_samples = util_logbase2(z_samples);
3694 unsigned ps_iter_samples = si_get_ps_iter_samples(sctx);
3695 unsigned log_ps_iter_samples = util_logbase2(ps_iter_samples);
3696
3697 sc_line_cntl |= S_028BDC_EXPAND_LINE_WIDTH(1);
3698 sc_aa_config = S_028BE0_MSAA_NUM_SAMPLES(log_samples) |
3699 S_028BE0_MAX_SAMPLE_DIST(max_dist[log_samples]) |
3700 S_028BE0_MSAA_EXPOSED_SAMPLES(log_samples);
3701
3702 if (sctx->framebuffer.nr_samples > 1) {
3703 db_eqaa |= S_028804_MAX_ANCHOR_SAMPLES(log_z_samples) |
3704 S_028804_PS_ITER_SAMPLES(log_ps_iter_samples) |
3705 S_028804_MASK_EXPORT_NUM_SAMPLES(log_samples) |
3706 S_028804_ALPHA_TO_MASK_NUM_SAMPLES(log_samples);
3707 sc_mode_cntl_1 |= S_028A4C_PS_ITER_SAMPLE(ps_iter_samples > 1);
3708 } else if (sctx->smoothing_enabled) {
3709 db_eqaa |= S_028804_OVERRASTERIZATION_AMOUNT(log_samples);
3710 }
3711 }
3712
3713 unsigned initial_cdw = cs->current.cdw;
3714
3715 /* R_028BDC_PA_SC_LINE_CNTL, R_028BE0_PA_SC_AA_CONFIG */
3716 radeon_opt_set_context_reg2(sctx, R_028BDC_PA_SC_LINE_CNTL,
3717 SI_TRACKED_PA_SC_LINE_CNTL, sc_line_cntl,
3718 sc_aa_config);
3719 /* R_028804_DB_EQAA */
3720 radeon_opt_set_context_reg(sctx, R_028804_DB_EQAA, SI_TRACKED_DB_EQAA,
3721 db_eqaa);
3722 /* R_028A4C_PA_SC_MODE_CNTL_1 */
3723 radeon_opt_set_context_reg(sctx, R_028A4C_PA_SC_MODE_CNTL_1,
3724 SI_TRACKED_PA_SC_MODE_CNTL_1, sc_mode_cntl_1);
3725
3726 if (initial_cdw != cs->current.cdw) {
3727 sctx->context_roll = true;
3728
3729 /* GFX9: Flush DFSM when the AA mode changes. */
3730 if (sctx->screen->dfsm_allowed) {
3731 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
3732 radeon_emit(cs, EVENT_TYPE(V_028A90_FLUSH_DFSM) | EVENT_INDEX(0));
3733 }
3734 }
3735 }
3736
3737 void si_update_ps_iter_samples(struct si_context *sctx)
3738 {
3739 if (sctx->framebuffer.nr_samples > 1)
3740 si_mark_atom_dirty(sctx, &sctx->atoms.s.msaa_config);
3741 if (sctx->screen->dpbb_allowed)
3742 si_mark_atom_dirty(sctx, &sctx->atoms.s.dpbb_state);
3743 }
3744
3745 static void si_set_min_samples(struct pipe_context *ctx, unsigned min_samples)
3746 {
3747 struct si_context *sctx = (struct si_context *)ctx;
3748
3749 /* The hardware can only do sample shading with 2^n samples. */
3750 min_samples = util_next_power_of_two(min_samples);
3751
3752 if (sctx->ps_iter_samples == min_samples)
3753 return;
3754
3755 sctx->ps_iter_samples = min_samples;
3756 sctx->do_update_shaders = true;
3757
3758 si_update_ps_iter_samples(sctx);
3759 }
3760
3761 /*
3762 * Samplers
3763 */
3764
3765 /**
3766 * Build the sampler view descriptor for a buffer texture.
3767 * @param state 256-bit descriptor; only the high 128 bits are filled in
3768 */
3769 void
3770 si_make_buffer_descriptor(struct si_screen *screen, struct si_resource *buf,
3771 enum pipe_format format,
3772 unsigned offset, unsigned size,
3773 uint32_t *state)
3774 {
3775 const struct util_format_description *desc;
3776 unsigned stride;
3777 unsigned num_records;
3778
3779 desc = util_format_description(format);
3780 stride = desc->block.bits / 8;
3781
3782 num_records = size / stride;
3783 num_records = MIN2(num_records, (buf->b.b.width0 - offset) / stride);
3784
3785 /* The NUM_RECORDS field has a different meaning depending on the chip,
3786 * instruction type, STRIDE, and SWIZZLE_ENABLE.
3787 *
3788 * GFX6-7,10:
3789 * - If STRIDE == 0, it's in byte units.
3790 * - If STRIDE != 0, it's in units of STRIDE, used with inst.IDXEN.
3791 *
3792 * GFX8:
3793 * - For SMEM and STRIDE == 0, it's in byte units.
3794 * - For SMEM and STRIDE != 0, it's in units of STRIDE.
3795 * - For VMEM and STRIDE == 0 or SWIZZLE_ENABLE == 0, it's in byte units.
3796 * - For VMEM and STRIDE != 0 and SWIZZLE_ENABLE == 1, it's in units of STRIDE.
3797 * NOTE: There is incompatibility between VMEM and SMEM opcodes due to SWIZZLE_-
3798 * ENABLE. The workaround is to set STRIDE = 0 if SWIZZLE_ENABLE == 0 when
3799 * using SMEM. This can be done in the shader by clearing STRIDE with s_and.
3800 * That way the same descriptor can be used by both SMEM and VMEM.
3801 *
3802 * GFX9:
3803 * - For SMEM and STRIDE == 0, it's in byte units.
3804 * - For SMEM and STRIDE != 0, it's in units of STRIDE.
3805 * - For VMEM and inst.IDXEN == 0 or STRIDE == 0, it's in byte units.
3806 * - For VMEM and inst.IDXEN == 1 and STRIDE != 0, it's in units of STRIDE.
3807 */
3808 if (screen->info.chip_class == GFX9 && HAVE_LLVM < 0x0800)
3809 /* When vindex == 0, LLVM < 8.0 sets IDXEN = 0, thus changing units
3810 * from STRIDE to bytes. This works around it by setting
3811 * NUM_RECORDS to at least the size of one element, so that
3812 * the first element is readable when IDXEN == 0.
3813 */
3814 num_records = num_records ? MAX2(num_records, stride) : 0;
3815 else if (screen->info.chip_class == GFX8)
3816 num_records *= stride;
3817
3818 state[4] = 0;
3819 state[5] = S_008F04_STRIDE(stride);
3820 state[6] = num_records;
3821 state[7] = S_008F0C_DST_SEL_X(si_map_swizzle(desc->swizzle[0])) |
3822 S_008F0C_DST_SEL_Y(si_map_swizzle(desc->swizzle[1])) |
3823 S_008F0C_DST_SEL_Z(si_map_swizzle(desc->swizzle[2])) |
3824 S_008F0C_DST_SEL_W(si_map_swizzle(desc->swizzle[3]));
3825
3826 if (screen->info.chip_class >= GFX10) {
3827 const struct gfx10_format *fmt = &gfx10_format_table[format];
3828
3829 /* OOB_SELECT chooses the out-of-bounds check:
3830 * - 0: (index >= NUM_RECORDS) || (offset >= STRIDE)
3831 * - 1: index >= NUM_RECORDS
3832 * - 2: NUM_RECORDS == 0
3833 * - 3: if SWIZZLE_ENABLE == 0: offset >= NUM_RECORDS
3834 * else: swizzle_address >= NUM_RECORDS
3835 */
3836 state[7] |= S_008F0C_FORMAT(fmt->img_format) |
3837 S_008F0C_OOB_SELECT(0) |
3838 S_008F0C_RESOURCE_LEVEL(1);
3839 } else {
3840 int first_non_void;
3841 unsigned num_format, data_format;
3842
3843 first_non_void = util_format_get_first_non_void_channel(format);
3844 num_format = si_translate_buffer_numformat(&screen->b, desc, first_non_void);
3845 data_format = si_translate_buffer_dataformat(&screen->b, desc, first_non_void);
3846
3847 state[7] |= S_008F0C_NUM_FORMAT(num_format) |
3848 S_008F0C_DATA_FORMAT(data_format);
3849 }
3850 }
3851
3852 static unsigned gfx9_border_color_swizzle(const unsigned char swizzle[4])
3853 {
3854 unsigned bc_swizzle = V_008F20_BC_SWIZZLE_XYZW;
3855
3856 if (swizzle[3] == PIPE_SWIZZLE_X) {
3857 /* For the pre-defined border color values (white, opaque
3858 * black, transparent black), the only thing that matters is
3859 * that the alpha channel winds up in the correct place
3860 * (because the RGB channels are all the same) so either of
3861 * these enumerations will work.
3862 */
3863 if (swizzle[2] == PIPE_SWIZZLE_Y)
3864 bc_swizzle = V_008F20_BC_SWIZZLE_WZYX;
3865 else
3866 bc_swizzle = V_008F20_BC_SWIZZLE_WXYZ;
3867 } else if (swizzle[0] == PIPE_SWIZZLE_X) {
3868 if (swizzle[1] == PIPE_SWIZZLE_Y)
3869 bc_swizzle = V_008F20_BC_SWIZZLE_XYZW;
3870 else
3871 bc_swizzle = V_008F20_BC_SWIZZLE_XWYZ;
3872 } else if (swizzle[1] == PIPE_SWIZZLE_X) {
3873 bc_swizzle = V_008F20_BC_SWIZZLE_YXWZ;
3874 } else if (swizzle[2] == PIPE_SWIZZLE_X) {
3875 bc_swizzle = V_008F20_BC_SWIZZLE_ZYXW;
3876 }
3877
3878 return bc_swizzle;
3879 }
3880
3881 /**
3882 * Build the sampler view descriptor for a texture.
3883 */
3884 static void
3885 gfx10_make_texture_descriptor(struct si_screen *screen,
3886 struct si_texture *tex,
3887 bool sampler,
3888 enum pipe_texture_target target,
3889 enum pipe_format pipe_format,
3890 const unsigned char state_swizzle[4],
3891 unsigned first_level, unsigned last_level,
3892 unsigned first_layer, unsigned last_layer,
3893 unsigned width, unsigned height, unsigned depth,
3894 uint32_t *state,
3895 uint32_t *fmask_state)
3896 {
3897 struct pipe_resource *res = &tex->buffer.b.b;
3898 const struct util_format_description *desc;
3899 unsigned img_format;
3900 unsigned char swizzle[4];
3901 unsigned type;
3902 uint64_t va;
3903
3904 desc = util_format_description(pipe_format);
3905 img_format = gfx10_format_table[pipe_format].img_format;
3906
3907 if (desc->colorspace == UTIL_FORMAT_COLORSPACE_ZS) {
3908 const unsigned char swizzle_xxxx[4] = {0, 0, 0, 0};
3909 const unsigned char swizzle_yyyy[4] = {1, 1, 1, 1};
3910 const unsigned char swizzle_wwww[4] = {3, 3, 3, 3};
3911 bool is_stencil = false;
3912
3913 switch (pipe_format) {
3914 case PIPE_FORMAT_S8_UINT_Z24_UNORM:
3915 case PIPE_FORMAT_X32_S8X24_UINT:
3916 case PIPE_FORMAT_X8Z24_UNORM:
3917 util_format_compose_swizzles(swizzle_yyyy, state_swizzle, swizzle);
3918 is_stencil = true;
3919 break;
3920 case PIPE_FORMAT_X24S8_UINT:
3921 /*
3922 * X24S8 is implemented as an 8_8_8_8 data format, to
3923 * fix texture gathers. This affects at least
3924 * GL45-CTS.texture_cube_map_array.sampling on GFX8.
3925 */
3926 util_format_compose_swizzles(swizzle_wwww, state_swizzle, swizzle);
3927 is_stencil = true;
3928 break;
3929 default:
3930 util_format_compose_swizzles(swizzle_xxxx, state_swizzle, swizzle);
3931 is_stencil = pipe_format == PIPE_FORMAT_S8_UINT;
3932 }
3933
3934 if (tex->upgraded_depth && !is_stencil) {
3935 assert(img_format == V_008F0C_IMG_FORMAT_32_FLOAT);
3936 img_format = V_008F0C_IMG_FORMAT_32_FLOAT_CLAMP;
3937 }
3938 } else {
3939 util_format_compose_swizzles(desc->swizzle, state_swizzle, swizzle);
3940 }
3941
3942 if (!sampler &&
3943 (res->target == PIPE_TEXTURE_CUBE ||
3944 res->target == PIPE_TEXTURE_CUBE_ARRAY)) {
3945 /* For the purpose of shader images, treat cube maps as 2D
3946 * arrays.
3947 */
3948 type = V_008F1C_SQ_RSRC_IMG_2D_ARRAY;
3949 } else {
3950 type = si_tex_dim(screen, tex, target, res->nr_samples);
3951 }
3952
3953 if (type == V_008F1C_SQ_RSRC_IMG_1D_ARRAY) {
3954 height = 1;
3955 depth = res->array_size;
3956 } else if (type == V_008F1C_SQ_RSRC_IMG_2D_ARRAY ||
3957 type == V_008F1C_SQ_RSRC_IMG_2D_MSAA_ARRAY) {
3958 if (sampler || res->target != PIPE_TEXTURE_3D)
3959 depth = res->array_size;
3960 } else if (type == V_008F1C_SQ_RSRC_IMG_CUBE)
3961 depth = res->array_size / 6;
3962
3963 state[0] = 0;
3964 state[1] = S_00A004_FORMAT(img_format) |
3965 S_00A004_WIDTH_LO(width - 1);
3966 state[2] = S_00A008_WIDTH_HI((width - 1) >> 2) |
3967 S_00A008_HEIGHT(height - 1) |
3968 S_00A008_RESOURCE_LEVEL(1);
3969 state[3] = S_00A00C_DST_SEL_X(si_map_swizzle(swizzle[0])) |
3970 S_00A00C_DST_SEL_Y(si_map_swizzle(swizzle[1])) |
3971 S_00A00C_DST_SEL_Z(si_map_swizzle(swizzle[2])) |
3972 S_00A00C_DST_SEL_W(si_map_swizzle(swizzle[3])) |
3973 S_00A00C_BASE_LEVEL(res->nr_samples > 1 ?
3974 0 : first_level) |
3975 S_00A00C_LAST_LEVEL(res->nr_samples > 1 ?
3976 util_logbase2(res->nr_samples) :
3977 last_level) |
3978 S_00A00C_BC_SWIZZLE(gfx9_border_color_swizzle(desc->swizzle)) |
3979 S_00A00C_TYPE(type);
3980 /* Depth is the the last accessible layer on gfx9+. The hw doesn't need
3981 * to know the total number of layers.
3982 */
3983 state[4] = S_00A010_DEPTH((type == V_008F1C_SQ_RSRC_IMG_3D && sampler)
3984 ? depth - 1 : last_layer) |
3985 S_00A010_BASE_ARRAY(first_layer);
3986 state[5] = S_00A014_ARRAY_PITCH(!!(type == V_008F1C_SQ_RSRC_IMG_3D && !sampler)) |
3987 S_00A014_MAX_MIP(res->nr_samples > 1 ?
3988 util_logbase2(res->nr_samples) :
3989 tex->buffer.b.b.last_level) |
3990 S_00A014_PERF_MOD(4);
3991 state[6] = 0;
3992 state[7] = 0;
3993
3994 if (tex->dcc_offset) {
3995 state[6] |= S_00A018_MAX_UNCOMPRESSED_BLOCK_SIZE(V_028C78_MAX_BLOCK_SIZE_256B) |
3996 S_00A018_MAX_COMPRESSED_BLOCK_SIZE(V_028C78_MAX_BLOCK_SIZE_128B) |
3997 S_00A018_ALPHA_IS_ON_MSB(vi_alpha_is_on_msb(screen, pipe_format));
3998 }
3999
4000 /* Initialize the sampler view for FMASK. */
4001 if (tex->fmask_offset) {
4002 uint32_t format;
4003
4004 va = tex->buffer.gpu_address + tex->fmask_offset;
4005
4006 #define FMASK(s,f) (((unsigned)(MAX2(1, s)) * 16) + (MAX2(1, f)))
4007 switch (FMASK(res->nr_samples, res->nr_storage_samples)) {
4008 case FMASK(2,1):
4009 format = V_008F0C_IMG_FORMAT_FMASK8_S2_F1;
4010 break;
4011 case FMASK(2,2):
4012 format = V_008F0C_IMG_FORMAT_FMASK8_S2_F2;
4013 break;
4014 case FMASK(4,1):
4015 format = V_008F0C_IMG_FORMAT_FMASK8_S4_F1;
4016 break;
4017 case FMASK(4,2):
4018 format = V_008F0C_IMG_FORMAT_FMASK8_S4_F2;
4019 break;
4020 case FMASK(4,4):
4021 format = V_008F0C_IMG_FORMAT_FMASK8_S4_F4;
4022 break;
4023 case FMASK(8,1):
4024 format = V_008F0C_IMG_FORMAT_FMASK8_S8_F1;
4025 break;
4026 case FMASK(8,2):
4027 format = V_008F0C_IMG_FORMAT_FMASK16_S8_F2;
4028 break;
4029 case FMASK(8,4):
4030 format = V_008F0C_IMG_FORMAT_FMASK32_S8_F4;
4031 break;
4032 case FMASK(8,8):
4033 format = V_008F0C_IMG_FORMAT_FMASK32_S8_F8;
4034 break;
4035 case FMASK(16,1):
4036 format = V_008F0C_IMG_FORMAT_FMASK16_S16_F1;
4037 break;
4038 case FMASK(16,2):
4039 format = V_008F0C_IMG_FORMAT_FMASK32_S16_F2;
4040 break;
4041 case FMASK(16,4):
4042 format = V_008F0C_IMG_FORMAT_FMASK64_S16_F4;
4043 break;
4044 case FMASK(16,8):
4045 format = V_008F0C_IMG_FORMAT_FMASK64_S16_F8;
4046 break;
4047 default:
4048 unreachable("invalid nr_samples");
4049 }
4050 #undef FMASK
4051 fmask_state[0] = (va >> 8) | tex->surface.fmask_tile_swizzle;
4052 fmask_state[1] = S_00A004_BASE_ADDRESS_HI(va >> 40) |
4053 S_00A004_FORMAT(format) |
4054 S_00A004_WIDTH_LO(width - 1);
4055 fmask_state[2] = S_00A008_WIDTH_HI((width - 1) >> 2) |
4056 S_00A008_HEIGHT(height - 1) |
4057 S_00A008_RESOURCE_LEVEL(1);
4058 fmask_state[3] = S_00A00C_DST_SEL_X(V_008F1C_SQ_SEL_X) |
4059 S_00A00C_DST_SEL_Y(V_008F1C_SQ_SEL_X) |
4060 S_00A00C_DST_SEL_Z(V_008F1C_SQ_SEL_X) |
4061 S_00A00C_DST_SEL_W(V_008F1C_SQ_SEL_X) |
4062 S_00A00C_SW_MODE(tex->surface.u.gfx9.fmask.swizzle_mode) |
4063 S_00A00C_TYPE(si_tex_dim(screen, tex, target, 0));
4064 fmask_state[4] = S_00A010_DEPTH(last_layer) |
4065 S_00A010_BASE_ARRAY(first_layer);
4066 fmask_state[5] = 0;
4067 fmask_state[6] = S_00A018_META_PIPE_ALIGNED(tex->surface.u.gfx9.cmask.pipe_aligned);
4068 fmask_state[7] = 0;
4069 }
4070 }
4071
4072 /**
4073 * Build the sampler view descriptor for a texture (SI-GFX9).
4074 */
4075 static void
4076 si_make_texture_descriptor(struct si_screen *screen,
4077 struct si_texture *tex,
4078 bool sampler,
4079 enum pipe_texture_target target,
4080 enum pipe_format pipe_format,
4081 const unsigned char state_swizzle[4],
4082 unsigned first_level, unsigned last_level,
4083 unsigned first_layer, unsigned last_layer,
4084 unsigned width, unsigned height, unsigned depth,
4085 uint32_t *state,
4086 uint32_t *fmask_state)
4087 {
4088 struct pipe_resource *res = &tex->buffer.b.b;
4089 const struct util_format_description *desc;
4090 unsigned char swizzle[4];
4091 int first_non_void;
4092 unsigned num_format, data_format, type, num_samples;
4093 uint64_t va;
4094
4095 desc = util_format_description(pipe_format);
4096
4097 num_samples = desc->colorspace == UTIL_FORMAT_COLORSPACE_ZS ?
4098 MAX2(1, res->nr_samples) :
4099 MAX2(1, res->nr_storage_samples);
4100
4101 if (desc->colorspace == UTIL_FORMAT_COLORSPACE_ZS) {
4102 const unsigned char swizzle_xxxx[4] = {0, 0, 0, 0};
4103 const unsigned char swizzle_yyyy[4] = {1, 1, 1, 1};
4104 const unsigned char swizzle_wwww[4] = {3, 3, 3, 3};
4105
4106 switch (pipe_format) {
4107 case PIPE_FORMAT_S8_UINT_Z24_UNORM:
4108 case PIPE_FORMAT_X32_S8X24_UINT:
4109 case PIPE_FORMAT_X8Z24_UNORM:
4110 util_format_compose_swizzles(swizzle_yyyy, state_swizzle, swizzle);
4111 break;
4112 case PIPE_FORMAT_X24S8_UINT:
4113 /*
4114 * X24S8 is implemented as an 8_8_8_8 data format, to
4115 * fix texture gathers. This affects at least
4116 * GL45-CTS.texture_cube_map_array.sampling on GFX8.
4117 */
4118 if (screen->info.chip_class <= GFX8)
4119 util_format_compose_swizzles(swizzle_wwww, state_swizzle, swizzle);
4120 else
4121 util_format_compose_swizzles(swizzle_yyyy, state_swizzle, swizzle);
4122 break;
4123 default:
4124 util_format_compose_swizzles(swizzle_xxxx, state_swizzle, swizzle);
4125 }
4126 } else {
4127 util_format_compose_swizzles(desc->swizzle, state_swizzle, swizzle);
4128 }
4129
4130 first_non_void = util_format_get_first_non_void_channel(pipe_format);
4131
4132 switch (pipe_format) {
4133 case PIPE_FORMAT_S8_UINT_Z24_UNORM:
4134 num_format = V_008F14_IMG_NUM_FORMAT_UNORM;
4135 break;
4136 default:
4137 if (first_non_void < 0) {
4138 if (util_format_is_compressed(pipe_format)) {
4139 switch (pipe_format) {
4140 case PIPE_FORMAT_DXT1_SRGB:
4141 case PIPE_FORMAT_DXT1_SRGBA:
4142 case PIPE_FORMAT_DXT3_SRGBA:
4143 case PIPE_FORMAT_DXT5_SRGBA:
4144 case PIPE_FORMAT_BPTC_SRGBA:
4145 case PIPE_FORMAT_ETC2_SRGB8:
4146 case PIPE_FORMAT_ETC2_SRGB8A1:
4147 case PIPE_FORMAT_ETC2_SRGBA8:
4148 num_format = V_008F14_IMG_NUM_FORMAT_SRGB;
4149 break;
4150 case PIPE_FORMAT_RGTC1_SNORM:
4151 case PIPE_FORMAT_LATC1_SNORM:
4152 case PIPE_FORMAT_RGTC2_SNORM:
4153 case PIPE_FORMAT_LATC2_SNORM:
4154 case PIPE_FORMAT_ETC2_R11_SNORM:
4155 case PIPE_FORMAT_ETC2_RG11_SNORM:
4156 /* implies float, so use SNORM/UNORM to determine
4157 whether data is signed or not */
4158 case PIPE_FORMAT_BPTC_RGB_FLOAT:
4159 num_format = V_008F14_IMG_NUM_FORMAT_SNORM;
4160 break;
4161 default:
4162 num_format = V_008F14_IMG_NUM_FORMAT_UNORM;
4163 break;
4164 }
4165 } else if (desc->layout == UTIL_FORMAT_LAYOUT_SUBSAMPLED) {
4166 num_format = V_008F14_IMG_NUM_FORMAT_UNORM;
4167 } else {
4168 num_format = V_008F14_IMG_NUM_FORMAT_FLOAT;
4169 }
4170 } else if (desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB) {
4171 num_format = V_008F14_IMG_NUM_FORMAT_SRGB;
4172 } else {
4173 num_format = V_008F14_IMG_NUM_FORMAT_UNORM;
4174
4175 switch (desc->channel[first_non_void].type) {
4176 case UTIL_FORMAT_TYPE_FLOAT:
4177 num_format = V_008F14_IMG_NUM_FORMAT_FLOAT;
4178 break;
4179 case UTIL_FORMAT_TYPE_SIGNED:
4180 if (desc->channel[first_non_void].normalized)
4181 num_format = V_008F14_IMG_NUM_FORMAT_SNORM;
4182 else if (desc->channel[first_non_void].pure_integer)
4183 num_format = V_008F14_IMG_NUM_FORMAT_SINT;
4184 else
4185 num_format = V_008F14_IMG_NUM_FORMAT_SSCALED;
4186 break;
4187 case UTIL_FORMAT_TYPE_UNSIGNED:
4188 if (desc->channel[first_non_void].normalized)
4189 num_format = V_008F14_IMG_NUM_FORMAT_UNORM;
4190 else if (desc->channel[first_non_void].pure_integer)
4191 num_format = V_008F14_IMG_NUM_FORMAT_UINT;
4192 else
4193 num_format = V_008F14_IMG_NUM_FORMAT_USCALED;
4194 }
4195 }
4196 }
4197
4198 data_format = si_translate_texformat(&screen->b, pipe_format, desc, first_non_void);
4199 if (data_format == ~0) {
4200 data_format = 0;
4201 }
4202
4203 /* S8 with Z32 HTILE needs a special format. */
4204 if (screen->info.chip_class == GFX9 &&
4205 pipe_format == PIPE_FORMAT_S8_UINT &&
4206 tex->tc_compatible_htile)
4207 data_format = V_008F14_IMG_DATA_FORMAT_S8_32;
4208
4209 if (!sampler &&
4210 (res->target == PIPE_TEXTURE_CUBE ||
4211 res->target == PIPE_TEXTURE_CUBE_ARRAY ||
4212 (screen->info.chip_class <= GFX8 &&
4213 res->target == PIPE_TEXTURE_3D))) {
4214 /* For the purpose of shader images, treat cube maps and 3D
4215 * textures as 2D arrays. For 3D textures, the address
4216 * calculations for mipmaps are different, so we rely on the
4217 * caller to effectively disable mipmaps.
4218 */
4219 type = V_008F1C_SQ_RSRC_IMG_2D_ARRAY;
4220
4221 assert(res->target != PIPE_TEXTURE_3D || (first_level == 0 && last_level == 0));
4222 } else {
4223 type = si_tex_dim(screen, tex, target, num_samples);
4224 }
4225
4226 if (type == V_008F1C_SQ_RSRC_IMG_1D_ARRAY) {
4227 height = 1;
4228 depth = res->array_size;
4229 } else if (type == V_008F1C_SQ_RSRC_IMG_2D_ARRAY ||
4230 type == V_008F1C_SQ_RSRC_IMG_2D_MSAA_ARRAY) {
4231 if (sampler || res->target != PIPE_TEXTURE_3D)
4232 depth = res->array_size;
4233 } else if (type == V_008F1C_SQ_RSRC_IMG_CUBE)
4234 depth = res->array_size / 6;
4235
4236 state[0] = 0;
4237 state[1] = (S_008F14_DATA_FORMAT(data_format) |
4238 S_008F14_NUM_FORMAT(num_format));
4239 state[2] = (S_008F18_WIDTH(width - 1) |
4240 S_008F18_HEIGHT(height - 1) |
4241 S_008F18_PERF_MOD(4));
4242 state[3] = (S_008F1C_DST_SEL_X(si_map_swizzle(swizzle[0])) |
4243 S_008F1C_DST_SEL_Y(si_map_swizzle(swizzle[1])) |
4244 S_008F1C_DST_SEL_Z(si_map_swizzle(swizzle[2])) |
4245 S_008F1C_DST_SEL_W(si_map_swizzle(swizzle[3])) |
4246 S_008F1C_BASE_LEVEL(num_samples > 1 ? 0 : first_level) |
4247 S_008F1C_LAST_LEVEL(num_samples > 1 ?
4248 util_logbase2(num_samples) :
4249 last_level) |
4250 S_008F1C_TYPE(type));
4251 state[4] = 0;
4252 state[5] = S_008F24_BASE_ARRAY(first_layer);
4253 state[6] = 0;
4254 state[7] = 0;
4255
4256 if (screen->info.chip_class == GFX9) {
4257 unsigned bc_swizzle = gfx9_border_color_swizzle(desc->swizzle);
4258
4259 /* Depth is the the last accessible layer on Gfx9.
4260 * The hw doesn't need to know the total number of layers.
4261 */
4262 if (type == V_008F1C_SQ_RSRC_IMG_3D)
4263 state[4] |= S_008F20_DEPTH(depth - 1);
4264 else
4265 state[4] |= S_008F20_DEPTH(last_layer);
4266
4267 state[4] |= S_008F20_BC_SWIZZLE(bc_swizzle);
4268 state[5] |= S_008F24_MAX_MIP(num_samples > 1 ?
4269 util_logbase2(num_samples) :
4270 tex->buffer.b.b.last_level);
4271 } else {
4272 state[3] |= S_008F1C_POW2_PAD(res->last_level > 0);
4273 state[4] |= S_008F20_DEPTH(depth - 1);
4274 state[5] |= S_008F24_LAST_ARRAY(last_layer);
4275 }
4276
4277 if (tex->dcc_offset) {
4278 state[6] = S_008F28_ALPHA_IS_ON_MSB(vi_alpha_is_on_msb(screen, pipe_format));
4279 } else {
4280 /* The last dword is unused by hw. The shader uses it to clear
4281 * bits in the first dword of sampler state.
4282 */
4283 if (screen->info.chip_class <= GFX7 && res->nr_samples <= 1) {
4284 if (first_level == last_level)
4285 state[7] = C_008F30_MAX_ANISO_RATIO;
4286 else
4287 state[7] = 0xffffffff;
4288 }
4289 }
4290
4291 /* Initialize the sampler view for FMASK. */
4292 if (tex->fmask_offset) {
4293 uint32_t data_format, num_format;
4294
4295 va = tex->buffer.gpu_address + tex->fmask_offset;
4296
4297 #define FMASK(s,f) (((unsigned)(MAX2(1, s)) * 16) + (MAX2(1, f)))
4298 if (screen->info.chip_class == GFX9) {
4299 data_format = V_008F14_IMG_DATA_FORMAT_FMASK;
4300 switch (FMASK(res->nr_samples, res->nr_storage_samples)) {
4301 case FMASK(2,1):
4302 num_format = V_008F14_IMG_FMASK_8_2_1;
4303 break;
4304 case FMASK(2,2):
4305 num_format = V_008F14_IMG_FMASK_8_2_2;
4306 break;
4307 case FMASK(4,1):
4308 num_format = V_008F14_IMG_FMASK_8_4_1;
4309 break;
4310 case FMASK(4,2):
4311 num_format = V_008F14_IMG_FMASK_8_4_2;
4312 break;
4313 case FMASK(4,4):
4314 num_format = V_008F14_IMG_FMASK_8_4_4;
4315 break;
4316 case FMASK(8,1):
4317 num_format = V_008F14_IMG_FMASK_8_8_1;
4318 break;
4319 case FMASK(8,2):
4320 num_format = V_008F14_IMG_FMASK_16_8_2;
4321 break;
4322 case FMASK(8,4):
4323 num_format = V_008F14_IMG_FMASK_32_8_4;
4324 break;
4325 case FMASK(8,8):
4326 num_format = V_008F14_IMG_FMASK_32_8_8;
4327 break;
4328 case FMASK(16,1):
4329 num_format = V_008F14_IMG_FMASK_16_16_1;
4330 break;
4331 case FMASK(16,2):
4332 num_format = V_008F14_IMG_FMASK_32_16_2;
4333 break;
4334 case FMASK(16,4):
4335 num_format = V_008F14_IMG_FMASK_64_16_4;
4336 break;
4337 case FMASK(16,8):
4338 num_format = V_008F14_IMG_FMASK_64_16_8;
4339 break;
4340 default:
4341 unreachable("invalid nr_samples");
4342 }
4343 } else {
4344 switch (FMASK(res->nr_samples, res->nr_storage_samples)) {
4345 case FMASK(2,1):
4346 data_format = V_008F14_IMG_DATA_FORMAT_FMASK8_S2_F1;
4347 break;
4348 case FMASK(2,2):
4349 data_format = V_008F14_IMG_DATA_FORMAT_FMASK8_S2_F2;
4350 break;
4351 case FMASK(4,1):
4352 data_format = V_008F14_IMG_DATA_FORMAT_FMASK8_S4_F1;
4353 break;
4354 case FMASK(4,2):
4355 data_format = V_008F14_IMG_DATA_FORMAT_FMASK8_S4_F2;
4356 break;
4357 case FMASK(4,4):
4358 data_format = V_008F14_IMG_DATA_FORMAT_FMASK8_S4_F4;
4359 break;
4360 case FMASK(8,1):
4361 data_format = V_008F14_IMG_DATA_FORMAT_FMASK8_S8_F1;
4362 break;
4363 case FMASK(8,2):
4364 data_format = V_008F14_IMG_DATA_FORMAT_FMASK16_S8_F2;
4365 break;
4366 case FMASK(8,4):
4367 data_format = V_008F14_IMG_DATA_FORMAT_FMASK32_S8_F4;
4368 break;
4369 case FMASK(8,8):
4370 data_format = V_008F14_IMG_DATA_FORMAT_FMASK32_S8_F8;
4371 break;
4372 case FMASK(16,1):
4373 data_format = V_008F14_IMG_DATA_FORMAT_FMASK16_S16_F1;
4374 break;
4375 case FMASK(16,2):
4376 data_format = V_008F14_IMG_DATA_FORMAT_FMASK32_S16_F2;
4377 break;
4378 case FMASK(16,4):
4379 data_format = V_008F14_IMG_DATA_FORMAT_FMASK64_S16_F4;
4380 break;
4381 case FMASK(16,8):
4382 data_format = V_008F14_IMG_DATA_FORMAT_FMASK64_S16_F8;
4383 break;
4384 default:
4385 unreachable("invalid nr_samples");
4386 }
4387 num_format = V_008F14_IMG_NUM_FORMAT_UINT;
4388 }
4389 #undef FMASK
4390
4391 fmask_state[0] = (va >> 8) | tex->surface.fmask_tile_swizzle;
4392 fmask_state[1] = S_008F14_BASE_ADDRESS_HI(va >> 40) |
4393 S_008F14_DATA_FORMAT(data_format) |
4394 S_008F14_NUM_FORMAT(num_format);
4395 fmask_state[2] = S_008F18_WIDTH(width - 1) |
4396 S_008F18_HEIGHT(height - 1);
4397 fmask_state[3] = S_008F1C_DST_SEL_X(V_008F1C_SQ_SEL_X) |
4398 S_008F1C_DST_SEL_Y(V_008F1C_SQ_SEL_X) |
4399 S_008F1C_DST_SEL_Z(V_008F1C_SQ_SEL_X) |
4400 S_008F1C_DST_SEL_W(V_008F1C_SQ_SEL_X) |
4401 S_008F1C_TYPE(si_tex_dim(screen, tex, target, 0));
4402 fmask_state[4] = 0;
4403 fmask_state[5] = S_008F24_BASE_ARRAY(first_layer);
4404 fmask_state[6] = 0;
4405 fmask_state[7] = 0;
4406
4407 if (screen->info.chip_class == GFX9) {
4408 fmask_state[3] |= S_008F1C_SW_MODE(tex->surface.u.gfx9.fmask.swizzle_mode);
4409 fmask_state[4] |= S_008F20_DEPTH(last_layer) |
4410 S_008F20_PITCH(tex->surface.u.gfx9.fmask.epitch);
4411 fmask_state[5] |= S_008F24_META_PIPE_ALIGNED(tex->surface.u.gfx9.cmask.pipe_aligned) |
4412 S_008F24_META_RB_ALIGNED(tex->surface.u.gfx9.cmask.rb_aligned);
4413 } else {
4414 fmask_state[3] |= S_008F1C_TILING_INDEX(tex->surface.u.legacy.fmask.tiling_index);
4415 fmask_state[4] |= S_008F20_DEPTH(depth - 1) |
4416 S_008F20_PITCH(tex->surface.u.legacy.fmask.pitch_in_pixels - 1);
4417 fmask_state[5] |= S_008F24_LAST_ARRAY(last_layer);
4418 }
4419 }
4420 }
4421
4422 /**
4423 * Create a sampler view.
4424 *
4425 * @param ctx context
4426 * @param texture texture
4427 * @param state sampler view template
4428 * @param width0 width0 override (for compressed textures as int)
4429 * @param height0 height0 override (for compressed textures as int)
4430 * @param force_level set the base address to the level (for compressed textures)
4431 */
4432 struct pipe_sampler_view *
4433 si_create_sampler_view_custom(struct pipe_context *ctx,
4434 struct pipe_resource *texture,
4435 const struct pipe_sampler_view *state,
4436 unsigned width0, unsigned height0,
4437 unsigned force_level)
4438 {
4439 struct si_context *sctx = (struct si_context*)ctx;
4440 struct si_sampler_view *view = CALLOC_STRUCT(si_sampler_view);
4441 struct si_texture *tex = (struct si_texture*)texture;
4442 unsigned base_level, first_level, last_level;
4443 unsigned char state_swizzle[4];
4444 unsigned height, depth, width;
4445 unsigned last_layer = state->u.tex.last_layer;
4446 enum pipe_format pipe_format;
4447 const struct legacy_surf_level *surflevel;
4448
4449 if (!view)
4450 return NULL;
4451
4452 /* initialize base object */
4453 view->base = *state;
4454 view->base.texture = NULL;
4455 view->base.reference.count = 1;
4456 view->base.context = ctx;
4457
4458 assert(texture);
4459 pipe_resource_reference(&view->base.texture, texture);
4460
4461 if (state->format == PIPE_FORMAT_X24S8_UINT ||
4462 state->format == PIPE_FORMAT_S8X24_UINT ||
4463 state->format == PIPE_FORMAT_X32_S8X24_UINT ||
4464 state->format == PIPE_FORMAT_S8_UINT)
4465 view->is_stencil_sampler = true;
4466
4467 /* Buffer resource. */
4468 if (texture->target == PIPE_BUFFER) {
4469 si_make_buffer_descriptor(sctx->screen,
4470 si_resource(texture),
4471 state->format,
4472 state->u.buf.offset,
4473 state->u.buf.size,
4474 view->state);
4475 return &view->base;
4476 }
4477
4478 state_swizzle[0] = state->swizzle_r;
4479 state_swizzle[1] = state->swizzle_g;
4480 state_swizzle[2] = state->swizzle_b;
4481 state_swizzle[3] = state->swizzle_a;
4482
4483 base_level = 0;
4484 first_level = state->u.tex.first_level;
4485 last_level = state->u.tex.last_level;
4486 width = width0;
4487 height = height0;
4488 depth = texture->depth0;
4489
4490 if (sctx->chip_class <= GFX8 && force_level) {
4491 assert(force_level == first_level &&
4492 force_level == last_level);
4493 base_level = force_level;
4494 first_level = 0;
4495 last_level = 0;
4496 width = u_minify(width, force_level);
4497 height = u_minify(height, force_level);
4498 depth = u_minify(depth, force_level);
4499 }
4500
4501 /* This is not needed if state trackers set last_layer correctly. */
4502 if (state->target == PIPE_TEXTURE_1D ||
4503 state->target == PIPE_TEXTURE_2D ||
4504 state->target == PIPE_TEXTURE_RECT ||
4505 state->target == PIPE_TEXTURE_CUBE)
4506 last_layer = state->u.tex.first_layer;
4507
4508 /* Texturing with separate depth and stencil. */
4509 pipe_format = state->format;
4510
4511 /* Depth/stencil texturing sometimes needs separate texture. */
4512 if (tex->is_depth && !si_can_sample_zs(tex, view->is_stencil_sampler)) {
4513 if (!tex->flushed_depth_texture &&
4514 !si_init_flushed_depth_texture(ctx, texture)) {
4515 pipe_resource_reference(&view->base.texture, NULL);
4516 FREE(view);
4517 return NULL;
4518 }
4519
4520 assert(tex->flushed_depth_texture);
4521
4522 /* Override format for the case where the flushed texture
4523 * contains only Z or only S.
4524 */
4525 if (tex->flushed_depth_texture->buffer.b.b.format != tex->buffer.b.b.format)
4526 pipe_format = tex->flushed_depth_texture->buffer.b.b.format;
4527
4528 tex = tex->flushed_depth_texture;
4529 }
4530
4531 surflevel = tex->surface.u.legacy.level;
4532
4533 if (tex->db_compatible) {
4534 if (!view->is_stencil_sampler)
4535 pipe_format = tex->db_render_format;
4536
4537 switch (pipe_format) {
4538 case PIPE_FORMAT_Z32_FLOAT_S8X24_UINT:
4539 pipe_format = PIPE_FORMAT_Z32_FLOAT;
4540 break;
4541 case PIPE_FORMAT_X8Z24_UNORM:
4542 case PIPE_FORMAT_S8_UINT_Z24_UNORM:
4543 /* Z24 is always stored like this for DB
4544 * compatibility.
4545 */
4546 pipe_format = PIPE_FORMAT_Z24X8_UNORM;
4547 break;
4548 case PIPE_FORMAT_X24S8_UINT:
4549 case PIPE_FORMAT_S8X24_UINT:
4550 case PIPE_FORMAT_X32_S8X24_UINT:
4551 pipe_format = PIPE_FORMAT_S8_UINT;
4552 surflevel = tex->surface.u.legacy.stencil_level;
4553 break;
4554 default:;
4555 }
4556 }
4557
4558 view->dcc_incompatible =
4559 vi_dcc_formats_are_incompatible(texture,
4560 state->u.tex.first_level,
4561 state->format);
4562
4563 sctx->screen->make_texture_descriptor(sctx->screen, tex, true,
4564 state->target, pipe_format, state_swizzle,
4565 first_level, last_level,
4566 state->u.tex.first_layer, last_layer,
4567 width, height, depth,
4568 view->state, view->fmask_state);
4569
4570 const struct util_format_description *desc = util_format_description(pipe_format);
4571 view->is_integer = false;
4572
4573 for (unsigned i = 0; i < desc->nr_channels; ++i) {
4574 if (desc->channel[i].type == UTIL_FORMAT_TYPE_VOID)
4575 continue;
4576
4577 /* Whether the number format is {U,S}{SCALED,INT} */
4578 view->is_integer =
4579 (desc->channel[i].type == UTIL_FORMAT_TYPE_UNSIGNED ||
4580 desc->channel[i].type == UTIL_FORMAT_TYPE_SIGNED) &&
4581 (desc->channel[i].pure_integer || !desc->channel[i].normalized);
4582 break;
4583 }
4584
4585 view->base_level_info = &surflevel[base_level];
4586 view->base_level = base_level;
4587 view->block_width = util_format_get_blockwidth(pipe_format);
4588 return &view->base;
4589 }
4590
4591 static struct pipe_sampler_view *
4592 si_create_sampler_view(struct pipe_context *ctx,
4593 struct pipe_resource *texture,
4594 const struct pipe_sampler_view *state)
4595 {
4596 return si_create_sampler_view_custom(ctx, texture, state,
4597 texture ? texture->width0 : 0,
4598 texture ? texture->height0 : 0, 0);
4599 }
4600
4601 static void si_sampler_view_destroy(struct pipe_context *ctx,
4602 struct pipe_sampler_view *state)
4603 {
4604 struct si_sampler_view *view = (struct si_sampler_view *)state;
4605
4606 pipe_resource_reference(&state->texture, NULL);
4607 FREE(view);
4608 }
4609
4610 static bool wrap_mode_uses_border_color(unsigned wrap, bool linear_filter)
4611 {
4612 return wrap == PIPE_TEX_WRAP_CLAMP_TO_BORDER ||
4613 wrap == PIPE_TEX_WRAP_MIRROR_CLAMP_TO_BORDER ||
4614 (linear_filter &&
4615 (wrap == PIPE_TEX_WRAP_CLAMP ||
4616 wrap == PIPE_TEX_WRAP_MIRROR_CLAMP));
4617 }
4618
4619 static uint32_t si_translate_border_color(struct si_context *sctx,
4620 const struct pipe_sampler_state *state,
4621 const union pipe_color_union *color,
4622 bool is_integer)
4623 {
4624 bool linear_filter = state->min_img_filter != PIPE_TEX_FILTER_NEAREST ||
4625 state->mag_img_filter != PIPE_TEX_FILTER_NEAREST;
4626
4627 if (!wrap_mode_uses_border_color(state->wrap_s, linear_filter) &&
4628 !wrap_mode_uses_border_color(state->wrap_t, linear_filter) &&
4629 !wrap_mode_uses_border_color(state->wrap_r, linear_filter))
4630 return S_008F3C_BORDER_COLOR_TYPE(V_008F3C_SQ_TEX_BORDER_COLOR_TRANS_BLACK);
4631
4632 #define simple_border_types(elt) \
4633 do { \
4634 if (color->elt[0] == 0 && color->elt[1] == 0 && \
4635 color->elt[2] == 0 && color->elt[3] == 0) \
4636 return S_008F3C_BORDER_COLOR_TYPE(V_008F3C_SQ_TEX_BORDER_COLOR_TRANS_BLACK); \
4637 if (color->elt[0] == 0 && color->elt[1] == 0 && \
4638 color->elt[2] == 0 && color->elt[3] == 1) \
4639 return S_008F3C_BORDER_COLOR_TYPE(V_008F3C_SQ_TEX_BORDER_COLOR_OPAQUE_BLACK); \
4640 if (color->elt[0] == 1 && color->elt[1] == 1 && \
4641 color->elt[2] == 1 && color->elt[3] == 1) \
4642 return S_008F3C_BORDER_COLOR_TYPE(V_008F3C_SQ_TEX_BORDER_COLOR_OPAQUE_WHITE); \
4643 } while (false)
4644
4645 if (is_integer)
4646 simple_border_types(ui);
4647 else
4648 simple_border_types(f);
4649
4650 #undef simple_border_types
4651
4652 int i;
4653
4654 /* Check if the border has been uploaded already. */
4655 for (i = 0; i < sctx->border_color_count; i++)
4656 if (memcmp(&sctx->border_color_table[i], color,
4657 sizeof(*color)) == 0)
4658 break;
4659
4660 if (i >= SI_MAX_BORDER_COLORS) {
4661 /* Getting 4096 unique border colors is very unlikely. */
4662 fprintf(stderr, "radeonsi: The border color table is full. "
4663 "Any new border colors will be just black. "
4664 "Please file a bug.\n");
4665 return S_008F3C_BORDER_COLOR_TYPE(V_008F3C_SQ_TEX_BORDER_COLOR_TRANS_BLACK);
4666 }
4667
4668 if (i == sctx->border_color_count) {
4669 /* Upload a new border color. */
4670 memcpy(&sctx->border_color_table[i], color,
4671 sizeof(*color));
4672 util_memcpy_cpu_to_le32(&sctx->border_color_map[i],
4673 color, sizeof(*color));
4674 sctx->border_color_count++;
4675 }
4676
4677 return S_008F3C_BORDER_COLOR_PTR(i) |
4678 S_008F3C_BORDER_COLOR_TYPE(V_008F3C_SQ_TEX_BORDER_COLOR_REGISTER);
4679 }
4680
4681 static inline int S_FIXED(float value, unsigned frac_bits)
4682 {
4683 return value * (1 << frac_bits);
4684 }
4685
4686 static inline unsigned si_tex_filter(unsigned filter, unsigned max_aniso)
4687 {
4688 if (filter == PIPE_TEX_FILTER_LINEAR)
4689 return max_aniso > 1 ? V_008F38_SQ_TEX_XY_FILTER_ANISO_BILINEAR
4690 : V_008F38_SQ_TEX_XY_FILTER_BILINEAR;
4691 else
4692 return max_aniso > 1 ? V_008F38_SQ_TEX_XY_FILTER_ANISO_POINT
4693 : V_008F38_SQ_TEX_XY_FILTER_POINT;
4694 }
4695
4696 static inline unsigned si_tex_aniso_filter(unsigned filter)
4697 {
4698 if (filter < 2)
4699 return 0;
4700 if (filter < 4)
4701 return 1;
4702 if (filter < 8)
4703 return 2;
4704 if (filter < 16)
4705 return 3;
4706 return 4;
4707 }
4708
4709 static void *si_create_sampler_state(struct pipe_context *ctx,
4710 const struct pipe_sampler_state *state)
4711 {
4712 struct si_context *sctx = (struct si_context *)ctx;
4713 struct si_screen *sscreen = sctx->screen;
4714 struct si_sampler_state *rstate = CALLOC_STRUCT(si_sampler_state);
4715 unsigned max_aniso = sscreen->force_aniso >= 0 ? sscreen->force_aniso
4716 : state->max_anisotropy;
4717 unsigned max_aniso_ratio = si_tex_aniso_filter(max_aniso);
4718 union pipe_color_union clamped_border_color;
4719
4720 if (!rstate) {
4721 return NULL;
4722 }
4723
4724 #ifndef NDEBUG
4725 rstate->magic = SI_SAMPLER_STATE_MAGIC;
4726 #endif
4727 rstate->val[0] = (S_008F30_CLAMP_X(si_tex_wrap(state->wrap_s)) |
4728 S_008F30_CLAMP_Y(si_tex_wrap(state->wrap_t)) |
4729 S_008F30_CLAMP_Z(si_tex_wrap(state->wrap_r)) |
4730 S_008F30_MAX_ANISO_RATIO(max_aniso_ratio) |
4731 S_008F30_DEPTH_COMPARE_FUNC(si_tex_compare(state->compare_func)) |
4732 S_008F30_FORCE_UNNORMALIZED(!state->normalized_coords) |
4733 S_008F30_ANISO_THRESHOLD(max_aniso_ratio >> 1) |
4734 S_008F30_ANISO_BIAS(max_aniso_ratio) |
4735 S_008F30_DISABLE_CUBE_WRAP(!state->seamless_cube_map) |
4736 S_008F30_COMPAT_MODE(sctx->chip_class == GFX8 || sctx->chip_class == GFX9));
4737 rstate->val[1] = (S_008F34_MIN_LOD(S_FIXED(CLAMP(state->min_lod, 0, 15), 8)) |
4738 S_008F34_MAX_LOD(S_FIXED(CLAMP(state->max_lod, 0, 15), 8)) |
4739 S_008F34_PERF_MIP(max_aniso_ratio ? max_aniso_ratio + 6 : 0));
4740 rstate->val[2] = (S_008F38_LOD_BIAS(S_FIXED(CLAMP(state->lod_bias, -16, 16), 8)) |
4741 S_008F38_XY_MAG_FILTER(si_tex_filter(state->mag_img_filter, max_aniso)) |
4742 S_008F38_XY_MIN_FILTER(si_tex_filter(state->min_img_filter, max_aniso)) |
4743 S_008F38_MIP_FILTER(si_tex_mipfilter(state->min_mip_filter)) |
4744 S_008F38_MIP_POINT_PRECLAMP(0));
4745 rstate->val[3] = si_translate_border_color(sctx, state, &state->border_color, false);
4746
4747 if (sscreen->info.chip_class >= GFX10) {
4748 rstate->val[2] |= S_008F38_ANISO_OVERRIDE_GFX10(1);
4749 } else {
4750 rstate->val[2] |= S_008F38_DISABLE_LSB_CEIL(sctx->chip_class <= GFX8) |
4751 S_008F38_FILTER_PREC_FIX(1) |
4752 S_008F38_ANISO_OVERRIDE_GFX6(sctx->chip_class >= GFX8);
4753 }
4754
4755 /* Create sampler resource for integer textures. */
4756 memcpy(rstate->integer_val, rstate->val, sizeof(rstate->val));
4757 rstate->integer_val[3] = si_translate_border_color(sctx, state, &state->border_color, true);
4758
4759 /* Create sampler resource for upgraded depth textures. */
4760 memcpy(rstate->upgraded_depth_val, rstate->val, sizeof(rstate->val));
4761
4762 for (unsigned i = 0; i < 4; ++i) {
4763 /* Use channel 0 on purpose, so that we can use OPAQUE_WHITE
4764 * when the border color is 1.0. */
4765 clamped_border_color.f[i] = CLAMP(state->border_color.f[0], 0, 1);
4766 }
4767
4768 if (memcmp(&state->border_color, &clamped_border_color, sizeof(clamped_border_color)) == 0) {
4769 if (sscreen->info.chip_class <= GFX9)
4770 rstate->upgraded_depth_val[3] |= S_008F3C_UPGRADED_DEPTH(1);
4771 } else {
4772 rstate->upgraded_depth_val[3] =
4773 si_translate_border_color(sctx, state, &clamped_border_color, false);
4774 }
4775
4776 return rstate;
4777 }
4778
4779 static void si_set_sample_mask(struct pipe_context *ctx, unsigned sample_mask)
4780 {
4781 struct si_context *sctx = (struct si_context *)ctx;
4782
4783 if (sctx->sample_mask == (uint16_t)sample_mask)
4784 return;
4785
4786 sctx->sample_mask = sample_mask;
4787 si_mark_atom_dirty(sctx, &sctx->atoms.s.sample_mask);
4788 }
4789
4790 static void si_emit_sample_mask(struct si_context *sctx)
4791 {
4792 struct radeon_cmdbuf *cs = sctx->gfx_cs;
4793 unsigned mask = sctx->sample_mask;
4794
4795 /* Needed for line and polygon smoothing as well as for the Polaris
4796 * small primitive filter. We expect the state tracker to take care of
4797 * this for us.
4798 */
4799 assert(mask == 0xffff || sctx->framebuffer.nr_samples > 1 ||
4800 (mask & 1 && sctx->blitter->running));
4801
4802 radeon_set_context_reg_seq(cs, R_028C38_PA_SC_AA_MASK_X0Y0_X1Y0, 2);
4803 radeon_emit(cs, mask | (mask << 16));
4804 radeon_emit(cs, mask | (mask << 16));
4805 }
4806
4807 static void si_delete_sampler_state(struct pipe_context *ctx, void *state)
4808 {
4809 #ifndef NDEBUG
4810 struct si_sampler_state *s = state;
4811
4812 assert(s->magic == SI_SAMPLER_STATE_MAGIC);
4813 s->magic = 0;
4814 #endif
4815 free(state);
4816 }
4817
4818 /*
4819 * Vertex elements & buffers
4820 */
4821
4822 struct si_fast_udiv_info32
4823 si_compute_fast_udiv_info32(uint32_t D, unsigned num_bits)
4824 {
4825 struct util_fast_udiv_info info =
4826 util_compute_fast_udiv_info(D, num_bits, 32);
4827
4828 struct si_fast_udiv_info32 result = {
4829 info.multiplier,
4830 info.pre_shift,
4831 info.post_shift,
4832 info.increment,
4833 };
4834 return result;
4835 }
4836
4837 static void *si_create_vertex_elements(struct pipe_context *ctx,
4838 unsigned count,
4839 const struct pipe_vertex_element *elements)
4840 {
4841 struct si_screen *sscreen = (struct si_screen*)ctx->screen;
4842 struct si_vertex_elements *v = CALLOC_STRUCT(si_vertex_elements);
4843 bool used[SI_NUM_VERTEX_BUFFERS] = {};
4844 struct si_fast_udiv_info32 divisor_factors[SI_MAX_ATTRIBS] = {};
4845 STATIC_ASSERT(sizeof(struct si_fast_udiv_info32) == 16);
4846 STATIC_ASSERT(sizeof(divisor_factors[0].multiplier) == 4);
4847 STATIC_ASSERT(sizeof(divisor_factors[0].pre_shift) == 4);
4848 STATIC_ASSERT(sizeof(divisor_factors[0].post_shift) == 4);
4849 STATIC_ASSERT(sizeof(divisor_factors[0].increment) == 4);
4850 int i;
4851
4852 assert(count <= SI_MAX_ATTRIBS);
4853 if (!v)
4854 return NULL;
4855
4856 v->count = count;
4857 v->desc_list_byte_size = align(count * 16, SI_CPDMA_ALIGNMENT);
4858
4859 for (i = 0; i < count; ++i) {
4860 const struct util_format_description *desc;
4861 const struct util_format_channel_description *channel;
4862 int first_non_void;
4863 unsigned vbo_index = elements[i].vertex_buffer_index;
4864
4865 if (vbo_index >= SI_NUM_VERTEX_BUFFERS) {
4866 FREE(v);
4867 return NULL;
4868 }
4869
4870 unsigned instance_divisor = elements[i].instance_divisor;
4871 if (instance_divisor) {
4872 v->uses_instance_divisors = true;
4873
4874 if (instance_divisor == 1) {
4875 v->instance_divisor_is_one |= 1u << i;
4876 } else {
4877 v->instance_divisor_is_fetched |= 1u << i;
4878 divisor_factors[i] =
4879 si_compute_fast_udiv_info32(instance_divisor, 32);
4880 }
4881 }
4882
4883 if (!used[vbo_index]) {
4884 v->first_vb_use_mask |= 1 << i;
4885 used[vbo_index] = true;
4886 }
4887
4888 desc = util_format_description(elements[i].src_format);
4889 first_non_void = util_format_get_first_non_void_channel(elements[i].src_format);
4890 channel = first_non_void >= 0 ? &desc->channel[first_non_void] : NULL;
4891
4892 v->format_size[i] = desc->block.bits / 8;
4893 v->src_offset[i] = elements[i].src_offset;
4894 v->vertex_buffer_index[i] = vbo_index;
4895
4896 bool always_fix = false;
4897 union si_vs_fix_fetch fix_fetch;
4898 unsigned log_hw_load_size; /* the load element size as seen by the hardware */
4899
4900 fix_fetch.bits = 0;
4901 log_hw_load_size = MIN2(2, util_logbase2(desc->block.bits) - 3);
4902
4903 if (channel) {
4904 switch (channel->type) {
4905 case UTIL_FORMAT_TYPE_FLOAT: fix_fetch.u.format = AC_FETCH_FORMAT_FLOAT; break;
4906 case UTIL_FORMAT_TYPE_FIXED: fix_fetch.u.format = AC_FETCH_FORMAT_FIXED; break;
4907 case UTIL_FORMAT_TYPE_SIGNED: {
4908 if (channel->pure_integer)
4909 fix_fetch.u.format = AC_FETCH_FORMAT_SINT;
4910 else if (channel->normalized)
4911 fix_fetch.u.format = AC_FETCH_FORMAT_SNORM;
4912 else
4913 fix_fetch.u.format = AC_FETCH_FORMAT_SSCALED;
4914 break;
4915 }
4916 case UTIL_FORMAT_TYPE_UNSIGNED: {
4917 if (channel->pure_integer)
4918 fix_fetch.u.format = AC_FETCH_FORMAT_UINT;
4919 else if (channel->normalized)
4920 fix_fetch.u.format = AC_FETCH_FORMAT_UNORM;
4921 else
4922 fix_fetch.u.format = AC_FETCH_FORMAT_USCALED;
4923 break;
4924 }
4925 default: unreachable("bad format type");
4926 }
4927 } else {
4928 switch (elements[i].src_format) {
4929 case PIPE_FORMAT_R11G11B10_FLOAT: fix_fetch.u.format = AC_FETCH_FORMAT_FLOAT; break;
4930 default: unreachable("bad other format");
4931 }
4932 }
4933
4934 if (desc->channel[0].size == 10) {
4935 fix_fetch.u.log_size = 3; /* special encoding for 2_10_10_10 */
4936 log_hw_load_size = 2;
4937
4938 /* The hardware always treats the 2-bit alpha channel as
4939 * unsigned, so a shader workaround is needed. The affected
4940 * chips are GFX8 and older except Stoney (GFX8.1).
4941 */
4942 always_fix = sscreen->info.chip_class <= GFX8 &&
4943 sscreen->info.family != CHIP_STONEY &&
4944 channel->type == UTIL_FORMAT_TYPE_SIGNED;
4945 } else if (elements[i].src_format == PIPE_FORMAT_R11G11B10_FLOAT) {
4946 fix_fetch.u.log_size = 3; /* special encoding */
4947 fix_fetch.u.format = AC_FETCH_FORMAT_FIXED;
4948 log_hw_load_size = 2;
4949 } else {
4950 fix_fetch.u.log_size = util_logbase2(channel->size) - 3;
4951 fix_fetch.u.num_channels_m1 = desc->nr_channels - 1;
4952
4953 /* Always fix up:
4954 * - doubles (multiple loads + truncate to float)
4955 * - 32-bit requiring a conversion
4956 */
4957 always_fix =
4958 (fix_fetch.u.log_size == 3) ||
4959 (fix_fetch.u.log_size == 2 &&
4960 fix_fetch.u.format != AC_FETCH_FORMAT_FLOAT &&
4961 fix_fetch.u.format != AC_FETCH_FORMAT_UINT &&
4962 fix_fetch.u.format != AC_FETCH_FORMAT_SINT);
4963
4964 /* Also fixup 8_8_8 and 16_16_16. */
4965 if (desc->nr_channels == 3 && fix_fetch.u.log_size <= 1) {
4966 always_fix = true;
4967 log_hw_load_size = fix_fetch.u.log_size;
4968 }
4969 }
4970
4971 if (desc->swizzle[0] != PIPE_SWIZZLE_X) {
4972 assert(desc->swizzle[0] == PIPE_SWIZZLE_Z &&
4973 (desc->swizzle[2] == PIPE_SWIZZLE_X || desc->swizzle[2] == PIPE_SWIZZLE_0));
4974 fix_fetch.u.reverse = 1;
4975 }
4976
4977 /* Force the workaround for unaligned access here already if the
4978 * offset relative to the vertex buffer base is unaligned.
4979 *
4980 * There is a theoretical case in which this is too conservative:
4981 * if the vertex buffer's offset is also unaligned in just the
4982 * right way, we end up with an aligned address after all.
4983 * However, this case should be extremely rare in practice (it
4984 * won't happen in well-behaved applications), and taking it
4985 * into account would complicate the fast path (where everything
4986 * is nicely aligned).
4987 */
4988 bool check_alignment =
4989 log_hw_load_size >= 1 &&
4990 (sscreen->info.chip_class == GFX6 || sscreen->info.chip_class == GFX10);
4991 bool opencode = sscreen->options.vs_fetch_always_opencode;
4992
4993 if (check_alignment &&
4994 (elements[i].src_offset & ((1 << log_hw_load_size) - 1)) != 0)
4995 opencode = true;
4996
4997 if (always_fix || check_alignment || opencode)
4998 v->fix_fetch[i] = fix_fetch.bits;
4999
5000 if (opencode)
5001 v->fix_fetch_opencode |= 1 << i;
5002 if (opencode || always_fix)
5003 v->fix_fetch_always |= 1 << i;
5004
5005 if (check_alignment && !opencode) {
5006 assert(log_hw_load_size == 1 || log_hw_load_size == 2);
5007
5008 v->fix_fetch_unaligned |= 1 << i;
5009 v->hw_load_is_dword |= (log_hw_load_size - 1) << i;
5010 v->vb_alignment_check_mask |= 1 << vbo_index;
5011 }
5012
5013 v->rsrc_word3[i] = S_008F0C_DST_SEL_X(si_map_swizzle(desc->swizzle[0])) |
5014 S_008F0C_DST_SEL_Y(si_map_swizzle(desc->swizzle[1])) |
5015 S_008F0C_DST_SEL_Z(si_map_swizzle(desc->swizzle[2])) |
5016 S_008F0C_DST_SEL_W(si_map_swizzle(desc->swizzle[3]));
5017
5018 if (sscreen->info.chip_class >= GFX10) {
5019 const struct gfx10_format *fmt =
5020 &gfx10_format_table[elements[i].src_format];
5021 assert(fmt->img_format != 0 && fmt->img_format < 128);
5022 v->rsrc_word3[i] |= S_008F0C_FORMAT(fmt->img_format) |
5023 S_008F0C_RESOURCE_LEVEL(1);
5024 } else {
5025 unsigned data_format, num_format;
5026 data_format = si_translate_buffer_dataformat(ctx->screen, desc, first_non_void);
5027 num_format = si_translate_buffer_numformat(ctx->screen, desc, first_non_void);
5028 v->rsrc_word3[i] |= S_008F0C_NUM_FORMAT(num_format) |
5029 S_008F0C_DATA_FORMAT(data_format);
5030 }
5031 }
5032
5033 if (v->instance_divisor_is_fetched) {
5034 unsigned num_divisors = util_last_bit(v->instance_divisor_is_fetched);
5035
5036 v->instance_divisor_factor_buffer =
5037 (struct si_resource*)
5038 pipe_buffer_create(&sscreen->b, 0, PIPE_USAGE_DEFAULT,
5039 num_divisors * sizeof(divisor_factors[0]));
5040 if (!v->instance_divisor_factor_buffer) {
5041 FREE(v);
5042 return NULL;
5043 }
5044 void *map = sscreen->ws->buffer_map(v->instance_divisor_factor_buffer->buf,
5045 NULL, PIPE_TRANSFER_WRITE);
5046 memcpy(map , divisor_factors, num_divisors * sizeof(divisor_factors[0]));
5047 }
5048 return v;
5049 }
5050
5051 static void si_bind_vertex_elements(struct pipe_context *ctx, void *state)
5052 {
5053 struct si_context *sctx = (struct si_context *)ctx;
5054 struct si_vertex_elements *old = sctx->vertex_elements;
5055 struct si_vertex_elements *v = (struct si_vertex_elements*)state;
5056
5057 sctx->vertex_elements = v;
5058 sctx->vertex_buffers_dirty = true;
5059
5060 if (v &&
5061 (!old ||
5062 old->count != v->count ||
5063 old->uses_instance_divisors != v->uses_instance_divisors ||
5064 /* we don't check which divisors changed */
5065 v->uses_instance_divisors ||
5066 (old->vb_alignment_check_mask ^ v->vb_alignment_check_mask) & sctx->vertex_buffer_unaligned ||
5067 ((v->vb_alignment_check_mask & sctx->vertex_buffer_unaligned) &&
5068 memcmp(old->vertex_buffer_index, v->vertex_buffer_index,
5069 sizeof(v->vertex_buffer_index[0]) * v->count)) ||
5070 /* fix_fetch_{always,opencode,unaligned} and hw_load_is_dword are
5071 * functions of fix_fetch and the src_offset alignment.
5072 * If they change and fix_fetch doesn't, it must be due to different
5073 * src_offset alignment, which is reflected in fix_fetch_opencode. */
5074 old->fix_fetch_opencode != v->fix_fetch_opencode ||
5075 memcmp(old->fix_fetch, v->fix_fetch, sizeof(v->fix_fetch[0]) * v->count)))
5076 sctx->do_update_shaders = true;
5077
5078 if (v && v->instance_divisor_is_fetched) {
5079 struct pipe_constant_buffer cb;
5080
5081 cb.buffer = &v->instance_divisor_factor_buffer->b.b;
5082 cb.user_buffer = NULL;
5083 cb.buffer_offset = 0;
5084 cb.buffer_size = 0xffffffff;
5085 si_set_rw_buffer(sctx, SI_VS_CONST_INSTANCE_DIVISORS, &cb);
5086 }
5087 }
5088
5089 static void si_delete_vertex_element(struct pipe_context *ctx, void *state)
5090 {
5091 struct si_context *sctx = (struct si_context *)ctx;
5092 struct si_vertex_elements *v = (struct si_vertex_elements*)state;
5093
5094 if (sctx->vertex_elements == state)
5095 sctx->vertex_elements = NULL;
5096 si_resource_reference(&v->instance_divisor_factor_buffer, NULL);
5097 FREE(state);
5098 }
5099
5100 static void si_set_vertex_buffers(struct pipe_context *ctx,
5101 unsigned start_slot, unsigned count,
5102 const struct pipe_vertex_buffer *buffers)
5103 {
5104 struct si_context *sctx = (struct si_context *)ctx;
5105 struct pipe_vertex_buffer *dst = sctx->vertex_buffer + start_slot;
5106 uint32_t orig_unaligned = sctx->vertex_buffer_unaligned;
5107 uint32_t unaligned = orig_unaligned;
5108 int i;
5109
5110 assert(start_slot + count <= ARRAY_SIZE(sctx->vertex_buffer));
5111
5112 if (buffers) {
5113 for (i = 0; i < count; i++) {
5114 const struct pipe_vertex_buffer *src = buffers + i;
5115 struct pipe_vertex_buffer *dsti = dst + i;
5116 struct pipe_resource *buf = src->buffer.resource;
5117
5118 pipe_resource_reference(&dsti->buffer.resource, buf);
5119 dsti->buffer_offset = src->buffer_offset;
5120 dsti->stride = src->stride;
5121 if (dsti->buffer_offset & 3 || dsti->stride & 3)
5122 unaligned |= 1 << (start_slot + i);
5123 else
5124 unaligned &= ~(1 << (start_slot + i));
5125
5126 si_context_add_resource_size(sctx, buf);
5127 if (buf)
5128 si_resource(buf)->bind_history |= PIPE_BIND_VERTEX_BUFFER;
5129 }
5130 } else {
5131 for (i = 0; i < count; i++) {
5132 pipe_resource_reference(&dst[i].buffer.resource, NULL);
5133 }
5134 unaligned &= ~u_bit_consecutive(start_slot, count);
5135 }
5136 sctx->vertex_buffers_dirty = true;
5137 sctx->vertex_buffer_unaligned = unaligned;
5138
5139 /* Check whether alignment may have changed in a way that requires
5140 * shader changes. This check is conservative: a vertex buffer can only
5141 * trigger a shader change if the misalignment amount changes (e.g.
5142 * from byte-aligned to short-aligned), but we only keep track of
5143 * whether buffers are at least dword-aligned, since that should always
5144 * be the case in well-behaved applications anyway.
5145 */
5146 if (sctx->vertex_elements &&
5147 (sctx->vertex_elements->vb_alignment_check_mask &
5148 (unaligned | orig_unaligned) & u_bit_consecutive(start_slot, count)))
5149 sctx->do_update_shaders = true;
5150 }
5151
5152 /*
5153 * Misc
5154 */
5155
5156 static void si_set_tess_state(struct pipe_context *ctx,
5157 const float default_outer_level[4],
5158 const float default_inner_level[2])
5159 {
5160 struct si_context *sctx = (struct si_context *)ctx;
5161 struct pipe_constant_buffer cb;
5162 float array[8];
5163
5164 memcpy(array, default_outer_level, sizeof(float) * 4);
5165 memcpy(array+4, default_inner_level, sizeof(float) * 2);
5166
5167 cb.buffer = NULL;
5168 cb.user_buffer = NULL;
5169 cb.buffer_size = sizeof(array);
5170
5171 si_upload_const_buffer(sctx, (struct si_resource**)&cb.buffer,
5172 (void*)array, sizeof(array),
5173 &cb.buffer_offset);
5174
5175 si_set_rw_buffer(sctx, SI_HS_CONST_DEFAULT_TESS_LEVELS, &cb);
5176 pipe_resource_reference(&cb.buffer, NULL);
5177 }
5178
5179 static void si_texture_barrier(struct pipe_context *ctx, unsigned flags)
5180 {
5181 struct si_context *sctx = (struct si_context *)ctx;
5182
5183 si_update_fb_dirtiness_after_rendering(sctx);
5184
5185 /* Multisample surfaces are flushed in si_decompress_textures. */
5186 if (sctx->framebuffer.uncompressed_cb_mask) {
5187 si_make_CB_shader_coherent(sctx, sctx->framebuffer.nr_samples,
5188 sctx->framebuffer.CB_has_shader_readable_metadata,
5189 sctx->framebuffer.all_DCC_pipe_aligned);
5190 }
5191 }
5192
5193 /* This only ensures coherency for shader image/buffer stores. */
5194 static void si_memory_barrier(struct pipe_context *ctx, unsigned flags)
5195 {
5196 struct si_context *sctx = (struct si_context *)ctx;
5197
5198 if (!(flags & ~PIPE_BARRIER_UPDATE))
5199 return;
5200
5201 /* Subsequent commands must wait for all shader invocations to
5202 * complete. */
5203 sctx->flags |= SI_CONTEXT_PS_PARTIAL_FLUSH |
5204 SI_CONTEXT_CS_PARTIAL_FLUSH;
5205
5206 if (flags & PIPE_BARRIER_CONSTANT_BUFFER)
5207 sctx->flags |= SI_CONTEXT_INV_SCACHE |
5208 SI_CONTEXT_INV_VCACHE;
5209
5210 if (flags & (PIPE_BARRIER_VERTEX_BUFFER |
5211 PIPE_BARRIER_SHADER_BUFFER |
5212 PIPE_BARRIER_TEXTURE |
5213 PIPE_BARRIER_IMAGE |
5214 PIPE_BARRIER_STREAMOUT_BUFFER |
5215 PIPE_BARRIER_GLOBAL_BUFFER)) {
5216 /* As far as I can tell, L1 contents are written back to L2
5217 * automatically at end of shader, but the contents of other
5218 * L1 caches might still be stale. */
5219 sctx->flags |= SI_CONTEXT_INV_VCACHE;
5220 }
5221
5222 if (flags & PIPE_BARRIER_INDEX_BUFFER) {
5223 /* Indices are read through TC L2 since GFX8.
5224 * L1 isn't used.
5225 */
5226 if (sctx->screen->info.chip_class <= GFX7)
5227 sctx->flags |= SI_CONTEXT_WB_L2;
5228 }
5229
5230 /* MSAA color, any depth and any stencil are flushed in
5231 * si_decompress_textures when needed.
5232 */
5233 if (flags & PIPE_BARRIER_FRAMEBUFFER &&
5234 sctx->framebuffer.uncompressed_cb_mask) {
5235 sctx->flags |= SI_CONTEXT_FLUSH_AND_INV_CB;
5236
5237 if (sctx->chip_class <= GFX8)
5238 sctx->flags |= SI_CONTEXT_WB_L2;
5239 }
5240
5241 /* Indirect buffers use TC L2 on GFX9, but not older hw. */
5242 if (sctx->screen->info.chip_class <= GFX8 &&
5243 flags & PIPE_BARRIER_INDIRECT_BUFFER)
5244 sctx->flags |= SI_CONTEXT_WB_L2;
5245 }
5246
5247 static void *si_create_blend_custom(struct si_context *sctx, unsigned mode)
5248 {
5249 struct pipe_blend_state blend;
5250
5251 memset(&blend, 0, sizeof(blend));
5252 blend.independent_blend_enable = true;
5253 blend.rt[0].colormask = 0xf;
5254 return si_create_blend_state_mode(&sctx->b, &blend, mode);
5255 }
5256
5257 static void si_init_config(struct si_context *sctx);
5258
5259 void si_init_state_compute_functions(struct si_context *sctx)
5260 {
5261 sctx->b.create_sampler_state = si_create_sampler_state;
5262 sctx->b.delete_sampler_state = si_delete_sampler_state;
5263 sctx->b.create_sampler_view = si_create_sampler_view;
5264 sctx->b.sampler_view_destroy = si_sampler_view_destroy;
5265 sctx->b.memory_barrier = si_memory_barrier;
5266 }
5267
5268 void si_init_state_functions(struct si_context *sctx)
5269 {
5270 sctx->atoms.s.framebuffer.emit = si_emit_framebuffer_state;
5271 sctx->atoms.s.msaa_sample_locs.emit = si_emit_msaa_sample_locs;
5272 sctx->atoms.s.db_render_state.emit = si_emit_db_render_state;
5273 sctx->atoms.s.dpbb_state.emit = si_emit_dpbb_state;
5274 sctx->atoms.s.msaa_config.emit = si_emit_msaa_config;
5275 sctx->atoms.s.sample_mask.emit = si_emit_sample_mask;
5276 sctx->atoms.s.cb_render_state.emit = si_emit_cb_render_state;
5277 sctx->atoms.s.blend_color.emit = si_emit_blend_color;
5278 sctx->atoms.s.clip_regs.emit = si_emit_clip_regs;
5279 sctx->atoms.s.clip_state.emit = si_emit_clip_state;
5280 sctx->atoms.s.stencil_ref.emit = si_emit_stencil_ref;
5281
5282 sctx->b.create_blend_state = si_create_blend_state;
5283 sctx->b.bind_blend_state = si_bind_blend_state;
5284 sctx->b.delete_blend_state = si_delete_blend_state;
5285 sctx->b.set_blend_color = si_set_blend_color;
5286
5287 sctx->b.create_rasterizer_state = si_create_rs_state;
5288 sctx->b.bind_rasterizer_state = si_bind_rs_state;
5289 sctx->b.delete_rasterizer_state = si_delete_rs_state;
5290
5291 sctx->b.create_depth_stencil_alpha_state = si_create_dsa_state;
5292 sctx->b.bind_depth_stencil_alpha_state = si_bind_dsa_state;
5293 sctx->b.delete_depth_stencil_alpha_state = si_delete_dsa_state;
5294
5295 sctx->custom_dsa_flush = si_create_db_flush_dsa(sctx);
5296 sctx->custom_blend_resolve = si_create_blend_custom(sctx, V_028808_CB_RESOLVE);
5297 sctx->custom_blend_fmask_decompress = si_create_blend_custom(sctx, V_028808_CB_FMASK_DECOMPRESS);
5298 sctx->custom_blend_eliminate_fastclear = si_create_blend_custom(sctx, V_028808_CB_ELIMINATE_FAST_CLEAR);
5299 sctx->custom_blend_dcc_decompress = si_create_blend_custom(sctx, V_028808_CB_DCC_DECOMPRESS);
5300
5301 sctx->b.set_clip_state = si_set_clip_state;
5302 sctx->b.set_stencil_ref = si_set_stencil_ref;
5303
5304 sctx->b.set_framebuffer_state = si_set_framebuffer_state;
5305
5306 sctx->b.set_sample_mask = si_set_sample_mask;
5307
5308 sctx->b.create_vertex_elements_state = si_create_vertex_elements;
5309 sctx->b.bind_vertex_elements_state = si_bind_vertex_elements;
5310 sctx->b.delete_vertex_elements_state = si_delete_vertex_element;
5311 sctx->b.set_vertex_buffers = si_set_vertex_buffers;
5312
5313 sctx->b.texture_barrier = si_texture_barrier;
5314 sctx->b.set_min_samples = si_set_min_samples;
5315 sctx->b.set_tess_state = si_set_tess_state;
5316
5317 sctx->b.set_active_query_state = si_set_active_query_state;
5318
5319 si_init_config(sctx);
5320 }
5321
5322 void si_init_screen_state_functions(struct si_screen *sscreen)
5323 {
5324 sscreen->b.is_format_supported = si_is_format_supported;
5325
5326 if (sscreen->info.chip_class >= GFX10) {
5327 sscreen->make_texture_descriptor = gfx10_make_texture_descriptor;
5328 } else {
5329 sscreen->make_texture_descriptor = si_make_texture_descriptor;
5330 }
5331 }
5332
5333 static void si_set_grbm_gfx_index(struct si_context *sctx,
5334 struct si_pm4_state *pm4, unsigned value)
5335 {
5336 unsigned reg = sctx->chip_class >= GFX7 ? R_030800_GRBM_GFX_INDEX :
5337 R_00802C_GRBM_GFX_INDEX;
5338 si_pm4_set_reg(pm4, reg, value);
5339 }
5340
5341 static void si_set_grbm_gfx_index_se(struct si_context *sctx,
5342 struct si_pm4_state *pm4, unsigned se)
5343 {
5344 assert(se == ~0 || se < sctx->screen->info.max_se);
5345 si_set_grbm_gfx_index(sctx, pm4,
5346 (se == ~0 ? S_030800_SE_BROADCAST_WRITES(1) :
5347 S_030800_SE_INDEX(se)) |
5348 S_030800_SH_BROADCAST_WRITES(1) |
5349 S_030800_INSTANCE_BROADCAST_WRITES(1));
5350 }
5351
5352 static void
5353 si_write_harvested_raster_configs(struct si_context *sctx,
5354 struct si_pm4_state *pm4,
5355 unsigned raster_config,
5356 unsigned raster_config_1)
5357 {
5358 unsigned num_se = MAX2(sctx->screen->info.max_se, 1);
5359 unsigned raster_config_se[4];
5360 unsigned se;
5361
5362 ac_get_harvested_configs(&sctx->screen->info,
5363 raster_config,
5364 &raster_config_1,
5365 raster_config_se);
5366
5367 for (se = 0; se < num_se; se++) {
5368 si_set_grbm_gfx_index_se(sctx, pm4, se);
5369 si_pm4_set_reg(pm4, R_028350_PA_SC_RASTER_CONFIG, raster_config_se[se]);
5370 }
5371 si_set_grbm_gfx_index(sctx, pm4, ~0);
5372
5373 if (sctx->chip_class >= GFX7) {
5374 si_pm4_set_reg(pm4, R_028354_PA_SC_RASTER_CONFIG_1, raster_config_1);
5375 }
5376 }
5377
5378 static void si_set_raster_config(struct si_context *sctx, struct si_pm4_state *pm4)
5379 {
5380 struct si_screen *sscreen = sctx->screen;
5381 unsigned num_rb = MIN2(sscreen->info.num_render_backends, 16);
5382 unsigned rb_mask = sscreen->info.enabled_rb_mask;
5383 unsigned raster_config = sscreen->pa_sc_raster_config;
5384 unsigned raster_config_1 = sscreen->pa_sc_raster_config_1;
5385
5386 if (!rb_mask || util_bitcount(rb_mask) >= num_rb) {
5387 /* Always use the default config when all backends are enabled
5388 * (or when we failed to determine the enabled backends).
5389 */
5390 si_pm4_set_reg(pm4, R_028350_PA_SC_RASTER_CONFIG,
5391 raster_config);
5392 if (sctx->chip_class >= GFX7)
5393 si_pm4_set_reg(pm4, R_028354_PA_SC_RASTER_CONFIG_1,
5394 raster_config_1);
5395 } else {
5396 si_write_harvested_raster_configs(sctx, pm4, raster_config, raster_config_1);
5397 }
5398 }
5399
5400 static void si_init_config(struct si_context *sctx)
5401 {
5402 struct si_screen *sscreen = sctx->screen;
5403 uint64_t border_color_va = sctx->border_color_buffer->gpu_address;
5404 bool has_clear_state = sscreen->has_clear_state;
5405 struct si_pm4_state *pm4 = CALLOC_STRUCT(si_pm4_state);
5406
5407 if (!pm4)
5408 return;
5409
5410 si_pm4_cmd_begin(pm4, PKT3_CONTEXT_CONTROL);
5411 si_pm4_cmd_add(pm4, CONTEXT_CONTROL_LOAD_ENABLE(1));
5412 si_pm4_cmd_add(pm4, CONTEXT_CONTROL_SHADOW_ENABLE(1));
5413 si_pm4_cmd_end(pm4, false);
5414
5415 if (has_clear_state) {
5416 si_pm4_cmd_begin(pm4, PKT3_CLEAR_STATE);
5417 si_pm4_cmd_add(pm4, 0);
5418 si_pm4_cmd_end(pm4, false);
5419 }
5420
5421 if (sctx->chip_class <= GFX8)
5422 si_set_raster_config(sctx, pm4);
5423
5424 si_pm4_set_reg(pm4, R_028A18_VGT_HOS_MAX_TESS_LEVEL, fui(64));
5425 if (!has_clear_state)
5426 si_pm4_set_reg(pm4, R_028A1C_VGT_HOS_MIN_TESS_LEVEL, fui(0));
5427
5428 /* FIXME calculate these values somehow ??? */
5429 if (sctx->chip_class <= GFX8) {
5430 si_pm4_set_reg(pm4, R_028A54_VGT_GS_PER_ES, SI_GS_PER_ES);
5431 si_pm4_set_reg(pm4, R_028A58_VGT_ES_PER_GS, 0x40);
5432 }
5433
5434 if (!has_clear_state) {
5435 si_pm4_set_reg(pm4, R_028A5C_VGT_GS_PER_VS, 0x2);
5436 si_pm4_set_reg(pm4, R_028A8C_VGT_PRIMITIVEID_RESET, 0x0);
5437 si_pm4_set_reg(pm4, R_028B98_VGT_STRMOUT_BUFFER_CONFIG, 0x0);
5438 }
5439
5440 si_pm4_set_reg(pm4, R_028AA0_VGT_INSTANCE_STEP_RATE_0, 1);
5441 if (!has_clear_state)
5442 si_pm4_set_reg(pm4, R_028AB8_VGT_VTX_CNT_EN, 0x0);
5443 if (sctx->chip_class < GFX7)
5444 si_pm4_set_reg(pm4, R_008A14_PA_CL_ENHANCE, S_008A14_NUM_CLIP_SEQ(3) |
5445 S_008A14_CLIP_VTX_REORDER_ENA(1));
5446
5447 /* CLEAR_STATE doesn't clear these correctly on certain generations.
5448 * I don't know why. Deduced by trial and error.
5449 */
5450 if (sctx->chip_class <= GFX7) {
5451 si_pm4_set_reg(pm4, R_028B28_VGT_STRMOUT_DRAW_OPAQUE_OFFSET, 0);
5452 si_pm4_set_reg(pm4, R_028204_PA_SC_WINDOW_SCISSOR_TL, S_028204_WINDOW_OFFSET_DISABLE(1));
5453 si_pm4_set_reg(pm4, R_028240_PA_SC_GENERIC_SCISSOR_TL, S_028240_WINDOW_OFFSET_DISABLE(1));
5454 si_pm4_set_reg(pm4, R_028244_PA_SC_GENERIC_SCISSOR_BR,
5455 S_028244_BR_X(16384) | S_028244_BR_Y(16384));
5456 si_pm4_set_reg(pm4, R_028030_PA_SC_SCREEN_SCISSOR_TL, 0);
5457 si_pm4_set_reg(pm4, R_028034_PA_SC_SCREEN_SCISSOR_BR,
5458 S_028034_BR_X(16384) | S_028034_BR_Y(16384));
5459 }
5460
5461 if (!has_clear_state) {
5462 si_pm4_set_reg(pm4, R_028230_PA_SC_EDGERULE,
5463 S_028230_ER_TRI(0xA) |
5464 S_028230_ER_POINT(0xA) |
5465 S_028230_ER_RECT(0xA) |
5466 /* Required by DX10_DIAMOND_TEST_ENA: */
5467 S_028230_ER_LINE_LR(0x1A) |
5468 S_028230_ER_LINE_RL(0x26) |
5469 S_028230_ER_LINE_TB(0xA) |
5470 S_028230_ER_LINE_BT(0xA));
5471 si_pm4_set_reg(pm4, R_028820_PA_CL_NANINF_CNTL, 0);
5472 si_pm4_set_reg(pm4, R_028AC0_DB_SRESULTS_COMPARE_STATE0, 0x0);
5473 si_pm4_set_reg(pm4, R_028AC4_DB_SRESULTS_COMPARE_STATE1, 0x0);
5474 si_pm4_set_reg(pm4, R_028AC8_DB_PRELOAD_CONTROL, 0x0);
5475 si_pm4_set_reg(pm4, R_02800C_DB_RENDER_OVERRIDE, 0);
5476 }
5477
5478 if (sctx->chip_class >= GFX10) {
5479 si_pm4_set_reg(pm4, R_030964_GE_MAX_VTX_INDX, ~0);
5480 si_pm4_set_reg(pm4, R_030924_GE_MIN_VTX_INDX, 0);
5481 si_pm4_set_reg(pm4, R_030928_GE_INDX_OFFSET, 0);
5482 } else if (sctx->chip_class == GFX9) {
5483 si_pm4_set_reg(pm4, R_030920_VGT_MAX_VTX_INDX, ~0);
5484 si_pm4_set_reg(pm4, R_030924_VGT_MIN_VTX_INDX, 0);
5485 si_pm4_set_reg(pm4, R_030928_VGT_INDX_OFFSET, 0);
5486 } else {
5487 /* These registers, when written, also overwrite the CLEAR_STATE
5488 * context, so we can't rely on CLEAR_STATE setting them.
5489 * It would be an issue if there was another UMD changing them.
5490 */
5491 si_pm4_set_reg(pm4, R_028400_VGT_MAX_VTX_INDX, ~0);
5492 si_pm4_set_reg(pm4, R_028404_VGT_MIN_VTX_INDX, 0);
5493 si_pm4_set_reg(pm4, R_028408_VGT_INDX_OFFSET, 0);
5494 }
5495
5496 if (sctx->chip_class >= GFX7) {
5497 if (sctx->chip_class >= GFX10) {
5498 /* Logical CUs 16 - 31 */
5499 si_pm4_set_reg(pm4, R_00B404_SPI_SHADER_PGM_RSRC4_HS,
5500 S_00B404_CU_EN(0xffff));
5501 si_pm4_set_reg(pm4, R_00B204_SPI_SHADER_PGM_RSRC4_GS,
5502 S_00B204_CU_EN(0xffff) |
5503 S_00B204_SPI_SHADER_LATE_ALLOC_GS_GFX10(0));
5504 si_pm4_set_reg(pm4, R_00B104_SPI_SHADER_PGM_RSRC4_VS,
5505 S_00B104_CU_EN(0xffff));
5506 si_pm4_set_reg(pm4, R_00B004_SPI_SHADER_PGM_RSRC4_PS,
5507 S_00B004_CU_EN(0xffff));
5508 }
5509
5510 if (sctx->chip_class >= GFX9) {
5511 si_pm4_set_reg(pm4, R_00B41C_SPI_SHADER_PGM_RSRC3_HS,
5512 S_00B41C_CU_EN(0xffff) | S_00B41C_WAVE_LIMIT(0x3F));
5513 } else {
5514 si_pm4_set_reg(pm4, R_00B51C_SPI_SHADER_PGM_RSRC3_LS,
5515 S_00B51C_CU_EN(0xffff) | S_00B51C_WAVE_LIMIT(0x3F));
5516 si_pm4_set_reg(pm4, R_00B41C_SPI_SHADER_PGM_RSRC3_HS,
5517 S_00B41C_WAVE_LIMIT(0x3F));
5518 si_pm4_set_reg(pm4, R_00B31C_SPI_SHADER_PGM_RSRC3_ES,
5519 S_00B31C_CU_EN(0xffff) | S_00B31C_WAVE_LIMIT(0x3F));
5520
5521 /* If this is 0, Bonaire can hang even if GS isn't being used.
5522 * Other chips are unaffected. These are suboptimal values,
5523 * but we don't use on-chip GS.
5524 */
5525 si_pm4_set_reg(pm4, R_028A44_VGT_GS_ONCHIP_CNTL,
5526 S_028A44_ES_VERTS_PER_SUBGRP(64) |
5527 S_028A44_GS_PRIMS_PER_SUBGRP(4));
5528 }
5529 si_pm4_set_reg(pm4, R_00B21C_SPI_SHADER_PGM_RSRC3_GS,
5530 S_00B21C_CU_EN(0xffff) | S_00B21C_WAVE_LIMIT(0x3F));
5531
5532 /* Compute LATE_ALLOC_VS.LIMIT. */
5533 unsigned num_cu_per_sh = sscreen->info.num_good_cu_per_sh;
5534 unsigned late_alloc_limit; /* The limit is per SH. */
5535
5536 if (sctx->family == CHIP_KABINI) {
5537 late_alloc_limit = 0; /* Potential hang on Kabini. */
5538 } else if (num_cu_per_sh <= 4) {
5539 /* Too few available compute units per SH. Disallowing
5540 * VS to run on one CU could hurt us more than late VS
5541 * allocation would help.
5542 *
5543 * 2 is the highest safe number that allows us to keep
5544 * all CUs enabled.
5545 */
5546 late_alloc_limit = 2;
5547 } else {
5548 /* This is a good initial value, allowing 1 late_alloc
5549 * wave per SIMD on num_cu - 2.
5550 */
5551 late_alloc_limit = (num_cu_per_sh - 2) * 4;
5552 }
5553
5554 /* VS can't execute on one CU if the limit is > 2. */
5555 si_pm4_set_reg(pm4, R_00B118_SPI_SHADER_PGM_RSRC3_VS,
5556 S_00B118_CU_EN(late_alloc_limit > 2 ? 0xfffe : 0xffff) |
5557 S_00B118_WAVE_LIMIT(0x3F));
5558 si_pm4_set_reg(pm4, R_00B11C_SPI_SHADER_LATE_ALLOC_VS,
5559 S_00B11C_LIMIT(late_alloc_limit));
5560
5561 si_pm4_set_reg(pm4, R_00B01C_SPI_SHADER_PGM_RSRC3_PS,
5562 S_00B01C_CU_EN(0xffff) | S_00B01C_WAVE_LIMIT(0x3F));
5563 }
5564
5565 if (sctx->chip_class >= GFX10) {
5566 /* Break up a pixel wave if it contains deallocs for more than
5567 * half the parameter cache.
5568 *
5569 * To avoid a deadlock where pixel waves aren't launched
5570 * because they're waiting for more pixels while the frontend
5571 * is stuck waiting for PC space, the maximum allowed value is
5572 * the size of the PC minus the largest possible allocation for
5573 * a single primitive shader subgroup.
5574 */
5575 si_pm4_set_reg(pm4, R_028C50_PA_SC_NGG_MODE_CNTL,
5576 S_028C50_MAX_DEALLOCS_IN_WAVE(512));
5577 si_pm4_set_reg(pm4, R_028C58_VGT_VERTEX_REUSE_BLOCK_CNTL, 14);
5578 si_pm4_set_reg(pm4, R_02835C_PA_SC_TILE_STEERING_OVERRIDE,
5579 sscreen->info.pa_sc_tile_steering_override);
5580
5581 si_pm4_set_reg(pm4, R_02807C_DB_RMI_L2_CACHE_CONTROL,
5582 S_02807C_Z_WR_POLICY(V_02807C_CACHE_STREAM_WR) |
5583 S_02807C_S_WR_POLICY(V_02807C_CACHE_STREAM_WR) |
5584 S_02807C_HTILE_WR_POLICY(V_02807C_CACHE_STREAM_WR) |
5585 S_02807C_ZPCPSD_WR_POLICY(V_02807C_CACHE_STREAM_WR) |
5586 S_02807C_Z_RD_POLICY(V_02807C_CACHE_NOA_RD) |
5587 S_02807C_S_RD_POLICY(V_02807C_CACHE_NOA_RD) |
5588 S_02807C_HTILE_RD_POLICY(V_02807C_CACHE_NOA_RD));
5589
5590 si_pm4_set_reg(pm4, R_028410_CB_RMI_GL2_CACHE_CONTROL,
5591 S_028410_CMASK_WR_POLICY(V_028410_CACHE_STREAM_WR) |
5592 S_028410_FMASK_WR_POLICY(V_028410_CACHE_STREAM_WR) |
5593 S_028410_DCC_WR_POLICY(V_028410_CACHE_STREAM_WR) |
5594 S_028410_COLOR_WR_POLICY(V_028410_CACHE_STREAM_WR) |
5595 S_028410_CMASK_RD_POLICY(V_028410_CACHE_NOA_RD) |
5596 S_028410_FMASK_RD_POLICY(V_028410_CACHE_NOA_RD) |
5597 S_028410_DCC_RD_POLICY(V_028410_CACHE_NOA_RD) |
5598 S_028410_COLOR_RD_POLICY(V_028410_CACHE_NOA_RD));
5599 }
5600
5601 if (sctx->chip_class >= GFX8) {
5602 unsigned vgt_tess_distribution;
5603
5604 vgt_tess_distribution =
5605 S_028B50_ACCUM_ISOLINE(32) |
5606 S_028B50_ACCUM_TRI(11) |
5607 S_028B50_ACCUM_QUAD(11) |
5608 S_028B50_DONUT_SPLIT(16);
5609
5610 /* Testing with Unigine Heaven extreme tesselation yielded best results
5611 * with TRAP_SPLIT = 3.
5612 */
5613 if (sctx->family == CHIP_FIJI ||
5614 sctx->family >= CHIP_POLARIS10)
5615 vgt_tess_distribution |= S_028B50_TRAP_SPLIT(3);
5616
5617 si_pm4_set_reg(pm4, R_028B50_VGT_TESS_DISTRIBUTION, vgt_tess_distribution);
5618 } else if (!has_clear_state) {
5619 si_pm4_set_reg(pm4, R_028C58_VGT_VERTEX_REUSE_BLOCK_CNTL, 14);
5620 si_pm4_set_reg(pm4, R_028C5C_VGT_OUT_DEALLOC_CNTL, 16);
5621 }
5622
5623 si_pm4_set_reg(pm4, R_028080_TA_BC_BASE_ADDR, border_color_va >> 8);
5624 if (sctx->chip_class >= GFX7) {
5625 si_pm4_set_reg(pm4, R_028084_TA_BC_BASE_ADDR_HI,
5626 S_028084_ADDRESS(border_color_va >> 40));
5627 }
5628 si_pm4_add_bo(pm4, sctx->border_color_buffer, RADEON_USAGE_READ,
5629 RADEON_PRIO_BORDER_COLORS);
5630
5631 if (sctx->chip_class >= GFX9) {
5632 unsigned num_se = sscreen->info.max_se;
5633 unsigned pc_lines = 0;
5634 unsigned max_alloc_count = 0;
5635
5636 switch (sctx->family) {
5637 case CHIP_VEGA10:
5638 case CHIP_VEGA12:
5639 case CHIP_VEGA20:
5640 pc_lines = 2048;
5641 break;
5642 case CHIP_RAVEN:
5643 case CHIP_RAVEN2:
5644 case CHIP_NAVI10:
5645 case CHIP_NAVI12:
5646 pc_lines = 1024;
5647 break;
5648 case CHIP_NAVI14:
5649 pc_lines = 512;
5650 break;
5651 default:
5652 assert(0);
5653 }
5654
5655 if (sctx->chip_class >= GFX10) {
5656 max_alloc_count = pc_lines / 3;
5657 } else {
5658 max_alloc_count = MIN2(128, pc_lines / (4 * num_se));
5659 }
5660
5661 si_pm4_set_reg(pm4, R_028C48_PA_SC_BINNER_CNTL_1,
5662 S_028C48_MAX_ALLOC_COUNT(max_alloc_count) |
5663 S_028C48_MAX_PRIM_PER_BATCH(1023));
5664 si_pm4_set_reg(pm4, R_028C4C_PA_SC_CONSERVATIVE_RASTERIZATION_CNTL,
5665 S_028C4C_NULL_SQUAD_AA_MASK_ENABLE(1));
5666 si_pm4_set_reg(pm4, R_030968_VGT_INSTANCE_BASE_ID, 0);
5667 }
5668
5669 si_pm4_upload_indirect_buffer(sctx, pm4);
5670 sctx->init_config = pm4;
5671 }