amd/common,radeonsi: Move gfx10_format_table to common.
[mesa.git] / src / gallium / drivers / radeonsi / si_cp_dma.c
1 /*
2 * Copyright 2013 Advanced Micro Devices, Inc.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 #include "si_pipe.h"
26 #include "sid.h"
27
28 /* Set this if you want the ME to wait until CP DMA is done.
29 * It should be set on the last CP DMA packet. */
30 #define CP_DMA_SYNC (1 << 0)
31
32 /* Set this if the source data was used as a destination in a previous CP DMA
33 * packet. It's for preventing a read-after-write (RAW) hazard between two
34 * CP DMA packets. */
35 #define CP_DMA_RAW_WAIT (1 << 1)
36 #define CP_DMA_DST_IS_GDS (1 << 2)
37 #define CP_DMA_CLEAR (1 << 3)
38 #define CP_DMA_PFP_SYNC_ME (1 << 4)
39 #define CP_DMA_SRC_IS_GDS (1 << 5)
40
41 /* The max number of bytes that can be copied per packet. */
42 static inline unsigned cp_dma_max_byte_count(struct si_context *sctx)
43 {
44 unsigned max =
45 sctx->chip_class >= GFX9 ? S_414_BYTE_COUNT_GFX9(~0u) : S_414_BYTE_COUNT_GFX6(~0u);
46
47 /* make it aligned for optimal performance */
48 return max & ~(SI_CPDMA_ALIGNMENT - 1);
49 }
50
51 /* Emit a CP DMA packet to do a copy from one buffer to another, or to clear
52 * a buffer. The size must fit in bits [20:0]. If CP_DMA_CLEAR is set, src_va is a 32-bit
53 * clear value.
54 */
55 static void si_emit_cp_dma(struct si_context *sctx, struct radeon_cmdbuf *cs, uint64_t dst_va,
56 uint64_t src_va, unsigned size, unsigned flags,
57 enum si_cache_policy cache_policy)
58 {
59 uint32_t header = 0, command = 0;
60
61 assert(size <= cp_dma_max_byte_count(sctx));
62 assert(sctx->chip_class != GFX6 || cache_policy == L2_BYPASS);
63
64 if (sctx->chip_class >= GFX9)
65 command |= S_414_BYTE_COUNT_GFX9(size);
66 else
67 command |= S_414_BYTE_COUNT_GFX6(size);
68
69 /* Sync flags. */
70 if (flags & CP_DMA_SYNC)
71 header |= S_411_CP_SYNC(1);
72 else {
73 if (sctx->chip_class >= GFX9)
74 command |= S_414_DISABLE_WR_CONFIRM_GFX9(1);
75 else
76 command |= S_414_DISABLE_WR_CONFIRM_GFX6(1);
77 }
78
79 if (flags & CP_DMA_RAW_WAIT)
80 command |= S_414_RAW_WAIT(1);
81
82 /* Src and dst flags. */
83 if (sctx->chip_class >= GFX9 && !(flags & CP_DMA_CLEAR) && src_va == dst_va) {
84 header |= S_411_DST_SEL(V_411_NOWHERE); /* prefetch only */
85 } else if (flags & CP_DMA_DST_IS_GDS) {
86 header |= S_411_DST_SEL(V_411_GDS);
87 /* GDS increments the address, not CP. */
88 command |= S_414_DAS(V_414_REGISTER) | S_414_DAIC(V_414_NO_INCREMENT);
89 } else if (sctx->chip_class >= GFX7 && cache_policy != L2_BYPASS) {
90 header |=
91 S_411_DST_SEL(V_411_DST_ADDR_TC_L2) | S_500_DST_CACHE_POLICY(cache_policy == L2_STREAM);
92 }
93
94 if (flags & CP_DMA_CLEAR) {
95 header |= S_411_SRC_SEL(V_411_DATA);
96 } else if (flags & CP_DMA_SRC_IS_GDS) {
97 header |= S_411_SRC_SEL(V_411_GDS);
98 /* Both of these are required for GDS. It does increment the address. */
99 command |= S_414_SAS(V_414_REGISTER) | S_414_SAIC(V_414_NO_INCREMENT);
100 } else if (sctx->chip_class >= GFX7 && cache_policy != L2_BYPASS) {
101 header |=
102 S_411_SRC_SEL(V_411_SRC_ADDR_TC_L2) | S_500_SRC_CACHE_POLICY(cache_policy == L2_STREAM);
103 }
104
105 if (sctx->chip_class >= GFX7) {
106 radeon_emit(cs, PKT3(PKT3_DMA_DATA, 5, 0));
107 radeon_emit(cs, header);
108 radeon_emit(cs, src_va); /* SRC_ADDR_LO [31:0] */
109 radeon_emit(cs, src_va >> 32); /* SRC_ADDR_HI [31:0] */
110 radeon_emit(cs, dst_va); /* DST_ADDR_LO [31:0] */
111 radeon_emit(cs, dst_va >> 32); /* DST_ADDR_HI [31:0] */
112 radeon_emit(cs, command);
113 } else {
114 header |= S_411_SRC_ADDR_HI(src_va >> 32);
115
116 radeon_emit(cs, PKT3(PKT3_CP_DMA, 4, 0));
117 radeon_emit(cs, src_va); /* SRC_ADDR_LO [31:0] */
118 radeon_emit(cs, header); /* SRC_ADDR_HI [15:0] + flags. */
119 radeon_emit(cs, dst_va); /* DST_ADDR_LO [31:0] */
120 radeon_emit(cs, (dst_va >> 32) & 0xffff); /* DST_ADDR_HI [15:0] */
121 radeon_emit(cs, command);
122 }
123
124 /* CP DMA is executed in ME, but index buffers are read by PFP.
125 * This ensures that ME (CP DMA) is idle before PFP starts fetching
126 * indices. If we wanted to execute CP DMA in PFP, this packet
127 * should precede it.
128 */
129 if (sctx->has_graphics && flags & CP_DMA_PFP_SYNC_ME) {
130 radeon_emit(cs, PKT3(PKT3_PFP_SYNC_ME, 0, 0));
131 radeon_emit(cs, 0);
132 }
133 }
134
135 void si_cp_dma_wait_for_idle(struct si_context *sctx)
136 {
137 /* Issue a dummy DMA that copies zero bytes.
138 *
139 * The DMA engine will see that there's no work to do and skip this
140 * DMA request, however, the CP will see the sync flag and still wait
141 * for all DMAs to complete.
142 */
143 si_emit_cp_dma(sctx, sctx->gfx_cs, 0, 0, 0, CP_DMA_SYNC, L2_BYPASS);
144 }
145
146 static void si_cp_dma_prepare(struct si_context *sctx, struct pipe_resource *dst,
147 struct pipe_resource *src, unsigned byte_count,
148 uint64_t remaining_size, unsigned user_flags, enum si_coherency coher,
149 bool *is_first, unsigned *packet_flags)
150 {
151 /* Fast exit for a CPDMA prefetch. */
152 if ((user_flags & SI_CPDMA_SKIP_ALL) == SI_CPDMA_SKIP_ALL) {
153 *is_first = false;
154 return;
155 }
156
157 if (!(user_flags & SI_CPDMA_SKIP_BO_LIST_UPDATE)) {
158 /* Count memory usage in so that need_cs_space can take it into account. */
159 if (dst)
160 si_context_add_resource_size(sctx, dst);
161 if (src)
162 si_context_add_resource_size(sctx, src);
163 }
164
165 if (!(user_flags & SI_CPDMA_SKIP_CHECK_CS_SPACE))
166 si_need_gfx_cs_space(sctx);
167
168 /* This must be done after need_cs_space. */
169 if (!(user_flags & SI_CPDMA_SKIP_BO_LIST_UPDATE)) {
170 if (dst)
171 radeon_add_to_buffer_list(sctx, sctx->gfx_cs, si_resource(dst), RADEON_USAGE_WRITE,
172 RADEON_PRIO_CP_DMA);
173 if (src)
174 radeon_add_to_buffer_list(sctx, sctx->gfx_cs, si_resource(src), RADEON_USAGE_READ,
175 RADEON_PRIO_CP_DMA);
176 }
177
178 /* Flush the caches for the first copy only.
179 * Also wait for the previous CP DMA operations.
180 */
181 if (!(user_flags & SI_CPDMA_SKIP_GFX_SYNC) && sctx->flags)
182 sctx->emit_cache_flush(sctx);
183
184 if (!(user_flags & SI_CPDMA_SKIP_SYNC_BEFORE) && *is_first && !(*packet_flags & CP_DMA_CLEAR))
185 *packet_flags |= CP_DMA_RAW_WAIT;
186
187 *is_first = false;
188
189 /* Do the synchronization after the last dma, so that all data
190 * is written to memory.
191 */
192 if (!(user_flags & SI_CPDMA_SKIP_SYNC_AFTER) && byte_count == remaining_size) {
193 *packet_flags |= CP_DMA_SYNC;
194
195 if (coher == SI_COHERENCY_SHADER)
196 *packet_flags |= CP_DMA_PFP_SYNC_ME;
197 }
198 }
199
200 void si_cp_dma_clear_buffer(struct si_context *sctx, struct radeon_cmdbuf *cs,
201 struct pipe_resource *dst, uint64_t offset, uint64_t size,
202 unsigned value, unsigned user_flags, enum si_coherency coher,
203 enum si_cache_policy cache_policy)
204 {
205 struct si_resource *sdst = si_resource(dst);
206 uint64_t va = (sdst ? sdst->gpu_address : 0) + offset;
207 bool is_first = true;
208
209 assert(size && size % 4 == 0);
210
211 /* Mark the buffer range of destination as valid (initialized),
212 * so that transfer_map knows it should wait for the GPU when mapping
213 * that range. */
214 if (sdst)
215 util_range_add(dst, &sdst->valid_buffer_range, offset, offset + size);
216
217 /* Flush the caches. */
218 if (sdst && !(user_flags & SI_CPDMA_SKIP_GFX_SYNC)) {
219 sctx->flags |= SI_CONTEXT_PS_PARTIAL_FLUSH | SI_CONTEXT_CS_PARTIAL_FLUSH |
220 si_get_flush_flags(sctx, coher, cache_policy);
221 }
222
223 while (size) {
224 unsigned byte_count = MIN2(size, cp_dma_max_byte_count(sctx));
225 unsigned dma_flags = CP_DMA_CLEAR | (sdst ? 0 : CP_DMA_DST_IS_GDS);
226
227 si_cp_dma_prepare(sctx, dst, NULL, byte_count, size, user_flags, coher, &is_first,
228 &dma_flags);
229
230 /* Emit the clear packet. */
231 si_emit_cp_dma(sctx, cs, va, value, byte_count, dma_flags, cache_policy);
232
233 size -= byte_count;
234 va += byte_count;
235 }
236
237 if (sdst && cache_policy != L2_BYPASS)
238 sdst->TC_L2_dirty = true;
239
240 /* If it's not a framebuffer fast clear... */
241 if (coher == SI_COHERENCY_SHADER) {
242 sctx->num_cp_dma_calls++;
243 si_prim_discard_signal_next_compute_ib_start(sctx);
244 }
245 }
246
247 /**
248 * Realign the CP DMA engine. This must be done after a copy with an unaligned
249 * size.
250 *
251 * \param size Remaining size to the CP DMA alignment.
252 */
253 static void si_cp_dma_realign_engine(struct si_context *sctx, unsigned size, unsigned user_flags,
254 enum si_coherency coher, enum si_cache_policy cache_policy,
255 bool *is_first)
256 {
257 uint64_t va;
258 unsigned dma_flags = 0;
259 unsigned scratch_size = SI_CPDMA_ALIGNMENT * 2;
260
261 assert(size < SI_CPDMA_ALIGNMENT);
262
263 /* Use the scratch buffer as the dummy buffer. The 3D engine should be
264 * idle at this point.
265 */
266 if (!sctx->scratch_buffer || sctx->scratch_buffer->b.b.width0 < scratch_size) {
267 si_resource_reference(&sctx->scratch_buffer, NULL);
268 sctx->scratch_buffer = si_aligned_buffer_create(&sctx->screen->b, SI_RESOURCE_FLAG_UNMAPPABLE,
269 PIPE_USAGE_DEFAULT, scratch_size, 256);
270 if (!sctx->scratch_buffer)
271 return;
272
273 si_mark_atom_dirty(sctx, &sctx->atoms.s.scratch_state);
274 }
275
276 si_cp_dma_prepare(sctx, &sctx->scratch_buffer->b.b, &sctx->scratch_buffer->b.b, size, size,
277 user_flags, coher, is_first, &dma_flags);
278
279 va = sctx->scratch_buffer->gpu_address;
280 si_emit_cp_dma(sctx, sctx->gfx_cs, va, va + SI_CPDMA_ALIGNMENT, size, dma_flags, cache_policy);
281 }
282
283 /**
284 * Do memcpy between buffers using CP DMA.
285 * If src or dst is NULL, it means read or write GDS, respectively.
286 *
287 * \param user_flags bitmask of SI_CPDMA_*
288 */
289 void si_cp_dma_copy_buffer(struct si_context *sctx, struct pipe_resource *dst,
290 struct pipe_resource *src, uint64_t dst_offset, uint64_t src_offset,
291 unsigned size, unsigned user_flags, enum si_coherency coher,
292 enum si_cache_policy cache_policy)
293 {
294 uint64_t main_dst_offset, main_src_offset;
295 unsigned skipped_size = 0;
296 unsigned realign_size = 0;
297 unsigned gds_flags = (dst ? 0 : CP_DMA_DST_IS_GDS) | (src ? 0 : CP_DMA_SRC_IS_GDS);
298 bool is_first = true;
299
300 assert(size);
301
302 if (dst) {
303 /* Skip this for the L2 prefetch. */
304 if (dst != src || dst_offset != src_offset) {
305 /* Mark the buffer range of destination as valid (initialized),
306 * so that transfer_map knows it should wait for the GPU when mapping
307 * that range. */
308 util_range_add(dst, &si_resource(dst)->valid_buffer_range, dst_offset, dst_offset + size);
309 }
310
311 dst_offset += si_resource(dst)->gpu_address;
312 }
313 if (src)
314 src_offset += si_resource(src)->gpu_address;
315
316 /* The workarounds aren't needed on Fiji and beyond. */
317 if (sctx->family <= CHIP_CARRIZO || sctx->family == CHIP_STONEY) {
318 /* If the size is not aligned, we must add a dummy copy at the end
319 * just to align the internal counter. Otherwise, the DMA engine
320 * would slow down by an order of magnitude for following copies.
321 */
322 if (size % SI_CPDMA_ALIGNMENT)
323 realign_size = SI_CPDMA_ALIGNMENT - (size % SI_CPDMA_ALIGNMENT);
324
325 /* If the copy begins unaligned, we must start copying from the next
326 * aligned block and the skipped part should be copied after everything
327 * else has been copied. Only the src alignment matters, not dst.
328 *
329 * GDS doesn't need the source address to be aligned.
330 */
331 if (src && src_offset % SI_CPDMA_ALIGNMENT) {
332 skipped_size = SI_CPDMA_ALIGNMENT - (src_offset % SI_CPDMA_ALIGNMENT);
333 /* The main part will be skipped if the size is too small. */
334 skipped_size = MIN2(skipped_size, size);
335 size -= skipped_size;
336 }
337 }
338
339 /* TMZ handling */
340 if (unlikely(sctx->ws->ws_is_secure(sctx->ws) &&
341 !(user_flags & SI_CPDMA_SKIP_TMZ))) {
342 bool secure = src && (si_resource(src)->flags & RADEON_FLAG_ENCRYPTED);
343 assert(!secure || (!dst || (si_resource(dst)->flags & RADEON_FLAG_ENCRYPTED)));
344 if (secure != sctx->ws->cs_is_secure(sctx->gfx_cs)) {
345 si_flush_gfx_cs(sctx, RADEON_FLUSH_ASYNC_START_NEXT_GFX_IB_NOW, NULL);
346 sctx->ws->cs_set_secure(sctx->gfx_cs, secure);
347 }
348 }
349
350 /* Flush the caches. */
351 if ((dst || src) && !(user_flags & SI_CPDMA_SKIP_GFX_SYNC)) {
352 sctx->flags |= SI_CONTEXT_PS_PARTIAL_FLUSH | SI_CONTEXT_CS_PARTIAL_FLUSH |
353 si_get_flush_flags(sctx, coher, cache_policy);
354 }
355
356 /* This is the main part doing the copying. Src is always aligned. */
357 main_dst_offset = dst_offset + skipped_size;
358 main_src_offset = src_offset + skipped_size;
359
360 while (size) {
361 unsigned byte_count = MIN2(size, cp_dma_max_byte_count(sctx));
362 unsigned dma_flags = gds_flags;
363
364 si_cp_dma_prepare(sctx, dst, src, byte_count, size + skipped_size + realign_size, user_flags,
365 coher, &is_first, &dma_flags);
366
367 si_emit_cp_dma(sctx, sctx->gfx_cs, main_dst_offset, main_src_offset, byte_count, dma_flags,
368 cache_policy);
369
370 size -= byte_count;
371 main_src_offset += byte_count;
372 main_dst_offset += byte_count;
373 }
374
375 /* Copy the part we skipped because src wasn't aligned. */
376 if (skipped_size) {
377 unsigned dma_flags = gds_flags;
378
379 si_cp_dma_prepare(sctx, dst, src, skipped_size, skipped_size + realign_size, user_flags,
380 coher, &is_first, &dma_flags);
381
382 si_emit_cp_dma(sctx, sctx->gfx_cs, dst_offset, src_offset, skipped_size, dma_flags,
383 cache_policy);
384 }
385
386 /* Finally, realign the engine if the size wasn't aligned. */
387 if (realign_size) {
388 si_cp_dma_realign_engine(sctx, realign_size, user_flags, coher, cache_policy, &is_first);
389 }
390
391 if (dst && cache_policy != L2_BYPASS)
392 si_resource(dst)->TC_L2_dirty = true;
393
394 /* If it's not a prefetch or GDS copy... */
395 if (dst && src && (dst != src || dst_offset != src_offset)) {
396 sctx->num_cp_dma_calls++;
397 si_prim_discard_signal_next_compute_ib_start(sctx);
398 }
399 }
400
401 void cik_prefetch_TC_L2_async(struct si_context *sctx, struct pipe_resource *buf, uint64_t offset,
402 unsigned size)
403 {
404 assert(sctx->chip_class >= GFX7);
405
406 si_cp_dma_copy_buffer(sctx, buf, buf, offset, offset, size, SI_CPDMA_SKIP_ALL,
407 SI_COHERENCY_SHADER, L2_LRU);
408 }
409
410 static void cik_prefetch_shader_async(struct si_context *sctx, struct si_pm4_state *state)
411 {
412 struct pipe_resource *bo = &state->bo[0]->b.b;
413 assert(state->nbo == 1);
414
415 cik_prefetch_TC_L2_async(sctx, bo, 0, bo->width0);
416 }
417
418 static void cik_prefetch_VBO_descriptors(struct si_context *sctx)
419 {
420 if (!sctx->vertex_elements || !sctx->vertex_elements->vb_desc_list_alloc_size)
421 return;
422
423 cik_prefetch_TC_L2_async(sctx, &sctx->vb_descriptors_buffer->b.b, sctx->vb_descriptors_offset,
424 sctx->vertex_elements->vb_desc_list_alloc_size);
425 }
426
427 /**
428 * Prefetch shaders and VBO descriptors.
429 *
430 * \param vertex_stage_only Whether only the the API VS and VBO descriptors
431 * should be prefetched.
432 */
433 void cik_emit_prefetch_L2(struct si_context *sctx, bool vertex_stage_only)
434 {
435 unsigned mask = sctx->prefetch_L2_mask;
436 assert(mask);
437
438 /* Prefetch shaders and VBO descriptors to TC L2. */
439 if (sctx->chip_class >= GFX9) {
440 /* Choose the right spot for the VBO prefetch. */
441 if (sctx->queued.named.hs) {
442 if (mask & SI_PREFETCH_HS)
443 cik_prefetch_shader_async(sctx, sctx->queued.named.hs);
444 if (mask & SI_PREFETCH_VBO_DESCRIPTORS)
445 cik_prefetch_VBO_descriptors(sctx);
446 if (vertex_stage_only) {
447 sctx->prefetch_L2_mask &= ~(SI_PREFETCH_HS | SI_PREFETCH_VBO_DESCRIPTORS);
448 return;
449 }
450
451 if (mask & SI_PREFETCH_GS)
452 cik_prefetch_shader_async(sctx, sctx->queued.named.gs);
453 if (mask & SI_PREFETCH_VS)
454 cik_prefetch_shader_async(sctx, sctx->queued.named.vs);
455 } else if (sctx->queued.named.gs) {
456 if (mask & SI_PREFETCH_GS)
457 cik_prefetch_shader_async(sctx, sctx->queued.named.gs);
458 if (mask & SI_PREFETCH_VBO_DESCRIPTORS)
459 cik_prefetch_VBO_descriptors(sctx);
460 if (vertex_stage_only) {
461 sctx->prefetch_L2_mask &= ~(SI_PREFETCH_GS | SI_PREFETCH_VBO_DESCRIPTORS);
462 return;
463 }
464
465 if (mask & SI_PREFETCH_VS)
466 cik_prefetch_shader_async(sctx, sctx->queued.named.vs);
467 } else {
468 if (mask & SI_PREFETCH_VS)
469 cik_prefetch_shader_async(sctx, sctx->queued.named.vs);
470 if (mask & SI_PREFETCH_VBO_DESCRIPTORS)
471 cik_prefetch_VBO_descriptors(sctx);
472 if (vertex_stage_only) {
473 sctx->prefetch_L2_mask &= ~(SI_PREFETCH_VS | SI_PREFETCH_VBO_DESCRIPTORS);
474 return;
475 }
476 }
477 } else {
478 /* GFX6-GFX8 */
479 /* Choose the right spot for the VBO prefetch. */
480 if (sctx->tes_shader.cso) {
481 if (mask & SI_PREFETCH_LS)
482 cik_prefetch_shader_async(sctx, sctx->queued.named.ls);
483 if (mask & SI_PREFETCH_VBO_DESCRIPTORS)
484 cik_prefetch_VBO_descriptors(sctx);
485 if (vertex_stage_only) {
486 sctx->prefetch_L2_mask &= ~(SI_PREFETCH_LS | SI_PREFETCH_VBO_DESCRIPTORS);
487 return;
488 }
489
490 if (mask & SI_PREFETCH_HS)
491 cik_prefetch_shader_async(sctx, sctx->queued.named.hs);
492 if (mask & SI_PREFETCH_ES)
493 cik_prefetch_shader_async(sctx, sctx->queued.named.es);
494 if (mask & SI_PREFETCH_GS)
495 cik_prefetch_shader_async(sctx, sctx->queued.named.gs);
496 if (mask & SI_PREFETCH_VS)
497 cik_prefetch_shader_async(sctx, sctx->queued.named.vs);
498 } else if (sctx->gs_shader.cso) {
499 if (mask & SI_PREFETCH_ES)
500 cik_prefetch_shader_async(sctx, sctx->queued.named.es);
501 if (mask & SI_PREFETCH_VBO_DESCRIPTORS)
502 cik_prefetch_VBO_descriptors(sctx);
503 if (vertex_stage_only) {
504 sctx->prefetch_L2_mask &= ~(SI_PREFETCH_ES | SI_PREFETCH_VBO_DESCRIPTORS);
505 return;
506 }
507
508 if (mask & SI_PREFETCH_GS)
509 cik_prefetch_shader_async(sctx, sctx->queued.named.gs);
510 if (mask & SI_PREFETCH_VS)
511 cik_prefetch_shader_async(sctx, sctx->queued.named.vs);
512 } else {
513 if (mask & SI_PREFETCH_VS)
514 cik_prefetch_shader_async(sctx, sctx->queued.named.vs);
515 if (mask & SI_PREFETCH_VBO_DESCRIPTORS)
516 cik_prefetch_VBO_descriptors(sctx);
517 if (vertex_stage_only) {
518 sctx->prefetch_L2_mask &= ~(SI_PREFETCH_VS | SI_PREFETCH_VBO_DESCRIPTORS);
519 return;
520 }
521 }
522 }
523
524 if (mask & SI_PREFETCH_PS)
525 cik_prefetch_shader_async(sctx, sctx->queued.named.ps);
526
527 sctx->prefetch_L2_mask = 0;
528 }
529
530 void si_test_gds(struct si_context *sctx)
531 {
532 struct pipe_context *ctx = &sctx->b;
533 struct pipe_resource *src, *dst;
534 unsigned r[4] = {};
535 unsigned offset = debug_get_num_option("OFFSET", 16);
536
537 src = pipe_buffer_create(ctx->screen, 0, PIPE_USAGE_DEFAULT, 16);
538 dst = pipe_buffer_create(ctx->screen, 0, PIPE_USAGE_DEFAULT, 16);
539 si_cp_dma_clear_buffer(sctx, sctx->gfx_cs, src, 0, 4, 0xabcdef01, 0, SI_COHERENCY_SHADER,
540 L2_BYPASS);
541 si_cp_dma_clear_buffer(sctx, sctx->gfx_cs, src, 4, 4, 0x23456789, 0, SI_COHERENCY_SHADER,
542 L2_BYPASS);
543 si_cp_dma_clear_buffer(sctx, sctx->gfx_cs, src, 8, 4, 0x87654321, 0, SI_COHERENCY_SHADER,
544 L2_BYPASS);
545 si_cp_dma_clear_buffer(sctx, sctx->gfx_cs, src, 12, 4, 0xfedcba98, 0, SI_COHERENCY_SHADER,
546 L2_BYPASS);
547 si_cp_dma_clear_buffer(sctx, sctx->gfx_cs, dst, 0, 16, 0xdeadbeef, 0, SI_COHERENCY_SHADER,
548 L2_BYPASS);
549
550 si_cp_dma_copy_buffer(sctx, NULL, src, offset, 0, 16, 0, SI_COHERENCY_NONE, L2_BYPASS);
551 si_cp_dma_copy_buffer(sctx, dst, NULL, 0, offset, 16, 0, SI_COHERENCY_NONE, L2_BYPASS);
552
553 pipe_buffer_read(ctx, dst, 0, sizeof(r), r);
554 printf("GDS copy = %08x %08x %08x %08x -> %s\n", r[0], r[1], r[2], r[3],
555 r[0] == 0xabcdef01 && r[1] == 0x23456789 && r[2] == 0x87654321 && r[3] == 0xfedcba98
556 ? "pass"
557 : "fail");
558
559 si_cp_dma_clear_buffer(sctx, sctx->gfx_cs, NULL, offset, 16, 0xc1ea4146, 0, SI_COHERENCY_NONE,
560 L2_BYPASS);
561 si_cp_dma_copy_buffer(sctx, dst, NULL, 0, offset, 16, 0, SI_COHERENCY_NONE, L2_BYPASS);
562
563 pipe_buffer_read(ctx, dst, 0, sizeof(r), r);
564 printf("GDS clear = %08x %08x %08x %08x -> %s\n", r[0], r[1], r[2], r[3],
565 r[0] == 0xc1ea4146 && r[1] == 0xc1ea4146 && r[2] == 0xc1ea4146 && r[3] == 0xc1ea4146
566 ? "pass"
567 : "fail");
568
569 pipe_resource_reference(&src, NULL);
570 pipe_resource_reference(&dst, NULL);
571 exit(0);
572 }
573
574 void si_cp_write_data(struct si_context *sctx, struct si_resource *buf, unsigned offset,
575 unsigned size, unsigned dst_sel, unsigned engine, const void *data)
576 {
577 struct radeon_cmdbuf *cs = sctx->gfx_cs;
578
579 assert(offset % 4 == 0);
580 assert(size % 4 == 0);
581
582 if (sctx->chip_class == GFX6 && dst_sel == V_370_MEM)
583 dst_sel = V_370_MEM_GRBM;
584
585 radeon_add_to_buffer_list(sctx, cs, buf, RADEON_USAGE_WRITE, RADEON_PRIO_CP_DMA);
586 uint64_t va = buf->gpu_address + offset;
587
588 radeon_emit(cs, PKT3(PKT3_WRITE_DATA, 2 + size / 4, 0));
589 radeon_emit(cs, S_370_DST_SEL(dst_sel) | S_370_WR_CONFIRM(1) | S_370_ENGINE_SEL(engine));
590 radeon_emit(cs, va);
591 radeon_emit(cs, va >> 32);
592 radeon_emit_array(cs, (const uint32_t *)data, size / 4);
593 }
594
595 void si_cp_copy_data(struct si_context *sctx, struct radeon_cmdbuf *cs, unsigned dst_sel,
596 struct si_resource *dst, unsigned dst_offset, unsigned src_sel,
597 struct si_resource *src, unsigned src_offset)
598 {
599 /* cs can point to the compute IB, which has the buffer list in gfx_cs. */
600 if (dst) {
601 radeon_add_to_buffer_list(sctx, sctx->gfx_cs, dst, RADEON_USAGE_WRITE, RADEON_PRIO_CP_DMA);
602 }
603 if (src) {
604 radeon_add_to_buffer_list(sctx, sctx->gfx_cs, src, RADEON_USAGE_READ, RADEON_PRIO_CP_DMA);
605 }
606
607 uint64_t dst_va = (dst ? dst->gpu_address : 0ull) + dst_offset;
608 uint64_t src_va = (src ? src->gpu_address : 0ull) + src_offset;
609
610 radeon_emit(cs, PKT3(PKT3_COPY_DATA, 4, 0));
611 radeon_emit(cs, COPY_DATA_SRC_SEL(src_sel) | COPY_DATA_DST_SEL(dst_sel) | COPY_DATA_WR_CONFIRM);
612 radeon_emit(cs, src_va);
613 radeon_emit(cs, src_va >> 32);
614 radeon_emit(cs, dst_va);
615 radeon_emit(cs, dst_va >> 32);
616 }