afe43896568c46cbb57946cc3bd2da3e2874d348
[mesa.git] / src / gallium / drivers / r600 / r600_blit.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 #include "r600_pipe.h"
24 #include "util/u_surface.h"
25 #include "util/u_blitter.h"
26 #include "util/u_format.h"
27
28 enum r600_blitter_op /* bitmask */
29 {
30 R600_SAVE_FRAGMENT_STATE = 1,
31 R600_SAVE_TEXTURES = 2,
32 R600_SAVE_FRAMEBUFFER = 4,
33 R600_DISABLE_RENDER_COND = 8,
34
35 R600_CLEAR = R600_SAVE_FRAGMENT_STATE,
36
37 R600_CLEAR_SURFACE = R600_SAVE_FRAGMENT_STATE | R600_SAVE_FRAMEBUFFER,
38
39 R600_COPY_BUFFER = R600_DISABLE_RENDER_COND,
40
41 R600_COPY_TEXTURE = R600_SAVE_FRAGMENT_STATE | R600_SAVE_FRAMEBUFFER | R600_SAVE_TEXTURES |
42 R600_DISABLE_RENDER_COND,
43
44 R600_BLIT = R600_SAVE_FRAGMENT_STATE | R600_SAVE_FRAMEBUFFER | R600_SAVE_TEXTURES |
45 R600_DISABLE_RENDER_COND,
46
47 R600_DECOMPRESS = R600_SAVE_FRAGMENT_STATE | R600_SAVE_FRAMEBUFFER | R600_DISABLE_RENDER_COND,
48
49 R600_COLOR_RESOLVE = R600_SAVE_FRAGMENT_STATE | R600_SAVE_FRAMEBUFFER | R600_DISABLE_RENDER_COND
50 };
51
52 static void r600_blitter_begin(struct pipe_context *ctx, enum r600_blitter_op op)
53 {
54 struct r600_context *rctx = (struct r600_context *)ctx;
55
56 r600_suspend_nontimer_queries(rctx);
57
58 util_blitter_save_vertex_buffer_slot(rctx->blitter, rctx->vertex_buffer_state.vb);
59 util_blitter_save_vertex_elements(rctx->blitter, rctx->vertex_fetch_shader.cso);
60 util_blitter_save_vertex_shader(rctx->blitter, rctx->vs_shader);
61 util_blitter_save_so_targets(rctx->blitter, rctx->streamout.num_targets,
62 (struct pipe_stream_output_target**)rctx->streamout.targets);
63 util_blitter_save_rasterizer(rctx->blitter, rctx->rasterizer_state.cso);
64
65 if (op & R600_SAVE_FRAGMENT_STATE) {
66 util_blitter_save_viewport(rctx->blitter, &rctx->viewport.state);
67 util_blitter_save_scissor(rctx->blitter, &rctx->scissor.scissor);
68 util_blitter_save_fragment_shader(rctx->blitter, rctx->ps_shader);
69 util_blitter_save_blend(rctx->blitter, rctx->blend_state.cso);
70 util_blitter_save_depth_stencil_alpha(rctx->blitter, rctx->dsa_state.cso);
71 util_blitter_save_stencil_ref(rctx->blitter, &rctx->stencil_ref.pipe_state);
72 util_blitter_save_sample_mask(rctx->blitter, rctx->sample_mask.sample_mask);
73 }
74
75 if (op & R600_SAVE_FRAMEBUFFER)
76 util_blitter_save_framebuffer(rctx->blitter, &rctx->framebuffer.state);
77
78 if (op & R600_SAVE_TEXTURES) {
79 util_blitter_save_fragment_sampler_states(
80 rctx->blitter, util_last_bit(rctx->samplers[PIPE_SHADER_FRAGMENT].states.enabled_mask),
81 (void**)rctx->samplers[PIPE_SHADER_FRAGMENT].states.states);
82
83 util_blitter_save_fragment_sampler_views(
84 rctx->blitter, util_last_bit(rctx->samplers[PIPE_SHADER_FRAGMENT].views.enabled_mask),
85 (struct pipe_sampler_view**)rctx->samplers[PIPE_SHADER_FRAGMENT].views.views);
86 }
87
88 if ((op & R600_DISABLE_RENDER_COND) && rctx->current_render_cond) {
89 util_blitter_save_render_condition(rctx->blitter,
90 rctx->current_render_cond,
91 rctx->current_render_cond_mode);
92 }
93 }
94
95 static void r600_blitter_end(struct pipe_context *ctx)
96 {
97 struct r600_context *rctx = (struct r600_context *)ctx;
98 r600_resume_nontimer_queries(rctx);
99 }
100
101 static unsigned u_max_sample(struct pipe_resource *r)
102 {
103 return r->nr_samples ? r->nr_samples - 1 : 0;
104 }
105
106 void r600_blit_decompress_depth(struct pipe_context *ctx,
107 struct r600_texture *texture,
108 struct r600_texture *staging,
109 unsigned first_level, unsigned last_level,
110 unsigned first_layer, unsigned last_layer,
111 unsigned first_sample, unsigned last_sample)
112 {
113 struct r600_context *rctx = (struct r600_context *)ctx;
114 unsigned layer, level, sample, checked_last_layer, max_layer, max_sample;
115 struct r600_texture *flushed_depth_texture = staging ?
116 staging : texture->flushed_depth_texture;
117 const struct util_format_description *desc =
118 util_format_description(texture->resource.b.b.format);
119 float depth;
120
121 if (!staging && !texture->dirty_level_mask)
122 return;
123
124 max_sample = u_max_sample(&texture->resource.b.b);
125
126 /* XXX Decompressing MSAA depth textures is broken on R6xx.
127 * There is also a hardlock if CMASK and FMASK are not present.
128 * Just skip this until we find out how to fix it. */
129 if (rctx->chip_class == R600 && max_sample > 0) {
130 texture->dirty_level_mask = 0;
131 return;
132 }
133
134 if (rctx->family == CHIP_RV610 || rctx->family == CHIP_RV630 ||
135 rctx->family == CHIP_RV620 || rctx->family == CHIP_RV635)
136 depth = 0.0f;
137 else
138 depth = 1.0f;
139
140 /* Enable decompression in DB_RENDER_CONTROL */
141 rctx->db_misc_state.flush_depthstencil_through_cb = true;
142 rctx->db_misc_state.copy_depth = util_format_has_depth(desc);
143 rctx->db_misc_state.copy_stencil = util_format_has_stencil(desc);
144 rctx->db_misc_state.copy_sample = first_sample;
145 rctx->db_misc_state.atom.dirty = true;
146
147 for (level = first_level; level <= last_level; level++) {
148 if (!staging && !(texture->dirty_level_mask & (1 << level)))
149 continue;
150
151 /* The smaller the mipmap level, the less layers there are
152 * as far as 3D textures are concerned. */
153 max_layer = util_max_layer(&texture->resource.b.b, level);
154 checked_last_layer = last_layer < max_layer ? last_layer : max_layer;
155
156 for (layer = first_layer; layer <= checked_last_layer; layer++) {
157 for (sample = first_sample; sample <= last_sample; sample++) {
158 struct pipe_surface *zsurf, *cbsurf, surf_tmpl;
159
160 if (sample != rctx->db_misc_state.copy_sample) {
161 rctx->db_misc_state.copy_sample = sample;
162 rctx->db_misc_state.atom.dirty = true;
163 }
164
165 surf_tmpl.format = texture->resource.b.b.format;
166 surf_tmpl.u.tex.level = level;
167 surf_tmpl.u.tex.first_layer = layer;
168 surf_tmpl.u.tex.last_layer = layer;
169
170 zsurf = ctx->create_surface(ctx, &texture->resource.b.b, &surf_tmpl);
171
172 surf_tmpl.format = flushed_depth_texture->resource.b.b.format;
173 surf_tmpl.u.tex.level = level;
174 surf_tmpl.u.tex.first_layer = layer;
175 surf_tmpl.u.tex.last_layer = layer;
176 cbsurf = ctx->create_surface(ctx,
177 &flushed_depth_texture->resource.b.b, &surf_tmpl);
178
179 r600_blitter_begin(ctx, R600_DECOMPRESS);
180 util_blitter_custom_depth_stencil(rctx->blitter, zsurf, cbsurf, 1 << sample,
181 rctx->custom_dsa_flush, depth);
182 r600_blitter_end(ctx);
183
184 pipe_surface_reference(&zsurf, NULL);
185 pipe_surface_reference(&cbsurf, NULL);
186 }
187 }
188
189 /* The texture will always be dirty if some layers or samples aren't flushed.
190 * I don't think this case occurs often though. */
191 if (!staging &&
192 first_layer == 0 && last_layer == max_layer &&
193 first_sample == 0 && last_sample == max_sample) {
194 texture->dirty_level_mask &= ~(1 << level);
195 }
196 }
197
198 /* reenable compression in DB_RENDER_CONTROL */
199 rctx->db_misc_state.flush_depthstencil_through_cb = false;
200 rctx->db_misc_state.atom.dirty = true;
201 }
202
203 static void r600_blit_decompress_depth_in_place(struct r600_context *rctx,
204 struct r600_texture *texture,
205 unsigned first_level, unsigned last_level,
206 unsigned first_layer, unsigned last_layer)
207 {
208 struct pipe_surface *zsurf, surf_tmpl = {{0}};
209 unsigned layer, max_layer, checked_last_layer, level;
210
211 /* Enable decompression in DB_RENDER_CONTROL */
212 rctx->db_misc_state.flush_depthstencil_in_place = true;
213 rctx->db_misc_state.atom.dirty = true;
214
215 surf_tmpl.format = texture->resource.b.b.format;
216
217 for (level = first_level; level <= last_level; level++) {
218 if (!(texture->dirty_level_mask & (1 << level)))
219 continue;
220
221 surf_tmpl.u.tex.level = level;
222
223 /* The smaller the mipmap level, the less layers there are
224 * as far as 3D textures are concerned. */
225 max_layer = util_max_layer(&texture->resource.b.b, level);
226 checked_last_layer = last_layer < max_layer ? last_layer : max_layer;
227
228 for (layer = first_layer; layer <= checked_last_layer; layer++) {
229 surf_tmpl.u.tex.first_layer = layer;
230 surf_tmpl.u.tex.last_layer = layer;
231
232 zsurf = rctx->context.create_surface(&rctx->context, &texture->resource.b.b, &surf_tmpl);
233
234 r600_blitter_begin(&rctx->context, R600_DECOMPRESS);
235 util_blitter_custom_depth_stencil(rctx->blitter, zsurf, NULL, ~0,
236 rctx->custom_dsa_flush, 1.0f);
237 r600_blitter_end(&rctx->context);
238
239 pipe_surface_reference(&zsurf, NULL);
240 }
241
242 /* The texture will always be dirty if some layers or samples aren't flushed.
243 * I don't think this case occurs often though. */
244 if (first_layer == 0 && last_layer == max_layer) {
245 texture->dirty_level_mask &= ~(1 << level);
246 }
247 }
248
249 /* Disable decompression in DB_RENDER_CONTROL */
250 rctx->db_misc_state.flush_depthstencil_in_place = false;
251 rctx->db_misc_state.atom.dirty = true;
252 }
253
254 void r600_decompress_depth_textures(struct r600_context *rctx,
255 struct r600_samplerview_state *textures)
256 {
257 unsigned i;
258 unsigned depth_texture_mask = textures->compressed_depthtex_mask;
259
260 while (depth_texture_mask) {
261 struct pipe_sampler_view *view;
262 struct r600_texture *tex;
263
264 i = u_bit_scan(&depth_texture_mask);
265
266 view = &textures->views[i]->base;
267 assert(view);
268
269 tex = (struct r600_texture *)view->texture;
270 assert(tex->is_depth && !tex->is_flushing_texture);
271
272 if (rctx->chip_class >= EVERGREEN ||
273 r600_can_read_depth(tex)) {
274 r600_blit_decompress_depth_in_place(rctx, tex,
275 view->u.tex.first_level, view->u.tex.last_level,
276 0, util_max_layer(&tex->resource.b.b, view->u.tex.first_level));
277 } else {
278 r600_blit_decompress_depth(&rctx->context, tex, NULL,
279 view->u.tex.first_level, view->u.tex.last_level,
280 0, util_max_layer(&tex->resource.b.b, view->u.tex.first_level),
281 0, u_max_sample(&tex->resource.b.b));
282 }
283 }
284 }
285
286 static void r600_blit_decompress_color(struct pipe_context *ctx,
287 struct r600_texture *rtex,
288 unsigned first_level, unsigned last_level,
289 unsigned first_layer, unsigned last_layer)
290 {
291 struct r600_context *rctx = (struct r600_context *)ctx;
292 unsigned layer, level, checked_last_layer, max_layer;
293 void *blend_decompress;
294
295 if (!rtex->dirty_level_mask)
296 return;
297
298 switch (rctx->screen->msaa_texture_support) {
299 case MSAA_TEXTURE_DECOMPRESSED:
300 blend_decompress = rctx->custom_blend_decompress;
301 break;
302 case MSAA_TEXTURE_COMPRESSED:
303 /* XXX the 2x and 4x cases are broken. */
304 if (rtex->resource.b.b.nr_samples == 8)
305 blend_decompress = rctx->custom_blend_fmask_decompress;
306 else
307 blend_decompress = rctx->custom_blend_decompress;
308 break;
309 case MSAA_TEXTURE_SAMPLE_ZERO:
310 default:
311 /* Nothing to do. */
312 rtex->dirty_level_mask = 0;
313 return;
314 }
315
316 for (level = first_level; level <= last_level; level++) {
317 if (!(rtex->dirty_level_mask & (1 << level)))
318 continue;
319
320 /* The smaller the mipmap level, the less layers there are
321 * as far as 3D textures are concerned. */
322 max_layer = util_max_layer(&rtex->resource.b.b, level);
323 checked_last_layer = last_layer < max_layer ? last_layer : max_layer;
324
325 for (layer = first_layer; layer <= checked_last_layer; layer++) {
326 struct pipe_surface *cbsurf, surf_tmpl;
327
328 surf_tmpl.format = rtex->resource.b.b.format;
329 surf_tmpl.u.tex.level = level;
330 surf_tmpl.u.tex.first_layer = layer;
331 surf_tmpl.u.tex.last_layer = layer;
332 cbsurf = ctx->create_surface(ctx, &rtex->resource.b.b, &surf_tmpl);
333
334 r600_blitter_begin(ctx, R600_DECOMPRESS);
335 util_blitter_custom_color(rctx->blitter, cbsurf, blend_decompress);
336 r600_blitter_end(ctx);
337
338 pipe_surface_reference(&cbsurf, NULL);
339 }
340
341 /* The texture will always be dirty if some layers aren't flushed.
342 * I don't think this case occurs often though. */
343 if (first_layer == 0 && last_layer == max_layer) {
344 rtex->dirty_level_mask &= ~(1 << level);
345 }
346 }
347 }
348
349 void r600_decompress_color_textures(struct r600_context *rctx,
350 struct r600_samplerview_state *textures)
351 {
352 unsigned i;
353 unsigned mask = textures->compressed_colortex_mask;
354
355 while (mask) {
356 struct pipe_sampler_view *view;
357 struct r600_texture *tex;
358
359 i = u_bit_scan(&mask);
360
361 view = &textures->views[i]->base;
362 assert(view);
363
364 tex = (struct r600_texture *)view->texture;
365 assert(tex->cmask_size && tex->fmask_size);
366
367 r600_blit_decompress_color(&rctx->context, tex,
368 view->u.tex.first_level, view->u.tex.last_level,
369 0, util_max_layer(&tex->resource.b.b, view->u.tex.first_level));
370 }
371 }
372
373 /* Helper for decompressing a portion of a color or depth resource before
374 * blitting if any decompression is needed.
375 * The driver doesn't decompress resources automatically while u_blitter is
376 * rendering. */
377 static bool r600_decompress_subresource(struct pipe_context *ctx,
378 struct pipe_resource *tex,
379 unsigned level,
380 unsigned first_layer, unsigned last_layer)
381 {
382 struct r600_context *rctx = (struct r600_context *)ctx;
383 struct r600_texture *rtex = (struct r600_texture*)tex;
384
385 if (rtex->is_depth && !rtex->is_flushing_texture) {
386 if (rctx->chip_class >= EVERGREEN ||
387 r600_can_read_depth(rtex)) {
388 r600_blit_decompress_depth_in_place(rctx, rtex,
389 level, level,
390 first_layer, last_layer);
391 } else {
392 if (!r600_init_flushed_depth_texture(ctx, tex, NULL))
393 return false; /* error */
394
395 r600_blit_decompress_depth(ctx, rtex, NULL,
396 level, level,
397 first_layer, last_layer,
398 0, u_max_sample(tex));
399 }
400 } else if (rtex->fmask_size && rtex->cmask_size) {
401 r600_blit_decompress_color(ctx, rtex, level, level,
402 first_layer, last_layer);
403 }
404 return true;
405 }
406
407 static boolean is_simple_msaa_resolve(const struct pipe_blit_info *info)
408 {
409 unsigned dst_width = u_minify(info->dst.resource->width0, info->dst.level);
410 unsigned dst_height = u_minify(info->dst.resource->height0, info->dst.level);
411 struct r600_texture *dst = (struct r600_texture*)info->dst.resource;
412 unsigned dst_tile_mode = dst->surface.level[info->dst.level].mode;
413
414 return info->dst.resource->format == info->src.resource->format &&
415 info->dst.resource->format == info->dst.format &&
416 info->src.resource->format == info->src.format &&
417 !info->scissor_enable &&
418 info->mask == PIPE_MASK_RGBA &&
419 dst_width == info->src.resource->width0 &&
420 dst_height == info->src.resource->height0 &&
421 info->dst.box.x == 0 &&
422 info->dst.box.y == 0 &&
423 info->dst.box.width == dst_width &&
424 info->dst.box.height == dst_height &&
425 info->src.box.x == 0 &&
426 info->src.box.y == 0 &&
427 info->src.box.width == dst_width &&
428 info->src.box.height == dst_height &&
429 /* Dst must be tiled. If it's not, we have to use a temporary
430 * resource which is tiled. */
431 dst_tile_mode >= RADEON_SURF_MODE_1D;
432 }
433
434 static void r600_clear(struct pipe_context *ctx, unsigned buffers,
435 const union pipe_color_union *color,
436 double depth, unsigned stencil)
437 {
438 struct r600_context *rctx = (struct r600_context *)ctx;
439 struct pipe_framebuffer_state *fb = &rctx->framebuffer.state;
440
441 /* if hyperz enabled just clear hyperz */
442 if (fb->zsbuf && (buffers & PIPE_CLEAR_DEPTH)) {
443 struct r600_texture *rtex;
444 unsigned level = fb->zsbuf->u.tex.level;
445
446 rtex = (struct r600_texture*)fb->zsbuf->texture;
447
448 /* We can't use hyperz fast clear if each slice of a texture
449 * array are clear to different value. To simplify code just
450 * disable fast clear for texture array.
451 */
452 /* Only use htile for first level */
453 if (rtex->htile && !level && rtex->surface.array_size == 1) {
454 if (rtex->depth_clear != depth) {
455 rtex->depth_clear = depth;
456 rctx->db_state.atom.dirty = true;
457 }
458 rctx->db_misc_state.htile_clear = true;
459 rctx->db_misc_state.atom.dirty = true;
460 }
461 }
462
463 r600_blitter_begin(ctx, R600_CLEAR);
464 util_blitter_clear(rctx->blitter, fb->width, fb->height,
465 fb->nr_cbufs, buffers, fb->nr_cbufs ? fb->cbufs[0]->format : PIPE_FORMAT_NONE,
466 color, depth, stencil);
467 r600_blitter_end(ctx);
468
469 /* disable fast clear */
470 if (rctx->db_misc_state.htile_clear) {
471 rctx->db_misc_state.htile_clear = false;
472 rctx->db_misc_state.atom.dirty = true;
473 }
474 }
475
476 static void r600_clear_render_target(struct pipe_context *ctx,
477 struct pipe_surface *dst,
478 const union pipe_color_union *color,
479 unsigned dstx, unsigned dsty,
480 unsigned width, unsigned height)
481 {
482 struct r600_context *rctx = (struct r600_context *)ctx;
483
484 r600_blitter_begin(ctx, R600_CLEAR_SURFACE);
485 util_blitter_clear_render_target(rctx->blitter, dst, color,
486 dstx, dsty, width, height);
487 r600_blitter_end(ctx);
488 }
489
490 static void r600_clear_depth_stencil(struct pipe_context *ctx,
491 struct pipe_surface *dst,
492 unsigned clear_flags,
493 double depth,
494 unsigned stencil,
495 unsigned dstx, unsigned dsty,
496 unsigned width, unsigned height)
497 {
498 struct r600_context *rctx = (struct r600_context *)ctx;
499
500 r600_blitter_begin(ctx, R600_CLEAR_SURFACE);
501 util_blitter_clear_depth_stencil(rctx->blitter, dst, clear_flags, depth, stencil,
502 dstx, dsty, width, height);
503 r600_blitter_end(ctx);
504 }
505
506 void r600_copy_buffer(struct pipe_context *ctx, struct pipe_resource *dst, unsigned dstx,
507 struct pipe_resource *src, const struct pipe_box *src_box)
508 {
509 struct r600_context *rctx = (struct r600_context*)ctx;
510
511 if (rctx->screen->has_cp_dma) {
512 r600_cp_dma_copy_buffer(rctx, dst, dstx, src, src_box->x, src_box->width);
513 }
514 else if (rctx->screen->has_streamout &&
515 /* Require 4-byte alignment. */
516 dstx % 4 == 0 && src_box->x % 4 == 0 && src_box->width % 4 == 0) {
517 r600_blitter_begin(ctx, R600_COPY_BUFFER);
518 util_blitter_copy_buffer(rctx->blitter, dst, dstx, src, src_box->x, src_box->width);
519 r600_blitter_end(ctx);
520 } else {
521 util_resource_copy_region(ctx, dst, 0, dstx, 0, 0, src, 0, src_box);
522 }
523 }
524
525 static void r600_clear_buffer(struct pipe_context *ctx, struct pipe_resource *dst,
526 unsigned offset, unsigned size, unsigned char value)
527 {
528 struct r600_context *rctx = (struct r600_context*)ctx;
529 uint32_t v = value;
530
531 if (rctx->screen->has_cp_dma &&
532 rctx->chip_class >= EVERGREEN &&
533 offset % 4 == 0 && size % 4 == 0) {
534 uint32_t clear_value = v | (v << 8) | (v << 16) | (v << 24);
535
536 evergreen_cp_dma_clear_buffer(rctx, dst, offset, size, clear_value);
537 } else if (rctx->screen->has_streamout && offset % 4 == 0 && size % 4 == 0) {
538 union pipe_color_union clear_value;
539
540 clear_value.ui[0] = v | (v << 8) | (v << 16) | (v << 24);
541
542 r600_blitter_begin(ctx, R600_DISABLE_RENDER_COND);
543 util_blitter_clear_buffer(rctx->blitter, dst, offset, size,
544 1, &clear_value);
545 r600_blitter_end(ctx);
546 } else {
547 char *map = r600_buffer_mmap_sync_with_rings(rctx, r600_resource(dst),
548 PIPE_TRANSFER_WRITE);
549 memset(map + offset, value, size);
550 }
551 }
552
553 void r600_screen_clear_buffer(struct r600_screen *rscreen, struct pipe_resource *dst,
554 unsigned offset, unsigned size, unsigned char value)
555 {
556 pipe_mutex_lock(rscreen->aux_context_lock);
557 r600_clear_buffer(rscreen->aux_context, dst, offset, size, value);
558 rscreen->aux_context->flush(rscreen->aux_context, NULL, 0);
559 pipe_mutex_unlock(rscreen->aux_context_lock);
560 }
561
562 static bool util_format_is_subsampled_2x1_32bpp(enum pipe_format format)
563 {
564 const struct util_format_description *desc = util_format_description(format);
565
566 return desc->layout == UTIL_FORMAT_LAYOUT_SUBSAMPLED &&
567 desc->block.width == 2 &&
568 desc->block.height == 1 &&
569 desc->block.bits == 32;
570 }
571
572 static void r600_resource_copy_region(struct pipe_context *ctx,
573 struct pipe_resource *dst,
574 unsigned dst_level,
575 unsigned dstx, unsigned dsty, unsigned dstz,
576 struct pipe_resource *src,
577 unsigned src_level,
578 const struct pipe_box *src_box)
579 {
580 struct r600_context *rctx = (struct r600_context *)ctx;
581 struct pipe_surface *dst_view, dst_templ;
582 struct pipe_sampler_view src_templ, *src_view;
583 unsigned dst_width, dst_height, src_width0, src_height0, src_widthFL, src_heightFL;
584 struct pipe_box sbox, dstbox;
585 bool copy_all_samples;
586
587 /* Handle buffers first. */
588 if (dst->target == PIPE_BUFFER && src->target == PIPE_BUFFER) {
589 r600_copy_buffer(ctx, dst, dstx, src, src_box);
590 return;
591 }
592
593 assert(u_max_sample(dst) == u_max_sample(src));
594
595 /* The driver doesn't decompress resources automatically while
596 * u_blitter is rendering. */
597 if (!r600_decompress_subresource(ctx, src, src_level,
598 src_box->z, src_box->z + src_box->depth - 1)) {
599 return; /* error */
600 }
601
602 dst_width = u_minify(dst->width0, dst_level);
603 dst_height = u_minify(dst->height0, dst_level);
604 src_width0 = src->width0;
605 src_height0 = src->height0;
606 src_widthFL = u_minify(src->width0, src_level);
607 src_heightFL = u_minify(src->height0, src_level);
608
609 util_blitter_default_dst_texture(&dst_templ, dst, dst_level, dstz);
610 util_blitter_default_src_texture(&src_templ, src, src_level);
611
612 if (util_format_is_compressed(src->format)) {
613 unsigned blocksize = util_format_get_blocksize(src->format);
614
615 if (blocksize == 8)
616 src_templ.format = PIPE_FORMAT_R16G16B16A16_UINT; /* 64-bit block */
617 else
618 src_templ.format = PIPE_FORMAT_R32G32B32A32_UINT; /* 128-bit block */
619 dst_templ.format = src_templ.format;
620
621 dst_width = util_format_get_nblocksx(dst->format, dst_width);
622 dst_height = util_format_get_nblocksy(dst->format, dst_height);
623 src_width0 = util_format_get_nblocksx(src->format, src_width0);
624 src_height0 = util_format_get_nblocksy(src->format, src_height0);
625 src_widthFL = util_format_get_nblocksx(src->format, src_widthFL);
626 src_heightFL = util_format_get_nblocksy(src->format, src_heightFL);
627
628 dstx = util_format_get_nblocksx(dst->format, dstx);
629 dsty = util_format_get_nblocksy(dst->format, dsty);
630
631 sbox.x = util_format_get_nblocksx(src->format, src_box->x);
632 sbox.y = util_format_get_nblocksy(src->format, src_box->y);
633 sbox.z = src_box->z;
634 sbox.width = util_format_get_nblocksx(src->format, src_box->width);
635 sbox.height = util_format_get_nblocksy(src->format, src_box->height);
636 sbox.depth = src_box->depth;
637 src_box = &sbox;
638 } else if (!util_blitter_is_copy_supported(rctx->blitter, dst, src,
639 PIPE_MASK_RGBAZS)) {
640 if (util_format_is_subsampled_2x1_32bpp(src->format)) {
641
642 src_templ.format = PIPE_FORMAT_R8G8B8A8_UINT;
643 dst_templ.format = PIPE_FORMAT_R8G8B8A8_UINT;
644
645 dst_width = util_format_get_nblocksx(dst->format, dst_width);
646 src_width0 = util_format_get_nblocksx(src->format, src_width0);
647 src_widthFL = util_format_get_nblocksx(src->format, src_widthFL);
648
649 dstx = util_format_get_nblocksx(dst->format, dstx);
650
651 sbox = *src_box;
652 sbox.x = util_format_get_nblocksx(src->format, src_box->x);
653 sbox.width = util_format_get_nblocksx(src->format, src_box->width);
654 src_box = &sbox;
655 } else {
656 unsigned blocksize = util_format_get_blocksize(src->format);
657
658 switch (blocksize) {
659 case 1:
660 dst_templ.format = PIPE_FORMAT_R8_UNORM;
661 src_templ.format = PIPE_FORMAT_R8_UNORM;
662 break;
663 case 2:
664 dst_templ.format = PIPE_FORMAT_R8G8_UNORM;
665 src_templ.format = PIPE_FORMAT_R8G8_UNORM;
666 break;
667 case 4:
668 dst_templ.format = PIPE_FORMAT_R8G8B8A8_UNORM;
669 src_templ.format = PIPE_FORMAT_R8G8B8A8_UNORM;
670 break;
671 case 8:
672 dst_templ.format = PIPE_FORMAT_R16G16B16A16_UINT;
673 src_templ.format = PIPE_FORMAT_R16G16B16A16_UINT;
674 break;
675 case 16:
676 dst_templ.format = PIPE_FORMAT_R32G32B32A32_UINT;
677 src_templ.format = PIPE_FORMAT_R32G32B32A32_UINT;
678 break;
679 default:
680 fprintf(stderr, "Unhandled format %s with blocksize %u\n",
681 util_format_short_name(src->format), blocksize);
682 assert(0);
683 }
684 }
685 }
686
687 dst_view = r600_create_surface_custom(ctx, dst, &dst_templ, dst_width, dst_height);
688
689 if (rctx->chip_class >= EVERGREEN) {
690 src_view = evergreen_create_sampler_view_custom(ctx, src, &src_templ,
691 src_width0, src_height0);
692 } else {
693 src_view = r600_create_sampler_view_custom(ctx, src, &src_templ,
694 src_widthFL, src_heightFL);
695 }
696
697 copy_all_samples = rctx->screen->msaa_texture_support != MSAA_TEXTURE_SAMPLE_ZERO;
698
699 u_box_3d(dstx, dsty, dstz, abs(src_box->width), abs(src_box->height),
700 abs(src_box->depth), &dstbox);
701
702 /* Copy. */
703 r600_blitter_begin(ctx, R600_COPY_TEXTURE);
704 util_blitter_blit_generic(rctx->blitter, dst_view, &dstbox,
705 src_view, src_box, src_width0, src_height0,
706 PIPE_MASK_RGBAZS, PIPE_TEX_FILTER_NEAREST, NULL,
707 copy_all_samples);
708 r600_blitter_end(ctx);
709
710 pipe_surface_reference(&dst_view, NULL);
711 pipe_sampler_view_reference(&src_view, NULL);
712 }
713
714 /* For MSAA integer resolving to work, we change the format to NORM using this function. */
715 static enum pipe_format int_to_norm_format(enum pipe_format format)
716 {
717 switch (format) {
718 #define REPLACE_FORMAT_SIGN(format,sign) \
719 case PIPE_FORMAT_##format##_##sign##INT: \
720 return PIPE_FORMAT_##format##_##sign##NORM
721 #define REPLACE_FORMAT(format) \
722 REPLACE_FORMAT_SIGN(format, U); \
723 REPLACE_FORMAT_SIGN(format, S)
724
725 REPLACE_FORMAT_SIGN(B10G10R10A2, U);
726 REPLACE_FORMAT(R8);
727 REPLACE_FORMAT(R8G8);
728 REPLACE_FORMAT(R8G8B8);
729 REPLACE_FORMAT(R8G8B8A8);
730 REPLACE_FORMAT(A8);
731 REPLACE_FORMAT(I8);
732 REPLACE_FORMAT(L8);
733 REPLACE_FORMAT(L8A8);
734 REPLACE_FORMAT(R16);
735 REPLACE_FORMAT(R16G16);
736 REPLACE_FORMAT(R16G16B16);
737 REPLACE_FORMAT(R16G16B16A16);
738 REPLACE_FORMAT(A16);
739 REPLACE_FORMAT(I16);
740 REPLACE_FORMAT(L16);
741 REPLACE_FORMAT(L16A16);
742
743 #undef REPLACE_FORMAT
744 #undef REPLACE_FORMAT_SIGN
745 default:
746 return format;
747 }
748 }
749
750 static void r600_msaa_color_resolve(struct pipe_context *ctx,
751 const struct pipe_blit_info *info)
752 {
753 struct r600_context *rctx = (struct r600_context *)ctx;
754 struct pipe_screen *screen = ctx->screen;
755 struct pipe_resource *tmp, templ;
756 struct pipe_blit_info blit;
757 unsigned sample_mask =
758 rctx->chip_class == CAYMAN ? ~0 :
759 ((1ull << MAX2(1, info->src.resource->nr_samples)) - 1);
760
761 assert(info->src.level == 0);
762 assert(info->src.box.depth == 1);
763 assert(info->dst.box.depth == 1);
764
765 if (is_simple_msaa_resolve(info)) {
766 r600_blitter_begin(ctx, R600_COLOR_RESOLVE);
767 util_blitter_custom_resolve_color(rctx->blitter,
768 info->dst.resource, info->dst.level,
769 info->dst.box.z,
770 info->src.resource, info->src.box.z,
771 sample_mask, rctx->custom_blend_resolve,
772 int_to_norm_format(info->dst.format));
773 r600_blitter_end(ctx);
774 return;
775 }
776
777 /* resolve into a temporary texture, then blit */
778 templ.target = PIPE_TEXTURE_2D;
779 templ.format = info->src.resource->format;
780 templ.width0 = info->src.resource->width0;
781 templ.height0 = info->src.resource->height0;
782 templ.depth0 = 1;
783 templ.array_size = 1;
784 templ.last_level = 0;
785 templ.nr_samples = 0;
786 templ.usage = PIPE_USAGE_STATIC;
787 templ.bind = PIPE_BIND_RENDER_TARGET | PIPE_BIND_SAMPLER_VIEW;
788 templ.flags = R600_RESOURCE_FLAG_FORCE_TILING; /* dst must not have a linear layout */
789
790 tmp = screen->resource_create(screen, &templ);
791
792 /* resolve */
793 r600_blitter_begin(ctx, R600_COLOR_RESOLVE);
794 util_blitter_custom_resolve_color(rctx->blitter,
795 tmp, 0, 0,
796 info->src.resource, info->src.box.z,
797 sample_mask, rctx->custom_blend_resolve,
798 int_to_norm_format(tmp->format));
799 r600_blitter_end(ctx);
800
801 /* blit */
802 blit = *info;
803 blit.src.resource = tmp;
804 blit.src.box.z = 0;
805
806 r600_blitter_begin(ctx, R600_BLIT);
807 util_blitter_blit(rctx->blitter, &blit);
808 r600_blitter_end(ctx);
809
810 pipe_resource_reference(&tmp, NULL);
811 }
812
813 static void r600_blit(struct pipe_context *ctx,
814 const struct pipe_blit_info *info)
815 {
816 struct r600_context *rctx = (struct r600_context*)ctx;
817
818 assert(util_blitter_is_blit_supported(rctx->blitter, info));
819
820 if (info->src.resource->nr_samples > 1 &&
821 info->dst.resource->nr_samples <= 1 &&
822 !util_format_is_depth_or_stencil(info->src.resource->format) &&
823 !util_format_is_pure_integer(int_to_norm_format(info->src.resource->format))) {
824 r600_msaa_color_resolve(ctx, info);
825 return;
826 }
827
828 /* The driver doesn't decompress resources automatically while
829 * u_blitter is rendering. */
830 if (!r600_decompress_subresource(ctx, info->src.resource, info->src.level,
831 info->src.box.z,
832 info->src.box.z + info->src.box.depth - 1)) {
833 return; /* error */
834 }
835
836 r600_blitter_begin(ctx, R600_BLIT);
837 util_blitter_blit(rctx->blitter, info);
838 r600_blitter_end(ctx);
839 }
840
841 void r600_init_blit_functions(struct r600_context *rctx)
842 {
843 rctx->context.clear = r600_clear;
844 rctx->context.clear_render_target = r600_clear_render_target;
845 rctx->context.clear_depth_stencil = r600_clear_depth_stencil;
846 rctx->context.resource_copy_region = r600_resource_copy_region;
847 rctx->context.blit = r600_blit;
848 }