gallium/radeon: move radeon_winsys::cs_memory_below_limit to drivers
[mesa.git] / src / gallium / drivers / r600 / r600_hw_context.c
1 /*
2 * Copyright 2010 Jerome Glisse <glisse@freedesktop.org>
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 * Jerome Glisse
25 */
26 #include "r600_pipe.h"
27 #include "r600d.h"
28 #include "util/u_memory.h"
29 #include <errno.h>
30 #include <unistd.h>
31
32
33 void r600_need_cs_space(struct r600_context *ctx, unsigned num_dw,
34 boolean count_draw_in)
35 {
36 /* Flush the DMA IB if it's not empty. */
37 if (radeon_emitted(ctx->b.dma.cs, 0))
38 ctx->b.dma.flush(ctx, RADEON_FLUSH_ASYNC, NULL);
39
40 if (!radeon_cs_memory_below_limit(ctx->b.screen, ctx->b.gfx.cs,
41 ctx->b.vram, ctx->b.gtt)) {
42 ctx->b.gtt = 0;
43 ctx->b.vram = 0;
44 ctx->b.gfx.flush(ctx, RADEON_FLUSH_ASYNC, NULL);
45 return;
46 }
47 /* all will be accounted once relocation are emited */
48 ctx->b.gtt = 0;
49 ctx->b.vram = 0;
50
51 /* Check available space in CS. */
52 if (count_draw_in) {
53 uint64_t mask;
54
55 /* The number of dwords all the dirty states would take. */
56 mask = ctx->dirty_atoms;
57 while (mask != 0)
58 num_dw += ctx->atoms[u_bit_scan64(&mask)]->num_dw;
59
60 /* The upper-bound of how much space a draw command would take. */
61 num_dw += R600_MAX_FLUSH_CS_DWORDS + R600_MAX_DRAW_CS_DWORDS;
62 }
63
64 /* Count in r600_suspend_queries. */
65 num_dw += ctx->b.num_cs_dw_queries_suspend;
66
67 /* Count in streamout_end at the end of CS. */
68 if (ctx->b.streamout.begin_emitted) {
69 num_dw += ctx->b.streamout.num_dw_for_end;
70 }
71
72 /* SX_MISC */
73 if (ctx->b.chip_class == R600) {
74 num_dw += 3;
75 }
76
77 /* Count in framebuffer cache flushes at the end of CS. */
78 num_dw += R600_MAX_FLUSH_CS_DWORDS;
79
80 /* The fence at the end of CS. */
81 num_dw += 10;
82
83 /* Flush if there's not enough space. */
84 if (!ctx->b.ws->cs_check_space(ctx->b.gfx.cs, num_dw)) {
85 ctx->b.gfx.flush(ctx, RADEON_FLUSH_ASYNC, NULL);
86 }
87 }
88
89 void r600_flush_emit(struct r600_context *rctx)
90 {
91 struct radeon_winsys_cs *cs = rctx->b.gfx.cs;
92 unsigned cp_coher_cntl = 0;
93 unsigned wait_until = 0;
94
95 if (!rctx->b.flags) {
96 return;
97 }
98
99 /* Ensure coherency between streamout and shaders. */
100 if (rctx->b.flags & R600_CONTEXT_STREAMOUT_FLUSH)
101 rctx->b.flags |= r600_get_flush_flags(R600_COHERENCY_SHADER);
102
103 if (rctx->b.flags & R600_CONTEXT_WAIT_3D_IDLE) {
104 wait_until |= S_008040_WAIT_3D_IDLE(1);
105 }
106 if (rctx->b.flags & R600_CONTEXT_WAIT_CP_DMA_IDLE) {
107 wait_until |= S_008040_WAIT_CP_DMA_IDLE(1);
108 }
109
110 if (wait_until) {
111 /* Use of WAIT_UNTIL is deprecated on Cayman+ */
112 if (rctx->b.family >= CHIP_CAYMAN) {
113 /* emit a PS partial flush on Cayman/TN */
114 rctx->b.flags |= R600_CONTEXT_PS_PARTIAL_FLUSH;
115 }
116 }
117
118 /* Wait packets must be executed first, because SURFACE_SYNC doesn't
119 * wait for shaders if it's not flushing CB or DB.
120 */
121 if (rctx->b.flags & R600_CONTEXT_PS_PARTIAL_FLUSH) {
122 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
123 radeon_emit(cs, EVENT_TYPE(EVENT_TYPE_PS_PARTIAL_FLUSH) | EVENT_INDEX(4));
124 }
125
126 if (wait_until) {
127 /* Use of WAIT_UNTIL is deprecated on Cayman+ */
128 if (rctx->b.family < CHIP_CAYMAN) {
129 /* wait for things to settle */
130 radeon_set_config_reg(cs, R_008040_WAIT_UNTIL, wait_until);
131 }
132 }
133
134 if (rctx->b.chip_class >= R700 &&
135 (rctx->b.flags & R600_CONTEXT_FLUSH_AND_INV_CB_META)) {
136 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
137 radeon_emit(cs, EVENT_TYPE(EVENT_TYPE_FLUSH_AND_INV_CB_META) | EVENT_INDEX(0));
138 }
139
140 if (rctx->b.chip_class >= R700 &&
141 (rctx->b.flags & R600_CONTEXT_FLUSH_AND_INV_DB_META)) {
142 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
143 radeon_emit(cs, EVENT_TYPE(EVENT_TYPE_FLUSH_AND_INV_DB_META) | EVENT_INDEX(0));
144
145 /* Set FULL_CACHE_ENA for DB META flushes on r7xx and later.
146 *
147 * This hack predates use of FLUSH_AND_INV_DB_META, so it's
148 * unclear whether it's still needed or even whether it has
149 * any effect.
150 */
151 cp_coher_cntl |= S_0085F0_FULL_CACHE_ENA(1);
152 }
153
154 if (rctx->b.flags & R600_CONTEXT_FLUSH_AND_INV ||
155 (rctx->b.chip_class == R600 && rctx->b.flags & R600_CONTEXT_STREAMOUT_FLUSH)) {
156 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
157 radeon_emit(cs, EVENT_TYPE(EVENT_TYPE_CACHE_FLUSH_AND_INV_EVENT) | EVENT_INDEX(0));
158 }
159
160 if (rctx->b.flags & R600_CONTEXT_INV_CONST_CACHE) {
161 /* Direct constant addressing uses the shader cache.
162 * Indirect contant addressing uses the vertex cache. */
163 cp_coher_cntl |= S_0085F0_SH_ACTION_ENA(1) |
164 (rctx->has_vertex_cache ? S_0085F0_VC_ACTION_ENA(1)
165 : S_0085F0_TC_ACTION_ENA(1));
166 }
167 if (rctx->b.flags & R600_CONTEXT_INV_VERTEX_CACHE) {
168 cp_coher_cntl |= rctx->has_vertex_cache ? S_0085F0_VC_ACTION_ENA(1)
169 : S_0085F0_TC_ACTION_ENA(1);
170 }
171 if (rctx->b.flags & R600_CONTEXT_INV_TEX_CACHE) {
172 /* Textures use the texture cache.
173 * Texture buffer objects use the vertex cache. */
174 cp_coher_cntl |= S_0085F0_TC_ACTION_ENA(1) |
175 (rctx->has_vertex_cache ? S_0085F0_VC_ACTION_ENA(1) : 0);
176 }
177
178 /* Don't use the DB CP COHER logic on r6xx.
179 * There are hw bugs.
180 */
181 if (rctx->b.chip_class >= R700 &&
182 (rctx->b.flags & R600_CONTEXT_FLUSH_AND_INV_DB)) {
183 cp_coher_cntl |= S_0085F0_DB_ACTION_ENA(1) |
184 S_0085F0_DB_DEST_BASE_ENA(1) |
185 S_0085F0_SMX_ACTION_ENA(1);
186 }
187
188 /* Don't use the CB CP COHER logic on r6xx.
189 * There are hw bugs.
190 */
191 if (rctx->b.chip_class >= R700 &&
192 (rctx->b.flags & R600_CONTEXT_FLUSH_AND_INV_CB)) {
193 cp_coher_cntl |= S_0085F0_CB_ACTION_ENA(1) |
194 S_0085F0_CB0_DEST_BASE_ENA(1) |
195 S_0085F0_CB1_DEST_BASE_ENA(1) |
196 S_0085F0_CB2_DEST_BASE_ENA(1) |
197 S_0085F0_CB3_DEST_BASE_ENA(1) |
198 S_0085F0_CB4_DEST_BASE_ENA(1) |
199 S_0085F0_CB5_DEST_BASE_ENA(1) |
200 S_0085F0_CB6_DEST_BASE_ENA(1) |
201 S_0085F0_CB7_DEST_BASE_ENA(1) |
202 S_0085F0_SMX_ACTION_ENA(1);
203 if (rctx->b.chip_class >= EVERGREEN)
204 cp_coher_cntl |= S_0085F0_CB8_DEST_BASE_ENA(1) |
205 S_0085F0_CB9_DEST_BASE_ENA(1) |
206 S_0085F0_CB10_DEST_BASE_ENA(1) |
207 S_0085F0_CB11_DEST_BASE_ENA(1);
208 }
209
210 if (rctx->b.chip_class >= R700 &&
211 rctx->b.flags & R600_CONTEXT_STREAMOUT_FLUSH) {
212 cp_coher_cntl |= S_0085F0_SO0_DEST_BASE_ENA(1) |
213 S_0085F0_SO1_DEST_BASE_ENA(1) |
214 S_0085F0_SO2_DEST_BASE_ENA(1) |
215 S_0085F0_SO3_DEST_BASE_ENA(1) |
216 S_0085F0_SMX_ACTION_ENA(1);
217 }
218
219 /* Workaround for buggy flushing on some R6xx chipsets. */
220 if ((rctx->b.flags & (R600_CONTEXT_FLUSH_AND_INV |
221 R600_CONTEXT_STREAMOUT_FLUSH)) &&
222 (rctx->b.family == CHIP_RV670 ||
223 rctx->b.family == CHIP_RS780 ||
224 rctx->b.family == CHIP_RS880)) {
225 cp_coher_cntl |= S_0085F0_CB1_DEST_BASE_ENA(1) |
226 S_0085F0_DEST_BASE_0_ENA(1);
227 }
228
229 if (cp_coher_cntl) {
230 radeon_emit(cs, PKT3(PKT3_SURFACE_SYNC, 3, 0));
231 radeon_emit(cs, cp_coher_cntl); /* CP_COHER_CNTL */
232 radeon_emit(cs, 0xffffffff); /* CP_COHER_SIZE */
233 radeon_emit(cs, 0); /* CP_COHER_BASE */
234 radeon_emit(cs, 0x0000000A); /* POLL_INTERVAL */
235 }
236
237 if (rctx->b.flags & R600_CONTEXT_START_PIPELINE_STATS) {
238 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
239 radeon_emit(cs, EVENT_TYPE(EVENT_TYPE_PIPELINESTAT_START) |
240 EVENT_INDEX(0));
241 } else if (rctx->b.flags & R600_CONTEXT_STOP_PIPELINE_STATS) {
242 radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 0, 0));
243 radeon_emit(cs, EVENT_TYPE(EVENT_TYPE_PIPELINESTAT_STOP) |
244 EVENT_INDEX(0));
245 }
246
247 /* everything is properly flushed */
248 rctx->b.flags = 0;
249 }
250
251 void r600_context_gfx_flush(void *context, unsigned flags,
252 struct pipe_fence_handle **fence)
253 {
254 struct r600_context *ctx = context;
255 struct radeon_winsys_cs *cs = ctx->b.gfx.cs;
256 struct radeon_winsys *ws = ctx->b.ws;
257
258 if (!radeon_emitted(cs, ctx->b.initial_gfx_cs_size) &&
259 (!fence || ctx->b.last_gfx_fence)) {
260 if (fence)
261 ws->fence_reference(fence, ctx->b.last_gfx_fence);
262 if (!(flags & RADEON_FLUSH_ASYNC))
263 ws->cs_sync_flush(cs);
264 return;
265 }
266
267 r600_preflush_suspend_features(&ctx->b);
268
269 /* flush the framebuffer cache */
270 ctx->b.flags |= R600_CONTEXT_FLUSH_AND_INV |
271 R600_CONTEXT_FLUSH_AND_INV_CB |
272 R600_CONTEXT_FLUSH_AND_INV_DB |
273 R600_CONTEXT_FLUSH_AND_INV_CB_META |
274 R600_CONTEXT_FLUSH_AND_INV_DB_META |
275 R600_CONTEXT_WAIT_3D_IDLE |
276 R600_CONTEXT_WAIT_CP_DMA_IDLE;
277
278 r600_flush_emit(ctx);
279
280 /* old kernels and userspace don't set SX_MISC, so we must reset it to 0 here */
281 if (ctx->b.chip_class == R600) {
282 radeon_set_context_reg(cs, R_028350_SX_MISC, 0);
283 }
284
285 /* Flush the CS. */
286 ws->cs_flush(cs, flags, &ctx->b.last_gfx_fence);
287 if (fence)
288 ws->fence_reference(fence, ctx->b.last_gfx_fence);
289
290 r600_begin_new_cs(ctx);
291 }
292
293 void r600_begin_new_cs(struct r600_context *ctx)
294 {
295 unsigned shader;
296
297 ctx->b.flags = 0;
298 ctx->b.gtt = 0;
299 ctx->b.vram = 0;
300
301 /* Begin a new CS. */
302 r600_emit_command_buffer(ctx->b.gfx.cs, &ctx->start_cs_cmd);
303
304 /* Re-emit states. */
305 r600_mark_atom_dirty(ctx, &ctx->alphatest_state.atom);
306 r600_mark_atom_dirty(ctx, &ctx->blend_color.atom);
307 r600_mark_atom_dirty(ctx, &ctx->cb_misc_state.atom);
308 r600_mark_atom_dirty(ctx, &ctx->clip_misc_state.atom);
309 r600_mark_atom_dirty(ctx, &ctx->clip_state.atom);
310 r600_mark_atom_dirty(ctx, &ctx->db_misc_state.atom);
311 r600_mark_atom_dirty(ctx, &ctx->db_state.atom);
312 r600_mark_atom_dirty(ctx, &ctx->framebuffer.atom);
313 r600_mark_atom_dirty(ctx, &ctx->hw_shader_stages[R600_HW_STAGE_PS].atom);
314 r600_mark_atom_dirty(ctx, &ctx->poly_offset_state.atom);
315 r600_mark_atom_dirty(ctx, &ctx->vgt_state.atom);
316 r600_mark_atom_dirty(ctx, &ctx->sample_mask.atom);
317 ctx->b.scissors.dirty_mask = (1 << R600_MAX_VIEWPORTS) - 1;
318 r600_mark_atom_dirty(ctx, &ctx->b.scissors.atom);
319 ctx->b.viewports.dirty_mask = (1 << R600_MAX_VIEWPORTS) - 1;
320 r600_mark_atom_dirty(ctx, &ctx->b.viewports.atom);
321 if (ctx->b.chip_class <= EVERGREEN) {
322 r600_mark_atom_dirty(ctx, &ctx->config_state.atom);
323 }
324 r600_mark_atom_dirty(ctx, &ctx->stencil_ref.atom);
325 r600_mark_atom_dirty(ctx, &ctx->vertex_fetch_shader.atom);
326 r600_mark_atom_dirty(ctx, &ctx->hw_shader_stages[R600_HW_STAGE_ES].atom);
327 r600_mark_atom_dirty(ctx, &ctx->shader_stages.atom);
328 if (ctx->gs_shader) {
329 r600_mark_atom_dirty(ctx, &ctx->hw_shader_stages[R600_HW_STAGE_GS].atom);
330 r600_mark_atom_dirty(ctx, &ctx->gs_rings.atom);
331 }
332 if (ctx->tes_shader) {
333 r600_mark_atom_dirty(ctx, &ctx->hw_shader_stages[EG_HW_STAGE_HS].atom);
334 r600_mark_atom_dirty(ctx, &ctx->hw_shader_stages[EG_HW_STAGE_LS].atom);
335 }
336 r600_mark_atom_dirty(ctx, &ctx->hw_shader_stages[R600_HW_STAGE_VS].atom);
337 r600_mark_atom_dirty(ctx, &ctx->b.streamout.enable_atom);
338 r600_mark_atom_dirty(ctx, &ctx->b.render_cond_atom);
339
340 if (ctx->blend_state.cso)
341 r600_mark_atom_dirty(ctx, &ctx->blend_state.atom);
342 if (ctx->dsa_state.cso)
343 r600_mark_atom_dirty(ctx, &ctx->dsa_state.atom);
344 if (ctx->rasterizer_state.cso)
345 r600_mark_atom_dirty(ctx, &ctx->rasterizer_state.atom);
346
347 if (ctx->b.chip_class <= R700) {
348 r600_mark_atom_dirty(ctx, &ctx->seamless_cube_map.atom);
349 }
350
351 ctx->vertex_buffer_state.dirty_mask = ctx->vertex_buffer_state.enabled_mask;
352 r600_vertex_buffers_dirty(ctx);
353
354 /* Re-emit shader resources. */
355 for (shader = 0; shader < PIPE_SHADER_TYPES; shader++) {
356 struct r600_constbuf_state *constbuf = &ctx->constbuf_state[shader];
357 struct r600_textures_info *samplers = &ctx->samplers[shader];
358
359 constbuf->dirty_mask = constbuf->enabled_mask;
360 samplers->views.dirty_mask = samplers->views.enabled_mask;
361 samplers->states.dirty_mask = samplers->states.enabled_mask;
362
363 r600_constant_buffers_dirty(ctx, constbuf);
364 r600_sampler_views_dirty(ctx, &samplers->views);
365 r600_sampler_states_dirty(ctx, &samplers->states);
366 }
367
368 r600_postflush_resume_features(&ctx->b);
369
370 /* Re-emit the draw state. */
371 ctx->last_primitive_type = -1;
372 ctx->last_start_instance = -1;
373
374 assert(!ctx->b.gfx.cs->prev_dw);
375 ctx->b.initial_gfx_cs_size = ctx->b.gfx.cs->current.cdw;
376 }
377
378 void r600_emit_pfp_sync_me(struct r600_context *rctx)
379 {
380 struct radeon_winsys_cs *cs = rctx->b.gfx.cs;
381
382 if (rctx->b.chip_class >= EVERGREEN &&
383 rctx->b.screen->info.drm_minor >= 46) {
384 radeon_emit(cs, PKT3(PKT3_PFP_SYNC_ME, 0, 0));
385 radeon_emit(cs, 0);
386 } else {
387 /* Emulate PFP_SYNC_ME by writing a value to memory in ME and
388 * waiting for it in PFP.
389 */
390 struct r600_resource *buf = NULL;
391 unsigned offset, reloc;
392 uint64_t va;
393
394 /* 16-byte address alignment is required by WAIT_REG_MEM. */
395 u_suballocator_alloc(rctx->b.allocator_zeroed_memory, 4, 16,
396 &offset, (struct pipe_resource**)&buf);
397 if (!buf) {
398 /* This is too heavyweight, but will work. */
399 rctx->b.gfx.flush(rctx, RADEON_FLUSH_ASYNC, NULL);
400 return;
401 }
402
403 reloc = radeon_add_to_buffer_list(&rctx->b, &rctx->b.gfx, buf,
404 RADEON_USAGE_READWRITE,
405 RADEON_PRIO_FENCE);
406
407 va = buf->gpu_address + offset;
408 assert(va % 16 == 0);
409
410 /* Write 1 to memory in ME. */
411 radeon_emit(cs, PKT3(PKT3_MEM_WRITE, 3, 0));
412 radeon_emit(cs, va);
413 radeon_emit(cs, ((va >> 32) & 0xff) | MEM_WRITE_32_BITS);
414 radeon_emit(cs, 1);
415 radeon_emit(cs, 0);
416
417 radeon_emit(cs, PKT3(PKT3_NOP, 0, 0));
418 radeon_emit(cs, reloc);
419
420 /* Wait in PFP (PFP can only do GEQUAL against memory). */
421 radeon_emit(cs, PKT3(PKT3_WAIT_REG_MEM, 5, 0));
422 radeon_emit(cs, WAIT_REG_MEM_GEQUAL |
423 WAIT_REG_MEM_MEMORY |
424 WAIT_REG_MEM_PFP);
425 radeon_emit(cs, va);
426 radeon_emit(cs, va >> 32);
427 radeon_emit(cs, 1); /* reference value */
428 radeon_emit(cs, 0xffffffff); /* mask */
429 radeon_emit(cs, 4); /* poll interval */
430
431 radeon_emit(cs, PKT3(PKT3_NOP, 0, 0));
432 radeon_emit(cs, reloc);
433
434 r600_resource_reference(&buf, NULL);
435 }
436 }
437
438 /* The max number of bytes to copy per packet. */
439 #define CP_DMA_MAX_BYTE_COUNT ((1 << 21) - 8)
440
441 void r600_cp_dma_copy_buffer(struct r600_context *rctx,
442 struct pipe_resource *dst, uint64_t dst_offset,
443 struct pipe_resource *src, uint64_t src_offset,
444 unsigned size)
445 {
446 struct radeon_winsys_cs *cs = rctx->b.gfx.cs;
447
448 assert(size);
449 assert(rctx->screen->b.has_cp_dma);
450
451 /* Mark the buffer range of destination as valid (initialized),
452 * so that transfer_map knows it should wait for the GPU when mapping
453 * that range. */
454 util_range_add(&r600_resource(dst)->valid_buffer_range, dst_offset,
455 dst_offset + size);
456
457 dst_offset += r600_resource(dst)->gpu_address;
458 src_offset += r600_resource(src)->gpu_address;
459
460 /* Flush the caches where the resources are bound. */
461 rctx->b.flags |= r600_get_flush_flags(R600_COHERENCY_SHADER) |
462 R600_CONTEXT_WAIT_3D_IDLE;
463
464 /* There are differences between R700 and EG in CP DMA,
465 * but we only use the common bits here. */
466 while (size) {
467 unsigned sync = 0;
468 unsigned byte_count = MIN2(size, CP_DMA_MAX_BYTE_COUNT);
469 unsigned src_reloc, dst_reloc;
470
471 r600_need_cs_space(rctx,
472 10 + (rctx->b.flags ? R600_MAX_FLUSH_CS_DWORDS : 0) +
473 3 + R600_MAX_PFP_SYNC_ME_DWORDS, FALSE);
474
475 /* Flush the caches for the first copy only. */
476 if (rctx->b.flags) {
477 r600_flush_emit(rctx);
478 }
479
480 /* Do the synchronization after the last copy, so that all data is written to memory. */
481 if (size == byte_count) {
482 sync = PKT3_CP_DMA_CP_SYNC;
483 }
484
485 /* This must be done after r600_need_cs_space. */
486 src_reloc = radeon_add_to_buffer_list(&rctx->b, &rctx->b.gfx, (struct r600_resource*)src,
487 RADEON_USAGE_READ, RADEON_PRIO_CP_DMA);
488 dst_reloc = radeon_add_to_buffer_list(&rctx->b, &rctx->b.gfx, (struct r600_resource*)dst,
489 RADEON_USAGE_WRITE, RADEON_PRIO_CP_DMA);
490
491 radeon_emit(cs, PKT3(PKT3_CP_DMA, 4, 0));
492 radeon_emit(cs, src_offset); /* SRC_ADDR_LO [31:0] */
493 radeon_emit(cs, sync | ((src_offset >> 32) & 0xff)); /* CP_SYNC [31] | SRC_ADDR_HI [7:0] */
494 radeon_emit(cs, dst_offset); /* DST_ADDR_LO [31:0] */
495 radeon_emit(cs, (dst_offset >> 32) & 0xff); /* DST_ADDR_HI [7:0] */
496 radeon_emit(cs, byte_count); /* COMMAND [29:22] | BYTE_COUNT [20:0] */
497
498 radeon_emit(cs, PKT3(PKT3_NOP, 0, 0));
499 radeon_emit(cs, src_reloc);
500 radeon_emit(cs, PKT3(PKT3_NOP, 0, 0));
501 radeon_emit(cs, dst_reloc);
502
503 size -= byte_count;
504 src_offset += byte_count;
505 dst_offset += byte_count;
506 }
507
508 /* CP_DMA_CP_SYNC doesn't wait for idle on R6xx, but this does. */
509 if (rctx->b.chip_class == R600)
510 radeon_set_config_reg(cs, R_008040_WAIT_UNTIL,
511 S_008040_WAIT_CP_DMA_IDLE(1));
512
513 /* CP DMA is executed in ME, but index buffers are read by PFP.
514 * This ensures that ME (CP DMA) is idle before PFP starts fetching
515 * indices. If we wanted to execute CP DMA in PFP, this packet
516 * should precede it.
517 */
518 r600_emit_pfp_sync_me(rctx);
519 }
520
521 void r600_dma_copy_buffer(struct r600_context *rctx,
522 struct pipe_resource *dst,
523 struct pipe_resource *src,
524 uint64_t dst_offset,
525 uint64_t src_offset,
526 uint64_t size)
527 {
528 struct radeon_winsys_cs *cs = rctx->b.dma.cs;
529 unsigned i, ncopy, csize;
530 struct r600_resource *rdst = (struct r600_resource*)dst;
531 struct r600_resource *rsrc = (struct r600_resource*)src;
532
533 /* Mark the buffer range of destination as valid (initialized),
534 * so that transfer_map knows it should wait for the GPU when mapping
535 * that range. */
536 util_range_add(&rdst->valid_buffer_range, dst_offset,
537 dst_offset + size);
538
539 size >>= 2; /* convert to dwords */
540 ncopy = (size / R600_DMA_COPY_MAX_SIZE_DW) + !!(size % R600_DMA_COPY_MAX_SIZE_DW);
541
542 r600_need_dma_space(&rctx->b, ncopy * 5, rdst, rsrc);
543 for (i = 0; i < ncopy; i++) {
544 csize = size < R600_DMA_COPY_MAX_SIZE_DW ? size : R600_DMA_COPY_MAX_SIZE_DW;
545 /* emit reloc before writing cs so that cs is always in consistent state */
546 radeon_add_to_buffer_list(&rctx->b, &rctx->b.dma, rsrc, RADEON_USAGE_READ,
547 RADEON_PRIO_SDMA_BUFFER);
548 radeon_add_to_buffer_list(&rctx->b, &rctx->b.dma, rdst, RADEON_USAGE_WRITE,
549 RADEON_PRIO_SDMA_BUFFER);
550 radeon_emit(cs, DMA_PACKET(DMA_PACKET_COPY, 0, 0, csize));
551 radeon_emit(cs, dst_offset & 0xfffffffc);
552 radeon_emit(cs, src_offset & 0xfffffffc);
553 radeon_emit(cs, (dst_offset >> 32UL) & 0xff);
554 radeon_emit(cs, (src_offset >> 32UL) & 0xff);
555 dst_offset += csize << 2;
556 src_offset += csize << 2;
557 size -= csize;
558 }
559 r600_dma_emit_wait_idle(&rctx->b);
560 }