radv: init compute queue and avoid initing transfer queues
[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_cs.h"
32 #include "sid.h"
33 #include "radv_util.h"
34 #include "main/macros.h"
35
36 #define SI_GS_PER_ES 128
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, GRBM_GFX_INDEX,
151 SE_INDEX(se) | SH_BROADCAST_WRITES |
152 INSTANCE_BROADCAST_WRITES);
153 else
154 radeon_set_uconfig_reg(cs, R_030800_GRBM_GFX_INDEX,
155 S_030800_SE_INDEX(se) | S_030800_SH_BROADCAST_WRITES(1) |
156 S_030800_INSTANCE_BROADCAST_WRITES(1));
157 radeon_set_context_reg(cs, R_028350_PA_SC_RASTER_CONFIG, raster_config_se);
158 if (physical_device->rad_info.chip_class >= CIK)
159 radeon_set_context_reg(cs, R_028354_PA_SC_RASTER_CONFIG_1, raster_config_1);
160 }
161
162 /* GRBM_GFX_INDEX has a different offset on SI and CI+ */
163 if (physical_device->rad_info.chip_class < CIK)
164 radeon_set_config_reg(cs, GRBM_GFX_INDEX,
165 SE_BROADCAST_WRITES | SH_BROADCAST_WRITES |
166 INSTANCE_BROADCAST_WRITES);
167 else
168 radeon_set_uconfig_reg(cs, R_030800_GRBM_GFX_INDEX,
169 S_030800_SE_BROADCAST_WRITES(1) | S_030800_SH_BROADCAST_WRITES(1) |
170 S_030800_INSTANCE_BROADCAST_WRITES(1));
171 }
172
173 void
174 si_init_compute(struct radv_physical_device *physical_device,
175 struct radv_cmd_buffer *cmd_buffer)
176 {
177 struct radeon_winsys_cs *cs = cmd_buffer->cs;
178 radeon_set_sh_reg_seq(cs, R_00B810_COMPUTE_START_X, 3);
179 radeon_emit(cs, 0);
180 radeon_emit(cs, 0);
181 radeon_emit(cs, 0);
182
183 radeon_set_sh_reg_seq(cs, R_00B854_COMPUTE_RESOURCE_LIMITS, 3);
184 radeon_emit(cs, 0);
185 /* R_00B858_COMPUTE_STATIC_THREAD_MGMT_SE0 / SE1 */
186 radeon_emit(cs, S_00B858_SH0_CU_EN(0xffff) | S_00B858_SH1_CU_EN(0xffff));
187 radeon_emit(cs, S_00B85C_SH0_CU_EN(0xffff) | S_00B85C_SH1_CU_EN(0xffff));
188
189 if (physical_device->rad_info.chip_class >= CIK) {
190 /* Also set R_00B858_COMPUTE_STATIC_THREAD_MGMT_SE2 / SE3 */
191 radeon_set_sh_reg_seq(cs,
192 R_00B864_COMPUTE_STATIC_THREAD_MGMT_SE2, 2);
193 radeon_emit(cs, S_00B864_SH0_CU_EN(0xffff) |
194 S_00B864_SH1_CU_EN(0xffff));
195 radeon_emit(cs, S_00B868_SH0_CU_EN(0xffff) |
196 S_00B868_SH1_CU_EN(0xffff));
197 }
198
199 /* This register has been moved to R_00CD20_COMPUTE_MAX_WAVE_ID
200 * and is now per pipe, so it should be handled in the
201 * kernel if we want to use something other than the default value,
202 * which is now 0x22f.
203 */
204 if (physical_device->rad_info.chip_class <= SI) {
205 /* XXX: This should be:
206 * (number of compute units) * 4 * (waves per simd) - 1 */
207
208 radeon_set_sh_reg(cs, R_00B82C_COMPUTE_MAX_WAVE_ID,
209 0x190 /* Default value */);
210 }
211 }
212
213
214 void si_init_config(struct radv_physical_device *physical_device,
215 struct radv_cmd_buffer *cmd_buffer)
216 {
217 unsigned num_rb = MIN2(physical_device->rad_info.num_render_backends, 16);
218 unsigned rb_mask = physical_device->rad_info.enabled_rb_mask;
219 unsigned raster_config, raster_config_1;
220 int i;
221 struct radeon_winsys_cs *cs = cmd_buffer->cs;
222 radeon_emit(cs, PKT3(PKT3_CONTEXT_CONTROL, 1, 0));
223 radeon_emit(cs, CONTEXT_CONTROL_LOAD_ENABLE(1));
224 radeon_emit(cs, CONTEXT_CONTROL_SHADOW_ENABLE(1));
225
226 radeon_set_context_reg(cs, R_028A18_VGT_HOS_MAX_TESS_LEVEL, fui(64));
227 radeon_set_context_reg(cs, R_028A1C_VGT_HOS_MIN_TESS_LEVEL, fui(0));
228
229 /* FIXME calculate these values somehow ??? */
230 radeon_set_context_reg(cs, R_028A54_VGT_GS_PER_ES, SI_GS_PER_ES);
231 radeon_set_context_reg(cs, R_028A58_VGT_ES_PER_GS, 0x40);
232 radeon_set_context_reg(cs, R_028A5C_VGT_GS_PER_VS, 0x2);
233
234 radeon_set_context_reg(cs, R_028A8C_VGT_PRIMITIVEID_RESET, 0x0);
235 radeon_set_context_reg(cs, R_028B28_VGT_STRMOUT_DRAW_OPAQUE_OFFSET, 0);
236
237 radeon_set_context_reg(cs, R_028B98_VGT_STRMOUT_BUFFER_CONFIG, 0x0);
238 radeon_set_context_reg(cs, R_028AB8_VGT_VTX_CNT_EN, 0x0);
239 if (physical_device->rad_info.chip_class < CIK)
240 radeon_set_config_reg(cs, R_008A14_PA_CL_ENHANCE, S_008A14_NUM_CLIP_SEQ(3) |
241 S_008A14_CLIP_VTX_REORDER_ENA(1));
242
243 radeon_set_context_reg(cs, R_028BD4_PA_SC_CENTROID_PRIORITY_0, 0x76543210);
244 radeon_set_context_reg(cs, R_028BD8_PA_SC_CENTROID_PRIORITY_1, 0xfedcba98);
245
246 radeon_set_context_reg(cs, R_02882C_PA_SU_PRIM_FILTER_CNTL, 0);
247
248 for (i = 0; i < 16; i++) {
249 radeon_set_context_reg(cs, R_0282D0_PA_SC_VPORT_ZMIN_0 + i*8, 0);
250 radeon_set_context_reg(cs, R_0282D4_PA_SC_VPORT_ZMAX_0 + i*8, fui(1.0));
251 }
252
253 switch (physical_device->rad_info.family) {
254 case CHIP_TAHITI:
255 case CHIP_PITCAIRN:
256 raster_config = 0x2a00126a;
257 raster_config_1 = 0x00000000;
258 break;
259 case CHIP_VERDE:
260 raster_config = 0x0000124a;
261 raster_config_1 = 0x00000000;
262 break;
263 case CHIP_OLAND:
264 raster_config = 0x00000082;
265 raster_config_1 = 0x00000000;
266 break;
267 case CHIP_HAINAN:
268 raster_config = 0x00000000;
269 raster_config_1 = 0x00000000;
270 break;
271 case CHIP_BONAIRE:
272 raster_config = 0x16000012;
273 raster_config_1 = 0x00000000;
274 break;
275 case CHIP_HAWAII:
276 raster_config = 0x3a00161a;
277 raster_config_1 = 0x0000002e;
278 break;
279 case CHIP_FIJI:
280 if (physical_device->rad_info.cik_macrotile_mode_array[0] == 0x000000e8) {
281 /* old kernels with old tiling config */
282 raster_config = 0x16000012;
283 raster_config_1 = 0x0000002a;
284 } else {
285 raster_config = 0x3a00161a;
286 raster_config_1 = 0x0000002e;
287 }
288 break;
289 case CHIP_POLARIS10:
290 raster_config = 0x16000012;
291 raster_config_1 = 0x0000002a;
292 break;
293 case CHIP_POLARIS11:
294 raster_config = 0x16000012;
295 raster_config_1 = 0x00000000;
296 break;
297 case CHIP_TONGA:
298 raster_config = 0x16000012;
299 raster_config_1 = 0x0000002a;
300 break;
301 case CHIP_ICELAND:
302 if (num_rb == 1)
303 raster_config = 0x00000000;
304 else
305 raster_config = 0x00000002;
306 raster_config_1 = 0x00000000;
307 break;
308 case CHIP_CARRIZO:
309 raster_config = 0x00000002;
310 raster_config_1 = 0x00000000;
311 break;
312 case CHIP_KAVERI:
313 /* KV should be 0x00000002, but that causes problems with radeon */
314 raster_config = 0x00000000; /* 0x00000002 */
315 raster_config_1 = 0x00000000;
316 break;
317 case CHIP_KABINI:
318 case CHIP_MULLINS:
319 case CHIP_STONEY:
320 raster_config = 0x00000000;
321 raster_config_1 = 0x00000000;
322 break;
323 default:
324 fprintf(stderr,
325 "radeonsi: Unknown GPU, using 0 for raster_config\n");
326 raster_config = 0x00000000;
327 raster_config_1 = 0x00000000;
328 break;
329 }
330
331 /* Always use the default config when all backends are enabled
332 * (or when we failed to determine the enabled backends).
333 */
334 if (!rb_mask || util_bitcount(rb_mask) >= num_rb) {
335 radeon_set_context_reg(cs, R_028350_PA_SC_RASTER_CONFIG,
336 raster_config);
337 if (physical_device->rad_info.chip_class >= CIK)
338 radeon_set_context_reg(cs, R_028354_PA_SC_RASTER_CONFIG_1,
339 raster_config_1);
340 } else {
341 si_write_harvested_raster_configs(physical_device, cs, raster_config, raster_config_1);
342 }
343
344 radeon_set_context_reg(cs, R_028204_PA_SC_WINDOW_SCISSOR_TL, S_028204_WINDOW_OFFSET_DISABLE(1));
345 radeon_set_context_reg(cs, R_028240_PA_SC_GENERIC_SCISSOR_TL, S_028240_WINDOW_OFFSET_DISABLE(1));
346 radeon_set_context_reg(cs, R_028244_PA_SC_GENERIC_SCISSOR_BR,
347 S_028244_BR_X(16384) | S_028244_BR_Y(16384));
348 radeon_set_context_reg(cs, R_028030_PA_SC_SCREEN_SCISSOR_TL, 0);
349 radeon_set_context_reg(cs, R_028034_PA_SC_SCREEN_SCISSOR_BR,
350 S_028034_BR_X(16384) | S_028034_BR_Y(16384));
351
352 radeon_set_context_reg(cs, R_02820C_PA_SC_CLIPRECT_RULE, 0xFFFF);
353 radeon_set_context_reg(cs, R_028230_PA_SC_EDGERULE, 0xAAAAAAAA);
354 /* PA_SU_HARDWARE_SCREEN_OFFSET must be 0 due to hw bug on SI */
355 radeon_set_context_reg(cs, R_028234_PA_SU_HARDWARE_SCREEN_OFFSET, 0);
356 radeon_set_context_reg(cs, R_028820_PA_CL_NANINF_CNTL, 0);
357
358 radeon_set_context_reg(cs, R_028BE8_PA_CL_GB_VERT_CLIP_ADJ, fui(1.0));
359 radeon_set_context_reg(cs, R_028BEC_PA_CL_GB_VERT_DISC_ADJ, fui(1.0));
360 radeon_set_context_reg(cs, R_028BF0_PA_CL_GB_HORZ_CLIP_ADJ, fui(1.0));
361 radeon_set_context_reg(cs, R_028BF4_PA_CL_GB_HORZ_DISC_ADJ, fui(1.0));
362
363 radeon_set_context_reg(cs, R_028AC0_DB_SRESULTS_COMPARE_STATE0, 0x0);
364 radeon_set_context_reg(cs, R_028AC4_DB_SRESULTS_COMPARE_STATE1, 0x0);
365 radeon_set_context_reg(cs, R_028AC8_DB_PRELOAD_CONTROL, 0x0);
366 radeon_set_context_reg(cs, R_02800C_DB_RENDER_OVERRIDE,
367 S_02800C_FORCE_HIS_ENABLE0(V_02800C_FORCE_DISABLE) |
368 S_02800C_FORCE_HIS_ENABLE1(V_02800C_FORCE_DISABLE));
369
370 radeon_set_context_reg(cs, R_028400_VGT_MAX_VTX_INDX, ~0);
371 radeon_set_context_reg(cs, R_028404_VGT_MIN_VTX_INDX, 0);
372 radeon_set_context_reg(cs, R_028408_VGT_INDX_OFFSET, 0);
373
374 if (physical_device->rad_info.chip_class >= CIK) {
375 radeon_set_sh_reg(cs, R_00B41C_SPI_SHADER_PGM_RSRC3_HS, 0);
376 radeon_set_sh_reg(cs, R_00B31C_SPI_SHADER_PGM_RSRC3_ES, S_00B31C_CU_EN(0xffff));
377 radeon_set_sh_reg(cs, R_00B21C_SPI_SHADER_PGM_RSRC3_GS, S_00B21C_CU_EN(0xffff));
378
379 if (physical_device->rad_info.num_good_compute_units /
380 (physical_device->rad_info.max_se * physical_device->rad_info.max_sh_per_se) <= 4) {
381 /* Too few available compute units per SH. Disallowing
382 * VS to run on CU0 could hurt us more than late VS
383 * allocation would help.
384 *
385 * LATE_ALLOC_VS = 2 is the highest safe number.
386 */
387 radeon_set_sh_reg(cs, R_00B51C_SPI_SHADER_PGM_RSRC3_LS, S_00B51C_CU_EN(0xffff));
388 radeon_set_sh_reg(cs, R_00B118_SPI_SHADER_PGM_RSRC3_VS, S_00B118_CU_EN(0xffff));
389 radeon_set_sh_reg(cs, R_00B11C_SPI_SHADER_LATE_ALLOC_VS, S_00B11C_LIMIT(2));
390 } else {
391 /* Set LATE_ALLOC_VS == 31. It should be less than
392 * the number of scratch waves. Limitations:
393 * - VS can't execute on CU0.
394 * - If HS writes outputs to LDS, LS can't execute on CU0.
395 */
396 radeon_set_sh_reg(cs, R_00B51C_SPI_SHADER_PGM_RSRC3_LS, S_00B51C_CU_EN(0xfffe));
397 radeon_set_sh_reg(cs, R_00B118_SPI_SHADER_PGM_RSRC3_VS, S_00B118_CU_EN(0xfffe));
398 radeon_set_sh_reg(cs, R_00B11C_SPI_SHADER_LATE_ALLOC_VS, S_00B11C_LIMIT(31));
399 }
400
401 radeon_set_sh_reg(cs, R_00B01C_SPI_SHADER_PGM_RSRC3_PS, S_00B01C_CU_EN(0xffff));
402 }
403
404 if (physical_device->rad_info.chip_class >= VI) {
405 radeon_set_context_reg(cs, R_028424_CB_DCC_CONTROL,
406 S_028424_OVERWRITE_COMBINER_MRT_SHARING_DISABLE(1) |
407 S_028424_OVERWRITE_COMBINER_WATERMARK(4));
408 radeon_set_context_reg(cs, R_028C58_VGT_VERTEX_REUSE_BLOCK_CNTL, 30);
409 radeon_set_context_reg(cs, R_028C5C_VGT_OUT_DEALLOC_CNTL, 32);
410 radeon_set_context_reg(cs, R_028B50_VGT_TESS_DISTRIBUTION,
411 S_028B50_ACCUM_ISOLINE(32) |
412 S_028B50_ACCUM_TRI(11) |
413 S_028B50_ACCUM_QUAD(11) |
414 S_028B50_DONUT_SPLIT(16));
415 } else {
416 radeon_set_context_reg(cs, R_028C58_VGT_VERTEX_REUSE_BLOCK_CNTL, 14);
417 radeon_set_context_reg(cs, R_028C5C_VGT_OUT_DEALLOC_CNTL, 16);
418 }
419
420 if (physical_device->rad_info.family == CHIP_STONEY)
421 radeon_set_context_reg(cs, R_028C40_PA_SC_SHADER_CONTROL, 0);
422
423 si_init_compute(physical_device, cmd_buffer);
424 }
425
426 static void
427 get_viewport_xform(const VkViewport *viewport,
428 float scale[3], float translate[3])
429 {
430 float x = viewport->x;
431 float y = viewport->y;
432 float half_width = 0.5f * viewport->width;
433 float half_height = 0.5f * viewport->height;
434 double n = viewport->minDepth;
435 double f = viewport->maxDepth;
436
437 scale[0] = half_width;
438 translate[0] = half_width + x;
439 scale[1] = half_height;
440 translate[1] = half_height + y;
441
442 scale[2] = (f - n);
443 translate[2] = n;
444 }
445
446 void
447 si_write_viewport(struct radeon_winsys_cs *cs, int first_vp,
448 int count, const VkViewport *viewports)
449 {
450 int i;
451
452 if (count == 0) {
453 radeon_set_context_reg_seq(cs, R_02843C_PA_CL_VPORT_XSCALE, 6);
454 radeon_emit(cs, fui(1.0));
455 radeon_emit(cs, fui(0.0));
456 radeon_emit(cs, fui(1.0));
457 radeon_emit(cs, fui(0.0));
458 radeon_emit(cs, fui(1.0));
459 radeon_emit(cs, fui(0.0));
460
461 radeon_set_context_reg_seq(cs, R_0282D0_PA_SC_VPORT_ZMIN_0, 2);
462 radeon_emit(cs, fui(0.0));
463 radeon_emit(cs, fui(1.0));
464
465 return;
466 }
467 radeon_set_context_reg_seq(cs, R_02843C_PA_CL_VPORT_XSCALE +
468 first_vp * 4 * 6, count * 6);
469
470 for (i = 0; i < count; i++) {
471 float scale[3], translate[3];
472
473
474 get_viewport_xform(&viewports[i], scale, translate);
475 radeon_emit(cs, fui(scale[0]));
476 radeon_emit(cs, fui(translate[0]));
477 radeon_emit(cs, fui(scale[1]));
478 radeon_emit(cs, fui(translate[1]));
479 radeon_emit(cs, fui(scale[2]));
480 radeon_emit(cs, fui(translate[2]));
481 }
482
483 for (i = 0; i < count; i++) {
484 float zmin = MIN2(viewports[i].minDepth, viewports[i].maxDepth);
485 float zmax = MAX2(viewports[i].minDepth, viewports[i].maxDepth);
486 radeon_set_context_reg_seq(cs, R_0282D0_PA_SC_VPORT_ZMIN_0 +
487 first_vp * 4 * 2, count * 2);
488 radeon_emit(cs, fui(zmin));
489 radeon_emit(cs, fui(zmax));
490 }
491 }
492
493 void
494 si_write_scissors(struct radeon_winsys_cs *cs, int first,
495 int count, const VkRect2D *scissors)
496 {
497 int i;
498 if (count == 0)
499 return;
500
501 radeon_set_context_reg_seq(cs, R_028250_PA_SC_VPORT_SCISSOR_0_TL + first * 4 * 2, count * 2);
502 for (i = 0; i < count; i++) {
503 radeon_emit(cs, S_028250_TL_X(scissors[i].offset.x) |
504 S_028250_TL_Y(scissors[i].offset.y) |
505 S_028250_WINDOW_OFFSET_DISABLE(1));
506 radeon_emit(cs, S_028254_BR_X(scissors[i].offset.x + scissors[i].extent.width) |
507 S_028254_BR_Y(scissors[i].offset.y + scissors[i].extent.height));
508 }
509 }
510
511 uint32_t
512 si_get_ia_multi_vgt_param(struct radv_cmd_buffer *cmd_buffer)
513 {
514 enum chip_class chip_class = cmd_buffer->device->instance->physicalDevice.rad_info.chip_class;
515 struct radeon_info *info = &cmd_buffer->device->instance->physicalDevice.rad_info;
516 unsigned prim = cmd_buffer->state.pipeline->graphics.prim;
517 unsigned primgroup_size = 128; /* recommended without a GS */
518 unsigned max_primgroup_in_wave = 2;
519 /* SWITCH_ON_EOP(0) is always preferable. */
520 bool wd_switch_on_eop = false;
521 bool ia_switch_on_eop = false;
522 bool ia_switch_on_eoi = false;
523 bool partial_vs_wave = false;
524 bool partial_es_wave = false;
525
526 /* TODO GS */
527
528 /* TODO TES */
529
530 /* TODO linestipple */
531
532 if (chip_class >= CIK) {
533 /* WD_SWITCH_ON_EOP has no effect on GPUs with less than
534 * 4 shader engines. Set 1 to pass the assertion below.
535 * The other cases are hardware requirements. */
536 if (info->max_se < 4 ||
537 prim == V_008958_DI_PT_POLYGON ||
538 prim == V_008958_DI_PT_LINELOOP ||
539 prim == V_008958_DI_PT_TRIFAN ||
540 prim == V_008958_DI_PT_TRISTRIP_ADJ)
541 // info->primitive_restart ||
542 // info->count_from_stream_output)
543 wd_switch_on_eop = true;
544
545 /* TODO HAWAII */
546
547 /* Required on CIK and later. */
548 if (info->max_se > 2 && !wd_switch_on_eop)
549 ia_switch_on_eoi = true;
550
551 /* Required by Hawaii and, for some special cases, by VI. */
552 #if 0
553 if (ia_switch_on_eoi &&
554 (sctx->b.family == CHIP_HAWAII ||
555 (sctx->b.chip_class == VI &&
556 (sctx->gs_shader.cso || max_primgroup_in_wave != 2))))
557 partial_vs_wave = true;
558 #endif
559
560 #if 0
561 /* Instancing bug on Bonaire. */
562 if (sctx->b.family == CHIP_BONAIRE && ia_switch_on_eoi &&
563 (info->indirect || info->instance_count > 1))
564 partial_vs_wave = true;
565 #endif
566 /* If the WD switch is false, the IA switch must be false too. */
567 assert(wd_switch_on_eop || !ia_switch_on_eop);
568 }
569 /* If SWITCH_ON_EOI is set, PARTIAL_ES_WAVE must be set too. */
570 if (ia_switch_on_eoi)
571 partial_es_wave = true;
572
573 /* GS requirement. */
574 #if 0
575 if (SI_GS_PER_ES / primgroup_size >= sctx->screen->gs_table_depth - 3)
576 partial_es_wave = true;
577 #endif
578
579 /* Hw bug with single-primitive instances and SWITCH_ON_EOI
580 * on multi-SE chips. */
581 #if 0
582 if (sctx->b.screen->info.max_se >= 2 && ia_switch_on_eoi &&
583 (info->indirect ||
584 (info->instance_count > 1 &&
585 si_num_prims_for_vertices(info) <= 1)))
586 sctx->b.flags |= SI_CONTEXT_VGT_FLUSH;
587 #endif
588 return S_028AA8_SWITCH_ON_EOP(ia_switch_on_eop) |
589 S_028AA8_SWITCH_ON_EOI(ia_switch_on_eoi) |
590 S_028AA8_PARTIAL_VS_WAVE_ON(partial_vs_wave) |
591 S_028AA8_PARTIAL_ES_WAVE_ON(partial_es_wave) |
592 S_028AA8_PRIMGROUP_SIZE(primgroup_size - 1) |
593 S_028AA8_WD_SWITCH_ON_EOP(chip_class >= CIK ? wd_switch_on_eop : 0) |
594 S_028AA8_MAX_PRIMGRP_IN_WAVE(chip_class >= VI ?
595 max_primgroup_in_wave : 0);
596
597 }
598
599 void
600 si_emit_cache_flush(struct radv_cmd_buffer *cmd_buffer)
601 {
602 enum chip_class chip_class = cmd_buffer->device->instance->physicalDevice.rad_info.chip_class;
603 unsigned cp_coher_cntl = 0;
604
605 radeon_check_space(cmd_buffer->device->ws, cmd_buffer->cs, 128);
606
607 if (cmd_buffer->state.flush_bits & RADV_CMD_FLAG_INV_ICACHE)
608 cp_coher_cntl |= S_0085F0_SH_ICACHE_ACTION_ENA(1);
609 if (cmd_buffer->state.flush_bits & RADV_CMD_FLAG_INV_SMEM_L1)
610 cp_coher_cntl |= S_0085F0_SH_KCACHE_ACTION_ENA(1);
611 if (cmd_buffer->state.flush_bits & RADV_CMD_FLAG_INV_VMEM_L1)
612 cp_coher_cntl |= S_0085F0_TCL1_ACTION_ENA(1);
613 if (cmd_buffer->state.flush_bits & RADV_CMD_FLAG_INV_GLOBAL_L2) {
614 cp_coher_cntl |= S_0085F0_TC_ACTION_ENA(1);
615 if (chip_class >= VI)
616 cp_coher_cntl |= S_0301F0_TC_WB_ACTION_ENA(1);
617 }
618
619 if (cmd_buffer->state.flush_bits & RADV_CMD_FLAG_FLUSH_AND_INV_CB) {
620 cp_coher_cntl |= S_0085F0_CB_ACTION_ENA(1) |
621 S_0085F0_CB0_DEST_BASE_ENA(1) |
622 S_0085F0_CB1_DEST_BASE_ENA(1) |
623 S_0085F0_CB2_DEST_BASE_ENA(1) |
624 S_0085F0_CB3_DEST_BASE_ENA(1) |
625 S_0085F0_CB4_DEST_BASE_ENA(1) |
626 S_0085F0_CB5_DEST_BASE_ENA(1) |
627 S_0085F0_CB6_DEST_BASE_ENA(1) |
628 S_0085F0_CB7_DEST_BASE_ENA(1);
629
630 /* Necessary for DCC */
631 if (cmd_buffer->device->instance->physicalDevice.rad_info.chip_class >= VI) {
632 radeon_emit(cmd_buffer->cs, PKT3(PKT3_EVENT_WRITE_EOP, 4, 0));
633 radeon_emit(cmd_buffer->cs, EVENT_TYPE(V_028A90_FLUSH_AND_INV_CB_DATA_TS) |
634 EVENT_INDEX(5));
635 radeon_emit(cmd_buffer->cs, 0);
636 radeon_emit(cmd_buffer->cs, 0);
637 radeon_emit(cmd_buffer->cs, 0);
638 radeon_emit(cmd_buffer->cs, 0);
639 }
640 }
641
642 if (cmd_buffer->state.flush_bits & RADV_CMD_FLAG_FLUSH_AND_INV_DB) {
643 cp_coher_cntl |= S_0085F0_DB_ACTION_ENA(1) |
644 S_0085F0_DB_DEST_BASE_ENA(1);
645 }
646
647 if (cmd_buffer->state.flush_bits & RADV_CMD_FLAG_FLUSH_AND_INV_CB_META) {
648 radeon_emit(cmd_buffer->cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
649 radeon_emit(cmd_buffer->cs, EVENT_TYPE(V_028A90_FLUSH_AND_INV_CB_META) | EVENT_INDEX(0));
650 }
651
652 if (cmd_buffer->state.flush_bits & RADV_CMD_FLAG_FLUSH_AND_INV_DB_META) {
653 radeon_emit(cmd_buffer->cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
654 radeon_emit(cmd_buffer->cs, EVENT_TYPE(V_028A90_FLUSH_AND_INV_DB_META) | EVENT_INDEX(0));
655 }
656
657 if (!(cmd_buffer->state.flush_bits & (RADV_CMD_FLAG_FLUSH_AND_INV_CB |
658 RADV_CMD_FLAG_FLUSH_AND_INV_DB))) {
659 if (cmd_buffer->state.flush_bits & RADV_CMD_FLAG_PS_PARTIAL_FLUSH) {
660 radeon_emit(cmd_buffer->cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
661 radeon_emit(cmd_buffer->cs, EVENT_TYPE(V_028A90_PS_PARTIAL_FLUSH) | EVENT_INDEX(4));
662 } else if (cmd_buffer->state.flush_bits & RADV_CMD_FLAG_VS_PARTIAL_FLUSH) {
663 radeon_emit(cmd_buffer->cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
664 radeon_emit(cmd_buffer->cs, EVENT_TYPE(V_028A90_VS_PARTIAL_FLUSH) | EVENT_INDEX(4));
665 }
666 }
667
668 if (cmd_buffer->state.flush_bits & RADV_CMD_FLAG_CS_PARTIAL_FLUSH) {
669 radeon_emit(cmd_buffer->cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
670 radeon_emit(cmd_buffer->cs, EVENT_TYPE(V_028A90_CS_PARTIAL_FLUSH) | EVENT_INDEX(4));
671 }
672
673 /* VGT state sync */
674 if (cmd_buffer->state.flush_bits & RADV_CMD_FLAG_VGT_FLUSH) {
675 radeon_emit(cmd_buffer->cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
676 radeon_emit(cmd_buffer->cs, EVENT_TYPE(V_028A90_VGT_FLUSH) | EVENT_INDEX(0));
677 }
678
679 /* Make sure ME is idle (it executes most packets) before continuing.
680 * This prevents read-after-write hazards between PFP and ME.
681 */
682 if (cp_coher_cntl || (cmd_buffer->state.flush_bits & RADV_CMD_FLAG_CS_PARTIAL_FLUSH)) {
683 radeon_emit(cmd_buffer->cs, PKT3(PKT3_PFP_SYNC_ME, 0, 0));
684 radeon_emit(cmd_buffer->cs, 0);
685 }
686
687 /* When one of the DEST_BASE flags is set, SURFACE_SYNC waits for idle.
688 * Therefore, it should be last. Done in PFP.
689 */
690 if (cp_coher_cntl) {
691 /* ACQUIRE_MEM is only required on a compute ring. */
692 radeon_emit(cmd_buffer->cs, PKT3(PKT3_SURFACE_SYNC, 3, 0));
693 radeon_emit(cmd_buffer->cs, cp_coher_cntl); /* CP_COHER_CNTL */
694 radeon_emit(cmd_buffer->cs, 0xffffffff); /* CP_COHER_SIZE */
695 radeon_emit(cmd_buffer->cs, 0); /* CP_COHER_BASE */
696 radeon_emit(cmd_buffer->cs, 0x0000000A); /* POLL_INTERVAL */
697 }
698
699 cmd_buffer->state.flush_bits = 0;
700 }
701
702
703 /* Set this if you want the 3D engine to wait until CP DMA is done.
704 * It should be set on the last CP DMA packet. */
705 #define R600_CP_DMA_SYNC (1 << 0) /* R600+ */
706
707 /* Set this if the source data was used as a destination in a previous CP DMA
708 * packet. It's for preventing a read-after-write (RAW) hazard between two
709 * CP DMA packets. */
710 #define SI_CP_DMA_RAW_WAIT (1 << 1) /* SI+ */
711 #define CIK_CP_DMA_USE_L2 (1 << 2)
712
713 /* Alignment for optimal performance. */
714 #define CP_DMA_ALIGNMENT 32
715 /* The max number of bytes to copy per packet. */
716 #define CP_DMA_MAX_BYTE_COUNT ((1 << 21) - CP_DMA_ALIGNMENT)
717
718 static void si_emit_cp_dma_copy_buffer(struct radv_cmd_buffer *cmd_buffer,
719 uint64_t dst_va, uint64_t src_va,
720 unsigned size, unsigned flags)
721 {
722 struct radeon_winsys_cs *cs = cmd_buffer->cs;
723 uint32_t sync_flag = flags & R600_CP_DMA_SYNC ? S_411_CP_SYNC(1) : 0;
724 uint32_t wr_confirm = !(flags & R600_CP_DMA_SYNC) ? S_414_DISABLE_WR_CONFIRM(1) : 0;
725 uint32_t raw_wait = flags & SI_CP_DMA_RAW_WAIT ? S_414_RAW_WAIT(1) : 0;
726 uint32_t sel = flags & CIK_CP_DMA_USE_L2 ?
727 S_411_SRC_SEL(V_411_SRC_ADDR_TC_L2) |
728 S_411_DSL_SEL(V_411_DST_ADDR_TC_L2) : 0;
729
730 assert(size);
731 assert((size & ((1<<21)-1)) == size);
732
733 radeon_check_space(cmd_buffer->device->ws, cmd_buffer->cs, 9);
734
735 if (cmd_buffer->device->instance->physicalDevice.rad_info.chip_class >= CIK) {
736 radeon_emit(cs, PKT3(PKT3_DMA_DATA, 5, 0));
737 radeon_emit(cs, sync_flag | sel); /* CP_SYNC [31] */
738 radeon_emit(cs, src_va); /* SRC_ADDR_LO [31:0] */
739 radeon_emit(cs, src_va >> 32); /* SRC_ADDR_HI [31:0] */
740 radeon_emit(cs, dst_va); /* DST_ADDR_LO [31:0] */
741 radeon_emit(cs, dst_va >> 32); /* DST_ADDR_HI [31:0] */
742 radeon_emit(cs, size | wr_confirm | raw_wait); /* COMMAND [29:22] | BYTE_COUNT [20:0] */
743 } else {
744 radeon_emit(cs, PKT3(PKT3_CP_DMA, 4, 0));
745 radeon_emit(cs, src_va); /* SRC_ADDR_LO [31:0] */
746 radeon_emit(cs, sync_flag | ((src_va >> 32) & 0xffff)); /* CP_SYNC [31] | SRC_ADDR_HI [15:0] */
747 radeon_emit(cs, dst_va); /* DST_ADDR_LO [31:0] */
748 radeon_emit(cs, (dst_va >> 32) & 0xffff); /* DST_ADDR_HI [15:0] */
749 radeon_emit(cs, size | wr_confirm | raw_wait); /* COMMAND [29:22] | BYTE_COUNT [20:0] */
750 }
751
752 /* CP DMA is executed in ME, but index buffers are read by PFP.
753 * This ensures that ME (CP DMA) is idle before PFP starts fetching
754 * indices. If we wanted to execute CP DMA in PFP, this packet
755 * should precede it.
756 */
757 if (sync_flag) {
758 radeon_emit(cs, PKT3(PKT3_PFP_SYNC_ME, 0, 0));
759 radeon_emit(cs, 0);
760 }
761 }
762
763 /* Emit a CP DMA packet to clear a buffer. The size must fit in bits [20:0]. */
764 static void si_emit_cp_dma_clear_buffer(struct radv_cmd_buffer *cmd_buffer,
765 uint64_t dst_va, unsigned size,
766 uint32_t clear_value, unsigned flags)
767 {
768 struct radeon_winsys_cs *cs = cmd_buffer->cs;
769 uint32_t sync_flag = flags & R600_CP_DMA_SYNC ? S_411_CP_SYNC(1) : 0;
770 uint32_t wr_confirm = !(flags & R600_CP_DMA_SYNC) ? S_414_DISABLE_WR_CONFIRM(1) : 0;
771 uint32_t raw_wait = flags & SI_CP_DMA_RAW_WAIT ? S_414_RAW_WAIT(1) : 0;
772 uint32_t dst_sel = flags & CIK_CP_DMA_USE_L2 ? S_411_DSL_SEL(V_411_DST_ADDR_TC_L2) : 0;
773
774 assert(size);
775 assert((size & ((1<<21)-1)) == size);
776
777 radeon_check_space(cmd_buffer->device->ws, cmd_buffer->cs, 9);
778
779 if (cmd_buffer->device->instance->physicalDevice.rad_info.chip_class >= CIK) {
780 radeon_emit(cs, PKT3(PKT3_DMA_DATA, 5, 0));
781 radeon_emit(cs, sync_flag | dst_sel | S_411_SRC_SEL(V_411_DATA)); /* CP_SYNC [31] | SRC_SEL[30:29] */
782 radeon_emit(cs, clear_value); /* DATA [31:0] */
783 radeon_emit(cs, 0);
784 radeon_emit(cs, dst_va); /* DST_ADDR_LO [31:0] */
785 radeon_emit(cs, dst_va >> 32); /* DST_ADDR_HI [15:0] */
786 radeon_emit(cs, size | wr_confirm | raw_wait); /* COMMAND [29:22] | BYTE_COUNT [20:0] */
787 } else {
788 radeon_emit(cs, PKT3(PKT3_CP_DMA, 4, 0));
789 radeon_emit(cs, clear_value); /* DATA [31:0] */
790 radeon_emit(cs, sync_flag | S_411_SRC_SEL(V_411_DATA)); /* CP_SYNC [31] | SRC_SEL[30:29] */
791 radeon_emit(cs, dst_va); /* DST_ADDR_LO [31:0] */
792 radeon_emit(cs, (dst_va >> 32) & 0xffff); /* DST_ADDR_HI [15:0] */
793 radeon_emit(cs, size | wr_confirm | raw_wait); /* COMMAND [29:22] | BYTE_COUNT [20:0] */
794 }
795
796 /* See "copy_buffer" for explanation. */
797 if (sync_flag) {
798 radeon_emit(cs, PKT3(PKT3_PFP_SYNC_ME, 0, 0));
799 radeon_emit(cs, 0);
800 }
801 }
802
803 static void si_cp_dma_prepare(struct radv_cmd_buffer *cmd_buffer, uint64_t byte_count,
804 uint64_t remaining_size, unsigned *flags)
805 {
806
807 /* Flush the caches for the first copy only.
808 * Also wait for the previous CP DMA operations.
809 */
810 if (cmd_buffer->state.flush_bits) {
811 si_emit_cache_flush(cmd_buffer);
812 *flags |= SI_CP_DMA_RAW_WAIT;
813 }
814
815 /* Do the synchronization after the last dma, so that all data
816 * is written to memory.
817 */
818 if (byte_count == remaining_size)
819 *flags |= R600_CP_DMA_SYNC;
820 }
821
822 static void si_cp_dma_realign_engine(struct radv_cmd_buffer *cmd_buffer, unsigned size)
823 {
824 uint64_t va;
825 uint32_t offset;
826 unsigned dma_flags = 0;
827 unsigned buf_size = CP_DMA_ALIGNMENT * 2;
828 void *ptr;
829
830 assert(size < CP_DMA_ALIGNMENT);
831
832 radv_cmd_buffer_upload_alloc(cmd_buffer, buf_size, CP_DMA_ALIGNMENT, &offset, &ptr);
833
834 va = cmd_buffer->device->ws->buffer_get_va(cmd_buffer->upload.upload_bo);
835 va += offset;
836
837 si_cp_dma_prepare(cmd_buffer, size, size, &dma_flags);
838
839 si_emit_cp_dma_copy_buffer(cmd_buffer, va, va + CP_DMA_ALIGNMENT, size,
840 dma_flags);
841 }
842
843 void si_cp_dma_buffer_copy(struct radv_cmd_buffer *cmd_buffer,
844 uint64_t src_va, uint64_t dest_va,
845 uint64_t size)
846 {
847 uint64_t main_src_va, main_dest_va;
848 uint64_t skipped_size = 0, realign_size = 0;
849
850
851 if (cmd_buffer->device->instance->physicalDevice.rad_info.family <= CHIP_CARRIZO ||
852 cmd_buffer->device->instance->physicalDevice.rad_info.family == CHIP_STONEY) {
853 /* If the size is not aligned, we must add a dummy copy at the end
854 * just to align the internal counter. Otherwise, the DMA engine
855 * would slow down by an order of magnitude for following copies.
856 */
857 if (size % CP_DMA_ALIGNMENT)
858 realign_size = CP_DMA_ALIGNMENT - (size % CP_DMA_ALIGNMENT);
859
860 /* If the copy begins unaligned, we must start copying from the next
861 * aligned block and the skipped part should be copied after everything
862 * else has been copied. Only the src alignment matters, not dst.
863 */
864 if (src_va % CP_DMA_ALIGNMENT) {
865 skipped_size = CP_DMA_ALIGNMENT - (src_va % CP_DMA_ALIGNMENT);
866 /* The main part will be skipped if the size is too small. */
867 skipped_size = MIN2(skipped_size, size);
868 size -= skipped_size;
869 }
870 }
871 main_src_va = src_va + skipped_size;
872 main_dest_va = dest_va + skipped_size;
873
874 while (size) {
875 unsigned dma_flags = 0;
876 unsigned byte_count = MIN2(size, CP_DMA_MAX_BYTE_COUNT);
877
878 si_cp_dma_prepare(cmd_buffer, byte_count,
879 size + skipped_size + realign_size,
880 &dma_flags);
881
882 si_emit_cp_dma_copy_buffer(cmd_buffer, main_dest_va, main_src_va,
883 byte_count, dma_flags);
884
885 size -= byte_count;
886 main_src_va += byte_count;
887 main_dest_va += byte_count;
888 }
889
890 if (skipped_size) {
891 unsigned dma_flags = 0;
892
893 si_cp_dma_prepare(cmd_buffer, skipped_size,
894 size + skipped_size + realign_size,
895 &dma_flags);
896
897 si_emit_cp_dma_copy_buffer(cmd_buffer, dest_va, src_va,
898 skipped_size, dma_flags);
899 }
900 if (realign_size)
901 si_cp_dma_realign_engine(cmd_buffer, realign_size);
902 }
903
904 void si_cp_dma_clear_buffer(struct radv_cmd_buffer *cmd_buffer, uint64_t va,
905 uint64_t size, unsigned value)
906 {
907
908 if (!size)
909 return;
910
911 assert(va % 4 == 0 && size % 4 == 0);
912
913 while (size) {
914 unsigned byte_count = MIN2(size, CP_DMA_MAX_BYTE_COUNT);
915 unsigned dma_flags = 0;
916
917 si_cp_dma_prepare(cmd_buffer, byte_count, size, &dma_flags);
918
919 /* Emit the clear packet. */
920 si_emit_cp_dma_clear_buffer(cmd_buffer, va, byte_count, value,
921 dma_flags);
922
923 size -= byte_count;
924 va += byte_count;
925 }
926 }
927
928 /* For MSAA sample positions. */
929 #define FILL_SREG(s0x, s0y, s1x, s1y, s2x, s2y, s3x, s3y) \
930 (((s0x) & 0xf) | (((unsigned)(s0y) & 0xf) << 4) | \
931 (((unsigned)(s1x) & 0xf) << 8) | (((unsigned)(s1y) & 0xf) << 12) | \
932 (((unsigned)(s2x) & 0xf) << 16) | (((unsigned)(s2y) & 0xf) << 20) | \
933 (((unsigned)(s3x) & 0xf) << 24) | (((unsigned)(s3y) & 0xf) << 28))
934
935
936 /* 2xMSAA
937 * There are two locations (4, 4), (-4, -4). */
938 const uint32_t eg_sample_locs_2x[4] = {
939 FILL_SREG(4, 4, -4, -4, 4, 4, -4, -4),
940 FILL_SREG(4, 4, -4, -4, 4, 4, -4, -4),
941 FILL_SREG(4, 4, -4, -4, 4, 4, -4, -4),
942 FILL_SREG(4, 4, -4, -4, 4, 4, -4, -4),
943 };
944 const unsigned eg_max_dist_2x = 4;
945 /* 4xMSAA
946 * There are 4 locations: (-2, 6), (6, -2), (-6, 2), (2, 6). */
947 const uint32_t eg_sample_locs_4x[4] = {
948 FILL_SREG(-2, -6, 6, -2, -6, 2, 2, 6),
949 FILL_SREG(-2, -6, 6, -2, -6, 2, 2, 6),
950 FILL_SREG(-2, -6, 6, -2, -6, 2, 2, 6),
951 FILL_SREG(-2, -6, 6, -2, -6, 2, 2, 6),
952 };
953 const unsigned eg_max_dist_4x = 6;
954
955 /* Cayman 8xMSAA */
956 static const uint32_t cm_sample_locs_8x[] = {
957 FILL_SREG( 1, -3, -1, 3, 5, 1, -3, -5),
958 FILL_SREG( 1, -3, -1, 3, 5, 1, -3, -5),
959 FILL_SREG( 1, -3, -1, 3, 5, 1, -3, -5),
960 FILL_SREG( 1, -3, -1, 3, 5, 1, -3, -5),
961 FILL_SREG(-5, 5, -7, -1, 3, 7, 7, -7),
962 FILL_SREG(-5, 5, -7, -1, 3, 7, 7, -7),
963 FILL_SREG(-5, 5, -7, -1, 3, 7, 7, -7),
964 FILL_SREG(-5, 5, -7, -1, 3, 7, 7, -7),
965 };
966 static const unsigned cm_max_dist_8x = 8;
967 /* Cayman 16xMSAA */
968 static const uint32_t cm_sample_locs_16x[] = {
969 FILL_SREG( 1, 1, -1, -3, -3, 2, 4, -1),
970 FILL_SREG( 1, 1, -1, -3, -3, 2, 4, -1),
971 FILL_SREG( 1, 1, -1, -3, -3, 2, 4, -1),
972 FILL_SREG( 1, 1, -1, -3, -3, 2, 4, -1),
973 FILL_SREG(-5, -2, 2, 5, 5, 3, 3, -5),
974 FILL_SREG(-5, -2, 2, 5, 5, 3, 3, -5),
975 FILL_SREG(-5, -2, 2, 5, 5, 3, 3, -5),
976 FILL_SREG(-5, -2, 2, 5, 5, 3, 3, -5),
977 FILL_SREG(-2, 6, 0, -7, -4, -6, -6, 4),
978 FILL_SREG(-2, 6, 0, -7, -4, -6, -6, 4),
979 FILL_SREG(-2, 6, 0, -7, -4, -6, -6, 4),
980 FILL_SREG(-2, 6, 0, -7, -4, -6, -6, 4),
981 FILL_SREG(-8, 0, 7, -4, 6, 7, -7, -8),
982 FILL_SREG(-8, 0, 7, -4, 6, 7, -7, -8),
983 FILL_SREG(-8, 0, 7, -4, 6, 7, -7, -8),
984 FILL_SREG(-8, 0, 7, -4, 6, 7, -7, -8),
985 };
986 static const unsigned cm_max_dist_16x = 8;
987
988 unsigned radv_cayman_get_maxdist(int log_samples)
989 {
990 unsigned max_dist[] = {
991 0,
992 eg_max_dist_2x,
993 eg_max_dist_4x,
994 cm_max_dist_8x,
995 cm_max_dist_16x
996 };
997 return max_dist[log_samples];
998 }
999
1000 void radv_cayman_emit_msaa_sample_locs(struct radeon_winsys_cs *cs, int nr_samples)
1001 {
1002 switch (nr_samples) {
1003 default:
1004 case 1:
1005 radeon_set_context_reg(cs, CM_R_028BF8_PA_SC_AA_SAMPLE_LOCS_PIXEL_X0Y0_0, 0);
1006 radeon_set_context_reg(cs, CM_R_028C08_PA_SC_AA_SAMPLE_LOCS_PIXEL_X1Y0_0, 0);
1007 radeon_set_context_reg(cs, CM_R_028C18_PA_SC_AA_SAMPLE_LOCS_PIXEL_X0Y1_0, 0);
1008 radeon_set_context_reg(cs, CM_R_028C28_PA_SC_AA_SAMPLE_LOCS_PIXEL_X1Y1_0, 0);
1009 break;
1010 case 2:
1011 radeon_set_context_reg(cs, CM_R_028BF8_PA_SC_AA_SAMPLE_LOCS_PIXEL_X0Y0_0, eg_sample_locs_2x[0]);
1012 radeon_set_context_reg(cs, CM_R_028C08_PA_SC_AA_SAMPLE_LOCS_PIXEL_X1Y0_0, eg_sample_locs_2x[1]);
1013 radeon_set_context_reg(cs, CM_R_028C18_PA_SC_AA_SAMPLE_LOCS_PIXEL_X0Y1_0, eg_sample_locs_2x[2]);
1014 radeon_set_context_reg(cs, CM_R_028C28_PA_SC_AA_SAMPLE_LOCS_PIXEL_X1Y1_0, eg_sample_locs_2x[3]);
1015 break;
1016 case 4:
1017 radeon_set_context_reg(cs, CM_R_028BF8_PA_SC_AA_SAMPLE_LOCS_PIXEL_X0Y0_0, eg_sample_locs_4x[0]);
1018 radeon_set_context_reg(cs, CM_R_028C08_PA_SC_AA_SAMPLE_LOCS_PIXEL_X1Y0_0, eg_sample_locs_4x[1]);
1019 radeon_set_context_reg(cs, CM_R_028C18_PA_SC_AA_SAMPLE_LOCS_PIXEL_X0Y1_0, eg_sample_locs_4x[2]);
1020 radeon_set_context_reg(cs, CM_R_028C28_PA_SC_AA_SAMPLE_LOCS_PIXEL_X1Y1_0, eg_sample_locs_4x[3]);
1021 break;
1022 case 8:
1023 radeon_set_context_reg_seq(cs, CM_R_028BF8_PA_SC_AA_SAMPLE_LOCS_PIXEL_X0Y0_0, 14);
1024 radeon_emit(cs, cm_sample_locs_8x[0]);
1025 radeon_emit(cs, cm_sample_locs_8x[4]);
1026 radeon_emit(cs, 0);
1027 radeon_emit(cs, 0);
1028 radeon_emit(cs, cm_sample_locs_8x[1]);
1029 radeon_emit(cs, cm_sample_locs_8x[5]);
1030 radeon_emit(cs, 0);
1031 radeon_emit(cs, 0);
1032 radeon_emit(cs, cm_sample_locs_8x[2]);
1033 radeon_emit(cs, cm_sample_locs_8x[6]);
1034 radeon_emit(cs, 0);
1035 radeon_emit(cs, 0);
1036 radeon_emit(cs, cm_sample_locs_8x[3]);
1037 radeon_emit(cs, cm_sample_locs_8x[7]);
1038 break;
1039 case 16:
1040 radeon_set_context_reg_seq(cs, CM_R_028BF8_PA_SC_AA_SAMPLE_LOCS_PIXEL_X0Y0_0, 16);
1041 radeon_emit(cs, cm_sample_locs_16x[0]);
1042 radeon_emit(cs, cm_sample_locs_16x[4]);
1043 radeon_emit(cs, cm_sample_locs_16x[8]);
1044 radeon_emit(cs, cm_sample_locs_16x[12]);
1045 radeon_emit(cs, cm_sample_locs_16x[1]);
1046 radeon_emit(cs, cm_sample_locs_16x[5]);
1047 radeon_emit(cs, cm_sample_locs_16x[9]);
1048 radeon_emit(cs, cm_sample_locs_16x[13]);
1049 radeon_emit(cs, cm_sample_locs_16x[2]);
1050 radeon_emit(cs, cm_sample_locs_16x[6]);
1051 radeon_emit(cs, cm_sample_locs_16x[10]);
1052 radeon_emit(cs, cm_sample_locs_16x[14]);
1053 radeon_emit(cs, cm_sample_locs_16x[3]);
1054 radeon_emit(cs, cm_sample_locs_16x[7]);
1055 radeon_emit(cs, cm_sample_locs_16x[11]);
1056 radeon_emit(cs, cm_sample_locs_16x[15]);
1057 break;
1058 }
1059 }
1060
1061 static void radv_cayman_get_sample_position(struct radv_device *device,
1062 unsigned sample_count,
1063 unsigned sample_index, float *out_value)
1064 {
1065 int offset, index;
1066 struct {
1067 int idx:4;
1068 } val;
1069 switch (sample_count) {
1070 case 1:
1071 default:
1072 out_value[0] = out_value[1] = 0.5;
1073 break;
1074 case 2:
1075 offset = 4 * (sample_index * 2);
1076 val.idx = (eg_sample_locs_2x[0] >> offset) & 0xf;
1077 out_value[0] = (float)(val.idx + 8) / 16.0f;
1078 val.idx = (eg_sample_locs_2x[0] >> (offset + 4)) & 0xf;
1079 out_value[1] = (float)(val.idx + 8) / 16.0f;
1080 break;
1081 case 4:
1082 offset = 4 * (sample_index * 2);
1083 val.idx = (eg_sample_locs_4x[0] >> offset) & 0xf;
1084 out_value[0] = (float)(val.idx + 8) / 16.0f;
1085 val.idx = (eg_sample_locs_4x[0] >> (offset + 4)) & 0xf;
1086 out_value[1] = (float)(val.idx + 8) / 16.0f;
1087 break;
1088 case 8:
1089 offset = 4 * (sample_index % 4 * 2);
1090 index = (sample_index / 4) * 4;
1091 val.idx = (cm_sample_locs_8x[index] >> offset) & 0xf;
1092 out_value[0] = (float)(val.idx + 8) / 16.0f;
1093 val.idx = (cm_sample_locs_8x[index] >> (offset + 4)) & 0xf;
1094 out_value[1] = (float)(val.idx + 8) / 16.0f;
1095 break;
1096 case 16:
1097 offset = 4 * (sample_index % 4 * 2);
1098 index = (sample_index / 4) * 4;
1099 val.idx = (cm_sample_locs_16x[index] >> offset) & 0xf;
1100 out_value[0] = (float)(val.idx + 8) / 16.0f;
1101 val.idx = (cm_sample_locs_16x[index] >> (offset + 4)) & 0xf;
1102 out_value[1] = (float)(val.idx + 8) / 16.0f;
1103 break;
1104 }
1105 }
1106
1107 void radv_device_init_msaa(struct radv_device *device)
1108 {
1109 int i;
1110 radv_cayman_get_sample_position(device, 1, 0, device->sample_locations_1x[0]);
1111
1112 for (i = 0; i < 2; i++)
1113 radv_cayman_get_sample_position(device, 2, i, device->sample_locations_2x[i]);
1114 for (i = 0; i < 4; i++)
1115 radv_cayman_get_sample_position(device, 4, i, device->sample_locations_4x[i]);
1116 for (i = 0; i < 8; i++)
1117 radv_cayman_get_sample_position(device, 8, i, device->sample_locations_8x[i]);
1118 for (i = 0; i < 16; i++)
1119 radv_cayman_get_sample_position(device, 16, i, device->sample_locations_16x[i]);
1120 }