intel/isl: Make get_intratile_offset_el take the element size in bits
[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_batchbuffer.h"
38 #include "intel_mipmap_tree.h"
39
40 #define FILE_DEBUG_FLAG DEBUG_BLIT
41
42 static void
43 intel_miptree_set_alpha_to_one(struct brw_context *brw,
44 struct intel_mipmap_tree *mt,
45 int x, int y, int width, int height);
46
47 static GLuint translate_raster_op(GLenum logicop)
48 {
49 switch(logicop) {
50 case GL_CLEAR: return 0x00;
51 case GL_AND: return 0x88;
52 case GL_AND_REVERSE: return 0x44;
53 case GL_COPY: return 0xCC;
54 case GL_AND_INVERTED: return 0x22;
55 case GL_NOOP: return 0xAA;
56 case GL_XOR: return 0x66;
57 case GL_OR: return 0xEE;
58 case GL_NOR: return 0x11;
59 case GL_EQUIV: return 0x99;
60 case GL_INVERT: return 0x55;
61 case GL_OR_REVERSE: return 0xDD;
62 case GL_COPY_INVERTED: return 0x33;
63 case GL_OR_INVERTED: return 0xBB;
64 case GL_NAND: return 0x77;
65 case GL_SET: return 0xFF;
66 default: return 0;
67 }
68 }
69
70 static uint32_t
71 br13_for_cpp(int cpp)
72 {
73 switch (cpp) {
74 case 16:
75 return BR13_32323232;
76 case 8:
77 return BR13_16161616;
78 case 4:
79 return BR13_8888;
80 case 2:
81 return BR13_565;
82 case 1:
83 return BR13_8;
84 default:
85 unreachable("not reached");
86 }
87 }
88
89 /**
90 * Emits the packet for switching the blitter from X to Y tiled or back.
91 *
92 * This has to be called in a single BEGIN_BATCH_BLT_TILED() /
93 * ADVANCE_BATCH_TILED(). This is because BCS_SWCTRL is saved and restored as
94 * part of the power context, not a render context, and if the batchbuffer was
95 * to get flushed between setting and blitting, or blitting and restoring, our
96 * tiling state would leak into other unsuspecting applications (like the X
97 * server).
98 */
99 static uint32_t *
100 set_blitter_tiling(struct brw_context *brw,
101 bool dst_y_tiled, bool src_y_tiled,
102 uint32_t *__map)
103 {
104 assert(brw->gen >= 6);
105
106 /* Idle the blitter before we update how tiling is interpreted. */
107 OUT_BATCH(MI_FLUSH_DW);
108 OUT_BATCH(0);
109 OUT_BATCH(0);
110 OUT_BATCH(0);
111
112 OUT_BATCH(MI_LOAD_REGISTER_IMM | (3 - 2));
113 OUT_BATCH(BCS_SWCTRL);
114 OUT_BATCH((BCS_SWCTRL_DST_Y | BCS_SWCTRL_SRC_Y) << 16 |
115 (dst_y_tiled ? BCS_SWCTRL_DST_Y : 0) |
116 (src_y_tiled ? BCS_SWCTRL_SRC_Y : 0));
117 return __map;
118 }
119 #define SET_BLITTER_TILING(...) __map = set_blitter_tiling(__VA_ARGS__, __map)
120
121 #define BEGIN_BATCH_BLT_TILED(n, dst_y_tiled, src_y_tiled) \
122 BEGIN_BATCH_BLT(n + ((dst_y_tiled || src_y_tiled) ? 14 : 0)); \
123 if (dst_y_tiled || src_y_tiled) \
124 SET_BLITTER_TILING(brw, dst_y_tiled, src_y_tiled)
125
126 #define ADVANCE_BATCH_TILED(dst_y_tiled, src_y_tiled) \
127 if (dst_y_tiled || src_y_tiled) \
128 SET_BLITTER_TILING(brw, false, false); \
129 ADVANCE_BATCH()
130
131 static int
132 blt_pitch(struct intel_mipmap_tree *mt)
133 {
134 int pitch = mt->pitch;
135 if (mt->tiling)
136 pitch /= 4;
137 return pitch;
138 }
139
140 bool
141 intel_miptree_blit_compatible_formats(mesa_format src, mesa_format dst)
142 {
143 /* The BLT doesn't handle sRGB conversion */
144 assert(src == _mesa_get_srgb_format_linear(src));
145 assert(dst == _mesa_get_srgb_format_linear(dst));
146
147 /* No swizzle or format conversions possible, except... */
148 if (src == dst)
149 return true;
150
151 /* ...we can either discard the alpha channel when going from A->X,
152 * or we can fill the alpha channel with 0xff when going from X->A
153 */
154 if (src == MESA_FORMAT_B8G8R8A8_UNORM || src == MESA_FORMAT_B8G8R8X8_UNORM)
155 return (dst == MESA_FORMAT_B8G8R8A8_UNORM ||
156 dst == MESA_FORMAT_B8G8R8X8_UNORM);
157
158 if (src == MESA_FORMAT_R8G8B8A8_UNORM || src == MESA_FORMAT_R8G8B8X8_UNORM)
159 return (dst == MESA_FORMAT_R8G8B8A8_UNORM ||
160 dst == MESA_FORMAT_R8G8B8X8_UNORM);
161
162 return false;
163 }
164
165 static void
166 get_blit_intratile_offset_el(const struct brw_context *brw,
167 struct intel_mipmap_tree *mt,
168 uint32_t total_x_offset_el,
169 uint32_t total_y_offset_el,
170 uint32_t *base_address_offset,
171 uint32_t *x_offset_el,
172 uint32_t *y_offset_el)
173 {
174 enum isl_tiling tiling = intel_miptree_get_isl_tiling(mt);
175 isl_tiling_get_intratile_offset_el(tiling, mt->cpp * 8, mt->pitch,
176 total_x_offset_el, total_y_offset_el,
177 base_address_offset,
178 x_offset_el, y_offset_el);
179 if (tiling == ISL_TILING_LINEAR) {
180 /* From the Broadwell PRM docs for XY_SRC_COPY_BLT::SourceBaseAddress:
181 *
182 * "Base address of the destination surface: X=0, Y=0. Lower 32bits
183 * of the 48bit addressing. When Src Tiling is enabled (Bit_15
184 * enabled), this address must be 4KB-aligned. When Tiling is not
185 * enabled, this address should be CL (64byte) aligned."
186 *
187 * The offsets we get from ISL in the tiled case are already aligned.
188 * In the linear case, we need to do some of our own aligning.
189 */
190 assert(mt->pitch % 64 == 0);
191 uint32_t delta = *base_address_offset & 63;
192 assert(delta % mt->cpp == 0);
193 *base_address_offset -= delta;
194 *x_offset_el += delta / mt->cpp;
195 } else {
196 assert(*base_address_offset % 4096 == 0);
197 }
198 }
199
200 static bool
201 emit_miptree_blit(struct brw_context *brw,
202 struct intel_mipmap_tree *src_mt,
203 uint32_t src_x, uint32_t src_y,
204 struct intel_mipmap_tree *dst_mt,
205 uint32_t dst_x, uint32_t dst_y,
206 uint32_t width, uint32_t height,
207 bool reverse, GLenum logicop)
208 {
209 /* According to the Ivy Bridge PRM, Vol1 Part4, section 1.2.1.2 (Graphics
210 * Data Size Limitations):
211 *
212 * The BLT engine is capable of transferring very large quantities of
213 * graphics data. Any graphics data read from and written to the
214 * destination is permitted to represent a number of pixels that
215 * occupies up to 65,536 scan lines and up to 32,768 bytes per scan line
216 * at the destination. The maximum number of pixels that may be
217 * represented per scan line’s worth of graphics data depends on the
218 * color depth.
219 *
220 * The blitter's pitch is a signed 16-bit integer, but measured in bytes
221 * for linear surfaces and DWords for tiled surfaces. So the maximum
222 * pitch is 32k linear and 128k tiled.
223 */
224 if (blt_pitch(src_mt) >= 32768 || blt_pitch(dst_mt) >= 32768) {
225 perf_debug("Falling back due to >= 32k/128k pitch\n");
226 return false;
227 }
228
229 /* We need to split the blit into chunks that each fit within the blitter's
230 * restrictions. We can't use a chunk size of 32768 because we need to
231 * ensure that src_tile_x + chunk_size fits. We choose 16384 because it's
232 * a nice round power of two, big enough that performance won't suffer, and
233 * small enough to guarantee everything fits.
234 */
235 const uint32_t max_chunk_size = 16384;
236
237 for (uint32_t chunk_x = 0; chunk_x < width; chunk_x += max_chunk_size) {
238 for (uint32_t chunk_y = 0; chunk_y < height; chunk_y += max_chunk_size) {
239 const uint32_t chunk_w = MIN2(max_chunk_size, width - chunk_x);
240 const uint32_t chunk_h = MIN2(max_chunk_size, height - chunk_y);
241
242 uint32_t src_offset, src_tile_x, src_tile_y;
243 get_blit_intratile_offset_el(brw, src_mt,
244 src_x + chunk_x, src_y + chunk_y,
245 &src_offset, &src_tile_x, &src_tile_y);
246
247 uint32_t dst_offset, dst_tile_x, dst_tile_y;
248 get_blit_intratile_offset_el(brw, dst_mt,
249 dst_x + chunk_x, dst_y + chunk_y,
250 &dst_offset, &dst_tile_x, &dst_tile_y);
251
252 if (!intelEmitCopyBlit(brw,
253 src_mt->cpp,
254 reverse ? -src_mt->pitch : src_mt->pitch,
255 src_mt->bo, src_mt->offset + src_offset,
256 src_mt->tiling,
257 dst_mt->pitch,
258 dst_mt->bo, dst_mt->offset + dst_offset,
259 dst_mt->tiling,
260 src_tile_x, src_tile_y,
261 dst_tile_x, dst_tile_y,
262 chunk_w, chunk_h,
263 logicop)) {
264 /* If this is ever going to fail, it will fail on the first chunk */
265 assert(chunk_x == 0 && chunk_y == 0);
266 return false;
267 }
268 }
269 }
270
271 return true;
272 }
273
274 /**
275 * Implements a rectangular block transfer (blit) of pixels between two
276 * miptrees.
277 *
278 * Our blitter can operate on 1, 2, or 4-byte-per-pixel data, with generous,
279 * but limited, pitches and sizes allowed.
280 *
281 * The src/dst coordinates are relative to the given level/slice of the
282 * miptree.
283 *
284 * If @src_flip or @dst_flip is set, then the rectangle within that miptree
285 * will be inverted (including scanline order) when copying. This is common
286 * in GL when copying between window system and user-created
287 * renderbuffers/textures.
288 */
289 bool
290 intel_miptree_blit(struct brw_context *brw,
291 struct intel_mipmap_tree *src_mt,
292 int src_level, int src_slice,
293 uint32_t src_x, uint32_t src_y, bool src_flip,
294 struct intel_mipmap_tree *dst_mt,
295 int dst_level, int dst_slice,
296 uint32_t dst_x, uint32_t dst_y, bool dst_flip,
297 uint32_t width, uint32_t height,
298 GLenum logicop)
299 {
300 /* The blitter doesn't understand multisampling at all. */
301 if (src_mt->num_samples > 0 || dst_mt->num_samples > 0)
302 return false;
303
304 /* No sRGB decode or encode is done by the hardware blitter, which is
305 * consistent with what we want in many callers (glCopyTexSubImage(),
306 * texture validation, etc.).
307 */
308 mesa_format src_format = _mesa_get_srgb_format_linear(src_mt->format);
309 mesa_format dst_format = _mesa_get_srgb_format_linear(dst_mt->format);
310
311 /* The blitter doesn't support doing any format conversions. We do also
312 * support blitting ARGB8888 to XRGB8888 (trivial, the values dropped into
313 * the X channel don't matter), and XRGB8888 to ARGB8888 by setting the A
314 * channel to 1.0 at the end.
315 */
316 if (!intel_miptree_blit_compatible_formats(src_format, dst_format)) {
317 perf_debug("%s: Can't use hardware blitter from %s to %s, "
318 "falling back.\n", __func__,
319 _mesa_get_format_name(src_format),
320 _mesa_get_format_name(dst_format));
321 return false;
322 }
323
324 /* The blitter has no idea about HiZ or fast color clears, so we need to
325 * resolve the miptrees before we do anything.
326 */
327 intel_miptree_slice_resolve_depth(brw, src_mt, src_level, src_slice);
328 intel_miptree_slice_resolve_depth(brw, dst_mt, dst_level, dst_slice);
329 intel_miptree_resolve_color(brw, src_mt, src_level, src_slice, 1, 0);
330 intel_miptree_resolve_color(brw, dst_mt, dst_level, dst_slice, 1, 0);
331
332 if (src_flip)
333 src_y = minify(src_mt->physical_height0, src_level - src_mt->first_level) - src_y - height;
334
335 if (dst_flip)
336 dst_y = minify(dst_mt->physical_height0, dst_level - dst_mt->first_level) - dst_y - height;
337
338 uint32_t src_image_x, src_image_y, dst_image_x, dst_image_y;
339 intel_miptree_get_image_offset(src_mt, src_level, src_slice,
340 &src_image_x, &src_image_y);
341 intel_miptree_get_image_offset(dst_mt, dst_level, dst_slice,
342 &dst_image_x, &dst_image_y);
343 src_x += src_image_x;
344 src_y += src_image_y;
345 dst_x += dst_image_x;
346 dst_y += dst_image_y;
347
348 if (!emit_miptree_blit(brw, src_mt, src_x, src_y,
349 dst_mt, dst_x, dst_y, width, height,
350 src_flip != dst_flip, logicop)) {
351 return false;
352 }
353
354 /* XXX This could be done in a single pass using XY_FULL_MONO_PATTERN_BLT */
355 if (_mesa_get_format_bits(src_format, GL_ALPHA_BITS) == 0 &&
356 _mesa_get_format_bits(dst_format, GL_ALPHA_BITS) > 0) {
357 intel_miptree_set_alpha_to_one(brw, dst_mt,
358 dst_x, dst_y,
359 width, height);
360 }
361
362 return true;
363 }
364
365 bool
366 intel_miptree_copy(struct brw_context *brw,
367 struct intel_mipmap_tree *src_mt,
368 int src_level, int src_slice,
369 uint32_t src_x, uint32_t src_y,
370 struct intel_mipmap_tree *dst_mt,
371 int dst_level, int dst_slice,
372 uint32_t dst_x, uint32_t dst_y,
373 uint32_t src_width, uint32_t src_height)
374 {
375 /* The blitter doesn't understand multisampling at all. */
376 if (src_mt->num_samples > 0 || dst_mt->num_samples > 0)
377 return false;
378
379 if (src_mt->format == MESA_FORMAT_S_UINT8)
380 return false;
381
382 /* The blitter has no idea about HiZ or fast color clears, so we need to
383 * resolve the miptrees before we do anything.
384 */
385 intel_miptree_slice_resolve_depth(brw, src_mt, src_level, src_slice);
386 intel_miptree_slice_resolve_depth(brw, dst_mt, dst_level, dst_slice);
387 intel_miptree_resolve_color(brw, src_mt, src_level, src_slice, 1, 0);
388 intel_miptree_resolve_color(brw, dst_mt, dst_level, dst_slice, 1, 0);
389
390 uint32_t src_image_x, src_image_y;
391 intel_miptree_get_image_offset(src_mt, src_level, src_slice,
392 &src_image_x, &src_image_y);
393
394 if (_mesa_is_format_compressed(src_mt->format)) {
395 GLuint bw, bh;
396 _mesa_get_format_block_size(src_mt->format, &bw, &bh);
397
398 /* Compressed textures need not have dimensions that are a multiple of
399 * the block size. Rectangles in compressed textures do need to be a
400 * multiple of the block size. The one exception is that the right and
401 * bottom edges may be at the right or bottom edge of the miplevel even
402 * if it's not aligned.
403 */
404 assert(src_x % bw == 0);
405 assert(src_y % bh == 0);
406 assert(src_width % bw == 0 ||
407 src_x + src_width == minify(src_mt->logical_width0, src_level));
408 assert(src_height % bh == 0 ||
409 src_y + src_height == minify(src_mt->logical_height0, src_level));
410
411 src_x /= (int)bw;
412 src_y /= (int)bh;
413 src_width = DIV_ROUND_UP(src_width, (int)bw);
414 src_height = DIV_ROUND_UP(src_height, (int)bh);
415 }
416 src_x += src_image_x;
417 src_y += src_image_y;
418
419 uint32_t dst_image_x, dst_image_y;
420 intel_miptree_get_image_offset(dst_mt, dst_level, dst_slice,
421 &dst_image_x, &dst_image_y);
422
423 if (_mesa_is_format_compressed(dst_mt->format)) {
424 GLuint bw, bh;
425 _mesa_get_format_block_size(dst_mt->format, &bw, &bh);
426
427 assert(dst_x % bw == 0);
428 assert(dst_y % bh == 0);
429
430 dst_x /= (int)bw;
431 dst_y /= (int)bh;
432 }
433 dst_x += dst_image_x;
434 dst_y += dst_image_y;
435
436 return emit_miptree_blit(brw, src_mt, src_x, src_y,
437 dst_mt, dst_x, dst_y,
438 src_width, src_height, false, GL_COPY);
439 }
440
441 static bool
442 alignment_valid(struct brw_context *brw, unsigned offset, uint32_t tiling)
443 {
444 /* Tiled buffers must be page-aligned (4K). */
445 if (tiling != I915_TILING_NONE)
446 return (offset & 4095) == 0;
447
448 /* On Gen8+, linear buffers must be cacheline-aligned. */
449 if (brw->gen >= 8)
450 return (offset & 63) == 0;
451
452 return true;
453 }
454
455 static uint32_t
456 xy_blit_cmd(uint32_t src_tiling, uint32_t dst_tiling, uint32_t cpp)
457 {
458 uint32_t CMD = 0;
459
460 assert(cpp <= 4);
461 switch (cpp) {
462 case 1:
463 case 2:
464 CMD = XY_SRC_COPY_BLT_CMD;
465 break;
466 case 4:
467 CMD = XY_SRC_COPY_BLT_CMD | XY_BLT_WRITE_ALPHA | XY_BLT_WRITE_RGB;
468 break;
469 default:
470 unreachable("not reached");
471 }
472
473 if (dst_tiling != I915_TILING_NONE)
474 CMD |= XY_DST_TILED;
475
476 if (src_tiling != I915_TILING_NONE)
477 CMD |= XY_SRC_TILED;
478
479 return CMD;
480 }
481
482 /* Copy BitBlt
483 */
484 bool
485 intelEmitCopyBlit(struct brw_context *brw,
486 GLuint cpp,
487 int32_t src_pitch,
488 struct brw_bo *src_buffer,
489 GLuint src_offset,
490 uint32_t src_tiling,
491 int32_t dst_pitch,
492 struct brw_bo *dst_buffer,
493 GLuint dst_offset,
494 uint32_t dst_tiling,
495 GLshort src_x, GLshort src_y,
496 GLshort dst_x, GLshort dst_y,
497 GLshort w, GLshort h,
498 GLenum logic_op)
499 {
500 GLuint CMD, BR13;
501 int dst_y2 = dst_y + h;
502 int dst_x2 = dst_x + w;
503 bool dst_y_tiled = dst_tiling == I915_TILING_Y;
504 bool src_y_tiled = src_tiling == I915_TILING_Y;
505 uint32_t src_tile_w, src_tile_h;
506 uint32_t dst_tile_w, dst_tile_h;
507
508 if ((dst_y_tiled || src_y_tiled) && brw->gen < 6)
509 return false;
510
511 const unsigned bo_sizes = dst_buffer->size + src_buffer->size;
512
513 /* do space check before going any further */
514 if (!brw_batch_has_aperture_space(brw, bo_sizes))
515 intel_batchbuffer_flush(brw);
516
517 if (!brw_batch_has_aperture_space(brw, bo_sizes))
518 return false;
519
520 unsigned length = brw->gen >= 8 ? 10 : 8;
521
522 intel_batchbuffer_require_space(brw, length * 4, BLT_RING);
523 DBG("%s src:buf(%p)/%d+%d %d,%d dst:buf(%p)/%d+%d %d,%d sz:%dx%d\n",
524 __func__,
525 src_buffer, src_pitch, src_offset, src_x, src_y,
526 dst_buffer, dst_pitch, dst_offset, dst_x, dst_y, w, h);
527
528 intel_get_tile_dims(src_tiling, cpp, &src_tile_w, &src_tile_h);
529 intel_get_tile_dims(dst_tiling, cpp, &dst_tile_w, &dst_tile_h);
530
531 /* For Tiled surfaces, the pitch has to be a multiple of the Tile width
532 * (X direction width of the Tile). This is ensured while allocating the
533 * buffer object.
534 */
535 assert(src_tiling == I915_TILING_NONE || (src_pitch % src_tile_w) == 0);
536 assert(dst_tiling == I915_TILING_NONE || (dst_pitch % dst_tile_w) == 0);
537
538 /* For big formats (such as floating point), do the copy using 16 or
539 * 32bpp and multiply the coordinates.
540 */
541 if (cpp > 4) {
542 if (cpp % 4 == 2) {
543 dst_x *= cpp / 2;
544 dst_x2 *= cpp / 2;
545 src_x *= cpp / 2;
546 cpp = 2;
547 } else {
548 assert(cpp % 4 == 0);
549 dst_x *= cpp / 4;
550 dst_x2 *= cpp / 4;
551 src_x *= cpp / 4;
552 cpp = 4;
553 }
554 }
555
556 if (!alignment_valid(brw, dst_offset, dst_tiling))
557 return false;
558 if (!alignment_valid(brw, src_offset, src_tiling))
559 return false;
560
561 /* Blit pitch must be dword-aligned. Otherwise, the hardware appears to drop
562 * the low bits. Offsets must be naturally aligned.
563 */
564 if (src_pitch % 4 != 0 || src_offset % cpp != 0 ||
565 dst_pitch % 4 != 0 || dst_offset % cpp != 0)
566 return false;
567
568 assert(cpp <= 4);
569 BR13 = br13_for_cpp(cpp) | translate_raster_op(logic_op) << 16;
570
571 CMD = xy_blit_cmd(src_tiling, dst_tiling, cpp);
572
573 /* For tiled source and destination, pitch value should be specified
574 * as a number of Dwords.
575 */
576 if (dst_tiling != I915_TILING_NONE)
577 dst_pitch /= 4;
578
579 if (src_tiling != I915_TILING_NONE)
580 src_pitch /= 4;
581
582 if (dst_y2 <= dst_y || dst_x2 <= dst_x)
583 return true;
584
585 assert(dst_x < dst_x2);
586 assert(dst_y < dst_y2);
587
588 BEGIN_BATCH_BLT_TILED(length, dst_y_tiled, src_y_tiled);
589 OUT_BATCH(CMD | (length - 2));
590 OUT_BATCH(BR13 | (uint16_t)dst_pitch);
591 OUT_BATCH(SET_FIELD(dst_y, BLT_Y) | SET_FIELD(dst_x, BLT_X));
592 OUT_BATCH(SET_FIELD(dst_y2, BLT_Y) | SET_FIELD(dst_x2, BLT_X));
593 if (brw->gen >= 8) {
594 OUT_RELOC64(dst_buffer,
595 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
596 dst_offset);
597 } else {
598 OUT_RELOC(dst_buffer,
599 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
600 dst_offset);
601 }
602 OUT_BATCH(SET_FIELD(src_y, BLT_Y) | SET_FIELD(src_x, BLT_X));
603 OUT_BATCH((uint16_t)src_pitch);
604 if (brw->gen >= 8) {
605 OUT_RELOC64(src_buffer,
606 I915_GEM_DOMAIN_RENDER, 0,
607 src_offset);
608 } else {
609 OUT_RELOC(src_buffer,
610 I915_GEM_DOMAIN_RENDER, 0,
611 src_offset);
612 }
613
614 ADVANCE_BATCH_TILED(dst_y_tiled, src_y_tiled);
615
616 brw_emit_mi_flush(brw);
617
618 return true;
619 }
620
621 bool
622 intelEmitImmediateColorExpandBlit(struct brw_context *brw,
623 GLuint cpp,
624 GLubyte *src_bits, GLuint src_size,
625 GLuint fg_color,
626 GLshort dst_pitch,
627 struct brw_bo *dst_buffer,
628 GLuint dst_offset,
629 uint32_t dst_tiling,
630 GLshort x, GLshort y,
631 GLshort w, GLshort h,
632 GLenum logic_op)
633 {
634 int dwords = ALIGN(src_size, 8) / 4;
635 uint32_t opcode, br13, blit_cmd;
636
637 if (dst_tiling != I915_TILING_NONE) {
638 if (dst_offset & 4095)
639 return false;
640 if (dst_tiling == I915_TILING_Y)
641 return false;
642 }
643
644 assert((logic_op >= GL_CLEAR) && (logic_op <= (GL_CLEAR + 0x0f)));
645 assert(dst_pitch > 0);
646
647 if (w < 0 || h < 0)
648 return true;
649
650 DBG("%s dst:buf(%p)/%d+%d %d,%d sz:%dx%d, %d bytes %d dwords\n",
651 __func__,
652 dst_buffer, dst_pitch, dst_offset, x, y, w, h, src_size, dwords);
653
654 unsigned xy_setup_blt_length = brw->gen >= 8 ? 10 : 8;
655 intel_batchbuffer_require_space(brw, (xy_setup_blt_length * 4) +
656 (3 * 4) + dwords * 4, BLT_RING);
657
658 opcode = XY_SETUP_BLT_CMD;
659 if (cpp == 4)
660 opcode |= XY_BLT_WRITE_ALPHA | XY_BLT_WRITE_RGB;
661 if (dst_tiling != I915_TILING_NONE) {
662 opcode |= XY_DST_TILED;
663 dst_pitch /= 4;
664 }
665
666 br13 = dst_pitch | (translate_raster_op(logic_op) << 16) | (1 << 29);
667 br13 |= br13_for_cpp(cpp);
668
669 blit_cmd = XY_TEXT_IMMEDIATE_BLIT_CMD | XY_TEXT_BYTE_PACKED; /* packing? */
670 if (dst_tiling != I915_TILING_NONE)
671 blit_cmd |= XY_DST_TILED;
672
673 BEGIN_BATCH_BLT(xy_setup_blt_length + 3);
674 OUT_BATCH(opcode | (xy_setup_blt_length - 2));
675 OUT_BATCH(br13);
676 OUT_BATCH((0 << 16) | 0); /* clip x1, y1 */
677 OUT_BATCH((100 << 16) | 100); /* clip x2, y2 */
678 if (brw->gen >= 8) {
679 OUT_RELOC64(dst_buffer,
680 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
681 dst_offset);
682 } else {
683 OUT_RELOC(dst_buffer,
684 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
685 dst_offset);
686 }
687 OUT_BATCH(0); /* bg */
688 OUT_BATCH(fg_color); /* fg */
689 OUT_BATCH(0); /* pattern base addr */
690 if (brw->gen >= 8)
691 OUT_BATCH(0);
692
693 OUT_BATCH(blit_cmd | ((3 - 2) + dwords));
694 OUT_BATCH(SET_FIELD(y, BLT_Y) | SET_FIELD(x, BLT_X));
695 OUT_BATCH(SET_FIELD(y + h, BLT_Y) | SET_FIELD(x + w, BLT_X));
696 ADVANCE_BATCH();
697
698 intel_batchbuffer_data(brw, src_bits, dwords * 4, BLT_RING);
699
700 brw_emit_mi_flush(brw);
701
702 return true;
703 }
704
705 /* We don't have a memmove-type blit like some other hardware, so we'll do a
706 * rectangular blit covering a large space, then emit 1-scanline blit at the
707 * end to cover the last if we need.
708 */
709 void
710 intel_emit_linear_blit(struct brw_context *brw,
711 struct brw_bo *dst_bo,
712 unsigned int dst_offset,
713 struct brw_bo *src_bo,
714 unsigned int src_offset,
715 unsigned int size)
716 {
717 struct gl_context *ctx = &brw->ctx;
718 GLuint pitch, height;
719 int16_t src_x, dst_x;
720 bool ok;
721
722 do {
723 /* The pitch given to the GPU must be DWORD aligned, and
724 * we want width to match pitch. Max width is (1 << 15 - 1),
725 * rounding that down to the nearest DWORD is 1 << 15 - 4
726 */
727 pitch = ROUND_DOWN_TO(MIN2(size, (1 << 15) - 64), 4);
728 height = (size < pitch || pitch == 0) ? 1 : size / pitch;
729
730 src_x = src_offset % 64;
731 dst_x = dst_offset % 64;
732 pitch = ALIGN(MIN2(size, (1 << 15) - 64), 4);
733 assert(src_x + pitch < 1 << 15);
734 assert(dst_x + pitch < 1 << 15);
735
736 ok = intelEmitCopyBlit(brw, 1,
737 pitch, src_bo, src_offset - src_x, I915_TILING_NONE,
738 pitch, dst_bo, dst_offset - dst_x, I915_TILING_NONE,
739 src_x, 0, /* src x/y */
740 dst_x, 0, /* dst x/y */
741 MIN2(size, pitch), height, /* w, h */
742 GL_COPY);
743 if (!ok) {
744 _mesa_problem(ctx, "Failed to linear blit %dx%d\n",
745 MIN2(size, pitch), height);
746 return;
747 }
748
749 pitch *= height;
750 if (size <= pitch)
751 return;
752
753 src_offset += pitch;
754 dst_offset += pitch;
755 size -= pitch;
756 } while (1);
757 }
758
759 /**
760 * Used to initialize the alpha value of an ARGB8888 miptree after copying
761 * into it from an XRGB8888 source.
762 *
763 * This is very common with glCopyTexImage2D(). Note that the coordinates are
764 * relative to the start of the miptree, not relative to a slice within the
765 * miptree.
766 */
767 static void
768 intel_miptree_set_alpha_to_one(struct brw_context *brw,
769 struct intel_mipmap_tree *mt,
770 int x, int y, int width, int height)
771 {
772 uint32_t BR13, CMD;
773 int pitch, cpp;
774
775 pitch = mt->pitch;
776 cpp = mt->cpp;
777
778 DBG("%s dst:buf(%p)/%d %d,%d sz:%dx%d\n",
779 __func__, mt->bo, pitch, x, y, width, height);
780
781 BR13 = br13_for_cpp(cpp) | 0xf0 << 16;
782 CMD = XY_COLOR_BLT_CMD;
783 CMD |= XY_BLT_WRITE_ALPHA;
784
785 if (mt->tiling != I915_TILING_NONE) {
786 CMD |= XY_DST_TILED;
787 pitch /= 4;
788 }
789 BR13 |= pitch;
790
791 /* do space check before going any further */
792 if (!brw_batch_has_aperture_space(brw, mt->bo->size))
793 intel_batchbuffer_flush(brw);
794
795 unsigned length = brw->gen >= 8 ? 7 : 6;
796 bool dst_y_tiled = mt->tiling == I915_TILING_Y;
797
798 /* We need to split the blit into chunks that each fit within the blitter's
799 * restrictions. We can't use a chunk size of 32768 because we need to
800 * ensure that src_tile_x + chunk_size fits. We choose 16384 because it's
801 * a nice round power of two, big enough that performance won't suffer, and
802 * small enough to guarantee everything fits.
803 */
804 const uint32_t max_chunk_size = 16384;
805
806 for (uint32_t chunk_x = 0; chunk_x < width; chunk_x += max_chunk_size) {
807 for (uint32_t chunk_y = 0; chunk_y < height; chunk_y += max_chunk_size) {
808 const uint32_t chunk_w = MIN2(max_chunk_size, width - chunk_x);
809 const uint32_t chunk_h = MIN2(max_chunk_size, height - chunk_y);
810
811 uint32_t offset, tile_x, tile_y;
812 get_blit_intratile_offset_el(brw, mt,
813 x + chunk_x, y + chunk_y,
814 &offset, &tile_x, &tile_y);
815
816 BEGIN_BATCH_BLT_TILED(length, dst_y_tiled, false);
817 OUT_BATCH(CMD | (length - 2));
818 OUT_BATCH(BR13);
819 OUT_BATCH(SET_FIELD(y + chunk_y, BLT_Y) |
820 SET_FIELD(x + chunk_x, BLT_X));
821 OUT_BATCH(SET_FIELD(y + chunk_y + chunk_h, BLT_Y) |
822 SET_FIELD(x + chunk_x + chunk_w, BLT_X));
823 if (brw->gen >= 8) {
824 OUT_RELOC64(mt->bo,
825 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
826 offset);
827 } else {
828 OUT_RELOC(mt->bo,
829 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER,
830 offset);
831 }
832 OUT_BATCH(0xffffffff); /* white, but only alpha gets written */
833 ADVANCE_BATCH_TILED(dst_y_tiled, false);
834 }
835 }
836
837 brw_emit_mi_flush(brw);
838 }