b9118699dc0e32a5add300fdd1a08f9b2ba2aec8
[mesa.git] / src / gallium / drivers / freedreno / a6xx / fd6_blitter.c
1 /*
2 * Copyright (C) 2017 Rob Clark <robclark@freedesktop.org>
3 * Copyright © 2018 Google, Inc.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 *
24 * Authors:
25 * Rob Clark <robclark@freedesktop.org>
26 */
27
28 #include "util/u_dump.h"
29
30 #include "freedreno_blitter.h"
31 #include "freedreno_fence.h"
32 #include "freedreno_resource.h"
33
34 #include "fd6_blitter.h"
35 #include "fd6_format.h"
36 #include "fd6_emit.h"
37
38 /* Make sure none of the requested dimensions extend beyond the size of the
39 * resource. Not entirely sure why this happens, but sometimes it does, and
40 * w/ 2d blt doesn't have wrap modes like a sampler, so force those cases
41 * back to u_blitter
42 */
43 static bool
44 ok_dims(const struct pipe_resource *r, const struct pipe_box *b, int lvl)
45 {
46 int last_layer =
47 r->target == PIPE_TEXTURE_3D ? u_minify(r->depth0, lvl)
48 : r->array_size;
49
50 return (b->x >= 0) && (b->x + b->width <= u_minify(r->width0, lvl)) &&
51 (b->y >= 0) && (b->y + b->height <= u_minify(r->height0, lvl)) &&
52 (b->z >= 0) && (b->z + b->depth <= last_layer);
53 }
54
55 static bool
56 ok_format(enum pipe_format pfmt)
57 {
58 enum a6xx_color_fmt fmt = fd6_pipe2color(pfmt);
59
60 switch (pfmt) {
61 case PIPE_FORMAT_Z24_UNORM_S8_UINT:
62 case PIPE_FORMAT_Z24X8_UNORM:
63 case PIPE_FORMAT_Z16_UNORM:
64 case PIPE_FORMAT_Z32_UNORM:
65 case PIPE_FORMAT_Z32_FLOAT:
66 case PIPE_FORMAT_Z32_FLOAT_S8X24_UINT:
67 case PIPE_FORMAT_S8_UINT:
68 return true;
69 default:
70 break;
71 }
72
73 if (fmt == ~0)
74 return false;
75
76 if (fd6_ifmt(fmt) == 0)
77 return false;
78
79 return true;
80 }
81
82 #define DEBUG_BLIT_FALLBACK 0
83 #define fail_if(cond) \
84 do { \
85 if (cond) { \
86 if (DEBUG_BLIT_FALLBACK) { \
87 fprintf(stderr, "falling back: %s for blit:\n", #cond); \
88 util_dump_blit_info(stderr, info); \
89 fprintf(stderr, "\nsrc: "); \
90 util_dump_resource(stderr, info->src.resource); \
91 fprintf(stderr, "\ndst: "); \
92 util_dump_resource(stderr, info->dst.resource); \
93 fprintf(stderr, "\n"); \
94 } \
95 return false; \
96 } \
97 } while (0)
98
99 static bool
100 can_do_blit(const struct pipe_blit_info *info)
101 {
102 /* I think we can do scaling, but not in z dimension since that would
103 * require blending..
104 */
105 fail_if(info->dst.box.depth != info->src.box.depth);
106
107 /* Fail if unsupported format: */
108 fail_if(!ok_format(info->src.format));
109 fail_if(!ok_format(info->dst.format));
110
111 /* We can blit if both or neither formats are compressed formats... */
112 fail_if(util_format_is_compressed(info->src.format) !=
113 util_format_is_compressed(info->src.format));
114
115 /* ... but only if they're the same compression format. */
116 fail_if(util_format_is_compressed(info->src.format) &&
117 info->src.format != info->dst.format);
118
119 fail_if(!ok_dims(info->src.resource, &info->src.box, info->src.level));
120
121 fail_if(!ok_dims(info->dst.resource, &info->dst.box, info->dst.level));
122
123 debug_assert(info->dst.box.width >= 0);
124 debug_assert(info->dst.box.height >= 0);
125 debug_assert(info->dst.box.depth >= 0);
126
127 /* We could probably blit between resources with equal sample count.. */
128 fail_if(info->dst.resource->nr_samples > 1);
129
130 /* CP_BLIT supports resolving, but seems to pick one only of the samples
131 * (no blending). This doesn't work for RGBA resolves, so we fall back in
132 * that case. However, GL/GLES spec says:
133 *
134 * "If the source formats are integer types or stencil values, a single
135 * sample’s value is selected for each pixel. If the source formats are
136 * floating-point or normalized types, the sample values for each pixel
137 * are resolved in an implementationdependent manner. If the source
138 * formats are depth values, sample values are resolved in an
139 * implementation-dependent manner where the result will be between the
140 * minimum and maximum depth values in the pixel."
141 *
142 * so do those with CP_BLIT.
143 */
144 fail_if((info->mask & PIPE_MASK_RGBA) &&
145 info->src.resource->nr_samples > 1);
146
147 fail_if(info->window_rectangle_include);
148
149 fail_if(util_format_is_srgb(info->src.format));
150 fail_if(util_format_is_srgb(info->dst.format));
151
152 const struct util_format_description *src_desc =
153 util_format_description(info->src.format);
154 const struct util_format_description *dst_desc =
155 util_format_description(info->dst.format);
156 const int common_channels = MIN2(src_desc->nr_channels, dst_desc->nr_channels);
157
158 if (info->mask & PIPE_MASK_RGBA) {
159 for (int i = 0; i < common_channels; i++) {
160 fail_if(memcmp(&src_desc->channel[i],
161 &dst_desc->channel[i],
162 sizeof(src_desc->channel[0])));
163 }
164 }
165
166 fail_if(info->alpha_blend);
167
168 return true;
169 }
170
171 static void
172 emit_setup(struct fd_ringbuffer *ring)
173 {
174 OUT_PKT7(ring, CP_EVENT_WRITE, 1);
175 OUT_RING(ring, PC_CCU_INVALIDATE_COLOR);
176
177 OUT_PKT7(ring, CP_EVENT_WRITE, 1);
178 OUT_RING(ring, LRZ_FLUSH);
179
180 OUT_PKT7(ring, CP_SKIP_IB2_ENABLE_GLOBAL, 1);
181 OUT_RING(ring, 0x0);
182
183 OUT_WFI5(ring);
184
185 OUT_PKT4(ring, REG_A6XX_RB_CCU_CNTL, 1);
186 OUT_RING(ring, 0x10000000);
187 }
188
189 static uint32_t
190 blit_control(enum a6xx_color_fmt fmt)
191 {
192 unsigned blit_cntl = 0xf00000;
193 blit_cntl |= A6XX_RB_2D_BLIT_CNTL_COLOR_FORMAT(fmt);
194 blit_cntl |= A6XX_RB_2D_BLIT_CNTL_IFMT(fd6_ifmt(fmt));
195 return blit_cntl;
196 }
197
198 /* buffers need to be handled specially since x/width can exceed the bounds
199 * supported by hw.. if necessary decompose into (potentially) two 2D blits
200 */
201 static void
202 emit_blit_buffer(struct fd_ringbuffer *ring, const struct pipe_blit_info *info)
203 {
204 const struct pipe_box *sbox = &info->src.box;
205 const struct pipe_box *dbox = &info->dst.box;
206 struct fd_resource *src, *dst;
207 unsigned sshift, dshift;
208
209 if (DEBUG_BLIT_FALLBACK) {
210 fprintf(stderr, "buffer blit: ");
211 util_dump_blit_info(stderr, info);
212 fprintf(stderr, "\ndst resource: ");
213 util_dump_resource(stderr, info->dst.resource);
214 fprintf(stderr, "\nsrc resource: ");
215 util_dump_resource(stderr, info->src.resource);
216 fprintf(stderr, "\n");
217 }
218
219 src = fd_resource(info->src.resource);
220 dst = fd_resource(info->dst.resource);
221
222 debug_assert(src->cpp == 1);
223 debug_assert(dst->cpp == 1);
224 debug_assert(info->src.resource->format == info->dst.resource->format);
225 debug_assert((sbox->y == 0) && (sbox->height == 1));
226 debug_assert((dbox->y == 0) && (dbox->height == 1));
227 debug_assert((sbox->z == 0) && (sbox->depth == 1));
228 debug_assert((dbox->z == 0) && (dbox->depth == 1));
229 debug_assert(sbox->width == dbox->width);
230 debug_assert(info->src.level == 0);
231 debug_assert(info->dst.level == 0);
232
233 /*
234 * Buffers can have dimensions bigger than max width, remap into
235 * multiple 1d blits to fit within max dimension
236 *
237 * Note that blob uses .ARRAY_PITCH=128 for blitting buffers, which
238 * seems to prevent overfetch related faults. Not quite sure what
239 * the deal is there.
240 *
241 * Low 6 bits of SRC/DST addresses need to be zero (ie. address
242 * aligned to 64) so we need to shift src/dst x1/x2 to make up the
243 * difference. On top of already splitting up the blit so width
244 * isn't > 16k.
245 *
246 * We perhaps could do a bit better, if src and dst are aligned but
247 * in the worst case this means we have to split the copy up into
248 * 16k (0x4000) minus 64 (0x40).
249 */
250
251 sshift = sbox->x & 0x3f;
252 dshift = dbox->x & 0x3f;
253
254 OUT_PKT7(ring, CP_SET_MARKER, 1);
255 OUT_RING(ring, A2XX_CP_SET_MARKER_0_MODE(RM6_BLIT2DSCALE));
256
257 uint32_t blit_cntl = blit_control(RB6_R8_UNORM) | 0x20000000;
258 OUT_PKT4(ring, REG_A6XX_RB_2D_BLIT_CNTL, 1);
259 OUT_RING(ring, blit_cntl);
260
261 OUT_PKT4(ring, REG_A6XX_GRAS_2D_BLIT_CNTL, 1);
262 OUT_RING(ring, blit_cntl);
263
264 for (unsigned off = 0; off < sbox->width; off += (0x4000 - 0x40)) {
265 unsigned soff, doff, w, p;
266
267 soff = (sbox->x + off) & ~0x3f;
268 doff = (dbox->x + off) & ~0x3f;
269
270 w = MIN2(sbox->width - off, (0x4000 - 0x40));
271 p = align(w, 64);
272
273 debug_assert((soff + w) <= fd_bo_size(src->bo));
274 debug_assert((doff + w) <= fd_bo_size(dst->bo));
275
276 /*
277 * Emit source:
278 */
279 OUT_PKT4(ring, REG_A6XX_SP_PS_2D_SRC_INFO, 13);
280 OUT_RING(ring, A6XX_SP_PS_2D_SRC_INFO_COLOR_FORMAT(RB6_R8_UNORM) |
281 A6XX_SP_PS_2D_SRC_INFO_TILE_MODE(TILE6_LINEAR) |
282 A6XX_SP_PS_2D_SRC_INFO_COLOR_SWAP(WZYX) | 0x500000);
283 OUT_RING(ring, A6XX_SP_PS_2D_SRC_SIZE_WIDTH(sshift + w) |
284 A6XX_SP_PS_2D_SRC_SIZE_HEIGHT(1)); /* SP_PS_2D_SRC_SIZE */
285 OUT_RELOC(ring, src->bo, soff, 0, 0); /* SP_PS_2D_SRC_LO/HI */
286 OUT_RING(ring, A6XX_SP_PS_2D_SRC_PITCH_PITCH(p));
287
288 OUT_RING(ring, 0x00000000);
289 OUT_RING(ring, 0x00000000);
290 OUT_RING(ring, 0x00000000);
291 OUT_RING(ring, 0x00000000);
292 OUT_RING(ring, 0x00000000);
293
294 OUT_RING(ring, 0x00000000);
295 OUT_RING(ring, 0x00000000);
296 OUT_RING(ring, 0x00000000);
297
298 /*
299 * Emit destination:
300 */
301 OUT_PKT4(ring, REG_A6XX_RB_2D_DST_INFO, 9);
302 OUT_RING(ring, A6XX_RB_2D_DST_INFO_COLOR_FORMAT(RB6_R8_UNORM) |
303 A6XX_RB_2D_DST_INFO_TILE_MODE(TILE6_LINEAR) |
304 A6XX_RB_2D_DST_INFO_COLOR_SWAP(WZYX));
305 OUT_RELOC(ring, dst->bo, doff, 0, 0); /* RB_2D_DST_LO/HI */
306 OUT_RING(ring, A6XX_RB_2D_DST_SIZE_PITCH(p));
307 OUT_RING(ring, 0x00000000);
308 OUT_RING(ring, 0x00000000);
309 OUT_RING(ring, 0x00000000);
310 OUT_RING(ring, 0x00000000);
311 OUT_RING(ring, 0x00000000);
312
313 /*
314 * Blit command:
315 */
316 OUT_PKT4(ring, REG_A6XX_GRAS_2D_SRC_TL_X, 4);
317 OUT_RING(ring, A6XX_GRAS_2D_SRC_TL_X_X(sshift));
318 OUT_RING(ring, A6XX_GRAS_2D_SRC_BR_X_X(sshift + w - 1));
319 OUT_RING(ring, A6XX_GRAS_2D_SRC_TL_Y_Y(0));
320 OUT_RING(ring, A6XX_GRAS_2D_SRC_BR_Y_Y(0));
321
322 OUT_PKT4(ring, REG_A6XX_GRAS_2D_DST_TL, 2);
323 OUT_RING(ring, A6XX_GRAS_2D_DST_TL_X(dshift) | A6XX_GRAS_2D_DST_TL_Y(0));
324 OUT_RING(ring, A6XX_GRAS_2D_DST_BR_X(dshift + w - 1) | A6XX_GRAS_2D_DST_BR_Y(0));
325
326 OUT_PKT7(ring, CP_EVENT_WRITE, 1);
327 OUT_RING(ring, 0x3f);
328 OUT_WFI5(ring);
329
330 OUT_PKT4(ring, REG_A6XX_RB_UNKNOWN_8C01, 1);
331 OUT_RING(ring, 0);
332
333 OUT_PKT4(ring, REG_A6XX_SP_2D_SRC_FORMAT, 1);
334 OUT_RING(ring, 0xf180);
335
336 OUT_PKT4(ring, REG_A6XX_RB_UNKNOWN_8E04, 1);
337 OUT_RING(ring, 0x01000000);
338
339 OUT_PKT7(ring, CP_BLIT, 1);
340 OUT_RING(ring, CP_BLIT_0_OP(BLIT_OP_SCALE));
341
342 OUT_WFI5(ring);
343
344 OUT_PKT4(ring, REG_A6XX_RB_UNKNOWN_8E04, 1);
345 OUT_RING(ring, 0);
346 }
347 }
348
349 static void
350 emit_blit_texture(struct fd_ringbuffer *ring, const struct pipe_blit_info *info)
351 {
352 const struct pipe_box *sbox = &info->src.box;
353 const struct pipe_box *dbox = &info->dst.box;
354 struct fd_resource *src, *dst;
355 struct fd_resource_slice *sslice, *dslice;
356 enum a6xx_color_fmt sfmt, dfmt;
357 enum a6xx_tile_mode stile, dtile;
358 enum a3xx_color_swap sswap, dswap;
359 unsigned spitch, dpitch;
360 int sx1, sy1, sx2, sy2;
361 int dx1, dy1, dx2, dy2;
362
363 if (DEBUG_BLIT_FALLBACK) {
364 fprintf(stderr, "texture blit: ");
365 util_dump_blit_info(stderr, info);
366 fprintf(stderr, "\ndst resource: ");
367 util_dump_resource(stderr, info->dst.resource);
368 fprintf(stderr, "\nsrc resource: ");
369 util_dump_resource(stderr, info->src.resource);
370 fprintf(stderr, "\n");
371 }
372
373 src = fd_resource(info->src.resource);
374 dst = fd_resource(info->dst.resource);
375
376 sslice = fd_resource_slice(src, info->src.level);
377 dslice = fd_resource_slice(dst, info->dst.level);
378
379 sfmt = fd6_pipe2color(info->src.format);
380 dfmt = fd6_pipe2color(info->dst.format);
381
382 int blocksize = util_format_get_blocksize(info->src.format);
383 int blockwidth = util_format_get_blockwidth(info->src.format);
384 int blockheight = util_format_get_blockheight(info->src.format);
385 int nelements;
386
387 stile = fd_resource_level_linear(info->src.resource, info->src.level) ?
388 TILE6_LINEAR : src->tile_mode;
389 dtile = fd_resource_level_linear(info->dst.resource, info->dst.level) ?
390 TILE6_LINEAR : dst->tile_mode;
391
392 sswap = stile ? WZYX : fd6_pipe2swap(info->src.format);
393 dswap = dtile ? WZYX : fd6_pipe2swap(info->dst.format);
394
395 if (util_format_is_compressed(info->src.format)) {
396 debug_assert(info->src.format == info->dst.format);
397 sfmt = dfmt = RB6_R8_UNORM;
398 nelements = blocksize;
399 } else {
400 debug_assert(!util_format_is_compressed(info->dst.format));
401 nelements = 1;
402 }
403
404 spitch = DIV_ROUND_UP(sslice->pitch, blockwidth) * src->cpp;
405 dpitch = DIV_ROUND_UP(dslice->pitch, blockwidth) * dst->cpp;
406
407 sx1 = sbox->x / blockwidth * nelements;
408 sy1 = sbox->y / blockheight;
409 sx2 = DIV_ROUND_UP(sbox->x + sbox->width, blockwidth) * nelements - 1;
410 sy2 = DIV_ROUND_UP(sbox->y + sbox->height, blockheight) - 1;
411
412 dx1 = dbox->x / blockwidth * nelements;
413 dy1 = dbox->y / blockheight;
414 dx2 = DIV_ROUND_UP(dbox->x + dbox->width, blockwidth) * nelements - 1;
415 dy2 = DIV_ROUND_UP(dbox->y + dbox->height, blockheight) - 1;
416
417 uint32_t width = DIV_ROUND_UP(u_minify(src->base.width0, info->src.level), blockwidth) * nelements;
418 uint32_t height = DIV_ROUND_UP(u_minify(src->base.height0, info->src.level), blockheight);
419
420 OUT_PKT7(ring, CP_SET_MARKER, 1);
421 OUT_RING(ring, A2XX_CP_SET_MARKER_0_MODE(RM6_BLIT2DSCALE));
422
423 uint32_t blit_cntl = blit_control(dfmt);
424
425 if (dtile != stile)
426 blit_cntl |= 0x20000000;
427
428 if (info->scissor_enable) {
429 OUT_PKT4(ring, REG_A6XX_GRAS_RESOLVE_CNTL_1, 2);
430 OUT_RING(ring, A6XX_GRAS_RESOLVE_CNTL_1_X(info->scissor.minx) |
431 A6XX_GRAS_RESOLVE_CNTL_1_Y(info->scissor.miny));
432 OUT_RING(ring, A6XX_GRAS_RESOLVE_CNTL_1_X(info->scissor.maxx - 1) |
433 A6XX_GRAS_RESOLVE_CNTL_1_Y(info->scissor.maxy - 1));
434 blit_cntl |= A6XX_RB_2D_BLIT_CNTL_SCISSOR;
435 }
436
437 OUT_PKT4(ring, REG_A6XX_RB_2D_BLIT_CNTL, 1);
438 OUT_RING(ring, blit_cntl);
439
440 OUT_PKT4(ring, REG_A6XX_GRAS_2D_BLIT_CNTL, 1);
441 OUT_RING(ring, blit_cntl);
442
443 for (unsigned i = 0; i < info->dst.box.depth; i++) {
444 unsigned soff = fd_resource_offset(src, info->src.level, sbox->z + i);
445 unsigned doff = fd_resource_offset(dst, info->dst.level, dbox->z + i);
446
447 /*
448 * Emit source:
449 */
450 uint32_t filter = 0;
451 if (info->filter == PIPE_TEX_FILTER_LINEAR)
452 filter = A6XX_SP_PS_2D_SRC_INFO_FILTER;
453
454 enum a3xx_msaa_samples samples = fd_msaa_samples(src->base.nr_samples);
455
456 OUT_PKT4(ring, REG_A6XX_SP_PS_2D_SRC_INFO, 13);
457 OUT_RING(ring, A6XX_SP_PS_2D_SRC_INFO_COLOR_FORMAT(sfmt) |
458 A6XX_SP_PS_2D_SRC_INFO_TILE_MODE(stile) |
459 A6XX_SP_PS_2D_SRC_INFO_COLOR_SWAP(sswap) |
460 A6XX_SP_PS_2D_SRC_INFO_SAMPLES(samples) |
461 0x500000 | filter);
462 OUT_RING(ring, A6XX_SP_PS_2D_SRC_SIZE_WIDTH(width) |
463 A6XX_SP_PS_2D_SRC_SIZE_HEIGHT(height)); /* SP_PS_2D_SRC_SIZE */
464 OUT_RELOC(ring, src->bo, soff, 0, 0); /* SP_PS_2D_SRC_LO/HI */
465 OUT_RING(ring, A6XX_SP_PS_2D_SRC_PITCH_PITCH(spitch));
466 OUT_RING(ring, 0x00000000);
467 OUT_RING(ring, 0x00000000);
468 OUT_RING(ring, 0x00000000);
469 OUT_RING(ring, 0x00000000);
470 OUT_RING(ring, 0x00000000);
471
472 OUT_RING(ring, 0x00000000);
473 OUT_RING(ring, 0x00000000);
474 OUT_RING(ring, 0x00000000);
475
476 /*
477 * Emit destination:
478 */
479 OUT_PKT4(ring, REG_A6XX_RB_2D_DST_INFO, 9);
480 OUT_RING(ring, A6XX_RB_2D_DST_INFO_COLOR_FORMAT(dfmt) |
481 A6XX_RB_2D_DST_INFO_TILE_MODE(dtile) |
482 A6XX_RB_2D_DST_INFO_COLOR_SWAP(dswap));
483 OUT_RELOCW(ring, dst->bo, doff, 0, 0); /* RB_2D_DST_LO/HI */
484 OUT_RING(ring, A6XX_RB_2D_DST_SIZE_PITCH(dpitch));
485 OUT_RING(ring, 0x00000000);
486 OUT_RING(ring, 0x00000000);
487 OUT_RING(ring, 0x00000000);
488 OUT_RING(ring, 0x00000000);
489 OUT_RING(ring, 0x00000000);
490
491 /*
492 * Blit command:
493 */
494 OUT_PKT4(ring, REG_A6XX_GRAS_2D_SRC_TL_X, 4);
495 OUT_RING(ring, A6XX_GRAS_2D_SRC_TL_X_X(sx1));
496 OUT_RING(ring, A6XX_GRAS_2D_SRC_BR_X_X(sx2));
497 OUT_RING(ring, A6XX_GRAS_2D_SRC_TL_Y_Y(sy1));
498 OUT_RING(ring, A6XX_GRAS_2D_SRC_BR_Y_Y(sy2));
499
500 OUT_PKT4(ring, REG_A6XX_GRAS_2D_DST_TL, 2);
501 OUT_RING(ring, A6XX_GRAS_2D_DST_TL_X(dx1) | A6XX_GRAS_2D_DST_TL_Y(dy1));
502 OUT_RING(ring, A6XX_GRAS_2D_DST_BR_X(dx2) | A6XX_GRAS_2D_DST_BR_Y(dy2));
503
504 OUT_PKT7(ring, CP_EVENT_WRITE, 1);
505 OUT_RING(ring, 0x3f);
506 OUT_WFI5(ring);
507
508 OUT_PKT4(ring, REG_A6XX_RB_UNKNOWN_8C01, 1);
509 OUT_RING(ring, 0);
510
511 OUT_PKT4(ring, REG_A6XX_SP_2D_SRC_FORMAT, 1);
512 OUT_RING(ring, A6XX_SP_2D_SRC_FORMAT_COLOR_FORMAT(sfmt) |
513 COND(util_format_is_pure_sint(info->src.format),
514 A6XX_SP_2D_SRC_FORMAT_SINT) |
515 COND(util_format_is_pure_uint(info->src.format),
516 A6XX_SP_2D_SRC_FORMAT_UINT) |
517 COND(util_format_is_snorm(info->src.format),
518 A6XX_SP_2D_SRC_FORMAT_SINT |
519 A6XX_SP_2D_SRC_FORMAT_NORM) |
520 COND(util_format_is_unorm(info->src.format),
521 // TODO sometimes blob uses UINT+NORM but dEQP seems unhappy about that
522 // A6XX_SP_2D_SRC_FORMAT_UINT |
523 A6XX_SP_2D_SRC_FORMAT_NORM) |
524 0xf000);
525
526 OUT_PKT4(ring, REG_A6XX_RB_UNKNOWN_8E04, 1);
527 OUT_RING(ring, 0x01000000);
528
529 OUT_PKT7(ring, CP_BLIT, 1);
530 OUT_RING(ring, CP_BLIT_0_OP(BLIT_OP_SCALE));
531
532 OUT_WFI5(ring);
533
534 OUT_PKT4(ring, REG_A6XX_RB_UNKNOWN_8E04, 1);
535 OUT_RING(ring, 0);
536 }
537 }
538
539 static void
540 rewrite_zs_blit(struct fd_ringbuffer *ring, const struct pipe_blit_info *info)
541 {
542 struct pipe_blit_info separate = *info;
543
544 if (DEBUG_BLIT_FALLBACK) {
545 fprintf(stderr, "---- rewrite_separate_zs_blit: ");
546 util_dump_blit_info(stderr, info);
547 fprintf(stderr, "\ndst resource: ");
548 util_dump_resource(stderr, info->dst.resource);
549 fprintf(stderr, "\nsrc resource: ");
550 util_dump_resource(stderr, info->src.resource);
551 fprintf(stderr, "\n\n");
552 }
553
554 switch (info->src.format) {
555 case PIPE_FORMAT_S8_UINT:
556 debug_assert(info->mask == PIPE_MASK_S);
557 separate.mask = PIPE_MASK_R;
558 separate.src.format = PIPE_FORMAT_R8_UINT;
559 separate.dst.format = PIPE_FORMAT_R8_UINT;
560 emit_blit_texture(ring, &separate);
561 break;
562
563 case PIPE_FORMAT_Z32_FLOAT_S8X24_UINT:
564 if (info->mask & PIPE_MASK_Z) {
565 separate.mask = PIPE_MASK_R;
566 separate.src.format = PIPE_FORMAT_R32_FLOAT;
567 separate.dst.format = PIPE_FORMAT_R32_FLOAT;
568 emit_blit_texture(ring, &separate);
569 }
570 if (info->mask & PIPE_MASK_S) {
571 separate.mask = PIPE_MASK_R;
572 separate.src.format = PIPE_FORMAT_R8_UINT;
573 separate.dst.format = PIPE_FORMAT_R8_UINT;
574 separate.src.resource = &fd_resource(info->src.resource)->stencil->base;
575 separate.dst.resource = &fd_resource(info->dst.resource)->stencil->base;
576 emit_blit_texture(ring, &separate);
577 }
578 break;
579
580 case PIPE_FORMAT_Z16_UNORM:
581 separate.mask = PIPE_MASK_R;
582 separate.src.format = PIPE_FORMAT_R16_UNORM;
583 separate.dst.format = PIPE_FORMAT_R16_UNORM;
584 emit_blit_texture(ring, &separate);
585 break;
586
587 case PIPE_FORMAT_Z32_UNORM:
588 case PIPE_FORMAT_Z32_FLOAT:
589 debug_assert(info->mask == PIPE_MASK_Z);
590 separate.mask = PIPE_MASK_R;
591 separate.src.format = PIPE_FORMAT_R32_UINT;
592 separate.dst.format = PIPE_FORMAT_R32_UINT;
593 emit_blit_texture(ring, &separate);
594 break;
595
596 case PIPE_FORMAT_Z24_UNORM_S8_UINT:
597 debug_assert(info->mask == PIPE_MASK_ZS);
598 case PIPE_FORMAT_Z24X8_UNORM:
599 case PIPE_FORMAT_X8Z24_UNORM:
600 separate.mask = PIPE_MASK_R;
601 separate.src.format = PIPE_FORMAT_R32_UINT;
602 separate.dst.format = PIPE_FORMAT_R32_UINT;
603 emit_blit_texture(ring, &separate);
604 break;
605
606 default:
607 unreachable("");
608 }
609 }
610
611 static void
612 rewrite_combined_zs_blit(struct fd_context *ctx, const struct pipe_blit_info *info)
613 {
614 struct pipe_blit_info separate = *info;
615
616 if (DEBUG_BLIT_FALLBACK) {
617 fprintf(stderr, "---- rewrite_combined_zs_blit: ");
618 util_dump_blit_info(stderr, info);
619 fprintf(stderr, "\ndst resource: ");
620 util_dump_resource(stderr, info->dst.resource);
621 fprintf(stderr, "\nsrc resource: ");
622 util_dump_resource(stderr, info->src.resource);
623 fprintf(stderr, "\n");
624 }
625
626 switch (info->mask) {
627 case PIPE_MASK_Z:
628 separate.mask = PIPE_MASK_R | PIPE_MASK_G | PIPE_MASK_B;
629 separate.src.format = PIPE_FORMAT_R8G8B8A8_UNORM;
630 separate.dst.format = PIPE_FORMAT_R8G8B8A8_UNORM;
631
632 fd_blitter_blit(ctx, &separate);
633 break;
634
635 case PIPE_MASK_S:
636 separate.mask = PIPE_MASK_A;
637 separate.src.format = PIPE_FORMAT_R8G8B8A8_UNORM;
638 separate.dst.format = PIPE_FORMAT_R8G8B8A8_UNORM;
639
640 fd_blitter_blit(ctx, &separate);
641 break;
642
643 default:
644 unreachable("");
645 }
646 }
647
648 static bool
649 fd6_blit(struct fd_context *ctx, const struct pipe_blit_info *info)
650 {
651 struct fd_batch *batch;
652
653 if (info->dst.format == PIPE_FORMAT_Z24_UNORM_S8_UINT &&
654 info->mask != PIPE_MASK_ZS) {
655 rewrite_combined_zs_blit(ctx, info);
656 return true;
657 }
658
659 if (!can_do_blit(info))
660 return false;
661
662 fd_fence_ref(ctx->base.screen, &ctx->last_fence, NULL);
663
664 batch = fd_bc_alloc_batch(&ctx->screen->batch_cache, ctx, true);
665
666 fd6_emit_restore(batch, batch->draw);
667 fd6_emit_lrz_flush(batch->draw);
668
669 mtx_lock(&ctx->screen->lock);
670
671 fd_batch_resource_used(batch, fd_resource(info->src.resource), false);
672 fd_batch_resource_used(batch, fd_resource(info->dst.resource), true);
673
674 mtx_unlock(&ctx->screen->lock);
675
676 emit_setup(batch->draw);
677
678 if ((info->src.resource->target == PIPE_BUFFER) &&
679 (info->dst.resource->target == PIPE_BUFFER)) {
680 assert(fd_resource(info->src.resource)->tile_mode == TILE6_LINEAR);
681 assert(fd_resource(info->dst.resource)->tile_mode == TILE6_LINEAR);
682 emit_blit_buffer(batch->draw, info);
683 } else {
684 /* I don't *think* we need to handle blits between buffer <-> !buffer */
685 debug_assert(info->src.resource->target != PIPE_BUFFER);
686 debug_assert(info->dst.resource->target != PIPE_BUFFER);
687
688 if (info->mask & (PIPE_MASK_ZS)) {
689 rewrite_zs_blit(batch->draw, info);
690 } else {
691 emit_blit_texture(batch->draw, info);
692 }
693 }
694
695 fd6_event_write(batch, batch->draw, 0x1d, true);
696 fd6_event_write(batch, batch->draw, FACENESS_FLUSH, true);
697 fd6_event_write(batch, batch->draw, CACHE_FLUSH_TS, true);
698
699 fd_resource(info->dst.resource)->valid = true;
700 batch->needs_flush = true;
701
702 fd_batch_flush(batch, false, false);
703 fd_batch_reference(&batch, NULL);
704
705 return true;
706 }
707
708 void
709 fd6_blitter_init(struct pipe_context *pctx)
710 {
711 if (fd_mesa_debug & FD_DBG_NOBLIT)
712 return;
713
714 fd_context(pctx)->blit = fd6_blit;
715 }
716
717 unsigned
718 fd6_tile_mode(const struct pipe_resource *tmpl)
719 {
720 /* basically just has to be a format we can blit, so uploads/downloads
721 * via linear staging buffer works:
722 */
723 if (ok_format(tmpl->format))
724 return TILE6_3;
725
726 return TILE6_LINEAR;
727 }