0970eff1039367f7beecdee7d95457ad8bd477ef
[mesa.git] / src / amd / vulkan / si_cmd_buffer.c
1 /*
2 * Copyright © 2016 Red Hat.
3 * Copyright © 2016 Bas Nieuwenhuizen
4 *
5 * based on si_state.c
6 * Copyright © 2015 Advanced Micro Devices, Inc.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the next
16 * paragraph) shall be included in all copies or substantial portions of the
17 * Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
25 * IN THE SOFTWARE.
26 */
27
28 /* command buffer handling for SI */
29
30 #include "radv_private.h"
31 #include "radv_shader.h"
32 #include "radv_cs.h"
33 #include "sid.h"
34 #include "gfx9d.h"
35 #include "radv_util.h"
36 #include "main/macros.h"
37
38 static void
39 si_write_harvested_raster_configs(struct radv_physical_device *physical_device,
40 struct radeon_winsys_cs *cs,
41 unsigned raster_config,
42 unsigned raster_config_1)
43 {
44 unsigned sh_per_se = MAX2(physical_device->rad_info.max_sh_per_se, 1);
45 unsigned num_se = MAX2(physical_device->rad_info.max_se, 1);
46 unsigned rb_mask = physical_device->rad_info.enabled_rb_mask;
47 unsigned num_rb = MIN2(physical_device->rad_info.num_render_backends, 16);
48 unsigned rb_per_pkr = MIN2(num_rb / num_se / sh_per_se, 2);
49 unsigned rb_per_se = num_rb / num_se;
50 unsigned se_mask[4];
51 unsigned se;
52
53 se_mask[0] = ((1 << rb_per_se) - 1) & rb_mask;
54 se_mask[1] = (se_mask[0] << rb_per_se) & rb_mask;
55 se_mask[2] = (se_mask[1] << rb_per_se) & rb_mask;
56 se_mask[3] = (se_mask[2] << rb_per_se) & rb_mask;
57
58 assert(num_se == 1 || num_se == 2 || num_se == 4);
59 assert(sh_per_se == 1 || sh_per_se == 2);
60 assert(rb_per_pkr == 1 || rb_per_pkr == 2);
61
62 /* XXX: I can't figure out what the *_XSEL and *_YSEL
63 * fields are for, so I'm leaving them as their default
64 * values. */
65
66 if ((num_se > 2) && ((!se_mask[0] && !se_mask[1]) ||
67 (!se_mask[2] && !se_mask[3]))) {
68 raster_config_1 &= C_028354_SE_PAIR_MAP;
69
70 if (!se_mask[0] && !se_mask[1]) {
71 raster_config_1 |=
72 S_028354_SE_PAIR_MAP(V_028354_RASTER_CONFIG_SE_PAIR_MAP_3);
73 } else {
74 raster_config_1 |=
75 S_028354_SE_PAIR_MAP(V_028354_RASTER_CONFIG_SE_PAIR_MAP_0);
76 }
77 }
78
79 for (se = 0; se < num_se; se++) {
80 unsigned raster_config_se = raster_config;
81 unsigned pkr0_mask = ((1 << rb_per_pkr) - 1) << (se * rb_per_se);
82 unsigned pkr1_mask = pkr0_mask << rb_per_pkr;
83 int idx = (se / 2) * 2;
84
85 if ((num_se > 1) && (!se_mask[idx] || !se_mask[idx + 1])) {
86 raster_config_se &= C_028350_SE_MAP;
87
88 if (!se_mask[idx]) {
89 raster_config_se |=
90 S_028350_SE_MAP(V_028350_RASTER_CONFIG_SE_MAP_3);
91 } else {
92 raster_config_se |=
93 S_028350_SE_MAP(V_028350_RASTER_CONFIG_SE_MAP_0);
94 }
95 }
96
97 pkr0_mask &= rb_mask;
98 pkr1_mask &= rb_mask;
99 if (rb_per_se > 2 && (!pkr0_mask || !pkr1_mask)) {
100 raster_config_se &= C_028350_PKR_MAP;
101
102 if (!pkr0_mask) {
103 raster_config_se |=
104 S_028350_PKR_MAP(V_028350_RASTER_CONFIG_PKR_MAP_3);
105 } else {
106 raster_config_se |=
107 S_028350_PKR_MAP(V_028350_RASTER_CONFIG_PKR_MAP_0);
108 }
109 }
110
111 if (rb_per_se >= 2) {
112 unsigned rb0_mask = 1 << (se * rb_per_se);
113 unsigned rb1_mask = rb0_mask << 1;
114
115 rb0_mask &= rb_mask;
116 rb1_mask &= rb_mask;
117 if (!rb0_mask || !rb1_mask) {
118 raster_config_se &= C_028350_RB_MAP_PKR0;
119
120 if (!rb0_mask) {
121 raster_config_se |=
122 S_028350_RB_MAP_PKR0(V_028350_RASTER_CONFIG_RB_MAP_3);
123 } else {
124 raster_config_se |=
125 S_028350_RB_MAP_PKR0(V_028350_RASTER_CONFIG_RB_MAP_0);
126 }
127 }
128
129 if (rb_per_se > 2) {
130 rb0_mask = 1 << (se * rb_per_se + rb_per_pkr);
131 rb1_mask = rb0_mask << 1;
132 rb0_mask &= rb_mask;
133 rb1_mask &= rb_mask;
134 if (!rb0_mask || !rb1_mask) {
135 raster_config_se &= C_028350_RB_MAP_PKR1;
136
137 if (!rb0_mask) {
138 raster_config_se |=
139 S_028350_RB_MAP_PKR1(V_028350_RASTER_CONFIG_RB_MAP_3);
140 } else {
141 raster_config_se |=
142 S_028350_RB_MAP_PKR1(V_028350_RASTER_CONFIG_RB_MAP_0);
143 }
144 }
145 }
146 }
147
148 /* GRBM_GFX_INDEX has a different offset on SI and CI+ */
149 if (physical_device->rad_info.chip_class < CIK)
150 radeon_set_config_reg(cs, R_00802C_GRBM_GFX_INDEX,
151 S_00802C_SE_INDEX(se) |
152 S_00802C_SH_BROADCAST_WRITES(1) |
153 S_00802C_INSTANCE_BROADCAST_WRITES(1));
154 else
155 radeon_set_uconfig_reg(cs, R_030800_GRBM_GFX_INDEX,
156 S_030800_SE_INDEX(se) | S_030800_SH_BROADCAST_WRITES(1) |
157 S_030800_INSTANCE_BROADCAST_WRITES(1));
158 radeon_set_context_reg(cs, R_028350_PA_SC_RASTER_CONFIG, raster_config_se);
159 if (physical_device->rad_info.chip_class >= CIK)
160 radeon_set_context_reg(cs, R_028354_PA_SC_RASTER_CONFIG_1, raster_config_1);
161 }
162
163 /* GRBM_GFX_INDEX has a different offset on SI and CI+ */
164 if (physical_device->rad_info.chip_class < CIK)
165 radeon_set_config_reg(cs, R_00802C_GRBM_GFX_INDEX,
166 S_00802C_SE_BROADCAST_WRITES(1) |
167 S_00802C_SH_BROADCAST_WRITES(1) |
168 S_00802C_INSTANCE_BROADCAST_WRITES(1));
169 else
170 radeon_set_uconfig_reg(cs, R_030800_GRBM_GFX_INDEX,
171 S_030800_SE_BROADCAST_WRITES(1) | S_030800_SH_BROADCAST_WRITES(1) |
172 S_030800_INSTANCE_BROADCAST_WRITES(1));
173 }
174
175 static void
176 si_emit_compute(struct radv_physical_device *physical_device,
177 struct radeon_winsys_cs *cs)
178 {
179 radeon_set_sh_reg_seq(cs, R_00B810_COMPUTE_START_X, 3);
180 radeon_emit(cs, 0);
181 radeon_emit(cs, 0);
182 radeon_emit(cs, 0);
183
184 radeon_set_sh_reg_seq(cs, R_00B854_COMPUTE_RESOURCE_LIMITS,
185 S_00B854_WAVES_PER_SH(0x3));
186 radeon_emit(cs, 0);
187 /* R_00B858_COMPUTE_STATIC_THREAD_MGMT_SE0 / SE1 */
188 radeon_emit(cs, S_00B858_SH0_CU_EN(0xffff) | S_00B858_SH1_CU_EN(0xffff));
189 radeon_emit(cs, S_00B85C_SH0_CU_EN(0xffff) | S_00B85C_SH1_CU_EN(0xffff));
190
191 if (physical_device->rad_info.chip_class >= CIK) {
192 /* Also set R_00B858_COMPUTE_STATIC_THREAD_MGMT_SE2 / SE3 */
193 radeon_set_sh_reg_seq(cs,
194 R_00B864_COMPUTE_STATIC_THREAD_MGMT_SE2, 2);
195 radeon_emit(cs, S_00B864_SH0_CU_EN(0xffff) |
196 S_00B864_SH1_CU_EN(0xffff));
197 radeon_emit(cs, S_00B868_SH0_CU_EN(0xffff) |
198 S_00B868_SH1_CU_EN(0xffff));
199 }
200
201 /* This register has been moved to R_00CD20_COMPUTE_MAX_WAVE_ID
202 * and is now per pipe, so it should be handled in the
203 * kernel if we want to use something other than the default value,
204 * which is now 0x22f.
205 */
206 if (physical_device->rad_info.chip_class <= SI) {
207 /* XXX: This should be:
208 * (number of compute units) * 4 * (waves per simd) - 1 */
209
210 radeon_set_sh_reg(cs, R_00B82C_COMPUTE_MAX_WAVE_ID,
211 0x190 /* Default value */);
212 }
213 }
214
215 void
216 si_init_compute(struct radv_cmd_buffer *cmd_buffer)
217 {
218 struct radv_physical_device *physical_device = cmd_buffer->device->physical_device;
219 si_emit_compute(physical_device, cmd_buffer->cs);
220 }
221
222 /* 12.4 fixed-point */
223 static unsigned radv_pack_float_12p4(float x)
224 {
225 return x <= 0 ? 0 :
226 x >= 4096 ? 0xffff : x * 16;
227 }
228
229 static void
230 si_set_raster_config(struct radv_physical_device *physical_device,
231 struct radeon_winsys_cs *cs)
232 {
233 unsigned num_rb = MIN2(physical_device->rad_info.num_render_backends, 16);
234 unsigned rb_mask = physical_device->rad_info.enabled_rb_mask;
235 unsigned raster_config, raster_config_1;
236
237 switch (physical_device->rad_info.family) {
238 case CHIP_TAHITI:
239 case CHIP_PITCAIRN:
240 raster_config = 0x2a00126a;
241 raster_config_1 = 0x00000000;
242 break;
243 case CHIP_VERDE:
244 raster_config = 0x0000124a;
245 raster_config_1 = 0x00000000;
246 break;
247 case CHIP_OLAND:
248 raster_config = 0x00000082;
249 raster_config_1 = 0x00000000;
250 break;
251 case CHIP_HAINAN:
252 raster_config = 0x00000000;
253 raster_config_1 = 0x00000000;
254 break;
255 case CHIP_BONAIRE:
256 raster_config = 0x16000012;
257 raster_config_1 = 0x00000000;
258 break;
259 case CHIP_HAWAII:
260 raster_config = 0x3a00161a;
261 raster_config_1 = 0x0000002e;
262 break;
263 case CHIP_FIJI:
264 if (physical_device->rad_info.cik_macrotile_mode_array[0] == 0x000000e8) {
265 /* old kernels with old tiling config */
266 raster_config = 0x16000012;
267 raster_config_1 = 0x0000002a;
268 } else {
269 raster_config = 0x3a00161a;
270 raster_config_1 = 0x0000002e;
271 }
272 break;
273 case CHIP_POLARIS10:
274 raster_config = 0x16000012;
275 raster_config_1 = 0x0000002a;
276 break;
277 case CHIP_POLARIS11:
278 case CHIP_POLARIS12:
279 raster_config = 0x16000012;
280 raster_config_1 = 0x00000000;
281 break;
282 case CHIP_TONGA:
283 raster_config = 0x16000012;
284 raster_config_1 = 0x0000002a;
285 break;
286 case CHIP_ICELAND:
287 if (num_rb == 1)
288 raster_config = 0x00000000;
289 else
290 raster_config = 0x00000002;
291 raster_config_1 = 0x00000000;
292 break;
293 case CHIP_CARRIZO:
294 raster_config = 0x00000002;
295 raster_config_1 = 0x00000000;
296 break;
297 case CHIP_KAVERI:
298 /* KV should be 0x00000002, but that causes problems with radeon */
299 raster_config = 0x00000000; /* 0x00000002 */
300 raster_config_1 = 0x00000000;
301 break;
302 case CHIP_KABINI:
303 case CHIP_MULLINS:
304 case CHIP_STONEY:
305 raster_config = 0x00000000;
306 raster_config_1 = 0x00000000;
307 break;
308 default:
309 fprintf(stderr,
310 "radv: Unknown GPU, using 0 for raster_config\n");
311 raster_config = 0x00000000;
312 raster_config_1 = 0x00000000;
313 break;
314 }
315
316 /* Always use the default config when all backends are enabled
317 * (or when we failed to determine the enabled backends).
318 */
319 if (!rb_mask || util_bitcount(rb_mask) >= num_rb) {
320 radeon_set_context_reg(cs, R_028350_PA_SC_RASTER_CONFIG,
321 raster_config);
322 if (physical_device->rad_info.chip_class >= CIK)
323 radeon_set_context_reg(cs, R_028354_PA_SC_RASTER_CONFIG_1,
324 raster_config_1);
325 } else {
326 si_write_harvested_raster_configs(physical_device, cs,
327 raster_config,
328 raster_config_1);
329 }
330 }
331
332 static void
333 si_emit_config(struct radv_physical_device *physical_device,
334 struct radeon_winsys_cs *cs)
335 {
336 int i;
337
338 /* Only SI can disable CLEAR_STATE for now. */
339 assert(physical_device->has_clear_state ||
340 physical_device->rad_info.chip_class == SI);
341
342 radeon_emit(cs, PKT3(PKT3_CONTEXT_CONTROL, 1, 0));
343 radeon_emit(cs, CONTEXT_CONTROL_LOAD_ENABLE(1));
344 radeon_emit(cs, CONTEXT_CONTROL_SHADOW_ENABLE(1));
345
346 if (physical_device->has_clear_state) {
347 radeon_emit(cs, PKT3(PKT3_CLEAR_STATE, 0, 0));
348 radeon_emit(cs, 0);
349 }
350
351 if (physical_device->rad_info.chip_class <= VI)
352 si_set_raster_config(physical_device, cs);
353
354 radeon_set_context_reg(cs, R_028A18_VGT_HOS_MAX_TESS_LEVEL, fui(64));
355 if (!physical_device->has_clear_state)
356 radeon_set_context_reg(cs, R_028A1C_VGT_HOS_MIN_TESS_LEVEL, fui(0));
357
358 /* FIXME calculate these values somehow ??? */
359 if (physical_device->rad_info.chip_class <= VI) {
360 radeon_set_context_reg(cs, R_028A54_VGT_GS_PER_ES, SI_GS_PER_ES);
361 radeon_set_context_reg(cs, R_028A58_VGT_ES_PER_GS, 0x40);
362 }
363
364 if (!physical_device->has_clear_state) {
365 radeon_set_context_reg(cs, R_028A5C_VGT_GS_PER_VS, 0x2);
366 radeon_set_context_reg(cs, R_028A8C_VGT_PRIMITIVEID_RESET, 0x0);
367 radeon_set_context_reg(cs, R_028B98_VGT_STRMOUT_BUFFER_CONFIG, 0x0);
368 }
369
370 radeon_set_context_reg(cs, R_028AA0_VGT_INSTANCE_STEP_RATE_0, 1);
371 if (!physical_device->has_clear_state)
372 radeon_set_context_reg(cs, R_028AB8_VGT_VTX_CNT_EN, 0x0);
373 if (physical_device->rad_info.chip_class < CIK)
374 radeon_set_config_reg(cs, R_008A14_PA_CL_ENHANCE, S_008A14_NUM_CLIP_SEQ(3) |
375 S_008A14_CLIP_VTX_REORDER_ENA(1));
376
377 radeon_set_context_reg(cs, R_028BD4_PA_SC_CENTROID_PRIORITY_0, 0x76543210);
378 radeon_set_context_reg(cs, R_028BD8_PA_SC_CENTROID_PRIORITY_1, 0xfedcba98);
379
380 if (!physical_device->has_clear_state)
381 radeon_set_context_reg(cs, R_02882C_PA_SU_PRIM_FILTER_CNTL, 0);
382
383 /* CLEAR_STATE doesn't clear these correctly on certain generations.
384 * I don't know why. Deduced by trial and error.
385 */
386 if (physical_device->rad_info.chip_class <= CIK) {
387 radeon_set_context_reg(cs, R_028B28_VGT_STRMOUT_DRAW_OPAQUE_OFFSET, 0);
388 radeon_set_context_reg(cs, R_028204_PA_SC_WINDOW_SCISSOR_TL,
389 S_028204_WINDOW_OFFSET_DISABLE(1));
390 radeon_set_context_reg(cs, R_028240_PA_SC_GENERIC_SCISSOR_TL,
391 S_028240_WINDOW_OFFSET_DISABLE(1));
392 radeon_set_context_reg(cs, R_028244_PA_SC_GENERIC_SCISSOR_BR,
393 S_028244_BR_X(16384) | S_028244_BR_Y(16384));
394 radeon_set_context_reg(cs, R_028030_PA_SC_SCREEN_SCISSOR_TL, 0);
395 radeon_set_context_reg(cs, R_028034_PA_SC_SCREEN_SCISSOR_BR,
396 S_028034_BR_X(16384) | S_028034_BR_Y(16384));
397 }
398
399 if (!physical_device->has_clear_state) {
400 for (i = 0; i < 16; i++) {
401 radeon_set_context_reg(cs, R_0282D0_PA_SC_VPORT_ZMIN_0 + i*8, 0);
402 radeon_set_context_reg(cs, R_0282D4_PA_SC_VPORT_ZMAX_0 + i*8, fui(1.0));
403 }
404 }
405
406 if (!physical_device->has_clear_state) {
407 radeon_set_context_reg(cs, R_02820C_PA_SC_CLIPRECT_RULE, 0xFFFF);
408 radeon_set_context_reg(cs, R_028230_PA_SC_EDGERULE, 0xAAAAAAAA);
409 /* PA_SU_HARDWARE_SCREEN_OFFSET must be 0 due to hw bug on SI */
410 radeon_set_context_reg(cs, R_028234_PA_SU_HARDWARE_SCREEN_OFFSET, 0);
411 radeon_set_context_reg(cs, R_028820_PA_CL_NANINF_CNTL, 0);
412 radeon_set_context_reg(cs, R_028AC0_DB_SRESULTS_COMPARE_STATE0, 0x0);
413 radeon_set_context_reg(cs, R_028AC4_DB_SRESULTS_COMPARE_STATE1, 0x0);
414 radeon_set_context_reg(cs, R_028AC8_DB_PRELOAD_CONTROL, 0x0);
415 }
416
417 radeon_set_context_reg(cs, R_02800C_DB_RENDER_OVERRIDE,
418 S_02800C_FORCE_HIS_ENABLE0(V_02800C_FORCE_DISABLE) |
419 S_02800C_FORCE_HIS_ENABLE1(V_02800C_FORCE_DISABLE));
420
421 if (physical_device->rad_info.chip_class >= GFX9) {
422 radeon_set_uconfig_reg(cs, R_030920_VGT_MAX_VTX_INDX, ~0);
423 radeon_set_uconfig_reg(cs, R_030924_VGT_MIN_VTX_INDX, 0);
424 radeon_set_uconfig_reg(cs, R_030928_VGT_INDX_OFFSET, 0);
425 } else {
426 /* These registers, when written, also overwrite the
427 * CLEAR_STATE context, so we can't rely on CLEAR_STATE setting
428 * them. It would be an issue if there was another UMD
429 * changing them.
430 */
431 radeon_set_context_reg(cs, R_028400_VGT_MAX_VTX_INDX, ~0);
432 radeon_set_context_reg(cs, R_028404_VGT_MIN_VTX_INDX, 0);
433 radeon_set_context_reg(cs, R_028408_VGT_INDX_OFFSET, 0);
434 }
435
436 if (physical_device->rad_info.chip_class >= CIK) {
437 if (physical_device->rad_info.chip_class >= GFX9) {
438 radeon_set_sh_reg(cs, R_00B41C_SPI_SHADER_PGM_RSRC3_HS,
439 S_00B41C_CU_EN(0xffff) | S_00B41C_WAVE_LIMIT(0x3F));
440 } else {
441 radeon_set_sh_reg(cs, R_00B51C_SPI_SHADER_PGM_RSRC3_LS,
442 S_00B51C_CU_EN(0xffff) | S_00B51C_WAVE_LIMIT(0x3F));
443 radeon_set_sh_reg(cs, R_00B41C_SPI_SHADER_PGM_RSRC3_HS,
444 S_00B41C_WAVE_LIMIT(0x3F));
445 radeon_set_sh_reg(cs, R_00B31C_SPI_SHADER_PGM_RSRC3_ES,
446 S_00B31C_CU_EN(0xffff) | S_00B31C_WAVE_LIMIT(0x3F));
447 /* If this is 0, Bonaire can hang even if GS isn't being used.
448 * Other chips are unaffected. These are suboptimal values,
449 * but we don't use on-chip GS.
450 */
451 radeon_set_context_reg(cs, R_028A44_VGT_GS_ONCHIP_CNTL,
452 S_028A44_ES_VERTS_PER_SUBGRP(64) |
453 S_028A44_GS_PRIMS_PER_SUBGRP(4));
454 }
455 radeon_set_sh_reg(cs, R_00B21C_SPI_SHADER_PGM_RSRC3_GS,
456 S_00B21C_CU_EN(0xffff) | S_00B21C_WAVE_LIMIT(0x3F));
457
458 if (physical_device->rad_info.num_good_compute_units /
459 (physical_device->rad_info.max_se * physical_device->rad_info.max_sh_per_se) <= 4) {
460 /* Too few available compute units per SH. Disallowing
461 * VS to run on CU0 could hurt us more than late VS
462 * allocation would help.
463 *
464 * LATE_ALLOC_VS = 2 is the highest safe number.
465 */
466 radeon_set_sh_reg(cs, R_00B118_SPI_SHADER_PGM_RSRC3_VS,
467 S_00B118_CU_EN(0xffff) | S_00B118_WAVE_LIMIT(0x3F) );
468 radeon_set_sh_reg(cs, R_00B11C_SPI_SHADER_LATE_ALLOC_VS, S_00B11C_LIMIT(2));
469 } else {
470 /* Set LATE_ALLOC_VS == 31. It should be less than
471 * the number of scratch waves. Limitations:
472 * - VS can't execute on CU0.
473 * - If HS writes outputs to LDS, LS can't execute on CU0.
474 */
475 radeon_set_sh_reg(cs, R_00B118_SPI_SHADER_PGM_RSRC3_VS,
476 S_00B118_CU_EN(0xfffe) | S_00B118_WAVE_LIMIT(0x3F));
477 radeon_set_sh_reg(cs, R_00B11C_SPI_SHADER_LATE_ALLOC_VS, S_00B11C_LIMIT(31));
478 }
479
480 radeon_set_sh_reg(cs, R_00B01C_SPI_SHADER_PGM_RSRC3_PS,
481 S_00B01C_CU_EN(0xffff) | S_00B01C_WAVE_LIMIT(0x3F));
482 }
483
484 if (physical_device->rad_info.chip_class >= VI) {
485 uint32_t vgt_tess_distribution;
486 radeon_set_context_reg(cs, R_028424_CB_DCC_CONTROL,
487 S_028424_OVERWRITE_COMBINER_MRT_SHARING_DISABLE(1) |
488 S_028424_OVERWRITE_COMBINER_WATERMARK(4));
489
490 vgt_tess_distribution = S_028B50_ACCUM_ISOLINE(32) |
491 S_028B50_ACCUM_TRI(11) |
492 S_028B50_ACCUM_QUAD(11) |
493 S_028B50_DONUT_SPLIT(16);
494
495 if (physical_device->rad_info.family == CHIP_FIJI ||
496 physical_device->rad_info.family >= CHIP_POLARIS10)
497 vgt_tess_distribution |= S_028B50_TRAP_SPLIT(3);
498
499 radeon_set_context_reg(cs, R_028B50_VGT_TESS_DISTRIBUTION,
500 vgt_tess_distribution);
501 } else if (!physical_device->has_clear_state) {
502 radeon_set_context_reg(cs, R_028C58_VGT_VERTEX_REUSE_BLOCK_CNTL, 14);
503 radeon_set_context_reg(cs, R_028C5C_VGT_OUT_DEALLOC_CNTL, 16);
504 }
505
506 if (physical_device->rad_info.chip_class >= GFX9) {
507 unsigned num_se = physical_device->rad_info.max_se;
508 unsigned pc_lines = 0;
509
510 switch (physical_device->rad_info.family) {
511 case CHIP_VEGA10:
512 case CHIP_VEGA12:
513 pc_lines = 4096;
514 break;
515 case CHIP_RAVEN:
516 pc_lines = 1024;
517 break;
518 default:
519 assert(0);
520 }
521
522 radeon_set_context_reg(cs, R_028C48_PA_SC_BINNER_CNTL_1,
523 S_028C48_MAX_ALLOC_COUNT(MIN2(128, pc_lines / (4 * num_se))) |
524 S_028C48_MAX_PRIM_PER_BATCH(1023));
525 radeon_set_context_reg(cs, R_028C4C_PA_SC_CONSERVATIVE_RASTERIZATION_CNTL,
526 S_028C4C_NULL_SQUAD_AA_MASK_ENABLE(1));
527 radeon_set_uconfig_reg(cs, R_030968_VGT_INSTANCE_BASE_ID, 0);
528 }
529
530 unsigned tmp = (unsigned)(1.0 * 8.0);
531 radeon_set_context_reg_seq(cs, R_028A00_PA_SU_POINT_SIZE, 1);
532 radeon_emit(cs, S_028A00_HEIGHT(tmp) | S_028A00_WIDTH(tmp));
533 radeon_set_context_reg_seq(cs, R_028A04_PA_SU_POINT_MINMAX, 1);
534 radeon_emit(cs, S_028A04_MIN_SIZE(radv_pack_float_12p4(0)) |
535 S_028A04_MAX_SIZE(radv_pack_float_12p4(8192/2)));
536
537 if (!physical_device->has_clear_state) {
538 radeon_set_context_reg(cs, R_028004_DB_COUNT_CONTROL,
539 S_028004_ZPASS_INCREMENT_DISABLE(1));
540 }
541
542 si_emit_compute(physical_device, cs);
543 }
544
545 void si_init_config(struct radv_cmd_buffer *cmd_buffer)
546 {
547 struct radv_physical_device *physical_device = cmd_buffer->device->physical_device;
548
549 si_emit_config(physical_device, cmd_buffer->cs);
550 }
551
552 void
553 cik_create_gfx_config(struct radv_device *device)
554 {
555 struct radeon_winsys_cs *cs = device->ws->cs_create(device->ws, RING_GFX);
556 if (!cs)
557 return;
558
559 si_emit_config(device->physical_device, cs);
560
561 while (cs->cdw & 7) {
562 if (device->physical_device->rad_info.gfx_ib_pad_with_type2)
563 radeon_emit(cs, 0x80000000);
564 else
565 radeon_emit(cs, 0xffff1000);
566 }
567
568 device->gfx_init = device->ws->buffer_create(device->ws,
569 cs->cdw * 4, 4096,
570 RADEON_DOMAIN_GTT,
571 RADEON_FLAG_CPU_ACCESS|
572 RADEON_FLAG_NO_INTERPROCESS_SHARING |
573 RADEON_FLAG_READ_ONLY);
574 if (!device->gfx_init)
575 goto fail;
576
577 void *map = device->ws->buffer_map(device->gfx_init);
578 if (!map) {
579 device->ws->buffer_destroy(device->gfx_init);
580 device->gfx_init = NULL;
581 goto fail;
582 }
583 memcpy(map, cs->buf, cs->cdw * 4);
584
585 device->ws->buffer_unmap(device->gfx_init);
586 device->gfx_init_size_dw = cs->cdw;
587 fail:
588 device->ws->cs_destroy(cs);
589 }
590
591 static void
592 get_viewport_xform(const VkViewport *viewport,
593 float scale[3], float translate[3])
594 {
595 float x = viewport->x;
596 float y = viewport->y;
597 float half_width = 0.5f * viewport->width;
598 float half_height = 0.5f * viewport->height;
599 double n = viewport->minDepth;
600 double f = viewport->maxDepth;
601
602 scale[0] = half_width;
603 translate[0] = half_width + x;
604 scale[1] = half_height;
605 translate[1] = half_height + y;
606
607 scale[2] = (f - n);
608 translate[2] = n;
609 }
610
611 void
612 si_write_viewport(struct radeon_winsys_cs *cs, int first_vp,
613 int count, const VkViewport *viewports)
614 {
615 int i;
616
617 assert(count);
618 radeon_set_context_reg_seq(cs, R_02843C_PA_CL_VPORT_XSCALE +
619 first_vp * 4 * 6, count * 6);
620
621 for (i = 0; i < count; i++) {
622 float scale[3], translate[3];
623
624
625 get_viewport_xform(&viewports[i], scale, translate);
626 radeon_emit(cs, fui(scale[0]));
627 radeon_emit(cs, fui(translate[0]));
628 radeon_emit(cs, fui(scale[1]));
629 radeon_emit(cs, fui(translate[1]));
630 radeon_emit(cs, fui(scale[2]));
631 radeon_emit(cs, fui(translate[2]));
632 }
633
634 radeon_set_context_reg_seq(cs, R_0282D0_PA_SC_VPORT_ZMIN_0 +
635 first_vp * 4 * 2, count * 2);
636 for (i = 0; i < count; i++) {
637 float zmin = MIN2(viewports[i].minDepth, viewports[i].maxDepth);
638 float zmax = MAX2(viewports[i].minDepth, viewports[i].maxDepth);
639 radeon_emit(cs, fui(zmin));
640 radeon_emit(cs, fui(zmax));
641 }
642 }
643
644 static VkRect2D si_scissor_from_viewport(const VkViewport *viewport)
645 {
646 float scale[3], translate[3];
647 VkRect2D rect;
648
649 get_viewport_xform(viewport, scale, translate);
650
651 rect.offset.x = translate[0] - abs(scale[0]);
652 rect.offset.y = translate[1] - abs(scale[1]);
653 rect.extent.width = ceilf(translate[0] + abs(scale[0])) - rect.offset.x;
654 rect.extent.height = ceilf(translate[1] + abs(scale[1])) - rect.offset.y;
655
656 return rect;
657 }
658
659 static VkRect2D si_intersect_scissor(const VkRect2D *a, const VkRect2D *b) {
660 VkRect2D ret;
661 ret.offset.x = MAX2(a->offset.x, b->offset.x);
662 ret.offset.y = MAX2(a->offset.y, b->offset.y);
663 ret.extent.width = MIN2(a->offset.x + a->extent.width,
664 b->offset.x + b->extent.width) - ret.offset.x;
665 ret.extent.height = MIN2(a->offset.y + a->extent.height,
666 b->offset.y + b->extent.height) - ret.offset.y;
667 return ret;
668 }
669
670 void
671 si_write_scissors(struct radeon_winsys_cs *cs, int first,
672 int count, const VkRect2D *scissors,
673 const VkViewport *viewports, bool can_use_guardband)
674 {
675 int i;
676 float scale[3], translate[3], guardband_x = INFINITY, guardband_y = INFINITY;
677 const float max_range = 32767.0f;
678 if (!count)
679 return;
680
681 radeon_set_context_reg_seq(cs, R_028250_PA_SC_VPORT_SCISSOR_0_TL + first * 4 * 2, count * 2);
682 for (i = 0; i < count; i++) {
683 VkRect2D viewport_scissor = si_scissor_from_viewport(viewports + i);
684 VkRect2D scissor = si_intersect_scissor(&scissors[i], &viewport_scissor);
685
686 get_viewport_xform(viewports + i, scale, translate);
687 scale[0] = abs(scale[0]);
688 scale[1] = abs(scale[1]);
689
690 if (scale[0] < 0.5)
691 scale[0] = 0.5;
692 if (scale[1] < 0.5)
693 scale[1] = 0.5;
694
695 guardband_x = MIN2(guardband_x, (max_range - abs(translate[0])) / scale[0]);
696 guardband_y = MIN2(guardband_y, (max_range - abs(translate[1])) / scale[1]);
697
698 radeon_emit(cs, S_028250_TL_X(scissor.offset.x) |
699 S_028250_TL_Y(scissor.offset.y) |
700 S_028250_WINDOW_OFFSET_DISABLE(1));
701 radeon_emit(cs, S_028254_BR_X(scissor.offset.x + scissor.extent.width) |
702 S_028254_BR_Y(scissor.offset.y + scissor.extent.height));
703 }
704 if (!can_use_guardband) {
705 guardband_x = 1.0;
706 guardband_y = 1.0;
707 }
708
709 radeon_set_context_reg_seq(cs, R_028BE8_PA_CL_GB_VERT_CLIP_ADJ, 4);
710 radeon_emit(cs, fui(guardband_y));
711 radeon_emit(cs, fui(1.0));
712 radeon_emit(cs, fui(guardband_x));
713 radeon_emit(cs, fui(1.0));
714 }
715
716 static inline unsigned
717 radv_prims_for_vertices(struct radv_prim_vertex_count *info, unsigned num)
718 {
719 if (num == 0)
720 return 0;
721
722 if (info->incr == 0)
723 return 0;
724
725 if (num < info->min)
726 return 0;
727
728 return 1 + ((num - info->min) / info->incr);
729 }
730
731 uint32_t
732 si_get_ia_multi_vgt_param(struct radv_cmd_buffer *cmd_buffer,
733 bool instanced_draw, bool indirect_draw,
734 uint32_t draw_vertex_count)
735 {
736 enum chip_class chip_class = cmd_buffer->device->physical_device->rad_info.chip_class;
737 enum radeon_family family = cmd_buffer->device->physical_device->rad_info.family;
738 struct radeon_info *info = &cmd_buffer->device->physical_device->rad_info;
739 const unsigned max_primgroup_in_wave = 2;
740 /* SWITCH_ON_EOP(0) is always preferable. */
741 bool wd_switch_on_eop = false;
742 bool ia_switch_on_eop = false;
743 bool ia_switch_on_eoi = false;
744 bool partial_vs_wave = false;
745 bool partial_es_wave = cmd_buffer->state.pipeline->graphics.ia_multi_vgt_param.partial_es_wave;
746 bool multi_instances_smaller_than_primgroup;
747
748 multi_instances_smaller_than_primgroup = indirect_draw;
749 if (!multi_instances_smaller_than_primgroup && instanced_draw) {
750 uint32_t num_prims = radv_prims_for_vertices(&cmd_buffer->state.pipeline->graphics.prim_vertex_count, draw_vertex_count);
751 if (num_prims < cmd_buffer->state.pipeline->graphics.ia_multi_vgt_param.primgroup_size)
752 multi_instances_smaller_than_primgroup = true;
753 }
754
755 ia_switch_on_eoi = cmd_buffer->state.pipeline->graphics.ia_multi_vgt_param.ia_switch_on_eoi;
756 partial_vs_wave = cmd_buffer->state.pipeline->graphics.ia_multi_vgt_param.partial_vs_wave;
757
758 if (chip_class >= CIK) {
759 wd_switch_on_eop = cmd_buffer->state.pipeline->graphics.ia_multi_vgt_param.wd_switch_on_eop;
760
761 /* Hawaii hangs if instancing is enabled and WD_SWITCH_ON_EOP is 0.
762 * We don't know that for indirect drawing, so treat it as
763 * always problematic. */
764 if (family == CHIP_HAWAII &&
765 (instanced_draw || indirect_draw))
766 wd_switch_on_eop = true;
767
768 /* Performance recommendation for 4 SE Gfx7-8 parts if
769 * instances are smaller than a primgroup.
770 * Assume indirect draws always use small instances.
771 * This is needed for good VS wave utilization.
772 */
773 if (chip_class <= VI &&
774 info->max_se == 4 &&
775 multi_instances_smaller_than_primgroup)
776 wd_switch_on_eop = true;
777
778 /* Required on CIK and later. */
779 if (info->max_se > 2 && !wd_switch_on_eop)
780 ia_switch_on_eoi = true;
781
782 /* Required by Hawaii and, for some special cases, by VI. */
783 if (ia_switch_on_eoi &&
784 (family == CHIP_HAWAII ||
785 (chip_class == VI &&
786 /* max primgroup in wave is always 2 - leave this for documentation */
787 (radv_pipeline_has_gs(cmd_buffer->state.pipeline) || max_primgroup_in_wave != 2))))
788 partial_vs_wave = true;
789
790 /* Instancing bug on Bonaire. */
791 if (family == CHIP_BONAIRE && ia_switch_on_eoi &&
792 (instanced_draw || indirect_draw))
793 partial_vs_wave = true;
794
795 /* If the WD switch is false, the IA switch must be false too. */
796 assert(wd_switch_on_eop || !ia_switch_on_eop);
797 }
798 /* If SWITCH_ON_EOI is set, PARTIAL_ES_WAVE must be set too. */
799 if (chip_class <= VI && ia_switch_on_eoi)
800 partial_es_wave = true;
801
802 if (radv_pipeline_has_gs(cmd_buffer->state.pipeline)) {
803 /* GS hw bug with single-primitive instances and SWITCH_ON_EOI.
804 * The hw doc says all multi-SE chips are affected, but amdgpu-pro Vulkan
805 * only applies it to Hawaii. Do what amdgpu-pro Vulkan does.
806 */
807 if (family == CHIP_HAWAII && ia_switch_on_eoi) {
808 bool set_vgt_flush = indirect_draw;
809 if (!set_vgt_flush && instanced_draw) {
810 uint32_t num_prims = radv_prims_for_vertices(&cmd_buffer->state.pipeline->graphics.prim_vertex_count, draw_vertex_count);
811 if (num_prims <= 1)
812 set_vgt_flush = true;
813 }
814 if (set_vgt_flush)
815 cmd_buffer->state.flush_bits |= RADV_CMD_FLAG_VGT_FLUSH;
816 }
817 }
818
819 return cmd_buffer->state.pipeline->graphics.ia_multi_vgt_param.base |
820 S_028AA8_SWITCH_ON_EOP(ia_switch_on_eop) |
821 S_028AA8_SWITCH_ON_EOI(ia_switch_on_eoi) |
822 S_028AA8_PARTIAL_VS_WAVE_ON(partial_vs_wave) |
823 S_028AA8_PARTIAL_ES_WAVE_ON(partial_es_wave) |
824 S_028AA8_WD_SWITCH_ON_EOP(chip_class >= CIK ? wd_switch_on_eop : 0);
825
826 }
827
828 void si_cs_emit_write_event_eop(struct radeon_winsys_cs *cs,
829 bool predicated,
830 enum chip_class chip_class,
831 bool is_mec,
832 unsigned event, unsigned event_flags,
833 unsigned data_sel,
834 uint64_t va,
835 uint32_t old_fence,
836 uint32_t new_fence)
837 {
838 unsigned op = EVENT_TYPE(event) |
839 EVENT_INDEX(5) |
840 event_flags;
841 unsigned is_gfx8_mec = is_mec && chip_class < GFX9;
842
843 if (chip_class >= GFX9 || is_gfx8_mec) {
844 radeon_emit(cs, PKT3(PKT3_RELEASE_MEM, is_gfx8_mec ? 5 : 6, predicated));
845 radeon_emit(cs, op);
846 radeon_emit(cs, EOP_DATA_SEL(data_sel));
847 radeon_emit(cs, va); /* address lo */
848 radeon_emit(cs, va >> 32); /* address hi */
849 radeon_emit(cs, new_fence); /* immediate data lo */
850 radeon_emit(cs, 0); /* immediate data hi */
851 if (!is_gfx8_mec)
852 radeon_emit(cs, 0); /* unused */
853 } else {
854 if (chip_class == CIK ||
855 chip_class == VI) {
856 /* Two EOP events are required to make all engines go idle
857 * (and optional cache flushes executed) before the timestamp
858 * is written.
859 */
860 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE_EOP, 4, predicated));
861 radeon_emit(cs, op);
862 radeon_emit(cs, va);
863 radeon_emit(cs, ((va >> 32) & 0xffff) | EOP_DATA_SEL(data_sel));
864 radeon_emit(cs, old_fence); /* immediate data */
865 radeon_emit(cs, 0); /* unused */
866 }
867
868 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE_EOP, 4, predicated));
869 radeon_emit(cs, op);
870 radeon_emit(cs, va);
871 radeon_emit(cs, ((va >> 32) & 0xffff) | EOP_DATA_SEL(data_sel));
872 radeon_emit(cs, new_fence); /* immediate data */
873 radeon_emit(cs, 0); /* unused */
874 }
875 }
876
877 void
878 si_emit_wait_fence(struct radeon_winsys_cs *cs,
879 bool predicated,
880 uint64_t va, uint32_t ref,
881 uint32_t mask)
882 {
883 radeon_emit(cs, PKT3(PKT3_WAIT_REG_MEM, 5, predicated));
884 radeon_emit(cs, WAIT_REG_MEM_EQUAL | WAIT_REG_MEM_MEM_SPACE(1));
885 radeon_emit(cs, va);
886 radeon_emit(cs, va >> 32);
887 radeon_emit(cs, ref); /* reference value */
888 radeon_emit(cs, mask); /* mask */
889 radeon_emit(cs, 4); /* poll interval */
890 }
891
892 static void
893 si_emit_acquire_mem(struct radeon_winsys_cs *cs,
894 bool is_mec,
895 bool predicated,
896 bool is_gfx9,
897 unsigned cp_coher_cntl)
898 {
899 if (is_mec || is_gfx9) {
900 uint32_t hi_val = is_gfx9 ? 0xffffff : 0xff;
901 radeon_emit(cs, PKT3(PKT3_ACQUIRE_MEM, 5, predicated) |
902 PKT3_SHADER_TYPE_S(is_mec));
903 radeon_emit(cs, cp_coher_cntl); /* CP_COHER_CNTL */
904 radeon_emit(cs, 0xffffffff); /* CP_COHER_SIZE */
905 radeon_emit(cs, hi_val); /* CP_COHER_SIZE_HI */
906 radeon_emit(cs, 0); /* CP_COHER_BASE */
907 radeon_emit(cs, 0); /* CP_COHER_BASE_HI */
908 radeon_emit(cs, 0x0000000A); /* POLL_INTERVAL */
909 } else {
910 /* ACQUIRE_MEM is only required on a compute ring. */
911 radeon_emit(cs, PKT3(PKT3_SURFACE_SYNC, 3, predicated));
912 radeon_emit(cs, cp_coher_cntl); /* CP_COHER_CNTL */
913 radeon_emit(cs, 0xffffffff); /* CP_COHER_SIZE */
914 radeon_emit(cs, 0); /* CP_COHER_BASE */
915 radeon_emit(cs, 0x0000000A); /* POLL_INTERVAL */
916 }
917 }
918
919 void
920 si_cs_emit_cache_flush(struct radeon_winsys_cs *cs,
921 enum chip_class chip_class,
922 uint32_t *flush_cnt,
923 uint64_t flush_va,
924 bool is_mec,
925 enum radv_cmd_flush_bits flush_bits)
926 {
927 unsigned cp_coher_cntl = 0;
928 uint32_t flush_cb_db = flush_bits & (RADV_CMD_FLAG_FLUSH_AND_INV_CB |
929 RADV_CMD_FLAG_FLUSH_AND_INV_DB);
930
931 if (flush_bits & RADV_CMD_FLAG_INV_ICACHE)
932 cp_coher_cntl |= S_0085F0_SH_ICACHE_ACTION_ENA(1);
933 if (flush_bits & RADV_CMD_FLAG_INV_SMEM_L1)
934 cp_coher_cntl |= S_0085F0_SH_KCACHE_ACTION_ENA(1);
935
936 if (chip_class <= VI) {
937 if (flush_bits & RADV_CMD_FLAG_FLUSH_AND_INV_CB) {
938 cp_coher_cntl |= S_0085F0_CB_ACTION_ENA(1) |
939 S_0085F0_CB0_DEST_BASE_ENA(1) |
940 S_0085F0_CB1_DEST_BASE_ENA(1) |
941 S_0085F0_CB2_DEST_BASE_ENA(1) |
942 S_0085F0_CB3_DEST_BASE_ENA(1) |
943 S_0085F0_CB4_DEST_BASE_ENA(1) |
944 S_0085F0_CB5_DEST_BASE_ENA(1) |
945 S_0085F0_CB6_DEST_BASE_ENA(1) |
946 S_0085F0_CB7_DEST_BASE_ENA(1);
947
948 /* Necessary for DCC */
949 if (chip_class >= VI) {
950 si_cs_emit_write_event_eop(cs,
951 false,
952 chip_class,
953 is_mec,
954 V_028A90_FLUSH_AND_INV_CB_DATA_TS,
955 0, 0, 0, 0, 0);
956 }
957 }
958 if (flush_bits & RADV_CMD_FLAG_FLUSH_AND_INV_DB) {
959 cp_coher_cntl |= S_0085F0_DB_ACTION_ENA(1) |
960 S_0085F0_DB_DEST_BASE_ENA(1);
961 }
962 }
963
964 if (flush_bits & RADV_CMD_FLAG_FLUSH_AND_INV_CB_META) {
965 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
966 radeon_emit(cs, EVENT_TYPE(V_028A90_FLUSH_AND_INV_CB_META) | EVENT_INDEX(0));
967 }
968
969 if (flush_bits & RADV_CMD_FLAG_FLUSH_AND_INV_DB_META) {
970 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
971 radeon_emit(cs, EVENT_TYPE(V_028A90_FLUSH_AND_INV_DB_META) | EVENT_INDEX(0));
972 }
973
974 if (flush_bits & RADV_CMD_FLAG_PS_PARTIAL_FLUSH) {
975 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
976 radeon_emit(cs, EVENT_TYPE(V_028A90_PS_PARTIAL_FLUSH) | EVENT_INDEX(4));
977 } else if (flush_bits & RADV_CMD_FLAG_VS_PARTIAL_FLUSH) {
978 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
979 radeon_emit(cs, EVENT_TYPE(V_028A90_VS_PARTIAL_FLUSH) | EVENT_INDEX(4));
980 }
981
982 if (flush_bits & RADV_CMD_FLAG_CS_PARTIAL_FLUSH) {
983 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
984 radeon_emit(cs, EVENT_TYPE(V_028A90_CS_PARTIAL_FLUSH) | EVENT_INDEX(4));
985 }
986
987 if (chip_class >= GFX9 && flush_cb_db) {
988 unsigned cb_db_event, tc_flags;
989
990 #if 0
991 /* This breaks a bunch of:
992 dEQP-VK.renderpass.dedicated_allocation.formats.d32_sfloat_s8_uint.input*.
993 use the big hammer always.
994 */
995 /* Set the CB/DB flush event. */
996 switch (flush_cb_db) {
997 case RADV_CMD_FLAG_FLUSH_AND_INV_CB:
998 cb_db_event = V_028A90_FLUSH_AND_INV_CB_DATA_TS;
999 break;
1000 case RADV_CMD_FLAG_FLUSH_AND_INV_DB:
1001 cb_db_event = V_028A90_FLUSH_AND_INV_DB_DATA_TS;
1002 break;
1003 default:
1004 /* both CB & DB */
1005 cb_db_event = V_028A90_CACHE_FLUSH_AND_INV_TS_EVENT;
1006 }
1007 #else
1008 cb_db_event = V_028A90_CACHE_FLUSH_AND_INV_TS_EVENT;
1009 #endif
1010 /* These are the only allowed combinations. If you need to
1011 * do multiple operations at once, do them separately.
1012 * All operations that invalidate L2 also seem to invalidate
1013 * metadata. Volatile (VOL) and WC flushes are not listed here.
1014 *
1015 * TC | TC_WB = writeback & invalidate L2 & L1
1016 * TC | TC_WB | TC_NC = writeback & invalidate L2 for MTYPE == NC
1017 * TC_WB | TC_NC = writeback L2 for MTYPE == NC
1018 * TC | TC_NC = invalidate L2 for MTYPE == NC
1019 * TC | TC_MD = writeback & invalidate L2 metadata (DCC, etc.)
1020 * TCL1 = invalidate L1
1021 */
1022 tc_flags = EVENT_TC_ACTION_ENA |
1023 EVENT_TC_MD_ACTION_ENA;
1024
1025 /* Ideally flush TC together with CB/DB. */
1026 if (flush_bits & RADV_CMD_FLAG_INV_GLOBAL_L2) {
1027 /* Writeback and invalidate everything in L2 & L1. */
1028 tc_flags = EVENT_TC_ACTION_ENA |
1029 EVENT_TC_WB_ACTION_ENA;
1030
1031
1032 /* Clear the flags. */
1033 flush_bits &= ~(RADV_CMD_FLAG_INV_GLOBAL_L2 |
1034 RADV_CMD_FLAG_WRITEBACK_GLOBAL_L2 |
1035 RADV_CMD_FLAG_INV_VMEM_L1);
1036 }
1037 assert(flush_cnt);
1038 uint32_t old_fence = (*flush_cnt)++;
1039
1040 si_cs_emit_write_event_eop(cs, false, chip_class, false, cb_db_event, tc_flags, 1,
1041 flush_va, old_fence, *flush_cnt);
1042 si_emit_wait_fence(cs, false, flush_va, *flush_cnt, 0xffffffff);
1043 }
1044
1045 /* VGT state sync */
1046 if (flush_bits & RADV_CMD_FLAG_VGT_FLUSH) {
1047 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
1048 radeon_emit(cs, EVENT_TYPE(V_028A90_VGT_FLUSH) | EVENT_INDEX(0));
1049 }
1050
1051 /* Make sure ME is idle (it executes most packets) before continuing.
1052 * This prevents read-after-write hazards between PFP and ME.
1053 */
1054 if ((cp_coher_cntl ||
1055 (flush_bits & (RADV_CMD_FLAG_CS_PARTIAL_FLUSH |
1056 RADV_CMD_FLAG_INV_VMEM_L1 |
1057 RADV_CMD_FLAG_INV_GLOBAL_L2 |
1058 RADV_CMD_FLAG_WRITEBACK_GLOBAL_L2))) &&
1059 !is_mec) {
1060 radeon_emit(cs, PKT3(PKT3_PFP_SYNC_ME, 0, 0));
1061 radeon_emit(cs, 0);
1062 }
1063
1064 if ((flush_bits & RADV_CMD_FLAG_INV_GLOBAL_L2) ||
1065 (chip_class <= CIK && (flush_bits & RADV_CMD_FLAG_WRITEBACK_GLOBAL_L2))) {
1066 si_emit_acquire_mem(cs, is_mec, false, chip_class >= GFX9,
1067 cp_coher_cntl |
1068 S_0085F0_TC_ACTION_ENA(1) |
1069 S_0085F0_TCL1_ACTION_ENA(1) |
1070 S_0301F0_TC_WB_ACTION_ENA(chip_class >= VI));
1071 cp_coher_cntl = 0;
1072 } else {
1073 if(flush_bits & RADV_CMD_FLAG_WRITEBACK_GLOBAL_L2) {
1074 /* WB = write-back
1075 * NC = apply to non-coherent MTYPEs
1076 * (i.e. MTYPE <= 1, which is what we use everywhere)
1077 *
1078 * WB doesn't work without NC.
1079 */
1080 si_emit_acquire_mem(cs, is_mec, false,
1081 chip_class >= GFX9,
1082 cp_coher_cntl |
1083 S_0301F0_TC_WB_ACTION_ENA(1) |
1084 S_0301F0_TC_NC_ACTION_ENA(1));
1085 cp_coher_cntl = 0;
1086 }
1087 if (flush_bits & RADV_CMD_FLAG_INV_VMEM_L1) {
1088 si_emit_acquire_mem(cs, is_mec,
1089 false, chip_class >= GFX9,
1090 cp_coher_cntl |
1091 S_0085F0_TCL1_ACTION_ENA(1));
1092 cp_coher_cntl = 0;
1093 }
1094 }
1095
1096 /* When one of the DEST_BASE flags is set, SURFACE_SYNC waits for idle.
1097 * Therefore, it should be last. Done in PFP.
1098 */
1099 if (cp_coher_cntl)
1100 si_emit_acquire_mem(cs, is_mec, false, chip_class >= GFX9, cp_coher_cntl);
1101 }
1102
1103 void
1104 si_emit_cache_flush(struct radv_cmd_buffer *cmd_buffer)
1105 {
1106 bool is_compute = cmd_buffer->queue_family_index == RADV_QUEUE_COMPUTE;
1107
1108 if (is_compute)
1109 cmd_buffer->state.flush_bits &= ~(RADV_CMD_FLAG_FLUSH_AND_INV_CB |
1110 RADV_CMD_FLAG_FLUSH_AND_INV_CB_META |
1111 RADV_CMD_FLAG_FLUSH_AND_INV_DB |
1112 RADV_CMD_FLAG_FLUSH_AND_INV_DB_META |
1113 RADV_CMD_FLAG_PS_PARTIAL_FLUSH |
1114 RADV_CMD_FLAG_VS_PARTIAL_FLUSH |
1115 RADV_CMD_FLAG_VGT_FLUSH);
1116
1117 if (!cmd_buffer->state.flush_bits)
1118 return;
1119
1120 enum chip_class chip_class = cmd_buffer->device->physical_device->rad_info.chip_class;
1121 radeon_check_space(cmd_buffer->device->ws, cmd_buffer->cs, 128);
1122
1123 uint32_t *ptr = NULL;
1124 uint64_t va = 0;
1125 if (chip_class == GFX9) {
1126 va = radv_buffer_get_va(cmd_buffer->gfx9_fence_bo) + cmd_buffer->gfx9_fence_offset;
1127 ptr = &cmd_buffer->gfx9_fence_idx;
1128 }
1129 si_cs_emit_cache_flush(cmd_buffer->cs,
1130 cmd_buffer->device->physical_device->rad_info.chip_class,
1131 ptr, va,
1132 radv_cmd_buffer_uses_mec(cmd_buffer),
1133 cmd_buffer->state.flush_bits);
1134
1135
1136 if (unlikely(cmd_buffer->device->trace_bo))
1137 radv_cmd_buffer_trace_emit(cmd_buffer);
1138
1139 cmd_buffer->state.flush_bits = 0;
1140 }
1141
1142 /* sets the CP predication state using a boolean stored at va */
1143 void
1144 si_emit_set_predication_state(struct radv_cmd_buffer *cmd_buffer, uint64_t va)
1145 {
1146 uint32_t op = 0;
1147
1148 if (va)
1149 op = PRED_OP(PREDICATION_OP_BOOL64) | PREDICATION_DRAW_VISIBLE;
1150 if (cmd_buffer->device->physical_device->rad_info.chip_class >= GFX9) {
1151 radeon_emit(cmd_buffer->cs, PKT3(PKT3_SET_PREDICATION, 2, 0));
1152 radeon_emit(cmd_buffer->cs, op);
1153 radeon_emit(cmd_buffer->cs, va);
1154 radeon_emit(cmd_buffer->cs, va >> 32);
1155 } else {
1156 radeon_emit(cmd_buffer->cs, PKT3(PKT3_SET_PREDICATION, 1, 0));
1157 radeon_emit(cmd_buffer->cs, va);
1158 radeon_emit(cmd_buffer->cs, op | ((va >> 32) & 0xFF));
1159 }
1160 }
1161
1162 /* Set this if you want the 3D engine to wait until CP DMA is done.
1163 * It should be set on the last CP DMA packet. */
1164 #define CP_DMA_SYNC (1 << 0)
1165
1166 /* Set this if the source data was used as a destination in a previous CP DMA
1167 * packet. It's for preventing a read-after-write (RAW) hazard between two
1168 * CP DMA packets. */
1169 #define CP_DMA_RAW_WAIT (1 << 1)
1170 #define CP_DMA_USE_L2 (1 << 2)
1171 #define CP_DMA_CLEAR (1 << 3)
1172
1173 /* Alignment for optimal performance. */
1174 #define SI_CPDMA_ALIGNMENT 32
1175
1176 /* The max number of bytes that can be copied per packet. */
1177 static inline unsigned cp_dma_max_byte_count(struct radv_cmd_buffer *cmd_buffer)
1178 {
1179 unsigned max = cmd_buffer->device->physical_device->rad_info.chip_class >= GFX9 ?
1180 S_414_BYTE_COUNT_GFX9(~0u) :
1181 S_414_BYTE_COUNT_GFX6(~0u);
1182
1183 /* make it aligned for optimal performance */
1184 return max & ~(SI_CPDMA_ALIGNMENT - 1);
1185 }
1186
1187 /* Emit a CP DMA packet to do a copy from one buffer to another, or to clear
1188 * a buffer. The size must fit in bits [20:0]. If CP_DMA_CLEAR is set, src_va is a 32-bit
1189 * clear value.
1190 */
1191 static void si_emit_cp_dma(struct radv_cmd_buffer *cmd_buffer,
1192 uint64_t dst_va, uint64_t src_va,
1193 unsigned size, unsigned flags)
1194 {
1195 struct radeon_winsys_cs *cs = cmd_buffer->cs;
1196 uint32_t header = 0, command = 0;
1197
1198 assert(size);
1199 assert(size <= cp_dma_max_byte_count(cmd_buffer));
1200
1201 radeon_check_space(cmd_buffer->device->ws, cmd_buffer->cs, 9);
1202 if (cmd_buffer->device->physical_device->rad_info.chip_class >= GFX9)
1203 command |= S_414_BYTE_COUNT_GFX9(size);
1204 else
1205 command |= S_414_BYTE_COUNT_GFX6(size);
1206
1207 /* Sync flags. */
1208 if (flags & CP_DMA_SYNC)
1209 header |= S_411_CP_SYNC(1);
1210 else {
1211 if (cmd_buffer->device->physical_device->rad_info.chip_class >= GFX9)
1212 command |= S_414_DISABLE_WR_CONFIRM_GFX9(1);
1213 else
1214 command |= S_414_DISABLE_WR_CONFIRM_GFX6(1);
1215 }
1216
1217 if (flags & CP_DMA_RAW_WAIT)
1218 command |= S_414_RAW_WAIT(1);
1219
1220 /* Src and dst flags. */
1221 if (cmd_buffer->device->physical_device->rad_info.chip_class >= GFX9 &&
1222 !(flags & CP_DMA_CLEAR) &&
1223 src_va == dst_va)
1224 header |= S_411_DSL_SEL(V_411_NOWHERE); /* prefetch only */
1225 else if (flags & CP_DMA_USE_L2)
1226 header |= S_411_DSL_SEL(V_411_DST_ADDR_TC_L2);
1227
1228 if (flags & CP_DMA_CLEAR)
1229 header |= S_411_SRC_SEL(V_411_DATA);
1230 else if (flags & CP_DMA_USE_L2)
1231 header |= S_411_SRC_SEL(V_411_SRC_ADDR_TC_L2);
1232
1233 if (cmd_buffer->device->physical_device->rad_info.chip_class >= CIK) {
1234 radeon_emit(cs, PKT3(PKT3_DMA_DATA, 5, cmd_buffer->state.predicating));
1235 radeon_emit(cs, header);
1236 radeon_emit(cs, src_va); /* SRC_ADDR_LO [31:0] */
1237 radeon_emit(cs, src_va >> 32); /* SRC_ADDR_HI [31:0] */
1238 radeon_emit(cs, dst_va); /* DST_ADDR_LO [31:0] */
1239 radeon_emit(cs, dst_va >> 32); /* DST_ADDR_HI [31:0] */
1240 radeon_emit(cs, command);
1241 } else {
1242 assert(!(flags & CP_DMA_USE_L2));
1243 header |= S_411_SRC_ADDR_HI(src_va >> 32);
1244 radeon_emit(cs, PKT3(PKT3_CP_DMA, 4, cmd_buffer->state.predicating));
1245 radeon_emit(cs, src_va); /* SRC_ADDR_LO [31:0] */
1246 radeon_emit(cs, header); /* SRC_ADDR_HI [15:0] + flags. */
1247 radeon_emit(cs, dst_va); /* DST_ADDR_LO [31:0] */
1248 radeon_emit(cs, (dst_va >> 32) & 0xffff); /* DST_ADDR_HI [15:0] */
1249 radeon_emit(cs, command);
1250 }
1251
1252 /* CP DMA is executed in ME, but index buffers are read by PFP.
1253 * This ensures that ME (CP DMA) is idle before PFP starts fetching
1254 * indices. If we wanted to execute CP DMA in PFP, this packet
1255 * should precede it.
1256 */
1257 if ((flags & CP_DMA_SYNC) && cmd_buffer->queue_family_index == RADV_QUEUE_GENERAL) {
1258 radeon_emit(cs, PKT3(PKT3_PFP_SYNC_ME, 0, cmd_buffer->state.predicating));
1259 radeon_emit(cs, 0);
1260 }
1261
1262 if (unlikely(cmd_buffer->device->trace_bo))
1263 radv_cmd_buffer_trace_emit(cmd_buffer);
1264 }
1265
1266 void si_cp_dma_prefetch(struct radv_cmd_buffer *cmd_buffer, uint64_t va,
1267 unsigned size)
1268 {
1269 uint64_t aligned_va = va & ~(SI_CPDMA_ALIGNMENT - 1);
1270 uint64_t aligned_size = ((va + size + SI_CPDMA_ALIGNMENT -1) & ~(SI_CPDMA_ALIGNMENT - 1)) - aligned_va;
1271
1272 si_emit_cp_dma(cmd_buffer, aligned_va, aligned_va,
1273 aligned_size, CP_DMA_USE_L2);
1274 }
1275
1276 static void si_cp_dma_prepare(struct radv_cmd_buffer *cmd_buffer, uint64_t byte_count,
1277 uint64_t remaining_size, unsigned *flags)
1278 {
1279
1280 /* Flush the caches for the first copy only.
1281 * Also wait for the previous CP DMA operations.
1282 */
1283 if (cmd_buffer->state.flush_bits) {
1284 si_emit_cache_flush(cmd_buffer);
1285 *flags |= CP_DMA_RAW_WAIT;
1286 }
1287
1288 /* Do the synchronization after the last dma, so that all data
1289 * is written to memory.
1290 */
1291 if (byte_count == remaining_size)
1292 *flags |= CP_DMA_SYNC;
1293 }
1294
1295 static void si_cp_dma_realign_engine(struct radv_cmd_buffer *cmd_buffer, unsigned size)
1296 {
1297 uint64_t va;
1298 uint32_t offset;
1299 unsigned dma_flags = 0;
1300 unsigned buf_size = SI_CPDMA_ALIGNMENT * 2;
1301 void *ptr;
1302
1303 assert(size < SI_CPDMA_ALIGNMENT);
1304
1305 radv_cmd_buffer_upload_alloc(cmd_buffer, buf_size, SI_CPDMA_ALIGNMENT, &offset, &ptr);
1306
1307 va = radv_buffer_get_va(cmd_buffer->upload.upload_bo);
1308 va += offset;
1309
1310 si_cp_dma_prepare(cmd_buffer, size, size, &dma_flags);
1311
1312 si_emit_cp_dma(cmd_buffer, va, va + SI_CPDMA_ALIGNMENT, size,
1313 dma_flags);
1314 }
1315
1316 void si_cp_dma_buffer_copy(struct radv_cmd_buffer *cmd_buffer,
1317 uint64_t src_va, uint64_t dest_va,
1318 uint64_t size)
1319 {
1320 uint64_t main_src_va, main_dest_va;
1321 uint64_t skipped_size = 0, realign_size = 0;
1322
1323
1324 if (cmd_buffer->device->physical_device->rad_info.family <= CHIP_CARRIZO ||
1325 cmd_buffer->device->physical_device->rad_info.family == CHIP_STONEY) {
1326 /* If the size is not aligned, we must add a dummy copy at the end
1327 * just to align the internal counter. Otherwise, the DMA engine
1328 * would slow down by an order of magnitude for following copies.
1329 */
1330 if (size % SI_CPDMA_ALIGNMENT)
1331 realign_size = SI_CPDMA_ALIGNMENT - (size % SI_CPDMA_ALIGNMENT);
1332
1333 /* If the copy begins unaligned, we must start copying from the next
1334 * aligned block and the skipped part should be copied after everything
1335 * else has been copied. Only the src alignment matters, not dst.
1336 */
1337 if (src_va % SI_CPDMA_ALIGNMENT) {
1338 skipped_size = SI_CPDMA_ALIGNMENT - (src_va % SI_CPDMA_ALIGNMENT);
1339 /* The main part will be skipped if the size is too small. */
1340 skipped_size = MIN2(skipped_size, size);
1341 size -= skipped_size;
1342 }
1343 }
1344 main_src_va = src_va + skipped_size;
1345 main_dest_va = dest_va + skipped_size;
1346
1347 while (size) {
1348 unsigned dma_flags = 0;
1349 unsigned byte_count = MIN2(size, cp_dma_max_byte_count(cmd_buffer));
1350
1351 si_cp_dma_prepare(cmd_buffer, byte_count,
1352 size + skipped_size + realign_size,
1353 &dma_flags);
1354
1355 si_emit_cp_dma(cmd_buffer, main_dest_va, main_src_va,
1356 byte_count, dma_flags);
1357
1358 size -= byte_count;
1359 main_src_va += byte_count;
1360 main_dest_va += byte_count;
1361 }
1362
1363 if (skipped_size) {
1364 unsigned dma_flags = 0;
1365
1366 si_cp_dma_prepare(cmd_buffer, skipped_size,
1367 size + skipped_size + realign_size,
1368 &dma_flags);
1369
1370 si_emit_cp_dma(cmd_buffer, dest_va, src_va,
1371 skipped_size, dma_flags);
1372 }
1373 if (realign_size)
1374 si_cp_dma_realign_engine(cmd_buffer, realign_size);
1375 }
1376
1377 void si_cp_dma_clear_buffer(struct radv_cmd_buffer *cmd_buffer, uint64_t va,
1378 uint64_t size, unsigned value)
1379 {
1380
1381 if (!size)
1382 return;
1383
1384 assert(va % 4 == 0 && size % 4 == 0);
1385
1386 while (size) {
1387 unsigned byte_count = MIN2(size, cp_dma_max_byte_count(cmd_buffer));
1388 unsigned dma_flags = CP_DMA_CLEAR;
1389
1390 si_cp_dma_prepare(cmd_buffer, byte_count, size, &dma_flags);
1391
1392 /* Emit the clear packet. */
1393 si_emit_cp_dma(cmd_buffer, va, value, byte_count,
1394 dma_flags);
1395
1396 size -= byte_count;
1397 va += byte_count;
1398 }
1399 }
1400
1401 /* For MSAA sample positions. */
1402 #define FILL_SREG(s0x, s0y, s1x, s1y, s2x, s2y, s3x, s3y) \
1403 (((s0x) & 0xf) | (((unsigned)(s0y) & 0xf) << 4) | \
1404 (((unsigned)(s1x) & 0xf) << 8) | (((unsigned)(s1y) & 0xf) << 12) | \
1405 (((unsigned)(s2x) & 0xf) << 16) | (((unsigned)(s2y) & 0xf) << 20) | \
1406 (((unsigned)(s3x) & 0xf) << 24) | (((unsigned)(s3y) & 0xf) << 28))
1407
1408
1409 /* 2xMSAA
1410 * There are two locations (4, 4), (-4, -4). */
1411 const uint32_t eg_sample_locs_2x[4] = {
1412 FILL_SREG(4, 4, -4, -4, 4, 4, -4, -4),
1413 FILL_SREG(4, 4, -4, -4, 4, 4, -4, -4),
1414 FILL_SREG(4, 4, -4, -4, 4, 4, -4, -4),
1415 FILL_SREG(4, 4, -4, -4, 4, 4, -4, -4),
1416 };
1417 const unsigned eg_max_dist_2x = 4;
1418 /* 4xMSAA
1419 * There are 4 locations: (-2, 6), (6, -2), (-6, 2), (2, 6). */
1420 const uint32_t eg_sample_locs_4x[4] = {
1421 FILL_SREG(-2, -6, 6, -2, -6, 2, 2, 6),
1422 FILL_SREG(-2, -6, 6, -2, -6, 2, 2, 6),
1423 FILL_SREG(-2, -6, 6, -2, -6, 2, 2, 6),
1424 FILL_SREG(-2, -6, 6, -2, -6, 2, 2, 6),
1425 };
1426 const unsigned eg_max_dist_4x = 6;
1427
1428 /* Cayman 8xMSAA */
1429 static const uint32_t cm_sample_locs_8x[] = {
1430 FILL_SREG( 1, -3, -1, 3, 5, 1, -3, -5),
1431 FILL_SREG( 1, -3, -1, 3, 5, 1, -3, -5),
1432 FILL_SREG( 1, -3, -1, 3, 5, 1, -3, -5),
1433 FILL_SREG( 1, -3, -1, 3, 5, 1, -3, -5),
1434 FILL_SREG(-5, 5, -7, -1, 3, 7, 7, -7),
1435 FILL_SREG(-5, 5, -7, -1, 3, 7, 7, -7),
1436 FILL_SREG(-5, 5, -7, -1, 3, 7, 7, -7),
1437 FILL_SREG(-5, 5, -7, -1, 3, 7, 7, -7),
1438 };
1439 static const unsigned cm_max_dist_8x = 8;
1440 /* Cayman 16xMSAA */
1441 static const uint32_t cm_sample_locs_16x[] = {
1442 FILL_SREG( 1, 1, -1, -3, -3, 2, 4, -1),
1443 FILL_SREG( 1, 1, -1, -3, -3, 2, 4, -1),
1444 FILL_SREG( 1, 1, -1, -3, -3, 2, 4, -1),
1445 FILL_SREG( 1, 1, -1, -3, -3, 2, 4, -1),
1446 FILL_SREG(-5, -2, 2, 5, 5, 3, 3, -5),
1447 FILL_SREG(-5, -2, 2, 5, 5, 3, 3, -5),
1448 FILL_SREG(-5, -2, 2, 5, 5, 3, 3, -5),
1449 FILL_SREG(-5, -2, 2, 5, 5, 3, 3, -5),
1450 FILL_SREG(-2, 6, 0, -7, -4, -6, -6, 4),
1451 FILL_SREG(-2, 6, 0, -7, -4, -6, -6, 4),
1452 FILL_SREG(-2, 6, 0, -7, -4, -6, -6, 4),
1453 FILL_SREG(-2, 6, 0, -7, -4, -6, -6, 4),
1454 FILL_SREG(-8, 0, 7, -4, 6, 7, -7, -8),
1455 FILL_SREG(-8, 0, 7, -4, 6, 7, -7, -8),
1456 FILL_SREG(-8, 0, 7, -4, 6, 7, -7, -8),
1457 FILL_SREG(-8, 0, 7, -4, 6, 7, -7, -8),
1458 };
1459 static const unsigned cm_max_dist_16x = 8;
1460
1461 unsigned radv_cayman_get_maxdist(int log_samples)
1462 {
1463 unsigned max_dist[] = {
1464 0,
1465 eg_max_dist_2x,
1466 eg_max_dist_4x,
1467 cm_max_dist_8x,
1468 cm_max_dist_16x
1469 };
1470 return max_dist[log_samples];
1471 }
1472
1473 void radv_cayman_emit_msaa_sample_locs(struct radeon_winsys_cs *cs, int nr_samples)
1474 {
1475 switch (nr_samples) {
1476 default:
1477 case 1:
1478 radeon_set_context_reg(cs, R_028BF8_PA_SC_AA_SAMPLE_LOCS_PIXEL_X0Y0_0, 0);
1479 radeon_set_context_reg(cs, R_028C08_PA_SC_AA_SAMPLE_LOCS_PIXEL_X1Y0_0, 0);
1480 radeon_set_context_reg(cs, R_028C18_PA_SC_AA_SAMPLE_LOCS_PIXEL_X0Y1_0, 0);
1481 radeon_set_context_reg(cs, R_028C28_PA_SC_AA_SAMPLE_LOCS_PIXEL_X1Y1_0, 0);
1482 break;
1483 case 2:
1484 radeon_set_context_reg(cs, R_028BF8_PA_SC_AA_SAMPLE_LOCS_PIXEL_X0Y0_0, eg_sample_locs_2x[0]);
1485 radeon_set_context_reg(cs, R_028C08_PA_SC_AA_SAMPLE_LOCS_PIXEL_X1Y0_0, eg_sample_locs_2x[1]);
1486 radeon_set_context_reg(cs, R_028C18_PA_SC_AA_SAMPLE_LOCS_PIXEL_X0Y1_0, eg_sample_locs_2x[2]);
1487 radeon_set_context_reg(cs, R_028C28_PA_SC_AA_SAMPLE_LOCS_PIXEL_X1Y1_0, eg_sample_locs_2x[3]);
1488 break;
1489 case 4:
1490 radeon_set_context_reg(cs, R_028BF8_PA_SC_AA_SAMPLE_LOCS_PIXEL_X0Y0_0, eg_sample_locs_4x[0]);
1491 radeon_set_context_reg(cs, R_028C08_PA_SC_AA_SAMPLE_LOCS_PIXEL_X1Y0_0, eg_sample_locs_4x[1]);
1492 radeon_set_context_reg(cs, R_028C18_PA_SC_AA_SAMPLE_LOCS_PIXEL_X0Y1_0, eg_sample_locs_4x[2]);
1493 radeon_set_context_reg(cs, R_028C28_PA_SC_AA_SAMPLE_LOCS_PIXEL_X1Y1_0, eg_sample_locs_4x[3]);
1494 break;
1495 case 8:
1496 radeon_set_context_reg_seq(cs, R_028BF8_PA_SC_AA_SAMPLE_LOCS_PIXEL_X0Y0_0, 14);
1497 radeon_emit(cs, cm_sample_locs_8x[0]);
1498 radeon_emit(cs, cm_sample_locs_8x[4]);
1499 radeon_emit(cs, 0);
1500 radeon_emit(cs, 0);
1501 radeon_emit(cs, cm_sample_locs_8x[1]);
1502 radeon_emit(cs, cm_sample_locs_8x[5]);
1503 radeon_emit(cs, 0);
1504 radeon_emit(cs, 0);
1505 radeon_emit(cs, cm_sample_locs_8x[2]);
1506 radeon_emit(cs, cm_sample_locs_8x[6]);
1507 radeon_emit(cs, 0);
1508 radeon_emit(cs, 0);
1509 radeon_emit(cs, cm_sample_locs_8x[3]);
1510 radeon_emit(cs, cm_sample_locs_8x[7]);
1511 break;
1512 case 16:
1513 radeon_set_context_reg_seq(cs, R_028BF8_PA_SC_AA_SAMPLE_LOCS_PIXEL_X0Y0_0, 16);
1514 radeon_emit(cs, cm_sample_locs_16x[0]);
1515 radeon_emit(cs, cm_sample_locs_16x[4]);
1516 radeon_emit(cs, cm_sample_locs_16x[8]);
1517 radeon_emit(cs, cm_sample_locs_16x[12]);
1518 radeon_emit(cs, cm_sample_locs_16x[1]);
1519 radeon_emit(cs, cm_sample_locs_16x[5]);
1520 radeon_emit(cs, cm_sample_locs_16x[9]);
1521 radeon_emit(cs, cm_sample_locs_16x[13]);
1522 radeon_emit(cs, cm_sample_locs_16x[2]);
1523 radeon_emit(cs, cm_sample_locs_16x[6]);
1524 radeon_emit(cs, cm_sample_locs_16x[10]);
1525 radeon_emit(cs, cm_sample_locs_16x[14]);
1526 radeon_emit(cs, cm_sample_locs_16x[3]);
1527 radeon_emit(cs, cm_sample_locs_16x[7]);
1528 radeon_emit(cs, cm_sample_locs_16x[11]);
1529 radeon_emit(cs, cm_sample_locs_16x[15]);
1530 break;
1531 }
1532 }
1533
1534 static void radv_cayman_get_sample_position(struct radv_device *device,
1535 unsigned sample_count,
1536 unsigned sample_index, float *out_value)
1537 {
1538 int offset, index;
1539 struct {
1540 int idx:4;
1541 } val;
1542 switch (sample_count) {
1543 case 1:
1544 default:
1545 out_value[0] = out_value[1] = 0.5;
1546 break;
1547 case 2:
1548 offset = 4 * (sample_index * 2);
1549 val.idx = (eg_sample_locs_2x[0] >> offset) & 0xf;
1550 out_value[0] = (float)(val.idx + 8) / 16.0f;
1551 val.idx = (eg_sample_locs_2x[0] >> (offset + 4)) & 0xf;
1552 out_value[1] = (float)(val.idx + 8) / 16.0f;
1553 break;
1554 case 4:
1555 offset = 4 * (sample_index * 2);
1556 val.idx = (eg_sample_locs_4x[0] >> offset) & 0xf;
1557 out_value[0] = (float)(val.idx + 8) / 16.0f;
1558 val.idx = (eg_sample_locs_4x[0] >> (offset + 4)) & 0xf;
1559 out_value[1] = (float)(val.idx + 8) / 16.0f;
1560 break;
1561 case 8:
1562 offset = 4 * (sample_index % 4 * 2);
1563 index = (sample_index / 4) * 4;
1564 val.idx = (cm_sample_locs_8x[index] >> offset) & 0xf;
1565 out_value[0] = (float)(val.idx + 8) / 16.0f;
1566 val.idx = (cm_sample_locs_8x[index] >> (offset + 4)) & 0xf;
1567 out_value[1] = (float)(val.idx + 8) / 16.0f;
1568 break;
1569 case 16:
1570 offset = 4 * (sample_index % 4 * 2);
1571 index = (sample_index / 4) * 4;
1572 val.idx = (cm_sample_locs_16x[index] >> offset) & 0xf;
1573 out_value[0] = (float)(val.idx + 8) / 16.0f;
1574 val.idx = (cm_sample_locs_16x[index] >> (offset + 4)) & 0xf;
1575 out_value[1] = (float)(val.idx + 8) / 16.0f;
1576 break;
1577 }
1578 }
1579
1580 void radv_device_init_msaa(struct radv_device *device)
1581 {
1582 int i;
1583 radv_cayman_get_sample_position(device, 1, 0, device->sample_locations_1x[0]);
1584
1585 for (i = 0; i < 2; i++)
1586 radv_cayman_get_sample_position(device, 2, i, device->sample_locations_2x[i]);
1587 for (i = 0; i < 4; i++)
1588 radv_cayman_get_sample_position(device, 4, i, device->sample_locations_4x[i]);
1589 for (i = 0; i < 8; i++)
1590 radv_cayman_get_sample_position(device, 8, i, device->sample_locations_8x[i]);
1591 for (i = 0; i < 16; i++)
1592 radv_cayman_get_sample_position(device, 16, i, device->sample_locations_16x[i]);
1593 }