radeonsi: move and rename scissor and viewport state and functions
[mesa.git] / src / gallium / drivers / radeonsi / si_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
24 #include "si_pipe.h"
25 #include "si_compute.h"
26 #include "util/u_format.h"
27 #include "util/u_log.h"
28 #include "util/u_surface.h"
29
30 enum si_blitter_op /* bitmask */
31 {
32 SI_SAVE_TEXTURES = 1,
33 SI_SAVE_FRAMEBUFFER = 2,
34 SI_SAVE_FRAGMENT_STATE = 4,
35 SI_DISABLE_RENDER_COND = 8,
36
37 SI_CLEAR = SI_SAVE_FRAGMENT_STATE,
38
39 SI_CLEAR_SURFACE = SI_SAVE_FRAMEBUFFER | SI_SAVE_FRAGMENT_STATE,
40
41 SI_COPY = SI_SAVE_FRAMEBUFFER | SI_SAVE_TEXTURES |
42 SI_SAVE_FRAGMENT_STATE | SI_DISABLE_RENDER_COND,
43
44 SI_BLIT = SI_SAVE_FRAMEBUFFER | SI_SAVE_TEXTURES |
45 SI_SAVE_FRAGMENT_STATE,
46
47 SI_DECOMPRESS = SI_SAVE_FRAMEBUFFER | SI_SAVE_FRAGMENT_STATE |
48 SI_DISABLE_RENDER_COND,
49
50 SI_COLOR_RESOLVE = SI_SAVE_FRAMEBUFFER | SI_SAVE_FRAGMENT_STATE
51 };
52
53 static void si_blitter_begin(struct pipe_context *ctx, enum si_blitter_op op)
54 {
55 struct si_context *sctx = (struct si_context *)ctx;
56
57 util_blitter_save_vertex_buffer_slot(sctx->blitter, sctx->vertex_buffer);
58 util_blitter_save_vertex_elements(sctx->blitter, sctx->vertex_elements);
59 util_blitter_save_vertex_shader(sctx->blitter, sctx->vs_shader.cso);
60 util_blitter_save_tessctrl_shader(sctx->blitter, sctx->tcs_shader.cso);
61 util_blitter_save_tesseval_shader(sctx->blitter, sctx->tes_shader.cso);
62 util_blitter_save_geometry_shader(sctx->blitter, sctx->gs_shader.cso);
63 util_blitter_save_so_targets(sctx->blitter, sctx->b.streamout.num_targets,
64 (struct pipe_stream_output_target**)sctx->b.streamout.targets);
65 util_blitter_save_rasterizer(sctx->blitter, sctx->queued.named.rasterizer);
66
67 if (op & SI_SAVE_FRAGMENT_STATE) {
68 util_blitter_save_blend(sctx->blitter, sctx->queued.named.blend);
69 util_blitter_save_depth_stencil_alpha(sctx->blitter, sctx->queued.named.dsa);
70 util_blitter_save_stencil_ref(sctx->blitter, &sctx->stencil_ref.state);
71 util_blitter_save_fragment_shader(sctx->blitter, sctx->ps_shader.cso);
72 util_blitter_save_sample_mask(sctx->blitter, sctx->sample_mask.sample_mask);
73 util_blitter_save_viewport(sctx->blitter, &sctx->viewports.states[0]);
74 util_blitter_save_scissor(sctx->blitter, &sctx->scissors.states[0]);
75 }
76
77 if (op & SI_SAVE_FRAMEBUFFER)
78 util_blitter_save_framebuffer(sctx->blitter, &sctx->framebuffer.state);
79
80 if (op & SI_SAVE_TEXTURES) {
81 util_blitter_save_fragment_sampler_states(
82 sctx->blitter, 2,
83 (void**)sctx->samplers[PIPE_SHADER_FRAGMENT].views.sampler_states);
84
85 util_blitter_save_fragment_sampler_views(sctx->blitter, 2,
86 sctx->samplers[PIPE_SHADER_FRAGMENT].views.views);
87 }
88
89 if (op & SI_DISABLE_RENDER_COND)
90 sctx->b.render_cond_force_off = true;
91 }
92
93 static void si_blitter_end(struct pipe_context *ctx)
94 {
95 struct si_context *sctx = (struct si_context *)ctx;
96
97 sctx->b.render_cond_force_off = false;
98 }
99
100 static unsigned u_max_sample(struct pipe_resource *r)
101 {
102 return r->nr_samples ? r->nr_samples - 1 : 0;
103 }
104
105 static unsigned
106 si_blit_dbcb_copy(struct si_context *sctx,
107 struct r600_texture *src,
108 struct r600_texture *dst,
109 unsigned planes, unsigned level_mask,
110 unsigned first_layer, unsigned last_layer,
111 unsigned first_sample, unsigned last_sample)
112 {
113 struct pipe_surface surf_tmpl = {{0}};
114 unsigned layer, sample, checked_last_layer, max_layer;
115 unsigned fully_copied_levels = 0;
116
117 if (planes & PIPE_MASK_Z)
118 sctx->dbcb_depth_copy_enabled = true;
119 if (planes & PIPE_MASK_S)
120 sctx->dbcb_stencil_copy_enabled = true;
121 si_mark_atom_dirty(sctx, &sctx->db_render_state);
122
123 assert(sctx->dbcb_depth_copy_enabled || sctx->dbcb_stencil_copy_enabled);
124
125 sctx->decompression_enabled = true;
126
127 while (level_mask) {
128 unsigned level = u_bit_scan(&level_mask);
129
130 /* The smaller the mipmap level, the less layers there are
131 * as far as 3D textures are concerned. */
132 max_layer = util_max_layer(&src->resource.b.b, level);
133 checked_last_layer = MIN2(last_layer, max_layer);
134
135 surf_tmpl.u.tex.level = level;
136
137 for (layer = first_layer; layer <= checked_last_layer; layer++) {
138 struct pipe_surface *zsurf, *cbsurf;
139
140 surf_tmpl.format = src->resource.b.b.format;
141 surf_tmpl.u.tex.first_layer = layer;
142 surf_tmpl.u.tex.last_layer = layer;
143
144 zsurf = sctx->b.b.create_surface(&sctx->b.b, &src->resource.b.b, &surf_tmpl);
145
146 surf_tmpl.format = dst->resource.b.b.format;
147 cbsurf = sctx->b.b.create_surface(&sctx->b.b, &dst->resource.b.b, &surf_tmpl);
148
149 for (sample = first_sample; sample <= last_sample; sample++) {
150 if (sample != sctx->dbcb_copy_sample) {
151 sctx->dbcb_copy_sample = sample;
152 si_mark_atom_dirty(sctx, &sctx->db_render_state);
153 }
154
155 si_blitter_begin(&sctx->b.b, SI_DECOMPRESS);
156 util_blitter_custom_depth_stencil(sctx->blitter, zsurf, cbsurf, 1 << sample,
157 sctx->custom_dsa_flush, 1.0f);
158 si_blitter_end(&sctx->b.b);
159 }
160
161 pipe_surface_reference(&zsurf, NULL);
162 pipe_surface_reference(&cbsurf, NULL);
163 }
164
165 if (first_layer == 0 && last_layer >= max_layer &&
166 first_sample == 0 && last_sample >= u_max_sample(&src->resource.b.b))
167 fully_copied_levels |= 1u << level;
168 }
169
170 sctx->decompression_enabled = false;
171 sctx->dbcb_depth_copy_enabled = false;
172 sctx->dbcb_stencil_copy_enabled = false;
173 si_mark_atom_dirty(sctx, &sctx->db_render_state);
174
175 return fully_copied_levels;
176 }
177
178 static void si_blit_decompress_depth(struct pipe_context *ctx,
179 struct r600_texture *texture,
180 struct r600_texture *staging,
181 unsigned first_level, unsigned last_level,
182 unsigned first_layer, unsigned last_layer,
183 unsigned first_sample, unsigned last_sample)
184 {
185 const struct util_format_description *desc;
186 unsigned planes = 0;
187
188 assert(staging != NULL && "use si_blit_decompress_zs_in_place instead");
189
190 desc = util_format_description(staging->resource.b.b.format);
191
192 if (util_format_has_depth(desc))
193 planes |= PIPE_MASK_Z;
194 if (util_format_has_stencil(desc))
195 planes |= PIPE_MASK_S;
196
197 si_blit_dbcb_copy(
198 (struct si_context *)ctx, texture, staging, planes,
199 u_bit_consecutive(first_level, last_level - first_level + 1),
200 first_layer, last_layer, first_sample, last_sample);
201 }
202
203 /* Helper function for si_blit_decompress_zs_in_place.
204 */
205 static void
206 si_blit_decompress_zs_planes_in_place(struct si_context *sctx,
207 struct r600_texture *texture,
208 unsigned planes, unsigned level_mask,
209 unsigned first_layer, unsigned last_layer)
210 {
211 struct pipe_surface *zsurf, surf_tmpl = {{0}};
212 unsigned layer, max_layer, checked_last_layer;
213 unsigned fully_decompressed_mask = 0;
214
215 if (!level_mask)
216 return;
217
218 if (planes & PIPE_MASK_S)
219 sctx->db_flush_stencil_inplace = true;
220 if (planes & PIPE_MASK_Z)
221 sctx->db_flush_depth_inplace = true;
222 si_mark_atom_dirty(sctx, &sctx->db_render_state);
223
224 surf_tmpl.format = texture->resource.b.b.format;
225
226 sctx->decompression_enabled = true;
227
228 while (level_mask) {
229 unsigned level = u_bit_scan(&level_mask);
230
231 surf_tmpl.u.tex.level = level;
232
233 /* The smaller the mipmap level, the less layers there are
234 * as far as 3D textures are concerned. */
235 max_layer = util_max_layer(&texture->resource.b.b, level);
236 checked_last_layer = MIN2(last_layer, max_layer);
237
238 for (layer = first_layer; layer <= checked_last_layer; layer++) {
239 surf_tmpl.u.tex.first_layer = layer;
240 surf_tmpl.u.tex.last_layer = layer;
241
242 zsurf = sctx->b.b.create_surface(&sctx->b.b, &texture->resource.b.b, &surf_tmpl);
243
244 si_blitter_begin(&sctx->b.b, SI_DECOMPRESS);
245 util_blitter_custom_depth_stencil(sctx->blitter, zsurf, NULL, ~0,
246 sctx->custom_dsa_flush,
247 1.0f);
248 si_blitter_end(&sctx->b.b);
249
250 pipe_surface_reference(&zsurf, NULL);
251 }
252
253 /* The texture will always be dirty if some layers aren't flushed.
254 * I don't think this case occurs often though. */
255 if (first_layer == 0 && last_layer >= max_layer) {
256 fully_decompressed_mask |= 1u << level;
257 }
258 }
259
260 if (planes & PIPE_MASK_Z)
261 texture->dirty_level_mask &= ~fully_decompressed_mask;
262 if (planes & PIPE_MASK_S)
263 texture->stencil_dirty_level_mask &= ~fully_decompressed_mask;
264
265 sctx->decompression_enabled = false;
266 sctx->db_flush_depth_inplace = false;
267 sctx->db_flush_stencil_inplace = false;
268 si_mark_atom_dirty(sctx, &sctx->db_render_state);
269 }
270
271 /* Helper function of si_flush_depth_texture: decompress the given levels
272 * of Z and/or S planes in place.
273 */
274 static void
275 si_blit_decompress_zs_in_place(struct si_context *sctx,
276 struct r600_texture *texture,
277 unsigned levels_z, unsigned levels_s,
278 unsigned first_layer, unsigned last_layer)
279 {
280 unsigned both = levels_z & levels_s;
281
282 /* First, do combined Z & S decompresses for levels that need it. */
283 if (both) {
284 si_blit_decompress_zs_planes_in_place(
285 sctx, texture, PIPE_MASK_Z | PIPE_MASK_S,
286 both,
287 first_layer, last_layer);
288 levels_z &= ~both;
289 levels_s &= ~both;
290 }
291
292 /* Now do separate Z and S decompresses. */
293 if (levels_z) {
294 si_blit_decompress_zs_planes_in_place(
295 sctx, texture, PIPE_MASK_Z,
296 levels_z,
297 first_layer, last_layer);
298 }
299
300 if (levels_s) {
301 si_blit_decompress_zs_planes_in_place(
302 sctx, texture, PIPE_MASK_S,
303 levels_s,
304 first_layer, last_layer);
305 }
306 }
307
308 static void
309 si_decompress_depth(struct si_context *sctx,
310 struct r600_texture *tex,
311 unsigned required_planes,
312 unsigned first_level, unsigned last_level,
313 unsigned first_layer, unsigned last_layer)
314 {
315 unsigned inplace_planes = 0;
316 unsigned copy_planes = 0;
317 unsigned level_mask = u_bit_consecutive(first_level, last_level - first_level + 1);
318 unsigned levels_z = 0;
319 unsigned levels_s = 0;
320
321 if (required_planes & PIPE_MASK_Z) {
322 levels_z = level_mask & tex->dirty_level_mask;
323
324 if (levels_z) {
325 if (r600_can_sample_zs(tex, false))
326 inplace_planes |= PIPE_MASK_Z;
327 else
328 copy_planes |= PIPE_MASK_Z;
329 }
330 }
331 if (required_planes & PIPE_MASK_S) {
332 levels_s = level_mask & tex->stencil_dirty_level_mask;
333
334 if (levels_s) {
335 if (r600_can_sample_zs(tex, true))
336 inplace_planes |= PIPE_MASK_S;
337 else
338 copy_planes |= PIPE_MASK_S;
339 }
340 }
341
342 if (unlikely(sctx->b.log))
343 u_log_printf(sctx->b.log,
344 "\n------------------------------------------------\n"
345 "Decompress Depth (levels %u - %u, levels Z: 0x%x S: 0x%x)\n\n",
346 first_level, last_level, levels_z, levels_s);
347
348 /* We may have to allocate the flushed texture here when called from
349 * si_decompress_subresource.
350 */
351 if (copy_planes &&
352 (tex->flushed_depth_texture ||
353 si_init_flushed_depth_texture(&sctx->b.b, &tex->resource.b.b, NULL))) {
354 struct r600_texture *dst = tex->flushed_depth_texture;
355 unsigned fully_copied_levels;
356 unsigned levels = 0;
357
358 assert(tex->flushed_depth_texture);
359
360 if (util_format_is_depth_and_stencil(dst->resource.b.b.format))
361 copy_planes = PIPE_MASK_Z | PIPE_MASK_S;
362
363 if (copy_planes & PIPE_MASK_Z) {
364 levels |= levels_z;
365 levels_z = 0;
366 }
367 if (copy_planes & PIPE_MASK_S) {
368 levels |= levels_s;
369 levels_s = 0;
370 }
371
372 fully_copied_levels = si_blit_dbcb_copy(
373 sctx, tex, dst, copy_planes, levels,
374 first_layer, last_layer,
375 0, u_max_sample(&tex->resource.b.b));
376
377 if (copy_planes & PIPE_MASK_Z)
378 tex->dirty_level_mask &= ~fully_copied_levels;
379 if (copy_planes & PIPE_MASK_S)
380 tex->stencil_dirty_level_mask &= ~fully_copied_levels;
381 }
382
383 if (inplace_planes) {
384 bool has_htile = r600_htile_enabled(tex, first_level);
385 bool tc_compat_htile = vi_tc_compat_htile_enabled(tex, first_level);
386
387 /* Don't decompress if there is no HTILE or when HTILE is
388 * TC-compatible. */
389 if (has_htile && !tc_compat_htile) {
390 si_blit_decompress_zs_in_place(
391 sctx, tex,
392 levels_z, levels_s,
393 first_layer, last_layer);
394 } else {
395 /* This is only a cache flush.
396 *
397 * Only clear the mask that we are flushing, because
398 * si_make_DB_shader_coherent() treats different levels
399 * and depth and stencil differently.
400 */
401 if (inplace_planes & PIPE_MASK_Z)
402 tex->dirty_level_mask &= ~levels_z;
403 if (inplace_planes & PIPE_MASK_S)
404 tex->stencil_dirty_level_mask &= ~levels_s;
405 }
406
407 /* Only in-place decompression needs to flush DB caches, or
408 * when we don't decompress but TC-compatible planes are dirty.
409 */
410 si_make_DB_shader_coherent(sctx, tex->resource.b.b.nr_samples,
411 inplace_planes & PIPE_MASK_S,
412 tc_compat_htile);
413 }
414 /* set_framebuffer_state takes care of coherency for single-sample.
415 * The DB->CB copy uses CB for the final writes.
416 */
417 if (copy_planes && tex->resource.b.b.nr_samples > 1)
418 si_make_CB_shader_coherent(sctx, tex->resource.b.b.nr_samples,
419 false);
420 }
421
422 static void
423 si_decompress_sampler_depth_textures(struct si_context *sctx,
424 struct si_textures_info *textures)
425 {
426 unsigned i;
427 unsigned mask = textures->needs_depth_decompress_mask;
428
429 while (mask) {
430 struct pipe_sampler_view *view;
431 struct si_sampler_view *sview;
432 struct r600_texture *tex;
433
434 i = u_bit_scan(&mask);
435
436 view = textures->views.views[i];
437 assert(view);
438 sview = (struct si_sampler_view*)view;
439
440 tex = (struct r600_texture *)view->texture;
441 assert(tex->db_compatible);
442
443 si_decompress_depth(sctx, tex,
444 sview->is_stencil_sampler ? PIPE_MASK_S : PIPE_MASK_Z,
445 view->u.tex.first_level, view->u.tex.last_level,
446 0, util_max_layer(&tex->resource.b.b, view->u.tex.first_level));
447 }
448 }
449
450 static void si_blit_decompress_color(struct pipe_context *ctx,
451 struct r600_texture *rtex,
452 unsigned first_level, unsigned last_level,
453 unsigned first_layer, unsigned last_layer,
454 bool need_dcc_decompress)
455 {
456 struct si_context *sctx = (struct si_context *)ctx;
457 void* custom_blend;
458 unsigned layer, checked_last_layer, max_layer;
459 unsigned level_mask =
460 u_bit_consecutive(first_level, last_level - first_level + 1);
461
462 if (!need_dcc_decompress)
463 level_mask &= rtex->dirty_level_mask;
464 if (!level_mask)
465 return;
466
467 if (unlikely(sctx->b.log))
468 u_log_printf(sctx->b.log,
469 "\n------------------------------------------------\n"
470 "Decompress Color (levels %u - %u, mask 0x%x)\n\n",
471 first_level, last_level, level_mask);
472
473 if (need_dcc_decompress) {
474 custom_blend = sctx->custom_blend_dcc_decompress;
475
476 assert(rtex->dcc_offset);
477
478 /* disable levels without DCC */
479 for (int i = first_level; i <= last_level; i++) {
480 if (!vi_dcc_enabled(rtex, i))
481 level_mask &= ~(1 << i);
482 }
483 } else if (rtex->fmask.size) {
484 custom_blend = sctx->custom_blend_fmask_decompress;
485 } else {
486 custom_blend = sctx->custom_blend_eliminate_fastclear;
487 }
488
489 sctx->decompression_enabled = true;
490
491 while (level_mask) {
492 unsigned level = u_bit_scan(&level_mask);
493
494 /* The smaller the mipmap level, the less layers there are
495 * as far as 3D textures are concerned. */
496 max_layer = util_max_layer(&rtex->resource.b.b, level);
497 checked_last_layer = MIN2(last_layer, max_layer);
498
499 for (layer = first_layer; layer <= checked_last_layer; layer++) {
500 struct pipe_surface *cbsurf, surf_tmpl;
501
502 surf_tmpl.format = rtex->resource.b.b.format;
503 surf_tmpl.u.tex.level = level;
504 surf_tmpl.u.tex.first_layer = layer;
505 surf_tmpl.u.tex.last_layer = layer;
506 cbsurf = ctx->create_surface(ctx, &rtex->resource.b.b, &surf_tmpl);
507
508 /* Required before and after FMASK and DCC_DECOMPRESS. */
509 if (custom_blend == sctx->custom_blend_fmask_decompress ||
510 custom_blend == sctx->custom_blend_dcc_decompress)
511 sctx->b.flags |= SI_CONTEXT_FLUSH_AND_INV_CB;
512
513 si_blitter_begin(ctx, SI_DECOMPRESS);
514 util_blitter_custom_color(sctx->blitter, cbsurf, custom_blend);
515 si_blitter_end(ctx);
516
517 if (custom_blend == sctx->custom_blend_fmask_decompress ||
518 custom_blend == sctx->custom_blend_dcc_decompress)
519 sctx->b.flags |= SI_CONTEXT_FLUSH_AND_INV_CB;
520
521 pipe_surface_reference(&cbsurf, NULL);
522 }
523
524 /* The texture will always be dirty if some layers aren't flushed.
525 * I don't think this case occurs often though. */
526 if (first_layer == 0 && last_layer >= max_layer) {
527 rtex->dirty_level_mask &= ~(1 << level);
528 }
529 }
530
531 sctx->decompression_enabled = false;
532 si_make_CB_shader_coherent(sctx, rtex->resource.b.b.nr_samples,
533 vi_dcc_enabled(rtex, first_level));
534 }
535
536 static void
537 si_decompress_color_texture(struct si_context *sctx, struct r600_texture *tex,
538 unsigned first_level, unsigned last_level)
539 {
540 /* CMASK or DCC can be discarded and we can still end up here. */
541 if (!tex->cmask.size && !tex->fmask.size && !tex->dcc_offset)
542 return;
543
544 si_blit_decompress_color(&sctx->b.b, tex, first_level, last_level, 0,
545 util_max_layer(&tex->resource.b.b, first_level),
546 false);
547 }
548
549 static void
550 si_decompress_sampler_color_textures(struct si_context *sctx,
551 struct si_textures_info *textures)
552 {
553 unsigned i;
554 unsigned mask = textures->needs_color_decompress_mask;
555
556 while (mask) {
557 struct pipe_sampler_view *view;
558 struct r600_texture *tex;
559
560 i = u_bit_scan(&mask);
561
562 view = textures->views.views[i];
563 assert(view);
564
565 tex = (struct r600_texture *)view->texture;
566
567 si_decompress_color_texture(sctx, tex, view->u.tex.first_level,
568 view->u.tex.last_level);
569 }
570 }
571
572 static void
573 si_decompress_image_color_textures(struct si_context *sctx,
574 struct si_images_info *images)
575 {
576 unsigned i;
577 unsigned mask = images->needs_color_decompress_mask;
578
579 while (mask) {
580 const struct pipe_image_view *view;
581 struct r600_texture *tex;
582
583 i = u_bit_scan(&mask);
584
585 view = &images->views[i];
586 assert(view->resource->target != PIPE_BUFFER);
587
588 tex = (struct r600_texture *)view->resource;
589
590 si_decompress_color_texture(sctx, tex, view->u.tex.level,
591 view->u.tex.level);
592 }
593 }
594
595 static void si_check_render_feedback_texture(struct si_context *sctx,
596 struct r600_texture *tex,
597 unsigned first_level,
598 unsigned last_level,
599 unsigned first_layer,
600 unsigned last_layer)
601 {
602 bool render_feedback = false;
603
604 if (!tex->dcc_offset)
605 return;
606
607 for (unsigned j = 0; j < sctx->framebuffer.state.nr_cbufs; ++j) {
608 struct r600_surface * surf;
609
610 if (!sctx->framebuffer.state.cbufs[j])
611 continue;
612
613 surf = (struct r600_surface*)sctx->framebuffer.state.cbufs[j];
614
615 if (tex == (struct r600_texture *)surf->base.texture &&
616 surf->base.u.tex.level >= first_level &&
617 surf->base.u.tex.level <= last_level &&
618 surf->base.u.tex.first_layer <= last_layer &&
619 surf->base.u.tex.last_layer >= first_layer) {
620 render_feedback = true;
621 break;
622 }
623 }
624
625 if (render_feedback)
626 si_texture_disable_dcc(&sctx->b, tex);
627 }
628
629 static void si_check_render_feedback_textures(struct si_context *sctx,
630 struct si_textures_info *textures)
631 {
632 uint32_t mask = textures->views.enabled_mask;
633
634 while (mask) {
635 const struct pipe_sampler_view *view;
636 struct r600_texture *tex;
637
638 unsigned i = u_bit_scan(&mask);
639
640 view = textures->views.views[i];
641 if(view->texture->target == PIPE_BUFFER)
642 continue;
643
644 tex = (struct r600_texture *)view->texture;
645
646 si_check_render_feedback_texture(sctx, tex,
647 view->u.tex.first_level,
648 view->u.tex.last_level,
649 view->u.tex.first_layer,
650 view->u.tex.last_layer);
651 }
652 }
653
654 static void si_check_render_feedback_images(struct si_context *sctx,
655 struct si_images_info *images)
656 {
657 uint32_t mask = images->enabled_mask;
658
659 while (mask) {
660 const struct pipe_image_view *view;
661 struct r600_texture *tex;
662
663 unsigned i = u_bit_scan(&mask);
664
665 view = &images->views[i];
666 if (view->resource->target == PIPE_BUFFER)
667 continue;
668
669 tex = (struct r600_texture *)view->resource;
670
671 si_check_render_feedback_texture(sctx, tex,
672 view->u.tex.level,
673 view->u.tex.level,
674 view->u.tex.first_layer,
675 view->u.tex.last_layer);
676 }
677 }
678
679 static void si_check_render_feedback_resident_textures(struct si_context *sctx)
680 {
681 util_dynarray_foreach(&sctx->resident_tex_handles,
682 struct si_texture_handle *, tex_handle) {
683 struct pipe_sampler_view *view;
684 struct r600_texture *tex;
685
686 view = (*tex_handle)->view;
687 if (view->texture->target == PIPE_BUFFER)
688 continue;
689
690 tex = (struct r600_texture *)view->texture;
691
692 si_check_render_feedback_texture(sctx, tex,
693 view->u.tex.first_level,
694 view->u.tex.last_level,
695 view->u.tex.first_layer,
696 view->u.tex.last_layer);
697 }
698 }
699
700 static void si_check_render_feedback_resident_images(struct si_context *sctx)
701 {
702 util_dynarray_foreach(&sctx->resident_img_handles,
703 struct si_image_handle *, img_handle) {
704 struct pipe_image_view *view;
705 struct r600_texture *tex;
706
707 view = &(*img_handle)->view;
708 if (view->resource->target == PIPE_BUFFER)
709 continue;
710
711 tex = (struct r600_texture *)view->resource;
712
713 si_check_render_feedback_texture(sctx, tex,
714 view->u.tex.level,
715 view->u.tex.level,
716 view->u.tex.first_layer,
717 view->u.tex.last_layer);
718 }
719 }
720
721 static void si_check_render_feedback(struct si_context *sctx)
722 {
723
724 if (!sctx->need_check_render_feedback)
725 return;
726
727 for (int i = 0; i < SI_NUM_SHADERS; ++i) {
728 si_check_render_feedback_images(sctx, &sctx->images[i]);
729 si_check_render_feedback_textures(sctx, &sctx->samplers[i]);
730 }
731
732 si_check_render_feedback_resident_images(sctx);
733 si_check_render_feedback_resident_textures(sctx);
734
735 sctx->need_check_render_feedback = false;
736 }
737
738 static void si_decompress_resident_textures(struct si_context *sctx)
739 {
740 util_dynarray_foreach(&sctx->resident_tex_needs_color_decompress,
741 struct si_texture_handle *, tex_handle) {
742 struct pipe_sampler_view *view = (*tex_handle)->view;
743 struct r600_texture *tex = (struct r600_texture *)view->texture;
744
745 si_decompress_color_texture(sctx, tex, view->u.tex.first_level,
746 view->u.tex.last_level);
747 }
748
749 util_dynarray_foreach(&sctx->resident_tex_needs_depth_decompress,
750 struct si_texture_handle *, tex_handle) {
751 struct pipe_sampler_view *view = (*tex_handle)->view;
752 struct si_sampler_view *sview = (struct si_sampler_view *)view;
753 struct r600_texture *tex = (struct r600_texture *)view->texture;
754
755 si_decompress_depth(sctx, tex,
756 sview->is_stencil_sampler ? PIPE_MASK_S : PIPE_MASK_Z,
757 view->u.tex.first_level, view->u.tex.last_level,
758 0, util_max_layer(&tex->resource.b.b, view->u.tex.first_level));
759 }
760 }
761
762 static void si_decompress_resident_images(struct si_context *sctx)
763 {
764 util_dynarray_foreach(&sctx->resident_img_needs_color_decompress,
765 struct si_image_handle *, img_handle) {
766 struct pipe_image_view *view = &(*img_handle)->view;
767 struct r600_texture *tex = (struct r600_texture *)view->resource;
768
769 si_decompress_color_texture(sctx, tex, view->u.tex.level,
770 view->u.tex.level);
771 }
772 }
773
774 static void si_decompress_textures(struct si_context *sctx, unsigned shader_mask)
775 {
776 unsigned compressed_colortex_counter, mask;
777
778 if (sctx->blitter->running)
779 return;
780
781 /* Update the compressed_colortex_mask if necessary. */
782 compressed_colortex_counter = p_atomic_read(&sctx->screen->b.compressed_colortex_counter);
783 if (compressed_colortex_counter != sctx->b.last_compressed_colortex_counter) {
784 sctx->b.last_compressed_colortex_counter = compressed_colortex_counter;
785 si_update_needs_color_decompress_masks(sctx);
786 }
787
788 /* Decompress color & depth textures if needed. */
789 mask = sctx->shader_needs_decompress_mask & shader_mask;
790 while (mask) {
791 unsigned i = u_bit_scan(&mask);
792
793 if (sctx->samplers[i].needs_depth_decompress_mask) {
794 si_decompress_sampler_depth_textures(sctx, &sctx->samplers[i]);
795 }
796 if (sctx->samplers[i].needs_color_decompress_mask) {
797 si_decompress_sampler_color_textures(sctx, &sctx->samplers[i]);
798 }
799 if (sctx->images[i].needs_color_decompress_mask) {
800 si_decompress_image_color_textures(sctx, &sctx->images[i]);
801 }
802 }
803
804 if (shader_mask & u_bit_consecutive(0, SI_NUM_GRAPHICS_SHADERS)) {
805 if (sctx->uses_bindless_samplers)
806 si_decompress_resident_textures(sctx);
807 if (sctx->uses_bindless_images)
808 si_decompress_resident_images(sctx);
809 } else if (shader_mask & (1 << PIPE_SHADER_COMPUTE)) {
810 if (sctx->cs_shader_state.program->uses_bindless_samplers)
811 si_decompress_resident_textures(sctx);
812 if (sctx->cs_shader_state.program->uses_bindless_images)
813 si_decompress_resident_images(sctx);
814 }
815
816 si_check_render_feedback(sctx);
817 }
818
819 void si_decompress_graphics_textures(struct si_context *sctx)
820 {
821 si_decompress_textures(sctx, u_bit_consecutive(0, SI_NUM_GRAPHICS_SHADERS));
822 }
823
824 void si_decompress_compute_textures(struct si_context *sctx)
825 {
826 si_decompress_textures(sctx, 1 << PIPE_SHADER_COMPUTE);
827 }
828
829 static void si_clear(struct pipe_context *ctx, unsigned buffers,
830 const union pipe_color_union *color,
831 double depth, unsigned stencil)
832 {
833 struct si_context *sctx = (struct si_context *)ctx;
834 struct pipe_framebuffer_state *fb = &sctx->framebuffer.state;
835 struct pipe_surface *zsbuf = fb->zsbuf;
836 struct r600_texture *zstex =
837 zsbuf ? (struct r600_texture*)zsbuf->texture : NULL;
838
839 if (buffers & PIPE_CLEAR_COLOR) {
840 si_do_fast_color_clear(&sctx->b, fb,
841 &sctx->framebuffer.atom, &buffers,
842 &sctx->framebuffer.dirty_cbufs,
843 color);
844 if (!buffers)
845 return; /* all buffers have been fast cleared */
846 }
847
848 if (buffers & PIPE_CLEAR_COLOR) {
849 int i;
850
851 /* These buffers cannot use fast clear, make sure to disable expansion. */
852 for (i = 0; i < fb->nr_cbufs; i++) {
853 struct r600_texture *tex;
854
855 /* If not clearing this buffer, skip. */
856 if (!(buffers & (PIPE_CLEAR_COLOR0 << i)))
857 continue;
858
859 if (!fb->cbufs[i])
860 continue;
861
862 tex = (struct r600_texture *)fb->cbufs[i]->texture;
863 if (tex->fmask.size == 0)
864 tex->dirty_level_mask &= ~(1 << fb->cbufs[i]->u.tex.level);
865 }
866 }
867
868 if (zstex &&
869 r600_htile_enabled(zstex, zsbuf->u.tex.level) &&
870 zsbuf->u.tex.first_layer == 0 &&
871 zsbuf->u.tex.last_layer == util_max_layer(&zstex->resource.b.b, 0)) {
872 /* TC-compatible HTILE only supports depth clears to 0 or 1. */
873 if (buffers & PIPE_CLEAR_DEPTH &&
874 (!zstex->tc_compatible_htile ||
875 depth == 0 || depth == 1)) {
876 /* Need to disable EXPCLEAR temporarily if clearing
877 * to a new value. */
878 if (!zstex->depth_cleared || zstex->depth_clear_value != depth) {
879 sctx->db_depth_disable_expclear = true;
880 }
881
882 zstex->depth_clear_value = depth;
883 sctx->framebuffer.dirty_zsbuf = true;
884 si_mark_atom_dirty(sctx, &sctx->framebuffer.atom); /* updates DB_DEPTH_CLEAR */
885 sctx->db_depth_clear = true;
886 si_mark_atom_dirty(sctx, &sctx->db_render_state);
887 }
888
889 /* TC-compatible HTILE only supports stencil clears to 0. */
890 if (buffers & PIPE_CLEAR_STENCIL &&
891 (!zstex->tc_compatible_htile || stencil == 0)) {
892 stencil &= 0xff;
893
894 /* Need to disable EXPCLEAR temporarily if clearing
895 * to a new value. */
896 if (!zstex->stencil_cleared || zstex->stencil_clear_value != stencil) {
897 sctx->db_stencil_disable_expclear = true;
898 }
899
900 zstex->stencil_clear_value = stencil;
901 sctx->framebuffer.dirty_zsbuf = true;
902 si_mark_atom_dirty(sctx, &sctx->framebuffer.atom); /* updates DB_STENCIL_CLEAR */
903 sctx->db_stencil_clear = true;
904 si_mark_atom_dirty(sctx, &sctx->db_render_state);
905 }
906 }
907
908 si_blitter_begin(ctx, SI_CLEAR);
909 util_blitter_clear(sctx->blitter, fb->width, fb->height,
910 util_framebuffer_get_num_layers(fb),
911 buffers, color, depth, stencil);
912 si_blitter_end(ctx);
913
914 if (sctx->db_depth_clear) {
915 sctx->db_depth_clear = false;
916 sctx->db_depth_disable_expclear = false;
917 zstex->depth_cleared = true;
918 si_mark_atom_dirty(sctx, &sctx->db_render_state);
919 }
920
921 if (sctx->db_stencil_clear) {
922 sctx->db_stencil_clear = false;
923 sctx->db_stencil_disable_expclear = false;
924 zstex->stencil_cleared = true;
925 si_mark_atom_dirty(sctx, &sctx->db_render_state);
926 }
927 }
928
929 static void si_clear_render_target(struct pipe_context *ctx,
930 struct pipe_surface *dst,
931 const union pipe_color_union *color,
932 unsigned dstx, unsigned dsty,
933 unsigned width, unsigned height,
934 bool render_condition_enabled)
935 {
936 struct si_context *sctx = (struct si_context *)ctx;
937
938 si_blitter_begin(ctx, SI_CLEAR_SURFACE |
939 (render_condition_enabled ? 0 : SI_DISABLE_RENDER_COND));
940 util_blitter_clear_render_target(sctx->blitter, dst, color,
941 dstx, dsty, width, height);
942 si_blitter_end(ctx);
943 }
944
945 static void si_clear_depth_stencil(struct pipe_context *ctx,
946 struct pipe_surface *dst,
947 unsigned clear_flags,
948 double depth,
949 unsigned stencil,
950 unsigned dstx, unsigned dsty,
951 unsigned width, unsigned height,
952 bool render_condition_enabled)
953 {
954 struct si_context *sctx = (struct si_context *)ctx;
955
956 si_blitter_begin(ctx, SI_CLEAR_SURFACE |
957 (render_condition_enabled ? 0 : SI_DISABLE_RENDER_COND));
958 util_blitter_clear_depth_stencil(sctx->blitter, dst, clear_flags, depth, stencil,
959 dstx, dsty, width, height);
960 si_blitter_end(ctx);
961 }
962
963 /* Helper for decompressing a portion of a color or depth resource before
964 * blitting if any decompression is needed.
965 * The driver doesn't decompress resources automatically while u_blitter is
966 * rendering. */
967 static void si_decompress_subresource(struct pipe_context *ctx,
968 struct pipe_resource *tex,
969 unsigned planes, unsigned level,
970 unsigned first_layer, unsigned last_layer)
971 {
972 struct si_context *sctx = (struct si_context *)ctx;
973 struct r600_texture *rtex = (struct r600_texture*)tex;
974
975 if (rtex->db_compatible) {
976 planes &= PIPE_MASK_Z | PIPE_MASK_S;
977
978 if (!rtex->surface.has_stencil)
979 planes &= ~PIPE_MASK_S;
980
981 /* If we've rendered into the framebuffer and it's a blitting
982 * source, make sure the decompression pass is invoked
983 * by dirtying the framebuffer.
984 */
985 if (sctx->framebuffer.state.zsbuf &&
986 sctx->framebuffer.state.zsbuf->u.tex.level == level &&
987 sctx->framebuffer.state.zsbuf->texture == tex)
988 si_update_fb_dirtiness_after_rendering(sctx);
989
990 si_decompress_depth(sctx, rtex, planes,
991 level, level,
992 first_layer, last_layer);
993 } else if (rtex->fmask.size || rtex->cmask.size || rtex->dcc_offset) {
994 /* If we've rendered into the framebuffer and it's a blitting
995 * source, make sure the decompression pass is invoked
996 * by dirtying the framebuffer.
997 */
998 for (unsigned i = 0; i < sctx->framebuffer.state.nr_cbufs; i++) {
999 if (sctx->framebuffer.state.cbufs[i] &&
1000 sctx->framebuffer.state.cbufs[i]->u.tex.level == level &&
1001 sctx->framebuffer.state.cbufs[i]->texture == tex) {
1002 si_update_fb_dirtiness_after_rendering(sctx);
1003 break;
1004 }
1005 }
1006
1007 si_blit_decompress_color(ctx, rtex, level, level,
1008 first_layer, last_layer, false);
1009 }
1010 }
1011
1012 struct texture_orig_info {
1013 unsigned format;
1014 unsigned width0;
1015 unsigned height0;
1016 unsigned npix_x;
1017 unsigned npix_y;
1018 unsigned npix0_x;
1019 unsigned npix0_y;
1020 };
1021
1022 void si_resource_copy_region(struct pipe_context *ctx,
1023 struct pipe_resource *dst,
1024 unsigned dst_level,
1025 unsigned dstx, unsigned dsty, unsigned dstz,
1026 struct pipe_resource *src,
1027 unsigned src_level,
1028 const struct pipe_box *src_box)
1029 {
1030 struct si_context *sctx = (struct si_context *)ctx;
1031 struct r600_texture *rsrc = (struct r600_texture*)src;
1032 struct pipe_surface *dst_view, dst_templ;
1033 struct pipe_sampler_view src_templ, *src_view;
1034 unsigned dst_width, dst_height, src_width0, src_height0;
1035 unsigned dst_width0, dst_height0, src_force_level = 0;
1036 struct pipe_box sbox, dstbox;
1037
1038 /* Handle buffers first. */
1039 if (dst->target == PIPE_BUFFER && src->target == PIPE_BUFFER) {
1040 si_copy_buffer(sctx, dst, src, dstx, src_box->x, src_box->width, 0);
1041 return;
1042 }
1043
1044 assert(u_max_sample(dst) == u_max_sample(src));
1045
1046 /* The driver doesn't decompress resources automatically while
1047 * u_blitter is rendering. */
1048 si_decompress_subresource(ctx, src, PIPE_MASK_RGBAZS, src_level,
1049 src_box->z, src_box->z + src_box->depth - 1);
1050
1051 dst_width = u_minify(dst->width0, dst_level);
1052 dst_height = u_minify(dst->height0, dst_level);
1053 dst_width0 = dst->width0;
1054 dst_height0 = dst->height0;
1055 src_width0 = src->width0;
1056 src_height0 = src->height0;
1057
1058 util_blitter_default_dst_texture(&dst_templ, dst, dst_level, dstz);
1059 util_blitter_default_src_texture(sctx->blitter, &src_templ, src, src_level);
1060
1061 if (util_format_is_compressed(src->format) ||
1062 util_format_is_compressed(dst->format)) {
1063 unsigned blocksize = rsrc->surface.bpe;
1064
1065 if (blocksize == 8)
1066 src_templ.format = PIPE_FORMAT_R16G16B16A16_UINT; /* 64-bit block */
1067 else
1068 src_templ.format = PIPE_FORMAT_R32G32B32A32_UINT; /* 128-bit block */
1069 dst_templ.format = src_templ.format;
1070
1071 dst_width = util_format_get_nblocksx(dst->format, dst_width);
1072 dst_height = util_format_get_nblocksy(dst->format, dst_height);
1073 dst_width0 = util_format_get_nblocksx(dst->format, dst_width0);
1074 dst_height0 = util_format_get_nblocksy(dst->format, dst_height0);
1075 src_width0 = util_format_get_nblocksx(src->format, src_width0);
1076 src_height0 = util_format_get_nblocksy(src->format, src_height0);
1077
1078 dstx = util_format_get_nblocksx(dst->format, dstx);
1079 dsty = util_format_get_nblocksy(dst->format, dsty);
1080
1081 sbox.x = util_format_get_nblocksx(src->format, src_box->x);
1082 sbox.y = util_format_get_nblocksy(src->format, src_box->y);
1083 sbox.z = src_box->z;
1084 sbox.width = util_format_get_nblocksx(src->format, src_box->width);
1085 sbox.height = util_format_get_nblocksy(src->format, src_box->height);
1086 sbox.depth = src_box->depth;
1087 src_box = &sbox;
1088
1089 src_force_level = src_level;
1090 } else if (!util_blitter_is_copy_supported(sctx->blitter, dst, src)) {
1091 if (util_format_is_subsampled_422(src->format)) {
1092 src_templ.format = PIPE_FORMAT_R8G8B8A8_UINT;
1093 dst_templ.format = PIPE_FORMAT_R8G8B8A8_UINT;
1094
1095 dst_width = util_format_get_nblocksx(dst->format, dst_width);
1096 dst_width0 = util_format_get_nblocksx(dst->format, dst_width0);
1097 src_width0 = util_format_get_nblocksx(src->format, src_width0);
1098
1099 dstx = util_format_get_nblocksx(dst->format, dstx);
1100
1101 sbox = *src_box;
1102 sbox.x = util_format_get_nblocksx(src->format, src_box->x);
1103 sbox.width = util_format_get_nblocksx(src->format, src_box->width);
1104 src_box = &sbox;
1105 } else {
1106 unsigned blocksize = rsrc->surface.bpe;
1107
1108 switch (blocksize) {
1109 case 1:
1110 dst_templ.format = PIPE_FORMAT_R8_UNORM;
1111 src_templ.format = PIPE_FORMAT_R8_UNORM;
1112 break;
1113 case 2:
1114 dst_templ.format = PIPE_FORMAT_R8G8_UNORM;
1115 src_templ.format = PIPE_FORMAT_R8G8_UNORM;
1116 break;
1117 case 4:
1118 dst_templ.format = PIPE_FORMAT_R8G8B8A8_UNORM;
1119 src_templ.format = PIPE_FORMAT_R8G8B8A8_UNORM;
1120 break;
1121 case 8:
1122 dst_templ.format = PIPE_FORMAT_R16G16B16A16_UINT;
1123 src_templ.format = PIPE_FORMAT_R16G16B16A16_UINT;
1124 break;
1125 case 16:
1126 dst_templ.format = PIPE_FORMAT_R32G32B32A32_UINT;
1127 src_templ.format = PIPE_FORMAT_R32G32B32A32_UINT;
1128 break;
1129 default:
1130 fprintf(stderr, "Unhandled format %s with blocksize %u\n",
1131 util_format_short_name(src->format), blocksize);
1132 assert(0);
1133 }
1134 }
1135 }
1136
1137 /* SNORM8 blitting has precision issues on some chips. Use the SINT
1138 * equivalent instead, which doesn't force DCC decompression.
1139 * Note that some chips avoid this issue by using SDMA.
1140 */
1141 if (util_format_is_snorm8(dst_templ.format)) {
1142 switch (dst_templ.format) {
1143 case PIPE_FORMAT_R8_SNORM:
1144 dst_templ.format = src_templ.format = PIPE_FORMAT_R8_SINT;
1145 break;
1146 case PIPE_FORMAT_R8G8_SNORM:
1147 dst_templ.format = src_templ.format = PIPE_FORMAT_R8G8_SINT;
1148 break;
1149 case PIPE_FORMAT_R8G8B8X8_SNORM:
1150 dst_templ.format = src_templ.format = PIPE_FORMAT_R8G8B8X8_SINT;
1151 break;
1152 case PIPE_FORMAT_R8G8B8A8_SNORM:
1153 /* There are no SINT variants for ABGR and XBGR, so we have to use RGBA. */
1154 case PIPE_FORMAT_A8B8G8R8_SNORM:
1155 case PIPE_FORMAT_X8B8G8R8_SNORM:
1156 dst_templ.format = src_templ.format = PIPE_FORMAT_R8G8B8A8_SINT;
1157 break;
1158 case PIPE_FORMAT_A8_SNORM:
1159 dst_templ.format = src_templ.format = PIPE_FORMAT_A8_SINT;
1160 break;
1161 case PIPE_FORMAT_L8_SNORM:
1162 dst_templ.format = src_templ.format = PIPE_FORMAT_L8_SINT;
1163 break;
1164 case PIPE_FORMAT_L8A8_SNORM:
1165 dst_templ.format = src_templ.format = PIPE_FORMAT_L8A8_SINT;
1166 break;
1167 case PIPE_FORMAT_I8_SNORM:
1168 dst_templ.format = src_templ.format = PIPE_FORMAT_I8_SINT;
1169 break;
1170 default:; /* fall through */
1171 }
1172 }
1173
1174 vi_disable_dcc_if_incompatible_format(&sctx->b, dst, dst_level,
1175 dst_templ.format);
1176 vi_disable_dcc_if_incompatible_format(&sctx->b, src, src_level,
1177 src_templ.format);
1178
1179 /* Initialize the surface. */
1180 dst_view = si_create_surface_custom(ctx, dst, &dst_templ,
1181 dst_width0, dst_height0,
1182 dst_width, dst_height);
1183
1184 /* Initialize the sampler view. */
1185 src_view = si_create_sampler_view_custom(ctx, src, &src_templ,
1186 src_width0, src_height0,
1187 src_force_level);
1188
1189 u_box_3d(dstx, dsty, dstz, abs(src_box->width), abs(src_box->height),
1190 abs(src_box->depth), &dstbox);
1191
1192 /* Copy. */
1193 si_blitter_begin(ctx, SI_COPY);
1194 util_blitter_blit_generic(sctx->blitter, dst_view, &dstbox,
1195 src_view, src_box, src_width0, src_height0,
1196 PIPE_MASK_RGBAZS, PIPE_TEX_FILTER_NEAREST, NULL,
1197 false);
1198 si_blitter_end(ctx);
1199
1200 pipe_surface_reference(&dst_view, NULL);
1201 pipe_sampler_view_reference(&src_view, NULL);
1202 }
1203
1204 static void si_do_CB_resolve(struct si_context *sctx,
1205 const struct pipe_blit_info *info,
1206 struct pipe_resource *dst,
1207 unsigned dst_level, unsigned dst_z,
1208 enum pipe_format format)
1209 {
1210 /* Required before and after CB_RESOLVE. */
1211 sctx->b.flags |= SI_CONTEXT_FLUSH_AND_INV_CB;
1212
1213 si_blitter_begin(&sctx->b.b, SI_COLOR_RESOLVE |
1214 (info->render_condition_enable ? 0 : SI_DISABLE_RENDER_COND));
1215 util_blitter_custom_resolve_color(sctx->blitter, dst, dst_level, dst_z,
1216 info->src.resource, info->src.box.z,
1217 ~0, sctx->custom_blend_resolve,
1218 format);
1219 si_blitter_end(&sctx->b.b);
1220
1221 /* Flush caches for possible texturing. */
1222 si_make_CB_shader_coherent(sctx, 1, false);
1223 }
1224
1225 static bool do_hardware_msaa_resolve(struct pipe_context *ctx,
1226 const struct pipe_blit_info *info)
1227 {
1228 struct si_context *sctx = (struct si_context*)ctx;
1229 struct r600_texture *src = (struct r600_texture*)info->src.resource;
1230 struct r600_texture *dst = (struct r600_texture*)info->dst.resource;
1231 MAYBE_UNUSED struct r600_texture *rtmp;
1232 unsigned dst_width = u_minify(info->dst.resource->width0, info->dst.level);
1233 unsigned dst_height = u_minify(info->dst.resource->height0, info->dst.level);
1234 enum pipe_format format = info->src.format;
1235 struct pipe_resource *tmp, templ;
1236 struct pipe_blit_info blit;
1237
1238 /* Check basic requirements for hw resolve. */
1239 if (!(info->src.resource->nr_samples > 1 &&
1240 info->dst.resource->nr_samples <= 1 &&
1241 !util_format_is_pure_integer(format) &&
1242 !util_format_is_depth_or_stencil(format) &&
1243 util_max_layer(info->src.resource, 0) == 0))
1244 return false;
1245
1246 /* Hardware MSAA resolve doesn't work if SPI format = NORM16_ABGR and
1247 * the format is R16G16. Use R16A16, which does work.
1248 */
1249 if (format == PIPE_FORMAT_R16G16_UNORM)
1250 format = PIPE_FORMAT_R16A16_UNORM;
1251 if (format == PIPE_FORMAT_R16G16_SNORM)
1252 format = PIPE_FORMAT_R16A16_SNORM;
1253
1254 /* Check the remaining requirements for hw resolve. */
1255 if (util_max_layer(info->dst.resource, info->dst.level) == 0 &&
1256 !info->scissor_enable &&
1257 (info->mask & PIPE_MASK_RGBA) == PIPE_MASK_RGBA &&
1258 util_is_format_compatible(util_format_description(info->src.format),
1259 util_format_description(info->dst.format)) &&
1260 dst_width == info->src.resource->width0 &&
1261 dst_height == info->src.resource->height0 &&
1262 info->dst.box.x == 0 &&
1263 info->dst.box.y == 0 &&
1264 info->dst.box.width == dst_width &&
1265 info->dst.box.height == dst_height &&
1266 info->dst.box.depth == 1 &&
1267 info->src.box.x == 0 &&
1268 info->src.box.y == 0 &&
1269 info->src.box.width == dst_width &&
1270 info->src.box.height == dst_height &&
1271 info->src.box.depth == 1 &&
1272 !dst->surface.is_linear &&
1273 (!dst->cmask.size || !dst->dirty_level_mask)) { /* dst cannot be fast-cleared */
1274 /* Check the last constraint. */
1275 if (src->surface.micro_tile_mode != dst->surface.micro_tile_mode) {
1276 /* The next fast clear will switch to this mode to
1277 * get direct hw resolve next time if the mode is
1278 * different now.
1279 */
1280 src->last_msaa_resolve_target_micro_mode =
1281 dst->surface.micro_tile_mode;
1282 goto resolve_to_temp;
1283 }
1284
1285 /* Resolving into a surface with DCC is unsupported. Since
1286 * it's being overwritten anyway, clear it to uncompressed.
1287 * This is still the fastest codepath even with this clear.
1288 */
1289 if (vi_dcc_enabled(dst, info->dst.level)) {
1290 /* TODO: Implement per-level DCC clears for GFX9. */
1291 if (sctx->b.chip_class >= GFX9 &&
1292 info->dst.resource->last_level != 0)
1293 goto resolve_to_temp;
1294
1295 vi_dcc_clear_level(&sctx->b, dst, info->dst.level,
1296 0xFFFFFFFF);
1297 dst->dirty_level_mask &= ~(1 << info->dst.level);
1298 }
1299
1300 /* Resolve directly from src to dst. */
1301 si_do_CB_resolve(sctx, info, info->dst.resource,
1302 info->dst.level, info->dst.box.z, format);
1303 return true;
1304 }
1305
1306 resolve_to_temp:
1307 /* Shader-based resolve is VERY SLOW. Instead, resolve into
1308 * a temporary texture and blit.
1309 */
1310 memset(&templ, 0, sizeof(templ));
1311 templ.target = PIPE_TEXTURE_2D;
1312 templ.format = info->src.resource->format;
1313 templ.width0 = info->src.resource->width0;
1314 templ.height0 = info->src.resource->height0;
1315 templ.depth0 = 1;
1316 templ.array_size = 1;
1317 templ.usage = PIPE_USAGE_DEFAULT;
1318 templ.flags = R600_RESOURCE_FLAG_FORCE_TILING |
1319 R600_RESOURCE_FLAG_DISABLE_DCC;
1320
1321 /* The src and dst microtile modes must be the same. */
1322 if (src->surface.micro_tile_mode == RADEON_MICRO_MODE_DISPLAY)
1323 templ.bind = PIPE_BIND_SCANOUT;
1324 else
1325 templ.bind = 0;
1326
1327 tmp = ctx->screen->resource_create(ctx->screen, &templ);
1328 if (!tmp)
1329 return false;
1330 rtmp = (struct r600_texture*)tmp;
1331
1332 assert(!rtmp->surface.is_linear);
1333 assert(src->surface.micro_tile_mode == rtmp->surface.micro_tile_mode);
1334
1335 /* resolve */
1336 si_do_CB_resolve(sctx, info, tmp, 0, 0, format);
1337
1338 /* blit */
1339 blit = *info;
1340 blit.src.resource = tmp;
1341 blit.src.box.z = 0;
1342
1343 si_blitter_begin(ctx, SI_BLIT |
1344 (info->render_condition_enable ? 0 : SI_DISABLE_RENDER_COND));
1345 util_blitter_blit(sctx->blitter, &blit);
1346 si_blitter_end(ctx);
1347
1348 pipe_resource_reference(&tmp, NULL);
1349 return true;
1350 }
1351
1352 static void si_blit(struct pipe_context *ctx,
1353 const struct pipe_blit_info *info)
1354 {
1355 struct si_context *sctx = (struct si_context*)ctx;
1356 struct r600_texture *rdst = (struct r600_texture *)info->dst.resource;
1357
1358 if (do_hardware_msaa_resolve(ctx, info)) {
1359 return;
1360 }
1361
1362 /* Using SDMA for copying to a linear texture in GTT is much faster.
1363 * This improves DRI PRIME performance.
1364 *
1365 * resource_copy_region can't do this yet, because dma_copy calls it
1366 * on failure (recursion).
1367 */
1368 if (rdst->surface.is_linear &&
1369 sctx->b.dma_copy &&
1370 util_can_blit_via_copy_region(info, false)) {
1371 sctx->b.dma_copy(ctx, info->dst.resource, info->dst.level,
1372 info->dst.box.x, info->dst.box.y,
1373 info->dst.box.z,
1374 info->src.resource, info->src.level,
1375 &info->src.box);
1376 return;
1377 }
1378
1379 assert(util_blitter_is_blit_supported(sctx->blitter, info));
1380
1381 /* The driver doesn't decompress resources automatically while
1382 * u_blitter is rendering. */
1383 vi_disable_dcc_if_incompatible_format(&sctx->b, info->src.resource,
1384 info->src.level,
1385 info->src.format);
1386 vi_disable_dcc_if_incompatible_format(&sctx->b, info->dst.resource,
1387 info->dst.level,
1388 info->dst.format);
1389 si_decompress_subresource(ctx, info->src.resource, info->mask,
1390 info->src.level,
1391 info->src.box.z,
1392 info->src.box.z + info->src.box.depth - 1);
1393
1394 if (sctx->screen->b.debug_flags & DBG_FORCE_DMA &&
1395 util_try_blit_via_copy_region(ctx, info))
1396 return;
1397
1398 si_blitter_begin(ctx, SI_BLIT |
1399 (info->render_condition_enable ? 0 : SI_DISABLE_RENDER_COND));
1400 util_blitter_blit(sctx->blitter, info);
1401 si_blitter_end(ctx);
1402 }
1403
1404 static boolean si_generate_mipmap(struct pipe_context *ctx,
1405 struct pipe_resource *tex,
1406 enum pipe_format format,
1407 unsigned base_level, unsigned last_level,
1408 unsigned first_layer, unsigned last_layer)
1409 {
1410 struct si_context *sctx = (struct si_context*)ctx;
1411 struct r600_texture *rtex = (struct r600_texture *)tex;
1412
1413 if (!util_blitter_is_copy_supported(sctx->blitter, tex, tex))
1414 return false;
1415
1416 /* The driver doesn't decompress resources automatically while
1417 * u_blitter is rendering. */
1418 vi_disable_dcc_if_incompatible_format(&sctx->b, tex, base_level,
1419 format);
1420 si_decompress_subresource(ctx, tex, PIPE_MASK_RGBAZS,
1421 base_level, first_layer, last_layer);
1422
1423 /* Clear dirty_level_mask for the levels that will be overwritten. */
1424 assert(base_level < last_level);
1425 rtex->dirty_level_mask &= ~u_bit_consecutive(base_level + 1,
1426 last_level - base_level);
1427
1428 sctx->generate_mipmap_for_depth = rtex->is_depth;
1429
1430 si_blitter_begin(ctx, SI_BLIT | SI_DISABLE_RENDER_COND);
1431 util_blitter_generate_mipmap(sctx->blitter, tex, format,
1432 base_level, last_level,
1433 first_layer, last_layer);
1434 si_blitter_end(ctx);
1435
1436 sctx->generate_mipmap_for_depth = false;
1437 return true;
1438 }
1439
1440 static void si_flush_resource(struct pipe_context *ctx,
1441 struct pipe_resource *res)
1442 {
1443 struct r600_texture *rtex = (struct r600_texture*)res;
1444
1445 assert(res->target != PIPE_BUFFER);
1446 assert(!rtex->dcc_separate_buffer || rtex->dcc_gather_statistics);
1447
1448 /* st/dri calls flush twice per frame (not a bug), this prevents double
1449 * decompression. */
1450 if (rtex->dcc_separate_buffer && !rtex->separate_dcc_dirty)
1451 return;
1452
1453 if (!rtex->is_depth && (rtex->cmask.size || rtex->dcc_offset)) {
1454 si_blit_decompress_color(ctx, rtex, 0, res->last_level,
1455 0, util_max_layer(res, 0),
1456 rtex->dcc_separate_buffer != NULL);
1457 }
1458
1459 /* Always do the analysis even if DCC is disabled at the moment. */
1460 if (rtex->dcc_gather_statistics && rtex->separate_dcc_dirty) {
1461 rtex->separate_dcc_dirty = false;
1462 vi_separate_dcc_process_and_reset_stats(ctx, rtex);
1463 }
1464 }
1465
1466 static void si_decompress_dcc(struct pipe_context *ctx,
1467 struct r600_texture *rtex)
1468 {
1469 if (!rtex->dcc_offset)
1470 return;
1471
1472 si_blit_decompress_color(ctx, rtex, 0, rtex->resource.b.b.last_level,
1473 0, util_max_layer(&rtex->resource.b.b, 0),
1474 true);
1475 }
1476
1477 static void si_pipe_clear_buffer(struct pipe_context *ctx,
1478 struct pipe_resource *dst,
1479 unsigned offset, unsigned size,
1480 const void *clear_value_ptr,
1481 int clear_value_size)
1482 {
1483 struct si_context *sctx = (struct si_context*)ctx;
1484 uint32_t dword_value;
1485 unsigned i;
1486
1487 assert(offset % clear_value_size == 0);
1488 assert(size % clear_value_size == 0);
1489
1490 if (clear_value_size > 4) {
1491 const uint32_t *u32 = clear_value_ptr;
1492 bool clear_dword_duplicated = true;
1493
1494 /* See if we can lower large fills to dword fills. */
1495 for (i = 1; i < clear_value_size / 4; i++)
1496 if (u32[0] != u32[i]) {
1497 clear_dword_duplicated = false;
1498 break;
1499 }
1500
1501 if (!clear_dword_duplicated) {
1502 /* Use transform feedback for 64-bit, 96-bit, and
1503 * 128-bit fills.
1504 */
1505 union pipe_color_union clear_value;
1506
1507 memcpy(&clear_value, clear_value_ptr, clear_value_size);
1508 si_blitter_begin(ctx, SI_DISABLE_RENDER_COND);
1509 util_blitter_clear_buffer(sctx->blitter, dst, offset,
1510 size, clear_value_size / 4,
1511 &clear_value);
1512 si_blitter_end(ctx);
1513 return;
1514 }
1515 }
1516
1517 /* Expand the clear value to a dword. */
1518 switch (clear_value_size) {
1519 case 1:
1520 dword_value = *(uint8_t*)clear_value_ptr;
1521 dword_value |= (dword_value << 8) |
1522 (dword_value << 16) |
1523 (dword_value << 24);
1524 break;
1525 case 2:
1526 dword_value = *(uint16_t*)clear_value_ptr;
1527 dword_value |= dword_value << 16;
1528 break;
1529 default:
1530 dword_value = *(uint32_t*)clear_value_ptr;
1531 }
1532
1533 sctx->b.clear_buffer(ctx, dst, offset, size, dword_value,
1534 R600_COHERENCY_SHADER);
1535 }
1536
1537 void si_init_blit_functions(struct si_context *sctx)
1538 {
1539 sctx->b.b.clear = si_clear;
1540 sctx->b.b.clear_buffer = si_pipe_clear_buffer;
1541 sctx->b.b.clear_render_target = si_clear_render_target;
1542 sctx->b.b.clear_depth_stencil = si_clear_depth_stencil;
1543 sctx->b.b.resource_copy_region = si_resource_copy_region;
1544 sctx->b.b.blit = si_blit;
1545 sctx->b.b.flush_resource = si_flush_resource;
1546 sctx->b.b.generate_mipmap = si_generate_mipmap;
1547 sctx->b.blit_decompress_depth = si_blit_decompress_depth;
1548 sctx->b.decompress_dcc = si_decompress_dcc;
1549 }