i965: Add means for limiting color resolves
[mesa.git] / src / mesa / drivers / dri / i965 / intel_blit.c
1 /*
2 * Copyright 2003 VMware, Inc.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial portions
15 * of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
21 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26 #include "main/mtypes.h"
27 #include "main/blit.h"
28 #include "main/context.h"
29 #include "main/enums.h"
30 #include "main/fbobject.h"
31
32 #include "brw_context.h"
33 #include "brw_defines.h"
34 #include "intel_blit.h"
35 #include "intel_buffers.h"
36 #include "intel_fbo.h"
37 #include "intel_reg.h"
38 #include "intel_batchbuffer.h"
39 #include "intel_mipmap_tree.h"
40
41 #define FILE_DEBUG_FLAG DEBUG_BLIT
42
43 #define SET_TILING_XY_FAST_COPY_BLT(tiling, tr_mode, type) \
44 ({ \
45 switch (tiling) { \
46 case I915_TILING_X: \
47 CMD |= type ## _TILED_X; \
48 break; \
49 case I915_TILING_Y: \
50 if (tr_mode == INTEL_MIPTREE_TRMODE_YS) \
51 CMD |= type ## _TILED_64K; \
52 else \
53 CMD |= type ## _TILED_Y; \
54 break; \
55 default: \
56 unreachable("not reached"); \
57 } \
58 })
59
60 static void
61 intel_miptree_set_alpha_to_one(struct brw_context *brw,
62 struct intel_mipmap_tree *mt,
63 int x, int y, int width, int height);
64
65 static GLuint translate_raster_op(GLenum logicop)
66 {
67 switch(logicop) {
68 case GL_CLEAR: return 0x00;
69 case GL_AND: return 0x88;
70 case GL_AND_REVERSE: return 0x44;
71 case GL_COPY: return 0xCC;
72 case GL_AND_INVERTED: return 0x22;
73 case GL_NOOP: return 0xAA;
74 case GL_XOR: return 0x66;
75 case GL_OR: return 0xEE;
76 case GL_NOR: return 0x11;
77 case GL_EQUIV: return 0x99;
78 case GL_INVERT: return 0x55;
79 case GL_OR_REVERSE: return 0xDD;
80 case GL_COPY_INVERTED: return 0x33;
81 case GL_OR_INVERTED: return 0xBB;
82 case GL_NAND: return 0x77;
83 case GL_SET: return 0xFF;
84 default: return 0;
85 }
86 }
87
88 static uint32_t
89 br13_for_cpp(int cpp)
90 {
91 switch (cpp) {
92 case 16:
93 return BR13_32323232;
94 case 8:
95 return BR13_16161616;
96 case 4:
97 return BR13_8888;
98 case 2:
99 return BR13_565;
100 case 1:
101 return BR13_8;
102 default:
103 unreachable("not reached");
104 }
105 }
106
107 static uint32_t
108 get_tr_horizontal_align(uint32_t tr_mode, uint32_t cpp, bool is_src) {
109 /* Alignment tables for YF/YS tiled surfaces. */
110 const uint32_t align_2d_yf[] = {64, 64, 32, 32, 16};
111 const uint32_t bpp = cpp * 8;
112 const uint32_t shift = is_src ? 17 : 10;
113 uint32_t align;
114 int i = 0;
115
116 if (tr_mode == INTEL_MIPTREE_TRMODE_NONE)
117 return 0;
118
119 /* Compute array index. */
120 assert (bpp >= 8 && bpp <= 128 && _mesa_is_pow_two(bpp));
121 i = ffs(bpp / 8) - 1;
122
123 align = tr_mode == INTEL_MIPTREE_TRMODE_YF ?
124 align_2d_yf[i] :
125 4 * align_2d_yf[i];
126
127 assert(_mesa_is_pow_two(align));
128
129 /* XY_FAST_COPY_BLT doesn't support horizontal alignment of 16. */
130 if (align == 16)
131 align = 32;
132
133 return (ffs(align) - 6) << shift;
134 }
135
136 static uint32_t
137 get_tr_vertical_align(uint32_t tr_mode, uint32_t cpp, bool is_src) {
138 /* Vertical alignment tables for YF/YS tiled surfaces. */
139 const unsigned align_2d_yf[] = {64, 32, 32, 16, 16};
140 const uint32_t bpp = cpp * 8;
141 const uint32_t shift = is_src ? 15 : 8;
142 uint32_t align;
143 int i = 0;
144
145 if (tr_mode == INTEL_MIPTREE_TRMODE_NONE)
146 return 0;
147
148 /* Compute array index. */
149 assert (bpp >= 8 && bpp <= 128 && _mesa_is_pow_two(bpp));
150 i = ffs(bpp / 8) - 1;
151
152 align = tr_mode == INTEL_MIPTREE_TRMODE_YF ?
153 align_2d_yf[i] :
154 4 * align_2d_yf[i];
155
156 assert(_mesa_is_pow_two(align));
157
158 /* XY_FAST_COPY_BLT doesn't support vertical alignments of 16 and 32. */
159 if (align == 16 || align == 32)
160 align = 64;
161
162 return (ffs(align) - 7) << shift;
163 }
164
165 /**
166 * Emits the packet for switching the blitter from X to Y tiled or back.
167 *
168 * This has to be called in a single BEGIN_BATCH_BLT_TILED() /
169 * ADVANCE_BATCH_TILED(). This is because BCS_SWCTRL is saved and restored as
170 * part of the power context, not a render context, and if the batchbuffer was
171 * to get flushed between setting and blitting, or blitting and restoring, our
172 * tiling state would leak into other unsuspecting applications (like the X
173 * server).
174 */
175 static uint32_t *
176 set_blitter_tiling(struct brw_context *brw,
177 bool dst_y_tiled, bool src_y_tiled,
178 uint32_t *__map)
179 {
180 assert(brw->gen >= 6);
181
182 /* Idle the blitter before we update how tiling is interpreted. */
183 OUT_BATCH(MI_FLUSH_DW);
184 OUT_BATCH(0);
185 OUT_BATCH(0);
186 OUT_BATCH(0);
187
188 OUT_BATCH(MI_LOAD_REGISTER_IMM | (3 - 2));
189 OUT_BATCH(BCS_SWCTRL);
190 OUT_BATCH((BCS_SWCTRL_DST_Y | BCS_SWCTRL_SRC_Y) << 16 |
191 (dst_y_tiled ? BCS_SWCTRL_DST_Y : 0) |
192 (src_y_tiled ? BCS_SWCTRL_SRC_Y : 0));
193 return __map;
194 }
195 #define SET_BLITTER_TILING(...) __map = set_blitter_tiling(__VA_ARGS__, __map)
196
197 #define BEGIN_BATCH_BLT_TILED(n, dst_y_tiled, src_y_tiled) \
198 BEGIN_BATCH_BLT(n + ((dst_y_tiled || src_y_tiled) ? 14 : 0)); \
199 if (dst_y_tiled || src_y_tiled) \
200 SET_BLITTER_TILING(brw, dst_y_tiled, src_y_tiled)
201
202 #define ADVANCE_BATCH_TILED(dst_y_tiled, src_y_tiled) \
203 if (dst_y_tiled || src_y_tiled) \
204 SET_BLITTER_TILING(brw, false, false); \
205 ADVANCE_BATCH()
206
207 static int
208 blt_pitch(struct intel_mipmap_tree *mt)
209 {
210 int pitch = mt->pitch;
211 if (mt->tiling)
212 pitch /= 4;
213 return pitch;
214 }
215
216 bool
217 intel_miptree_blit_compatible_formats(mesa_format src, mesa_format dst)
218 {
219 /* The BLT doesn't handle sRGB conversion */
220 assert(src == _mesa_get_srgb_format_linear(src));
221 assert(dst == _mesa_get_srgb_format_linear(dst));
222
223 /* No swizzle or format conversions possible, except... */
224 if (src == dst)
225 return true;
226
227 /* ...we can either discard the alpha channel when going from A->X,
228 * or we can fill the alpha channel with 0xff when going from X->A
229 */
230 if (src == MESA_FORMAT_B8G8R8A8_UNORM || src == MESA_FORMAT_B8G8R8X8_UNORM)
231 return (dst == MESA_FORMAT_B8G8R8A8_UNORM ||
232 dst == MESA_FORMAT_B8G8R8X8_UNORM);
233
234 if (src == MESA_FORMAT_R8G8B8A8_UNORM || src == MESA_FORMAT_R8G8B8X8_UNORM)
235 return (dst == MESA_FORMAT_R8G8B8A8_UNORM ||
236 dst == MESA_FORMAT_R8G8B8X8_UNORM);
237
238 return false;
239 }
240
241 /**
242 * Implements a rectangular block transfer (blit) of pixels between two
243 * miptrees.
244 *
245 * Our blitter can operate on 1, 2, or 4-byte-per-pixel data, with generous,
246 * but limited, pitches and sizes allowed.
247 *
248 * The src/dst coordinates are relative to the given level/slice of the
249 * miptree.
250 *
251 * If @src_flip or @dst_flip is set, then the rectangle within that miptree
252 * will be inverted (including scanline order) when copying. This is common
253 * in GL when copying between window system and user-created
254 * renderbuffers/textures.
255 */
256 bool
257 intel_miptree_blit(struct brw_context *brw,
258 struct intel_mipmap_tree *src_mt,
259 int src_level, int src_slice,
260 uint32_t src_x, uint32_t src_y, bool src_flip,
261 struct intel_mipmap_tree *dst_mt,
262 int dst_level, int dst_slice,
263 uint32_t dst_x, uint32_t dst_y, bool dst_flip,
264 uint32_t width, uint32_t height,
265 GLenum logicop)
266 {
267 /* The blitter doesn't understand multisampling at all. */
268 if (src_mt->num_samples > 0 || dst_mt->num_samples > 0)
269 return false;
270
271 /* No sRGB decode or encode is done by the hardware blitter, which is
272 * consistent with what we want in the callers (glCopyTexSubImage(),
273 * glBlitFramebuffer(), texture validation, etc.).
274 */
275 mesa_format src_format = _mesa_get_srgb_format_linear(src_mt->format);
276 mesa_format dst_format = _mesa_get_srgb_format_linear(dst_mt->format);
277
278 /* The blitter doesn't support doing any format conversions. We do also
279 * support blitting ARGB8888 to XRGB8888 (trivial, the values dropped into
280 * the X channel don't matter), and XRGB8888 to ARGB8888 by setting the A
281 * channel to 1.0 at the end.
282 */
283 if (!intel_miptree_blit_compatible_formats(src_format, dst_format)) {
284 perf_debug("%s: Can't use hardware blitter from %s to %s, "
285 "falling back.\n", __func__,
286 _mesa_get_format_name(src_format),
287 _mesa_get_format_name(dst_format));
288 return false;
289 }
290
291 /* According to the Ivy Bridge PRM, Vol1 Part4, section 1.2.1.2 (Graphics
292 * Data Size Limitations):
293 *
294 * The BLT engine is capable of transferring very large quantities of
295 * graphics data. Any graphics data read from and written to the
296 * destination is permitted to represent a number of pixels that
297 * occupies up to 65,536 scan lines and up to 32,768 bytes per scan line
298 * at the destination. The maximum number of pixels that may be
299 * represented per scan line’s worth of graphics data depends on the
300 * color depth.
301 *
302 * Furthermore, intelEmitCopyBlit (which is called below) uses a signed
303 * 16-bit integer to represent buffer pitch, so it can only handle buffer
304 * pitches < 32k. However, the pitch is measured in bytes for linear buffers
305 * and dwords for tiled buffers.
306 *
307 * As a result of these two limitations, we can only use the blitter to do
308 * this copy when the miptree's pitch is less than 32k linear or 128k tiled.
309 */
310 if (blt_pitch(src_mt) >= 32768 || blt_pitch(dst_mt) >= 32768) {
311 perf_debug("Falling back due to >= 32k/128k pitch\n");
312 return false;
313 }
314
315 /* The blitter has no idea about HiZ or fast color clears, so we need to
316 * resolve the miptrees before we do anything.
317 */
318 intel_miptree_slice_resolve_depth(brw, src_mt, src_level, src_slice);
319 intel_miptree_slice_resolve_depth(brw, dst_mt, dst_level, dst_slice);
320 intel_miptree_resolve_color(brw, src_mt, 0);
321 intel_miptree_resolve_color(brw, dst_mt, 0);
322
323 if (src_flip)
324 src_y = minify(src_mt->physical_height0, src_level - src_mt->first_level) - src_y - height;
325
326 if (dst_flip)
327 dst_y = minify(dst_mt->physical_height0, dst_level - dst_mt->first_level) - dst_y - height;
328
329 uint32_t src_image_x, src_image_y, dst_image_x, dst_image_y;
330 intel_miptree_get_image_offset(src_mt, src_level, src_slice,
331 &src_image_x, &src_image_y);
332 intel_miptree_get_image_offset(dst_mt, dst_level, dst_slice,
333 &dst_image_x, &dst_image_y);
334 src_x += src_image_x;
335 src_y += src_image_y;
336 dst_x += dst_image_x;
337 dst_y += dst_image_y;
338
339 /* The blitter interprets the 16-bit destination x/y as a signed 16-bit
340 * value. The values we're working with are unsigned, so make sure we don't
341 * overflow.
342 */
343 if (src_x >= 32768 || src_y >= 32768 || dst_x >= 32768 || dst_y >= 32768) {
344 perf_debug("Falling back due to >=32k offset [src(%d, %d) dst(%d, %d)]\n",
345 src_x, src_y, dst_x, dst_y);
346 return false;
347 }
348
349 if (!intelEmitCopyBlit(brw,
350 src_mt->cpp,
351 src_flip == dst_flip ? src_mt->pitch : -src_mt->pitch,
352 src_mt->bo, src_mt->offset,
353 src_mt->tiling,
354 src_mt->tr_mode,
355 dst_mt->pitch,
356 dst_mt->bo, dst_mt->offset,
357 dst_mt->tiling,
358 dst_mt->tr_mode,
359 src_x, src_y,
360 dst_x, dst_y,
361 width, height,
362 logicop)) {
363 return false;
364 }
365
366 /* XXX This could be done in a single pass using XY_FULL_MONO_PATTERN_BLT */
367 if (_mesa_get_format_bits(src_format, GL_ALPHA_BITS) == 0 &&
368 _mesa_get_format_bits(dst_format, GL_ALPHA_BITS) > 0) {
369 intel_miptree_set_alpha_to_one(brw, dst_mt,
370 dst_x, dst_y,
371 width, height);
372 }
373
374 return true;
375 }
376
377 static bool
378 alignment_valid(struct brw_context *brw, unsigned offset, uint32_t tiling)
379 {
380 /* Tiled buffers must be page-aligned (4K). */
381 if (tiling != I915_TILING_NONE)
382 return (offset & 4095) == 0;
383
384 /* On Gen8+, linear buffers must be cacheline-aligned. */
385 if (brw->gen >= 8)
386 return (offset & 63) == 0;
387
388 return true;
389 }
390
391 static bool
392 can_fast_copy_blit(struct brw_context *brw,
393 drm_intel_bo *src_buffer,
394 int16_t src_x, int16_t src_y,
395 uintptr_t src_offset, uint32_t src_pitch,
396 uint32_t src_tiling, uint32_t src_tr_mode,
397 drm_intel_bo *dst_buffer,
398 int16_t dst_x, int16_t dst_y,
399 uintptr_t dst_offset, uint32_t dst_pitch,
400 uint32_t dst_tiling, uint32_t dst_tr_mode,
401 int16_t w, int16_t h, uint32_t cpp)
402 {
403 const bool dst_tiling_none = dst_tiling == I915_TILING_NONE;
404 const bool src_tiling_none = src_tiling == I915_TILING_NONE;
405
406 if (brw->gen < 9)
407 return false;
408
409 /* Enable fast copy blit only if the surfaces are Yf/Ys tiled.
410 * FIXME: Based on performance data, remove this condition later to
411 * enable for all types of surfaces.
412 */
413 if (src_tr_mode == INTEL_MIPTREE_TRMODE_NONE &&
414 dst_tr_mode == INTEL_MIPTREE_TRMODE_NONE)
415 return false;
416
417 /* The start pixel for Fast Copy blit should be on an OWord boundary. */
418 if ((dst_x * cpp | src_x * cpp) & 15)
419 return false;
420
421 /* For all surface types buffers must be cacheline-aligned. */
422 if ((dst_offset | src_offset) & 63)
423 return false;
424
425 /* Color depths which are not power of 2 or greater than 128 bits are
426 * not supported.
427 */
428 if (!_mesa_is_pow_two(cpp) || cpp > 16)
429 return false;
430
431 /* For Fast Copy Blits the pitch cannot be a negative number. So, bit 15
432 * of the destination pitch must be zero.
433 */
434 if ((src_pitch >> 15 & 1) != 0 || (dst_pitch >> 15 & 1) != 0)
435 return false;
436
437 /* For Linear surfaces, the pitch has to be an OWord (16byte) multiple. */
438 if ((src_tiling_none && src_pitch % 16 != 0) ||
439 (dst_tiling_none && dst_pitch % 16 != 0))
440 return false;
441
442 return true;
443 }
444
445 static uint32_t
446 xy_blit_cmd(uint32_t src_tiling, uint32_t src_tr_mode,
447 uint32_t dst_tiling, uint32_t dst_tr_mode,
448 uint32_t cpp, bool use_fast_copy_blit)
449 {
450 uint32_t CMD = 0;
451
452 if (use_fast_copy_blit) {
453 CMD = XY_FAST_COPY_BLT_CMD;
454
455 if (dst_tiling != I915_TILING_NONE)
456 SET_TILING_XY_FAST_COPY_BLT(dst_tiling, dst_tr_mode, XY_FAST_DST);
457
458 if (src_tiling != I915_TILING_NONE)
459 SET_TILING_XY_FAST_COPY_BLT(src_tiling, src_tr_mode, XY_FAST_SRC);
460
461 CMD |= get_tr_horizontal_align(src_tr_mode, cpp, true /* is_src */);
462 CMD |= get_tr_vertical_align(src_tr_mode, cpp, true /* is_src */);
463
464 CMD |= get_tr_horizontal_align(dst_tr_mode, cpp, false /* is_src */);
465 CMD |= get_tr_vertical_align(dst_tr_mode, cpp, false /* is_src */);
466
467 } else {
468 assert(cpp <= 4);
469 switch (cpp) {
470 case 1:
471 case 2:
472 CMD = XY_SRC_COPY_BLT_CMD;
473 break;
474 case 4:
475 CMD = XY_SRC_COPY_BLT_CMD | XY_BLT_WRITE_ALPHA | XY_BLT_WRITE_RGB;
476 break;
477 default:
478 unreachable("not reached");
479 }
480
481 if (dst_tiling != I915_TILING_NONE)
482 CMD |= XY_DST_TILED;
483
484 if (src_tiling != I915_TILING_NONE)
485 CMD |= XY_SRC_TILED;
486 }
487 return CMD;
488 }
489
490 /* Copy BitBlt
491 */
492 bool
493 intelEmitCopyBlit(struct brw_context *brw,
494 GLuint cpp,
495 GLshort src_pitch,
496 drm_intel_bo *src_buffer,
497 GLuint src_offset,
498 uint32_t src_tiling,
499 uint32_t src_tr_mode,
500 GLshort dst_pitch,
501 drm_intel_bo *dst_buffer,
502 GLuint dst_offset,
503 uint32_t dst_tiling,
504 uint32_t dst_tr_mode,
505 GLshort src_x, GLshort src_y,
506 GLshort dst_x, GLshort dst_y,
507 GLshort w, GLshort h,
508 GLenum logic_op)
509 {
510 GLuint CMD, BR13, pass = 0;
511 int dst_y2 = dst_y + h;
512 int dst_x2 = dst_x + w;
513 drm_intel_bo *aper_array[3];
514 bool dst_y_tiled = dst_tiling == I915_TILING_Y;
515 bool src_y_tiled = src_tiling == I915_TILING_Y;
516 bool use_fast_copy_blit = false;
517 uint32_t src_tile_w, src_tile_h;
518 uint32_t dst_tile_w, dst_tile_h;
519
520 if ((dst_y_tiled || src_y_tiled) && brw->gen < 6)
521 return false;
522
523 /* do space check before going any further */
524 do {
525 aper_array[0] = brw->batch.bo;
526 aper_array[1] = dst_buffer;
527 aper_array[2] = src_buffer;
528
529 if (dri_bufmgr_check_aperture_space(aper_array, 3) != 0) {
530 intel_batchbuffer_flush(brw);
531 pass++;
532 } else
533 break;
534 } while (pass < 2);
535
536 if (pass >= 2)
537 return false;
538
539 unsigned length = brw->gen >= 8 ? 10 : 8;
540
541 intel_batchbuffer_require_space(brw, length * 4, BLT_RING);
542 DBG("%s src:buf(%p)/%d+%d %d,%d dst:buf(%p)/%d+%d %d,%d sz:%dx%d\n",
543 __func__,
544 src_buffer, src_pitch, src_offset, src_x, src_y,
545 dst_buffer, dst_pitch, dst_offset, dst_x, dst_y, w, h);
546
547 intel_get_tile_dims(src_tiling, src_tr_mode, cpp, &src_tile_w, &src_tile_h);
548 intel_get_tile_dims(dst_tiling, dst_tr_mode, cpp, &dst_tile_w, &dst_tile_h);
549
550 /* For Tiled surfaces, the pitch has to be a multiple of the Tile width
551 * (X direction width of the Tile). This is ensured while allocating the
552 * buffer object.
553 */
554 assert(src_tiling == I915_TILING_NONE || (src_pitch % src_tile_w) == 0);
555 assert(dst_tiling == I915_TILING_NONE || (dst_pitch % dst_tile_w) == 0);
556
557 use_fast_copy_blit = can_fast_copy_blit(brw,
558 src_buffer,
559 src_x, src_y,
560 src_offset, src_pitch,
561 src_tiling, src_tr_mode,
562 dst_buffer,
563 dst_x, dst_y,
564 dst_offset, dst_pitch,
565 dst_tiling, dst_tr_mode,
566 w, h, cpp);
567 if (!use_fast_copy_blit &&
568 (src_tr_mode != INTEL_MIPTREE_TRMODE_NONE ||
569 dst_tr_mode != INTEL_MIPTREE_TRMODE_NONE))
570 return false;
571
572 if (use_fast_copy_blit) {
573 /* When two sequential fast copy blits have different source surfaces,
574 * but their destinations refer to the same destination surfaces and
575 * therefore destinations overlap it is imperative that a flush be
576 * inserted between the two blits.
577 *
578 * FIXME: Figure out a way to avoid flushing when not required.
579 */
580 brw_emit_mi_flush(brw);
581
582 assert(cpp <= 16);
583 BR13 = br13_for_cpp(cpp);
584
585 if (src_tr_mode == INTEL_MIPTREE_TRMODE_YF)
586 BR13 |= XY_FAST_SRC_TRMODE_YF;
587
588 if (dst_tr_mode == INTEL_MIPTREE_TRMODE_YF)
589 BR13 |= XY_FAST_DST_TRMODE_YF;
590
591 CMD = xy_blit_cmd(src_tiling, src_tr_mode,
592 dst_tiling, dst_tr_mode,
593 cpp, use_fast_copy_blit);
594
595 } else {
596 /* For big formats (such as floating point), do the copy using 16 or
597 * 32bpp and multiply the coordinates.
598 */
599 if (cpp > 4) {
600 if (cpp % 4 == 2) {
601 dst_x *= cpp / 2;
602 dst_x2 *= cpp / 2;
603 src_x *= cpp / 2;
604 cpp = 2;
605 } else {
606 assert(cpp % 4 == 0);
607 dst_x *= cpp / 4;
608 dst_x2 *= cpp / 4;
609 src_x *= cpp / 4;
610 cpp = 4;
611 }
612 }
613
614 if (!alignment_valid(brw, dst_offset, dst_tiling))
615 return false;
616 if (!alignment_valid(brw, src_offset, src_tiling))
617 return false;
618
619 /* Blit pitch must be dword-aligned. Otherwise, the hardware appears to drop
620 * the low bits. Offsets must be naturally aligned.
621 */
622 if (src_pitch % 4 != 0 || src_offset % cpp != 0 ||
623 dst_pitch % 4 != 0 || dst_offset % cpp != 0)
624 return false;
625
626 assert(cpp <= 4);
627 BR13 = br13_for_cpp(cpp) | translate_raster_op(logic_op) << 16;
628
629 CMD = xy_blit_cmd(src_tiling, src_tr_mode,
630 dst_tiling, dst_tr_mode,
631 cpp, use_fast_copy_blit);
632 }
633
634 /* For tiled source and destination, pitch value should be specified
635 * as a number of Dwords.
636 */
637 if (dst_tiling != I915_TILING_NONE)
638 dst_pitch /= 4;
639
640 if (src_tiling != I915_TILING_NONE)
641 src_pitch /= 4;
642
643 if (dst_y2 <= dst_y || dst_x2 <= dst_x)
644 return true;
645
646 assert(dst_x < dst_x2);
647 assert(dst_y < dst_y2);
648 assert(src_offset + (src_y + h - 1) * abs(src_pitch) +
649 (w * cpp) <= src_buffer->size);
650 assert(dst_offset + (dst_y + h - 1) * abs(dst_pitch) +
651 (w * cpp) <= dst_buffer->size);
652
653 BEGIN_BATCH_BLT_TILED(length, dst_y_tiled, src_y_tiled);
654 OUT_BATCH(CMD | (length - 2));
655 OUT_BATCH(BR13 | (uint16_t)dst_pitch);
656 OUT_BATCH(SET_FIELD(dst_y, BLT_Y) | SET_FIELD(dst_x, BLT_X));
657 OUT_BATCH(SET_FIELD(dst_y2, BLT_Y) | SET_FIELD(dst_x2, BLT_X));
658 if (brw->gen >= 8) {
659 OUT_RELOC64(dst_buffer,
660 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
661 dst_offset);
662 } else {
663 OUT_RELOC(dst_buffer,
664 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
665 dst_offset);
666 }
667 OUT_BATCH(SET_FIELD(src_y, BLT_Y) | SET_FIELD(src_x, BLT_X));
668 OUT_BATCH((uint16_t)src_pitch);
669 if (brw->gen >= 8) {
670 OUT_RELOC64(src_buffer,
671 I915_GEM_DOMAIN_RENDER, 0,
672 src_offset);
673 } else {
674 OUT_RELOC(src_buffer,
675 I915_GEM_DOMAIN_RENDER, 0,
676 src_offset);
677 }
678
679 ADVANCE_BATCH_TILED(dst_y_tiled, src_y_tiled);
680
681 brw_emit_mi_flush(brw);
682
683 return true;
684 }
685
686 bool
687 intelEmitImmediateColorExpandBlit(struct brw_context *brw,
688 GLuint cpp,
689 GLubyte *src_bits, GLuint src_size,
690 GLuint fg_color,
691 GLshort dst_pitch,
692 drm_intel_bo *dst_buffer,
693 GLuint dst_offset,
694 uint32_t dst_tiling,
695 GLshort x, GLshort y,
696 GLshort w, GLshort h,
697 GLenum logic_op)
698 {
699 int dwords = ALIGN(src_size, 8) / 4;
700 uint32_t opcode, br13, blit_cmd;
701
702 if (dst_tiling != I915_TILING_NONE) {
703 if (dst_offset & 4095)
704 return false;
705 if (dst_tiling == I915_TILING_Y)
706 return false;
707 }
708
709 assert((logic_op >= GL_CLEAR) && (logic_op <= (GL_CLEAR + 0x0f)));
710 assert(dst_pitch > 0);
711
712 if (w < 0 || h < 0)
713 return true;
714
715 DBG("%s dst:buf(%p)/%d+%d %d,%d sz:%dx%d, %d bytes %d dwords\n",
716 __func__,
717 dst_buffer, dst_pitch, dst_offset, x, y, w, h, src_size, dwords);
718
719 unsigned xy_setup_blt_length = brw->gen >= 8 ? 10 : 8;
720 intel_batchbuffer_require_space(brw, (xy_setup_blt_length * 4) +
721 (3 * 4) + dwords * 4, BLT_RING);
722
723 opcode = XY_SETUP_BLT_CMD;
724 if (cpp == 4)
725 opcode |= XY_BLT_WRITE_ALPHA | XY_BLT_WRITE_RGB;
726 if (dst_tiling != I915_TILING_NONE) {
727 opcode |= XY_DST_TILED;
728 dst_pitch /= 4;
729 }
730
731 br13 = dst_pitch | (translate_raster_op(logic_op) << 16) | (1 << 29);
732 br13 |= br13_for_cpp(cpp);
733
734 blit_cmd = XY_TEXT_IMMEDIATE_BLIT_CMD | XY_TEXT_BYTE_PACKED; /* packing? */
735 if (dst_tiling != I915_TILING_NONE)
736 blit_cmd |= XY_DST_TILED;
737
738 BEGIN_BATCH_BLT(xy_setup_blt_length + 3);
739 OUT_BATCH(opcode | (xy_setup_blt_length - 2));
740 OUT_BATCH(br13);
741 OUT_BATCH((0 << 16) | 0); /* clip x1, y1 */
742 OUT_BATCH((100 << 16) | 100); /* clip x2, y2 */
743 if (brw->gen >= 8) {
744 OUT_RELOC64(dst_buffer,
745 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
746 dst_offset);
747 } else {
748 OUT_RELOC(dst_buffer,
749 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
750 dst_offset);
751 }
752 OUT_BATCH(0); /* bg */
753 OUT_BATCH(fg_color); /* fg */
754 OUT_BATCH(0); /* pattern base addr */
755 if (brw->gen >= 8)
756 OUT_BATCH(0);
757
758 OUT_BATCH(blit_cmd | ((3 - 2) + dwords));
759 OUT_BATCH(SET_FIELD(y, BLT_Y) | SET_FIELD(x, BLT_X));
760 OUT_BATCH(SET_FIELD(y + h, BLT_Y) | SET_FIELD(x + w, BLT_X));
761 ADVANCE_BATCH();
762
763 intel_batchbuffer_data(brw, src_bits, dwords * 4, BLT_RING);
764
765 brw_emit_mi_flush(brw);
766
767 return true;
768 }
769
770 /* We don't have a memmove-type blit like some other hardware, so we'll do a
771 * rectangular blit covering a large space, then emit 1-scanline blit at the
772 * end to cover the last if we need.
773 */
774 void
775 intel_emit_linear_blit(struct brw_context *brw,
776 drm_intel_bo *dst_bo,
777 unsigned int dst_offset,
778 drm_intel_bo *src_bo,
779 unsigned int src_offset,
780 unsigned int size)
781 {
782 struct gl_context *ctx = &brw->ctx;
783 GLuint pitch, height;
784 int16_t src_x, dst_x;
785 bool ok;
786
787 do {
788 /* The pitch given to the GPU must be DWORD aligned, and
789 * we want width to match pitch. Max width is (1 << 15 - 1),
790 * rounding that down to the nearest DWORD is 1 << 15 - 4
791 */
792 pitch = ROUND_DOWN_TO(MIN2(size, (1 << 15) - 64), 4);
793 height = (size < pitch || pitch == 0) ? 1 : size / pitch;
794
795 src_x = src_offset % 64;
796 dst_x = dst_offset % 64;
797 pitch = ALIGN(MIN2(size, (1 << 15) - 64), 4);
798 assert(src_x + pitch < 1 << 15);
799 assert(dst_x + pitch < 1 << 15);
800
801 ok = intelEmitCopyBlit(brw, 1,
802 pitch, src_bo, src_offset - src_x, I915_TILING_NONE,
803 INTEL_MIPTREE_TRMODE_NONE,
804 pitch, dst_bo, dst_offset - dst_x, I915_TILING_NONE,
805 INTEL_MIPTREE_TRMODE_NONE,
806 src_x, 0, /* src x/y */
807 dst_x, 0, /* dst x/y */
808 MIN2(size, pitch), height, /* w, h */
809 GL_COPY);
810 if (!ok) {
811 _mesa_problem(ctx, "Failed to linear blit %dx%d\n",
812 MIN2(size, pitch), height);
813 return;
814 }
815
816 pitch *= height;
817 if (size <= pitch)
818 return;
819
820 src_offset += pitch;
821 dst_offset += pitch;
822 size -= pitch;
823 } while (1);
824 }
825
826 /**
827 * Used to initialize the alpha value of an ARGB8888 miptree after copying
828 * into it from an XRGB8888 source.
829 *
830 * This is very common with glCopyTexImage2D(). Note that the coordinates are
831 * relative to the start of the miptree, not relative to a slice within the
832 * miptree.
833 */
834 static void
835 intel_miptree_set_alpha_to_one(struct brw_context *brw,
836 struct intel_mipmap_tree *mt,
837 int x, int y, int width, int height)
838 {
839 uint32_t BR13, CMD;
840 int pitch, cpp;
841 drm_intel_bo *aper_array[2];
842
843 pitch = mt->pitch;
844 cpp = mt->cpp;
845
846 DBG("%s dst:buf(%p)/%d %d,%d sz:%dx%d\n",
847 __func__, mt->bo, pitch, x, y, width, height);
848
849 BR13 = br13_for_cpp(cpp) | 0xf0 << 16;
850 CMD = XY_COLOR_BLT_CMD;
851 CMD |= XY_BLT_WRITE_ALPHA;
852
853 if (mt->tiling != I915_TILING_NONE) {
854 CMD |= XY_DST_TILED;
855 pitch /= 4;
856 }
857 BR13 |= pitch;
858
859 /* do space check before going any further */
860 aper_array[0] = brw->batch.bo;
861 aper_array[1] = mt->bo;
862
863 if (drm_intel_bufmgr_check_aperture_space(aper_array,
864 ARRAY_SIZE(aper_array)) != 0) {
865 intel_batchbuffer_flush(brw);
866 }
867
868 unsigned length = brw->gen >= 8 ? 7 : 6;
869 bool dst_y_tiled = mt->tiling == I915_TILING_Y;
870
871 BEGIN_BATCH_BLT_TILED(length, dst_y_tiled, false);
872 OUT_BATCH(CMD | (length - 2));
873 OUT_BATCH(BR13);
874 OUT_BATCH(SET_FIELD(y, BLT_Y) | SET_FIELD(x, BLT_X));
875 OUT_BATCH(SET_FIELD(y + height, BLT_Y) | SET_FIELD(x + width, BLT_X));
876 if (brw->gen >= 8) {
877 OUT_RELOC64(mt->bo,
878 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
879 0);
880 } else {
881 OUT_RELOC(mt->bo,
882 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
883 0);
884 }
885 OUT_BATCH(0xffffffff); /* white, but only alpha gets written */
886 ADVANCE_BATCH_TILED(dst_y_tiled, false);
887
888 brw_emit_mi_flush(brw);
889 }