cbb84b00ce42787726701b1b6822e366d8ab3559
[mesa.git] / src / gallium / drivers / radeonsi / si_cp_dma.c
1 /*
2 * Copyright 2013 Advanced Micro Devices, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Marek Olšák <maraeo@gmail.com>
25 */
26
27 #include "si_pipe.h"
28 #include "sid.h"
29 #include "radeon/r600_cs.h"
30
31
32 /* Set this if you want the 3D engine to wait until CP DMA is done.
33 * It should be set on the last CP DMA packet. */
34 #define R600_CP_DMA_SYNC (1 << 0) /* R600+ */
35
36 /* Set this if the source data was used as a destination in a previous CP DMA
37 * packet. It's for preventing a read-after-write (RAW) hazard between two
38 * CP DMA packets. */
39 #define SI_CP_DMA_RAW_WAIT (1 << 1) /* SI+ */
40 #define CIK_CP_DMA_USE_L2 (1 << 2)
41
42 /* Emit a CP DMA packet to do a copy from one buffer to another.
43 * The size must fit in bits [20:0].
44 */
45 static void si_emit_cp_dma_copy_buffer(struct si_context *sctx,
46 uint64_t dst_va, uint64_t src_va,
47 unsigned size, unsigned flags)
48 {
49 struct radeon_winsys_cs *cs = sctx->b.gfx.cs;
50 uint32_t sync_flag = flags & R600_CP_DMA_SYNC ? S_411_CP_SYNC(1) : 0;
51 uint32_t wr_confirm = !(flags & R600_CP_DMA_SYNC) ? S_414_DISABLE_WR_CONFIRM(1) : 0;
52 uint32_t raw_wait = flags & SI_CP_DMA_RAW_WAIT ? S_414_RAW_WAIT(1) : 0;
53 uint32_t sel = flags & CIK_CP_DMA_USE_L2 ?
54 S_411_SRC_SEL(V_411_SRC_ADDR_TC_L2) |
55 S_411_DSL_SEL(V_411_DST_ADDR_TC_L2) : 0;
56
57 assert(size);
58 assert((size & ((1<<21)-1)) == size);
59
60 if (sctx->b.chip_class >= CIK) {
61 radeon_emit(cs, PKT3(PKT3_DMA_DATA, 5, 0));
62 radeon_emit(cs, sync_flag | sel); /* CP_SYNC [31] */
63 radeon_emit(cs, src_va); /* SRC_ADDR_LO [31:0] */
64 radeon_emit(cs, src_va >> 32); /* SRC_ADDR_HI [31:0] */
65 radeon_emit(cs, dst_va); /* DST_ADDR_LO [31:0] */
66 radeon_emit(cs, dst_va >> 32); /* DST_ADDR_HI [31:0] */
67 radeon_emit(cs, size | wr_confirm | raw_wait); /* COMMAND [29:22] | BYTE_COUNT [20:0] */
68 } else {
69 radeon_emit(cs, PKT3(PKT3_CP_DMA, 4, 0));
70 radeon_emit(cs, src_va); /* SRC_ADDR_LO [31:0] */
71 radeon_emit(cs, sync_flag | ((src_va >> 32) & 0xffff)); /* CP_SYNC [31] | SRC_ADDR_HI [15:0] */
72 radeon_emit(cs, dst_va); /* DST_ADDR_LO [31:0] */
73 radeon_emit(cs, (dst_va >> 32) & 0xffff); /* DST_ADDR_HI [15:0] */
74 radeon_emit(cs, size | wr_confirm | raw_wait); /* COMMAND [29:22] | BYTE_COUNT [20:0] */
75 }
76 }
77
78 /* Emit a CP DMA packet to clear a buffer. The size must fit in bits [20:0]. */
79 static void si_emit_cp_dma_clear_buffer(struct si_context *sctx,
80 uint64_t dst_va, unsigned size,
81 uint32_t clear_value, unsigned flags)
82 {
83 struct radeon_winsys_cs *cs = sctx->b.gfx.cs;
84 uint32_t sync_flag = flags & R600_CP_DMA_SYNC ? S_411_CP_SYNC(1) : 0;
85 uint32_t wr_confirm = !(flags & R600_CP_DMA_SYNC) ? S_414_DISABLE_WR_CONFIRM(1) : 0;
86 uint32_t raw_wait = flags & SI_CP_DMA_RAW_WAIT ? S_414_RAW_WAIT(1) : 0;
87 uint32_t dst_sel = flags & CIK_CP_DMA_USE_L2 ? S_411_DSL_SEL(V_411_DST_ADDR_TC_L2) : 0;
88
89 assert(size);
90 assert((size & ((1<<21)-1)) == size);
91
92 if (sctx->b.chip_class >= CIK) {
93 radeon_emit(cs, PKT3(PKT3_DMA_DATA, 5, 0));
94 radeon_emit(cs, sync_flag | dst_sel | S_411_SRC_SEL(V_411_DATA)); /* CP_SYNC [31] | SRC_SEL[30:29] */
95 radeon_emit(cs, clear_value); /* DATA [31:0] */
96 radeon_emit(cs, 0);
97 radeon_emit(cs, dst_va); /* DST_ADDR_LO [31:0] */
98 radeon_emit(cs, dst_va >> 32); /* DST_ADDR_HI [15:0] */
99 radeon_emit(cs, size | wr_confirm | raw_wait); /* COMMAND [29:22] | BYTE_COUNT [20:0] */
100 } else {
101 radeon_emit(cs, PKT3(PKT3_CP_DMA, 4, 0));
102 radeon_emit(cs, clear_value); /* DATA [31:0] */
103 radeon_emit(cs, sync_flag | S_411_SRC_SEL(V_411_DATA)); /* CP_SYNC [31] | SRC_SEL[30:29] */
104 radeon_emit(cs, dst_va); /* DST_ADDR_LO [31:0] */
105 radeon_emit(cs, (dst_va >> 32) & 0xffff); /* DST_ADDR_HI [15:0] */
106 radeon_emit(cs, size | wr_confirm | raw_wait); /* COMMAND [29:22] | BYTE_COUNT [20:0] */
107 }
108 }
109
110 static unsigned get_flush_flags(struct si_context *sctx, enum r600_coherency coher)
111 {
112 switch (coher) {
113 default:
114 case R600_COHERENCY_NONE:
115 return 0;
116 case R600_COHERENCY_SHADER:
117 return SI_CONTEXT_INV_SMEM_L1 |
118 SI_CONTEXT_INV_VMEM_L1 |
119 (sctx->b.chip_class == SI ? SI_CONTEXT_INV_GLOBAL_L2 : 0);
120 case R600_COHERENCY_CB_META:
121 return SI_CONTEXT_FLUSH_AND_INV_CB |
122 SI_CONTEXT_FLUSH_AND_INV_CB_META;
123 }
124 }
125
126 static unsigned get_tc_l2_flag(struct si_context *sctx, enum r600_coherency coher)
127 {
128 return coher == R600_COHERENCY_SHADER &&
129 sctx->b.chip_class >= CIK ? CIK_CP_DMA_USE_L2 : 0;
130 }
131
132 static void si_cp_dma_prepare(struct si_context *sctx, struct pipe_resource *dst,
133 struct pipe_resource *src, unsigned byte_count,
134 uint64_t remaining_size, unsigned *flags)
135 {
136 si_need_cs_space(sctx);
137
138 /* This must be done after need_cs_space. */
139 radeon_add_to_buffer_list(&sctx->b, &sctx->b.gfx,
140 (struct r600_resource*)dst,
141 RADEON_USAGE_WRITE, RADEON_PRIO_CP_DMA);
142 if (src)
143 radeon_add_to_buffer_list(&sctx->b, &sctx->b.gfx,
144 (struct r600_resource*)src,
145 RADEON_USAGE_READ, RADEON_PRIO_CP_DMA);
146
147 /* Flush the caches for the first copy only.
148 * Also wait for the previous CP DMA operations.
149 */
150 if (sctx->b.flags) {
151 si_emit_cache_flush(sctx, NULL);
152 *flags |= SI_CP_DMA_RAW_WAIT;
153 }
154
155 /* Do the synchronization after the last dma, so that all data
156 * is written to memory.
157 */
158 if (byte_count == remaining_size)
159 *flags |= R600_CP_DMA_SYNC;
160 }
161
162 /* Alignment for optimal performance. */
163 #define CP_DMA_ALIGNMENT 32
164 /* The max number of bytes to copy per packet. */
165 #define CP_DMA_MAX_BYTE_COUNT ((1 << 21) - CP_DMA_ALIGNMENT)
166
167 static void si_clear_buffer(struct pipe_context *ctx, struct pipe_resource *dst,
168 uint64_t offset, uint64_t size, unsigned value,
169 enum r600_coherency coher)
170 {
171 struct si_context *sctx = (struct si_context*)ctx;
172 unsigned tc_l2_flag = get_tc_l2_flag(sctx, coher);
173 unsigned flush_flags = get_flush_flags(sctx, coher);
174
175 if (!size)
176 return;
177
178 /* Mark the buffer range of destination as valid (initialized),
179 * so that transfer_map knows it should wait for the GPU when mapping
180 * that range. */
181 util_range_add(&r600_resource(dst)->valid_buffer_range, offset,
182 offset + size);
183
184 /* Fallback for unaligned clears. */
185 if (offset % 4 != 0 || size % 4 != 0) {
186 uint8_t *map = sctx->b.ws->buffer_map(r600_resource(dst)->buf,
187 sctx->b.gfx.cs,
188 PIPE_TRANSFER_WRITE);
189 map += offset;
190 for (uint64_t i = 0; i < size; i++) {
191 unsigned byte_within_dword = (offset + i) % 4;
192 *map++ = (value >> (byte_within_dword * 8)) & 0xff;
193 }
194 return;
195 }
196
197 uint64_t va = r600_resource(dst)->gpu_address + offset;
198
199 /* Flush the caches. */
200 sctx->b.flags |= SI_CONTEXT_PS_PARTIAL_FLUSH |
201 SI_CONTEXT_CS_PARTIAL_FLUSH | flush_flags;
202
203 while (size) {
204 unsigned byte_count = MIN2(size, CP_DMA_MAX_BYTE_COUNT);
205 unsigned dma_flags = tc_l2_flag;
206
207 si_cp_dma_prepare(sctx, dst, NULL, byte_count, size, &dma_flags);
208
209 /* Emit the clear packet. */
210 si_emit_cp_dma_clear_buffer(sctx, va, byte_count, value, dma_flags);
211
212 size -= byte_count;
213 va += byte_count;
214 }
215
216 if (tc_l2_flag)
217 r600_resource(dst)->TC_L2_dirty = true;
218 }
219
220 /**
221 * Realign the CP DMA engine. This must be done after a copy with an unaligned
222 * size.
223 *
224 * \param size Remaining size to the CP DMA alignment.
225 */
226 static void si_cp_dma_realign_engine(struct si_context *sctx, unsigned size)
227 {
228 uint64_t va;
229 unsigned dma_flags = 0;
230 unsigned scratch_size = CP_DMA_ALIGNMENT * 2;
231
232 assert(size < CP_DMA_ALIGNMENT);
233
234 /* Use the scratch buffer as the dummy buffer. The 3D engine should be
235 * idle at this point.
236 */
237 if (!sctx->scratch_buffer ||
238 sctx->scratch_buffer->b.b.width0 < scratch_size) {
239 r600_resource_reference(&sctx->scratch_buffer, NULL);
240 sctx->scratch_buffer =
241 si_resource_create_custom(&sctx->screen->b.b,
242 PIPE_USAGE_DEFAULT,
243 scratch_size);
244 if (!sctx->scratch_buffer)
245 return;
246 sctx->emit_scratch_reloc = true;
247 }
248
249 si_cp_dma_prepare(sctx, &sctx->scratch_buffer->b.b,
250 &sctx->scratch_buffer->b.b, size, size, &dma_flags);
251
252 va = sctx->scratch_buffer->gpu_address;
253 si_emit_cp_dma_copy_buffer(sctx, va, va + CP_DMA_ALIGNMENT, size,
254 dma_flags);
255 }
256
257 void si_copy_buffer(struct si_context *sctx,
258 struct pipe_resource *dst, struct pipe_resource *src,
259 uint64_t dst_offset, uint64_t src_offset, unsigned size)
260 {
261 uint64_t main_dst_offset, main_src_offset;
262 unsigned skipped_size = 0;
263 unsigned realign_size = 0;
264 unsigned tc_l2_flag = get_tc_l2_flag(sctx, R600_COHERENCY_SHADER);
265 unsigned flush_flags = get_flush_flags(sctx, R600_COHERENCY_SHADER);
266
267 if (!size)
268 return;
269
270 /* Mark the buffer range of destination as valid (initialized),
271 * so that transfer_map knows it should wait for the GPU when mapping
272 * that range. */
273 util_range_add(&r600_resource(dst)->valid_buffer_range, dst_offset,
274 dst_offset + size);
275
276 dst_offset += r600_resource(dst)->gpu_address;
277 src_offset += r600_resource(src)->gpu_address;
278
279 /* The workarounds aren't needed on Fiji and beyond. */
280 if (sctx->b.family <= CHIP_CARRIZO ||
281 sctx->b.family == CHIP_STONEY) {
282 /* If the size is not aligned, we must add a dummy copy at the end
283 * just to align the internal counter. Otherwise, the DMA engine
284 * would slow down by an order of magnitude for following copies.
285 */
286 if (size % CP_DMA_ALIGNMENT)
287 realign_size = CP_DMA_ALIGNMENT - (size % CP_DMA_ALIGNMENT);
288
289 /* If the copy begins unaligned, we must start copying from the next
290 * aligned block and the skipped part should be copied after everything
291 * else has been copied. Only the src alignment matters, not dst.
292 */
293 if (src_offset % CP_DMA_ALIGNMENT) {
294 skipped_size = CP_DMA_ALIGNMENT - (src_offset % CP_DMA_ALIGNMENT);
295 /* The main part will be skipped if the size is too small. */
296 skipped_size = MIN2(skipped_size, size);
297 size -= skipped_size;
298 }
299 }
300
301 /* Flush the caches. */
302 sctx->b.flags |= SI_CONTEXT_PS_PARTIAL_FLUSH |
303 SI_CONTEXT_CS_PARTIAL_FLUSH | flush_flags;
304
305 /* This is the main part doing the copying. Src is always aligned. */
306 main_dst_offset = dst_offset + skipped_size;
307 main_src_offset = src_offset + skipped_size;
308
309 while (size) {
310 unsigned dma_flags = tc_l2_flag;
311 unsigned byte_count = MIN2(size, CP_DMA_MAX_BYTE_COUNT);
312
313 si_cp_dma_prepare(sctx, dst, src, byte_count,
314 size + skipped_size + realign_size,
315 &dma_flags);
316
317 si_emit_cp_dma_copy_buffer(sctx, main_dst_offset, main_src_offset,
318 byte_count, dma_flags);
319
320 size -= byte_count;
321 main_src_offset += byte_count;
322 main_dst_offset += byte_count;
323 }
324
325 /* Copy the part we skipped because src wasn't aligned. */
326 if (skipped_size) {
327 unsigned dma_flags = tc_l2_flag;
328
329 si_cp_dma_prepare(sctx, dst, src, skipped_size,
330 skipped_size + realign_size,
331 &dma_flags);
332
333 si_emit_cp_dma_copy_buffer(sctx, dst_offset, src_offset,
334 skipped_size, dma_flags);
335 }
336
337 /* Finally, realign the engine if the size wasn't aligned. */
338 if (realign_size)
339 si_cp_dma_realign_engine(sctx, realign_size);
340
341 if (tc_l2_flag)
342 r600_resource(dst)->TC_L2_dirty = true;
343 }
344
345 void si_init_cp_dma_functions(struct si_context *sctx)
346 {
347 sctx->b.clear_buffer = si_clear_buffer;
348 }