i965/miptree: Use intel_miptree_copy for maps
[mesa.git] / src / mesa / drivers / dri / i965 / intel_mipmap_tree.c
1 /*
2 * Copyright 2006 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 <GL/gl.h>
27 #include <GL/internal/dri_interface.h>
28
29 #include "intel_batchbuffer.h"
30 #include "intel_mipmap_tree.h"
31 #include "intel_resolve_map.h"
32 #include "intel_tex.h"
33 #include "intel_blit.h"
34 #include "intel_fbo.h"
35
36 #include "brw_blorp.h"
37 #include "brw_context.h"
38 #include "brw_state.h"
39
40 #include "main/enums.h"
41 #include "main/fbobject.h"
42 #include "main/formats.h"
43 #include "main/glformats.h"
44 #include "main/texcompress_etc.h"
45 #include "main/teximage.h"
46 #include "main/streaming-load-memcpy.h"
47 #include "x86/common_x86_asm.h"
48
49 #define FILE_DEBUG_FLAG DEBUG_MIPTREE
50
51 static void *intel_miptree_map_raw(struct brw_context *brw,
52 struct intel_mipmap_tree *mt);
53
54 static void intel_miptree_unmap_raw(struct intel_mipmap_tree *mt);
55
56 static bool
57 intel_miptree_alloc_mcs(struct brw_context *brw,
58 struct intel_mipmap_tree *mt,
59 GLuint num_samples);
60
61 /**
62 * Determine which MSAA layout should be used by the MSAA surface being
63 * created, based on the chip generation and the surface type.
64 */
65 static enum intel_msaa_layout
66 compute_msaa_layout(struct brw_context *brw, mesa_format format,
67 bool disable_aux_buffers)
68 {
69 /* Prior to Gen7, all MSAA surfaces used IMS layout. */
70 if (brw->gen < 7)
71 return INTEL_MSAA_LAYOUT_IMS;
72
73 /* In Gen7, IMS layout is only used for depth and stencil buffers. */
74 switch (_mesa_get_format_base_format(format)) {
75 case GL_DEPTH_COMPONENT:
76 case GL_STENCIL_INDEX:
77 case GL_DEPTH_STENCIL:
78 return INTEL_MSAA_LAYOUT_IMS;
79 default:
80 /* From the Ivy Bridge PRM, Vol4 Part1 p77 ("MCS Enable"):
81 *
82 * This field must be set to 0 for all SINT MSRTs when all RT channels
83 * are not written
84 *
85 * In practice this means that we have to disable MCS for all signed
86 * integer MSAA buffers. The alternative, to disable MCS only when one
87 * of the render target channels is disabled, is impractical because it
88 * would require converting between CMS and UMS MSAA layouts on the fly,
89 * which is expensive.
90 */
91 if (brw->gen == 7 && _mesa_get_format_datatype(format) == GL_INT) {
92 return INTEL_MSAA_LAYOUT_UMS;
93 } else if (disable_aux_buffers) {
94 /* We can't use the CMS layout because it uses an aux buffer, the MCS
95 * buffer. So fallback to UMS, which is identical to CMS without the
96 * MCS. */
97 return INTEL_MSAA_LAYOUT_UMS;
98 } else {
99 return INTEL_MSAA_LAYOUT_CMS;
100 }
101 }
102 }
103
104 bool
105 intel_tiling_supports_non_msrt_mcs(const struct brw_context *brw,
106 unsigned tiling)
107 {
108 /* From the Ivy Bridge PRM, Vol2 Part1 11.7 "MCS Buffer for Render
109 * Target(s)", beneath the "Fast Color Clear" bullet (p326):
110 *
111 * - Support is limited to tiled render targets.
112 *
113 * Gen9 changes the restriction to Y-tile only.
114 */
115 if (brw->gen >= 9)
116 return tiling == I915_TILING_Y;
117 else if (brw->gen >= 7)
118 return tiling != I915_TILING_NONE;
119 else
120 return false;
121 }
122
123 /**
124 * For a single-sampled render target ("non-MSRT"), determine if an MCS buffer
125 * can be used. This doesn't (and should not) inspect any of the properties of
126 * the miptree's BO.
127 *
128 * From the Ivy Bridge PRM, Vol2 Part1 11.7 "MCS Buffer for Render Target(s)",
129 * beneath the "Fast Color Clear" bullet (p326):
130 *
131 * - Support is for non-mip-mapped and non-array surface types only.
132 *
133 * And then later, on p327:
134 *
135 * - MCS buffer for non-MSRT is supported only for RT formats 32bpp,
136 * 64bpp, and 128bpp.
137 *
138 * From the Skylake documentation, it is made clear that X-tiling is no longer
139 * supported:
140 *
141 * - MCS and Lossless compression is supported for TiledY/TileYs/TileYf
142 * non-MSRTs only.
143 */
144 bool
145 intel_miptree_supports_non_msrt_fast_clear(struct brw_context *brw,
146 const struct intel_mipmap_tree *mt)
147 {
148 /* MCS support does not exist prior to Gen7 */
149 if (brw->gen < 7)
150 return false;
151
152 if (mt->disable_aux_buffers)
153 return false;
154
155 /* This function applies only to non-multisampled render targets. */
156 if (mt->num_samples > 1)
157 return false;
158
159 /* MCS is only supported for color buffers */
160 switch (_mesa_get_format_base_format(mt->format)) {
161 case GL_DEPTH_COMPONENT:
162 case GL_DEPTH_STENCIL:
163 case GL_STENCIL_INDEX:
164 return false;
165 }
166
167 if (mt->cpp != 4 && mt->cpp != 8 && mt->cpp != 16)
168 return false;
169
170 const bool mip_mapped = mt->first_level != 0 || mt->last_level != 0;
171 const bool arrayed = mt->physical_depth0 != 1;
172
173 if (arrayed) {
174 /* Multisample surfaces with the CMS layout are not layered surfaces,
175 * yet still have physical_depth0 > 1. Assert that we don't
176 * accidentally reject a multisampled surface here. We should have
177 * rejected it earlier by explicitly checking the sample count.
178 */
179 assert(mt->num_samples <= 1);
180 }
181
182 /* Handle the hardware restrictions...
183 *
184 * All GENs have the following restriction: "MCS buffer for non-MSRT is
185 * supported only for RT formats 32bpp, 64bpp, and 128bpp."
186 *
187 * From the HSW PRM Volume 7: 3D-Media-GPGPU, page 652: (Color Clear of
188 * Non-MultiSampler Render Target Restrictions) Support is for
189 * non-mip-mapped and non-array surface types only.
190 *
191 * From the BDW PRM Volume 7: 3D-Media-GPGPU, page 649: (Color Clear of
192 * Non-MultiSampler Render Target Restriction). Mip-mapped and arrayed
193 * surfaces are supported with MCS buffer layout with these alignments in
194 * the RT space: Horizontal Alignment = 256 and Vertical Alignment = 128.
195 *
196 * From the SKL PRM Volume 7: 3D-Media-GPGPU, page 632: (Color Clear of
197 * Non-MultiSampler Render Target Restriction). Mip-mapped and arrayed
198 * surfaces are supported with MCS buffer layout with these alignments in
199 * the RT space: Horizontal Alignment = 128 and Vertical Alignment = 64.
200 */
201 if (brw->gen < 8 && (mip_mapped || arrayed))
202 return false;
203
204 /* There's no point in using an MCS buffer if the surface isn't in a
205 * renderable format.
206 */
207 if (!brw->format_supported_as_render_target[mt->format])
208 return false;
209
210 if (brw->gen >= 9) {
211 mesa_format linear_format = _mesa_get_srgb_format_linear(mt->format);
212 const uint32_t brw_format = brw_format_for_mesa_format(linear_format);
213 return isl_format_supports_lossless_compression(&brw->screen->devinfo,
214 brw_format);
215 } else
216 return true;
217 }
218
219 /* On Gen9 support for color buffer compression was extended to single
220 * sampled surfaces. This is a helper considering both auxiliary buffer
221 * type and number of samples telling if the given miptree represents
222 * the new single sampled case - also called lossless compression.
223 */
224 bool
225 intel_miptree_is_lossless_compressed(const struct brw_context *brw,
226 const struct intel_mipmap_tree *mt)
227 {
228 /* Only available from Gen9 onwards. */
229 if (brw->gen < 9)
230 return false;
231
232 /* Compression always requires auxiliary buffer. */
233 if (!mt->mcs_buf)
234 return false;
235
236 /* Single sample compression is represented re-using msaa compression
237 * layout type: "Compressed Multisampled Surfaces".
238 */
239 if (mt->msaa_layout != INTEL_MSAA_LAYOUT_CMS)
240 return false;
241
242 /* And finally distinguish between msaa and single sample case. */
243 return mt->num_samples <= 1;
244 }
245
246 bool
247 intel_miptree_supports_lossless_compressed(struct brw_context *brw,
248 const struct intel_mipmap_tree *mt)
249 {
250 /* For now compression is only enabled for integer formats even though
251 * there exist supported floating point formats also. This is a heuristic
252 * decision based on current public benchmarks. In none of the cases these
253 * formats provided any improvement but a few cases were seen to regress.
254 * Hence these are left to to be enabled in the future when they are known
255 * to improve things.
256 */
257 if (_mesa_get_format_datatype(mt->format) == GL_FLOAT)
258 return false;
259
260 /* Fast clear mechanism and lossless compression go hand in hand. */
261 if (!intel_miptree_supports_non_msrt_fast_clear(brw, mt))
262 return false;
263
264 /* Fast clear can be also used to clear srgb surfaces by using equivalent
265 * linear format. This trick, however, can't be extended to be used with
266 * lossless compression and therefore a check is needed to see if the format
267 * really is linear.
268 */
269 return _mesa_get_srgb_format_linear(mt->format) == mt->format;
270 }
271
272 /**
273 * Determine depth format corresponding to a depth+stencil format,
274 * for separate stencil.
275 */
276 mesa_format
277 intel_depth_format_for_depthstencil_format(mesa_format format) {
278 switch (format) {
279 case MESA_FORMAT_Z24_UNORM_S8_UINT:
280 return MESA_FORMAT_Z24_UNORM_X8_UINT;
281 case MESA_FORMAT_Z32_FLOAT_S8X24_UINT:
282 return MESA_FORMAT_Z_FLOAT32;
283 default:
284 return format;
285 }
286 }
287
288
289 /**
290 * @param for_bo Indicates that the caller is
291 * intel_miptree_create_for_bo(). If true, then do not create
292 * \c stencil_mt.
293 */
294 static struct intel_mipmap_tree *
295 intel_miptree_create_layout(struct brw_context *brw,
296 GLenum target,
297 mesa_format format,
298 GLuint first_level,
299 GLuint last_level,
300 GLuint width0,
301 GLuint height0,
302 GLuint depth0,
303 GLuint num_samples,
304 uint32_t layout_flags)
305 {
306 struct intel_mipmap_tree *mt = calloc(sizeof(*mt), 1);
307 if (!mt)
308 return NULL;
309
310 DBG("%s target %s format %s level %d..%d slices %d <-- %p\n", __func__,
311 _mesa_enum_to_string(target),
312 _mesa_get_format_name(format),
313 first_level, last_level, depth0, mt);
314
315 if (target == GL_TEXTURE_1D_ARRAY)
316 assert(height0 == 1);
317
318 mt->target = target;
319 mt->format = format;
320 mt->first_level = first_level;
321 mt->last_level = last_level;
322 mt->logical_width0 = width0;
323 mt->logical_height0 = height0;
324 mt->logical_depth0 = depth0;
325 mt->disable_aux_buffers = (layout_flags & MIPTREE_LAYOUT_DISABLE_AUX) != 0;
326 mt->no_ccs = true;
327 mt->is_scanout = (layout_flags & MIPTREE_LAYOUT_FOR_SCANOUT) != 0;
328 exec_list_make_empty(&mt->hiz_map);
329 exec_list_make_empty(&mt->color_resolve_map);
330 mt->cpp = _mesa_get_format_bytes(format);
331 mt->num_samples = num_samples;
332 mt->compressed = _mesa_is_format_compressed(format);
333 mt->msaa_layout = INTEL_MSAA_LAYOUT_NONE;
334 mt->refcount = 1;
335
336 int depth_multiply = 1;
337 if (num_samples > 1) {
338 /* Adjust width/height/depth for MSAA */
339 mt->msaa_layout = compute_msaa_layout(brw, format,
340 mt->disable_aux_buffers);
341 if (mt->msaa_layout == INTEL_MSAA_LAYOUT_IMS) {
342 /* From the Ivybridge PRM, Volume 1, Part 1, page 108:
343 * "If the surface is multisampled and it is a depth or stencil
344 * surface or Multisampled Surface StorageFormat in SURFACE_STATE is
345 * MSFMT_DEPTH_STENCIL, WL and HL must be adjusted as follows before
346 * proceeding:
347 *
348 * +----------------------------------------------------------------+
349 * | Num Multisamples | W_l = | H_l = |
350 * +----------------------------------------------------------------+
351 * | 2 | ceiling(W_l / 2) * 4 | H_l (no adjustment) |
352 * | 4 | ceiling(W_l / 2) * 4 | ceiling(H_l / 2) * 4 |
353 * | 8 | ceiling(W_l / 2) * 8 | ceiling(H_l / 2) * 4 |
354 * | 16 | ceiling(W_l / 2) * 8 | ceiling(H_l / 2) * 8 |
355 * +----------------------------------------------------------------+
356 * "
357 *
358 * Note that MSFMT_DEPTH_STENCIL just means the IMS (interleaved)
359 * format rather than UMS/CMS (array slices). The Sandybridge PRM,
360 * Volume 1, Part 1, Page 111 has the same formula for 4x MSAA.
361 *
362 * Another more complicated explanation for these adjustments comes
363 * from the Sandybridge PRM, volume 4, part 1, page 31:
364 *
365 * "Any of the other messages (sample*, LOD, load4) used with a
366 * (4x) multisampled surface will in-effect sample a surface with
367 * double the height and width as that indicated in the surface
368 * state. Each pixel position on the original-sized surface is
369 * replaced with a 2x2 of samples with the following arrangement:
370 *
371 * sample 0 sample 2
372 * sample 1 sample 3"
373 *
374 * Thus, when sampling from a multisampled texture, it behaves as
375 * though the layout in memory for (x,y,sample) is:
376 *
377 * (0,0,0) (0,0,2) (1,0,0) (1,0,2)
378 * (0,0,1) (0,0,3) (1,0,1) (1,0,3)
379 *
380 * (0,1,0) (0,1,2) (1,1,0) (1,1,2)
381 * (0,1,1) (0,1,3) (1,1,1) (1,1,3)
382 *
383 * However, the actual layout of multisampled data in memory is:
384 *
385 * (0,0,0) (1,0,0) (0,0,1) (1,0,1)
386 * (0,1,0) (1,1,0) (0,1,1) (1,1,1)
387 *
388 * (0,0,2) (1,0,2) (0,0,3) (1,0,3)
389 * (0,1,2) (1,1,2) (0,1,3) (1,1,3)
390 *
391 * This pattern repeats for each 2x2 pixel block.
392 *
393 * As a result, when calculating the size of our 4-sample buffer for
394 * an odd width or height, we have to align before scaling up because
395 * sample 3 is in that bottom right 2x2 block.
396 */
397 switch (num_samples) {
398 case 2:
399 assert(brw->gen >= 8);
400 width0 = ALIGN(width0, 2) * 2;
401 height0 = ALIGN(height0, 2);
402 break;
403 case 4:
404 width0 = ALIGN(width0, 2) * 2;
405 height0 = ALIGN(height0, 2) * 2;
406 break;
407 case 8:
408 width0 = ALIGN(width0, 2) * 4;
409 height0 = ALIGN(height0, 2) * 2;
410 break;
411 case 16:
412 width0 = ALIGN(width0, 2) * 4;
413 height0 = ALIGN(height0, 2) * 4;
414 break;
415 default:
416 /* num_samples should already have been quantized to 0, 1, 2, 4, 8
417 * or 16.
418 */
419 unreachable("not reached");
420 }
421 } else {
422 /* Non-interleaved */
423 depth_multiply = num_samples;
424 depth0 *= depth_multiply;
425 }
426 }
427
428 /* Set array_layout to ALL_SLICES_AT_EACH_LOD when array_spacing_lod0 can
429 * be used. array_spacing_lod0 is only used for non-IMS MSAA surfaces on
430 * Gen 7 and 8. On Gen 8 and 9 this layout is not available but it is still
431 * used on Gen8 to make it pick a qpitch value which doesn't include space
432 * for the mipmaps. On Gen9 this is not necessary because it will
433 * automatically pick a packed qpitch value whenever mt->first_level ==
434 * mt->last_level.
435 * TODO: can we use it elsewhere?
436 * TODO: also disable this on Gen8 and pick the qpitch value like Gen9
437 */
438 if (brw->gen >= 9) {
439 mt->array_layout = ALL_LOD_IN_EACH_SLICE;
440 } else {
441 switch (mt->msaa_layout) {
442 case INTEL_MSAA_LAYOUT_NONE:
443 case INTEL_MSAA_LAYOUT_IMS:
444 mt->array_layout = ALL_LOD_IN_EACH_SLICE;
445 break;
446 case INTEL_MSAA_LAYOUT_UMS:
447 case INTEL_MSAA_LAYOUT_CMS:
448 mt->array_layout = ALL_SLICES_AT_EACH_LOD;
449 break;
450 }
451 }
452
453 if (target == GL_TEXTURE_CUBE_MAP)
454 assert(depth0 == 6 * depth_multiply);
455
456 mt->physical_width0 = width0;
457 mt->physical_height0 = height0;
458 mt->physical_depth0 = depth0;
459
460 if (!(layout_flags & MIPTREE_LAYOUT_FOR_BO) &&
461 _mesa_get_format_base_format(format) == GL_DEPTH_STENCIL &&
462 (brw->must_use_separate_stencil ||
463 (brw->has_separate_stencil &&
464 intel_miptree_wants_hiz_buffer(brw, mt)))) {
465 uint32_t stencil_flags = MIPTREE_LAYOUT_ACCELERATED_UPLOAD;
466 if (brw->gen == 6) {
467 stencil_flags |= MIPTREE_LAYOUT_FORCE_ALL_SLICE_AT_LOD |
468 MIPTREE_LAYOUT_TILING_ANY;
469 }
470
471 mt->stencil_mt = intel_miptree_create(brw,
472 mt->target,
473 MESA_FORMAT_S_UINT8,
474 mt->first_level,
475 mt->last_level,
476 mt->logical_width0,
477 mt->logical_height0,
478 mt->logical_depth0,
479 num_samples,
480 stencil_flags);
481
482 if (!mt->stencil_mt) {
483 intel_miptree_release(&mt);
484 return NULL;
485 }
486 mt->stencil_mt->r8stencil_needs_update = true;
487
488 /* Fix up the Z miptree format for how we're splitting out separate
489 * stencil. Gen7 expects there to be no stencil bits in its depth buffer.
490 */
491 mt->format = intel_depth_format_for_depthstencil_format(mt->format);
492 mt->cpp = 4;
493
494 if (format == mt->format) {
495 _mesa_problem(NULL, "Unknown format %s in separate stencil mt\n",
496 _mesa_get_format_name(mt->format));
497 }
498 }
499
500 if (layout_flags & MIPTREE_LAYOUT_FORCE_ALL_SLICE_AT_LOD)
501 mt->array_layout = ALL_SLICES_AT_EACH_LOD;
502
503 /*
504 * Obey HALIGN_16 constraints for Gen8 and Gen9 buffers which are
505 * multisampled or have an AUX buffer attached to it.
506 *
507 * GEN | MSRT | AUX_CCS_* or AUX_MCS
508 * -------------------------------------------
509 * 9 | HALIGN_16 | HALIGN_16
510 * 8 | HALIGN_ANY | HALIGN_16
511 * 7 | ? | ?
512 * 6 | ? | ?
513 */
514 if (intel_miptree_supports_non_msrt_fast_clear(brw, mt)) {
515 if (brw->gen >= 9 || (brw->gen == 8 && num_samples <= 1))
516 layout_flags |= MIPTREE_LAYOUT_FORCE_HALIGN16;
517 } else if (brw->gen >= 9 && num_samples > 1) {
518 layout_flags |= MIPTREE_LAYOUT_FORCE_HALIGN16;
519 } else {
520 const UNUSED bool is_lossless_compressed_aux =
521 brw->gen >= 9 && num_samples == 1 &&
522 mt->format == MESA_FORMAT_R_UINT32;
523
524 /* For now, nothing else has this requirement */
525 assert(is_lossless_compressed_aux ||
526 (layout_flags & MIPTREE_LAYOUT_FORCE_HALIGN16) == 0);
527 }
528
529 brw_miptree_layout(brw, mt, layout_flags);
530
531 if (mt->disable_aux_buffers)
532 assert(mt->msaa_layout != INTEL_MSAA_LAYOUT_CMS);
533
534 return mt;
535 }
536
537
538 /**
539 * Choose an appropriate uncompressed format for a requested
540 * compressed format, if unsupported.
541 */
542 mesa_format
543 intel_lower_compressed_format(struct brw_context *brw, mesa_format format)
544 {
545 /* No need to lower ETC formats on these platforms,
546 * they are supported natively.
547 */
548 if (brw->gen >= 8 || brw->is_baytrail)
549 return format;
550
551 switch (format) {
552 case MESA_FORMAT_ETC1_RGB8:
553 return MESA_FORMAT_R8G8B8X8_UNORM;
554 case MESA_FORMAT_ETC2_RGB8:
555 return MESA_FORMAT_R8G8B8X8_UNORM;
556 case MESA_FORMAT_ETC2_SRGB8:
557 case MESA_FORMAT_ETC2_SRGB8_ALPHA8_EAC:
558 case MESA_FORMAT_ETC2_SRGB8_PUNCHTHROUGH_ALPHA1:
559 return MESA_FORMAT_B8G8R8A8_SRGB;
560 case MESA_FORMAT_ETC2_RGBA8_EAC:
561 case MESA_FORMAT_ETC2_RGB8_PUNCHTHROUGH_ALPHA1:
562 return MESA_FORMAT_R8G8B8A8_UNORM;
563 case MESA_FORMAT_ETC2_R11_EAC:
564 return MESA_FORMAT_R_UNORM16;
565 case MESA_FORMAT_ETC2_SIGNED_R11_EAC:
566 return MESA_FORMAT_R_SNORM16;
567 case MESA_FORMAT_ETC2_RG11_EAC:
568 return MESA_FORMAT_R16G16_UNORM;
569 case MESA_FORMAT_ETC2_SIGNED_RG11_EAC:
570 return MESA_FORMAT_R16G16_SNORM;
571 default:
572 /* Non ETC1 / ETC2 format */
573 return format;
574 }
575 }
576
577 /* This function computes Yf/Ys tiled bo size, alignment and pitch. */
578 static unsigned long
579 intel_get_yf_ys_bo_size(struct intel_mipmap_tree *mt, unsigned *alignment,
580 unsigned long *pitch)
581 {
582 uint32_t tile_width, tile_height;
583 unsigned long stride, size, aligned_y;
584
585 assert(mt->tr_mode != INTEL_MIPTREE_TRMODE_NONE);
586 intel_get_tile_dims(mt->tiling, mt->tr_mode, mt->cpp,
587 &tile_width, &tile_height);
588
589 aligned_y = ALIGN(mt->total_height, tile_height);
590 stride = mt->total_width * mt->cpp;
591 stride = ALIGN(stride, tile_width);
592 size = stride * aligned_y;
593
594 if (mt->tr_mode == INTEL_MIPTREE_TRMODE_YF) {
595 assert(size % 4096 == 0);
596 *alignment = 4096;
597 } else {
598 assert(size % (64 * 1024) == 0);
599 *alignment = 64 * 1024;
600 }
601 *pitch = stride;
602 return size;
603 }
604
605 static struct intel_mipmap_tree *
606 miptree_create(struct brw_context *brw,
607 GLenum target,
608 mesa_format format,
609 GLuint first_level,
610 GLuint last_level,
611 GLuint width0,
612 GLuint height0,
613 GLuint depth0,
614 GLuint num_samples,
615 uint32_t layout_flags)
616 {
617 struct intel_mipmap_tree *mt;
618 mesa_format tex_format = format;
619 mesa_format etc_format = MESA_FORMAT_NONE;
620 uint32_t alloc_flags = 0;
621
622 format = intel_lower_compressed_format(brw, format);
623
624 etc_format = (format != tex_format) ? tex_format : MESA_FORMAT_NONE;
625
626 assert((layout_flags & MIPTREE_LAYOUT_FOR_BO) == 0);
627 mt = intel_miptree_create_layout(brw, target, format,
628 first_level, last_level, width0,
629 height0, depth0, num_samples,
630 layout_flags);
631 /*
632 * pitch == 0 || height == 0 indicates the null texture
633 */
634 if (!mt || !mt->total_width || !mt->total_height) {
635 intel_miptree_release(&mt);
636 return NULL;
637 }
638
639 if (mt->tiling == (I915_TILING_Y | I915_TILING_X))
640 mt->tiling = I915_TILING_Y;
641
642 if (layout_flags & MIPTREE_LAYOUT_ACCELERATED_UPLOAD)
643 alloc_flags |= BO_ALLOC_FOR_RENDER;
644
645 unsigned long pitch;
646 mt->etc_format = etc_format;
647
648 if (mt->tr_mode != INTEL_MIPTREE_TRMODE_NONE) {
649 unsigned alignment = 0;
650 unsigned long size;
651 size = intel_get_yf_ys_bo_size(mt, &alignment, &pitch);
652 assert(size);
653 mt->bo = drm_intel_bo_alloc_for_render(brw->bufmgr, "miptree",
654 size, alignment);
655 } else {
656 if (format == MESA_FORMAT_S_UINT8) {
657 /* Align to size of W tile, 64x64. */
658 mt->bo = drm_intel_bo_alloc_tiled(brw->bufmgr, "miptree",
659 ALIGN(mt->total_width, 64),
660 ALIGN(mt->total_height, 64),
661 mt->cpp, &mt->tiling, &pitch,
662 alloc_flags);
663 } else {
664 mt->bo = drm_intel_bo_alloc_tiled(brw->bufmgr, "miptree",
665 mt->total_width, mt->total_height,
666 mt->cpp, &mt->tiling, &pitch,
667 alloc_flags);
668 }
669 }
670
671 mt->pitch = pitch;
672
673 return mt;
674 }
675
676 struct intel_mipmap_tree *
677 intel_miptree_create(struct brw_context *brw,
678 GLenum target,
679 mesa_format format,
680 GLuint first_level,
681 GLuint last_level,
682 GLuint width0,
683 GLuint height0,
684 GLuint depth0,
685 GLuint num_samples,
686 uint32_t layout_flags)
687 {
688 struct intel_mipmap_tree *mt = miptree_create(
689 brw, target, format,
690 first_level, last_level,
691 width0, height0, depth0, num_samples,
692 layout_flags);
693
694 /* If the BO is too large to fit in the aperture, we need to use the
695 * BLT engine to support it. Prior to Sandybridge, the BLT paths can't
696 * handle Y-tiling, so we need to fall back to X.
697 */
698 if (brw->gen < 6 && mt->bo->size >= brw->max_gtt_map_object_size &&
699 mt->tiling == I915_TILING_Y) {
700 unsigned long pitch = mt->pitch;
701 const uint32_t alloc_flags =
702 (layout_flags & MIPTREE_LAYOUT_ACCELERATED_UPLOAD) ?
703 BO_ALLOC_FOR_RENDER : 0;
704 perf_debug("%dx%d miptree larger than aperture; falling back to X-tiled\n",
705 mt->total_width, mt->total_height);
706
707 mt->tiling = I915_TILING_X;
708 drm_intel_bo_unreference(mt->bo);
709 mt->bo = drm_intel_bo_alloc_tiled(brw->bufmgr, "miptree",
710 mt->total_width, mt->total_height, mt->cpp,
711 &mt->tiling, &pitch, alloc_flags);
712 mt->pitch = pitch;
713 }
714
715 mt->offset = 0;
716
717 if (!mt->bo) {
718 intel_miptree_release(&mt);
719 return NULL;
720 }
721
722
723 if (mt->msaa_layout == INTEL_MSAA_LAYOUT_CMS) {
724 assert(mt->num_samples > 1);
725 if (!intel_miptree_alloc_mcs(brw, mt, num_samples)) {
726 intel_miptree_release(&mt);
727 return NULL;
728 }
729 }
730
731 /* If this miptree is capable of supporting fast color clears, set
732 * fast_clear_state appropriately to ensure that fast clears will occur.
733 * Allocation of the MCS miptree will be deferred until the first fast
734 * clear actually occurs or when compressed single sampled buffer is
735 * written by the GPU for the first time.
736 */
737 if (intel_tiling_supports_non_msrt_mcs(brw, mt->tiling) &&
738 intel_miptree_supports_non_msrt_fast_clear(brw, mt)) {
739 mt->no_ccs = false;
740 assert(brw->gen < 8 || mt->halign == 16 || num_samples <= 1);
741
742 /* On Gen9+ clients are not currently capable of consuming compressed
743 * single-sampled buffers. Disabling compression allows us to skip
744 * resolves.
745 */
746 const bool lossless_compression_disabled = INTEL_DEBUG & DEBUG_NO_RBC;
747 const bool is_lossless_compressed =
748 unlikely(!lossless_compression_disabled) &&
749 brw->gen >= 9 && !mt->is_scanout &&
750 intel_miptree_supports_lossless_compressed(brw, mt);
751
752 if (is_lossless_compressed) {
753 intel_miptree_alloc_non_msrt_mcs(brw, mt, is_lossless_compressed);
754 }
755 }
756
757 return mt;
758 }
759
760 struct intel_mipmap_tree *
761 intel_miptree_create_for_bo(struct brw_context *brw,
762 drm_intel_bo *bo,
763 mesa_format format,
764 uint32_t offset,
765 uint32_t width,
766 uint32_t height,
767 uint32_t depth,
768 int pitch,
769 uint32_t layout_flags)
770 {
771 struct intel_mipmap_tree *mt;
772 uint32_t tiling, swizzle;
773 GLenum target;
774
775 drm_intel_bo_get_tiling(bo, &tiling, &swizzle);
776
777 /* Nothing will be able to use this miptree with the BO if the offset isn't
778 * aligned.
779 */
780 if (tiling != I915_TILING_NONE)
781 assert(offset % 4096 == 0);
782
783 /* miptrees can't handle negative pitch. If you need flipping of images,
784 * that's outside of the scope of the mt.
785 */
786 assert(pitch >= 0);
787
788 target = depth > 1 ? GL_TEXTURE_2D_ARRAY : GL_TEXTURE_2D;
789
790 /* The BO already has a tiling format and we shouldn't confuse the lower
791 * layers by making it try to find a tiling format again.
792 */
793 assert((layout_flags & MIPTREE_LAYOUT_TILING_ANY) == 0);
794 assert((layout_flags & MIPTREE_LAYOUT_TILING_NONE) == 0);
795
796 layout_flags |= MIPTREE_LAYOUT_FOR_BO;
797 mt = intel_miptree_create_layout(brw, target, format,
798 0, 0,
799 width, height, depth, 0,
800 layout_flags);
801 if (!mt)
802 return NULL;
803
804 drm_intel_bo_reference(bo);
805 mt->bo = bo;
806 mt->pitch = pitch;
807 mt->offset = offset;
808 mt->tiling = tiling;
809
810 return mt;
811 }
812
813 /**
814 * For a singlesample renderbuffer, this simply wraps the given BO with a
815 * miptree.
816 *
817 * For a multisample renderbuffer, this wraps the window system's
818 * (singlesample) BO with a singlesample miptree attached to the
819 * intel_renderbuffer, then creates a multisample miptree attached to irb->mt
820 * that will contain the actual rendering (which is lazily resolved to
821 * irb->singlesample_mt).
822 */
823 void
824 intel_update_winsys_renderbuffer_miptree(struct brw_context *intel,
825 struct intel_renderbuffer *irb,
826 drm_intel_bo *bo,
827 uint32_t width, uint32_t height,
828 uint32_t pitch)
829 {
830 struct intel_mipmap_tree *singlesample_mt = NULL;
831 struct intel_mipmap_tree *multisample_mt = NULL;
832 struct gl_renderbuffer *rb = &irb->Base.Base;
833 mesa_format format = rb->Format;
834 int num_samples = rb->NumSamples;
835
836 /* Only the front and back buffers, which are color buffers, are allocated
837 * through the image loader.
838 */
839 assert(_mesa_get_format_base_format(format) == GL_RGB ||
840 _mesa_get_format_base_format(format) == GL_RGBA);
841
842 singlesample_mt = intel_miptree_create_for_bo(intel,
843 bo,
844 format,
845 0,
846 width,
847 height,
848 1,
849 pitch,
850 MIPTREE_LAYOUT_FOR_SCANOUT);
851 if (!singlesample_mt)
852 goto fail;
853
854 /* If this miptree is capable of supporting fast color clears, set
855 * mcs_state appropriately to ensure that fast clears will occur.
856 * Allocation of the MCS miptree will be deferred until the first fast
857 * clear actually occurs.
858 */
859 if (intel_tiling_supports_non_msrt_mcs(intel, singlesample_mt->tiling) &&
860 intel_miptree_supports_non_msrt_fast_clear(intel, singlesample_mt)) {
861 singlesample_mt->no_ccs = false;
862 }
863
864 if (num_samples == 0) {
865 intel_miptree_release(&irb->mt);
866 irb->mt = singlesample_mt;
867
868 assert(!irb->singlesample_mt);
869 } else {
870 intel_miptree_release(&irb->singlesample_mt);
871 irb->singlesample_mt = singlesample_mt;
872
873 if (!irb->mt ||
874 irb->mt->logical_width0 != width ||
875 irb->mt->logical_height0 != height) {
876 multisample_mt = intel_miptree_create_for_renderbuffer(intel,
877 format,
878 width,
879 height,
880 num_samples);
881 if (!multisample_mt)
882 goto fail;
883
884 irb->need_downsample = false;
885 intel_miptree_release(&irb->mt);
886 irb->mt = multisample_mt;
887 }
888 }
889 return;
890
891 fail:
892 intel_miptree_release(&irb->singlesample_mt);
893 intel_miptree_release(&irb->mt);
894 return;
895 }
896
897 struct intel_mipmap_tree*
898 intel_miptree_create_for_renderbuffer(struct brw_context *brw,
899 mesa_format format,
900 uint32_t width,
901 uint32_t height,
902 uint32_t num_samples)
903 {
904 struct intel_mipmap_tree *mt;
905 uint32_t depth = 1;
906 bool ok;
907 GLenum target = num_samples > 1 ? GL_TEXTURE_2D_MULTISAMPLE : GL_TEXTURE_2D;
908 const uint32_t layout_flags = MIPTREE_LAYOUT_ACCELERATED_UPLOAD |
909 MIPTREE_LAYOUT_TILING_ANY |
910 MIPTREE_LAYOUT_FOR_SCANOUT;
911
912 mt = intel_miptree_create(brw, target, format, 0, 0,
913 width, height, depth, num_samples,
914 layout_flags);
915 if (!mt)
916 goto fail;
917
918 if (intel_miptree_wants_hiz_buffer(brw, mt)) {
919 ok = intel_miptree_alloc_hiz(brw, mt);
920 if (!ok)
921 goto fail;
922 }
923
924 return mt;
925
926 fail:
927 intel_miptree_release(&mt);
928 return NULL;
929 }
930
931 void
932 intel_miptree_reference(struct intel_mipmap_tree **dst,
933 struct intel_mipmap_tree *src)
934 {
935 if (*dst == src)
936 return;
937
938 intel_miptree_release(dst);
939
940 if (src) {
941 src->refcount++;
942 DBG("%s %p refcount now %d\n", __func__, src, src->refcount);
943 }
944
945 *dst = src;
946 }
947
948 static void
949 intel_miptree_hiz_buffer_free(struct intel_miptree_hiz_buffer *hiz_buf)
950 {
951 if (hiz_buf == NULL)
952 return;
953
954 if (hiz_buf->mt)
955 intel_miptree_release(&hiz_buf->mt);
956 else
957 drm_intel_bo_unreference(hiz_buf->aux_base.bo);
958
959 free(hiz_buf);
960 }
961
962 void
963 intel_miptree_release(struct intel_mipmap_tree **mt)
964 {
965 if (!*mt)
966 return;
967
968 DBG("%s %p refcount will be %d\n", __func__, *mt, (*mt)->refcount - 1);
969 if (--(*mt)->refcount <= 0) {
970 GLuint i;
971
972 DBG("%s deleting %p\n", __func__, *mt);
973
974 drm_intel_bo_unreference((*mt)->bo);
975 intel_miptree_release(&(*mt)->stencil_mt);
976 intel_miptree_release(&(*mt)->r8stencil_mt);
977 intel_miptree_hiz_buffer_free((*mt)->hiz_buf);
978 if ((*mt)->mcs_buf) {
979 drm_intel_bo_unreference((*mt)->mcs_buf->bo);
980 free((*mt)->mcs_buf);
981 }
982 intel_resolve_map_clear(&(*mt)->hiz_map);
983 intel_resolve_map_clear(&(*mt)->color_resolve_map);
984
985 intel_miptree_release(&(*mt)->plane[0]);
986 intel_miptree_release(&(*mt)->plane[1]);
987
988 for (i = 0; i < MAX_TEXTURE_LEVELS; i++) {
989 free((*mt)->level[i].slice);
990 }
991
992 free(*mt);
993 }
994 *mt = NULL;
995 }
996
997
998 void
999 intel_get_image_dims(struct gl_texture_image *image,
1000 int *width, int *height, int *depth)
1001 {
1002 switch (image->TexObject->Target) {
1003 case GL_TEXTURE_1D_ARRAY:
1004 /* For a 1D Array texture the OpenGL API will treat the image height as
1005 * the number of array slices. For Intel hardware, we treat the 1D array
1006 * as a 2D Array with a height of 1. So, here we want to swap image
1007 * height and depth.
1008 */
1009 assert(image->Depth == 1);
1010 *width = image->Width;
1011 *height = 1;
1012 *depth = image->Height;
1013 break;
1014 case GL_TEXTURE_CUBE_MAP:
1015 /* For Cube maps, the mesa/main api layer gives us a depth of 1 even
1016 * though we really have 6 slices.
1017 */
1018 assert(image->Depth == 1);
1019 *width = image->Width;
1020 *height = image->Height;
1021 *depth = 6;
1022 break;
1023 default:
1024 *width = image->Width;
1025 *height = image->Height;
1026 *depth = image->Depth;
1027 break;
1028 }
1029 }
1030
1031 /**
1032 * Can the image be pulled into a unified mipmap tree? This mirrors
1033 * the completeness test in a lot of ways.
1034 *
1035 * Not sure whether I want to pass gl_texture_image here.
1036 */
1037 bool
1038 intel_miptree_match_image(struct intel_mipmap_tree *mt,
1039 struct gl_texture_image *image)
1040 {
1041 struct intel_texture_image *intelImage = intel_texture_image(image);
1042 GLuint level = intelImage->base.Base.Level;
1043 int width, height, depth;
1044
1045 /* glTexImage* choose the texture object based on the target passed in, and
1046 * objects can't change targets over their lifetimes, so this should be
1047 * true.
1048 */
1049 assert(image->TexObject->Target == mt->target);
1050
1051 mesa_format mt_format = mt->format;
1052 if (mt->format == MESA_FORMAT_Z24_UNORM_X8_UINT && mt->stencil_mt)
1053 mt_format = MESA_FORMAT_Z24_UNORM_S8_UINT;
1054 if (mt->format == MESA_FORMAT_Z_FLOAT32 && mt->stencil_mt)
1055 mt_format = MESA_FORMAT_Z32_FLOAT_S8X24_UINT;
1056 if (mt->etc_format != MESA_FORMAT_NONE)
1057 mt_format = mt->etc_format;
1058
1059 if (image->TexFormat != mt_format)
1060 return false;
1061
1062 intel_get_image_dims(image, &width, &height, &depth);
1063
1064 if (mt->target == GL_TEXTURE_CUBE_MAP)
1065 depth = 6;
1066
1067 int level_depth = mt->level[level].depth;
1068 if (mt->num_samples > 1) {
1069 switch (mt->msaa_layout) {
1070 case INTEL_MSAA_LAYOUT_NONE:
1071 case INTEL_MSAA_LAYOUT_IMS:
1072 break;
1073 case INTEL_MSAA_LAYOUT_UMS:
1074 case INTEL_MSAA_LAYOUT_CMS:
1075 level_depth /= mt->num_samples;
1076 break;
1077 }
1078 }
1079
1080 /* Test image dimensions against the base level image adjusted for
1081 * minification. This will also catch images not present in the
1082 * tree, changed targets, etc.
1083 */
1084 if (width != minify(mt->logical_width0, level - mt->first_level) ||
1085 height != minify(mt->logical_height0, level - mt->first_level) ||
1086 depth != level_depth) {
1087 return false;
1088 }
1089
1090 if (image->NumSamples != mt->num_samples)
1091 return false;
1092
1093 return true;
1094 }
1095
1096
1097 void
1098 intel_miptree_set_level_info(struct intel_mipmap_tree *mt,
1099 GLuint level,
1100 GLuint x, GLuint y, GLuint d)
1101 {
1102 mt->level[level].depth = d;
1103 mt->level[level].level_x = x;
1104 mt->level[level].level_y = y;
1105
1106 DBG("%s level %d, depth %d, offset %d,%d\n", __func__,
1107 level, d, x, y);
1108
1109 assert(mt->level[level].slice == NULL);
1110
1111 mt->level[level].slice = calloc(d, sizeof(*mt->level[0].slice));
1112 mt->level[level].slice[0].x_offset = mt->level[level].level_x;
1113 mt->level[level].slice[0].y_offset = mt->level[level].level_y;
1114 }
1115
1116
1117 void
1118 intel_miptree_set_image_offset(struct intel_mipmap_tree *mt,
1119 GLuint level, GLuint img,
1120 GLuint x, GLuint y)
1121 {
1122 if (img == 0 && level == 0)
1123 assert(x == 0 && y == 0);
1124
1125 assert(img < mt->level[level].depth);
1126
1127 mt->level[level].slice[img].x_offset = mt->level[level].level_x + x;
1128 mt->level[level].slice[img].y_offset = mt->level[level].level_y + y;
1129
1130 DBG("%s level %d img %d pos %d,%d\n",
1131 __func__, level, img,
1132 mt->level[level].slice[img].x_offset,
1133 mt->level[level].slice[img].y_offset);
1134 }
1135
1136 void
1137 intel_miptree_get_image_offset(const struct intel_mipmap_tree *mt,
1138 GLuint level, GLuint slice,
1139 GLuint *x, GLuint *y)
1140 {
1141 assert(slice < mt->level[level].depth);
1142
1143 *x = mt->level[level].slice[slice].x_offset;
1144 *y = mt->level[level].slice[slice].y_offset;
1145 }
1146
1147
1148 /**
1149 * This function computes the tile_w (in bytes) and tile_h (in rows) of
1150 * different tiling patterns. If the BO is untiled, tile_w is set to cpp
1151 * and tile_h is set to 1.
1152 */
1153 void
1154 intel_get_tile_dims(uint32_t tiling, uint32_t tr_mode, uint32_t cpp,
1155 uint32_t *tile_w, uint32_t *tile_h)
1156 {
1157 if (tr_mode == INTEL_MIPTREE_TRMODE_NONE) {
1158 switch (tiling) {
1159 case I915_TILING_X:
1160 *tile_w = 512;
1161 *tile_h = 8;
1162 break;
1163 case I915_TILING_Y:
1164 *tile_w = 128;
1165 *tile_h = 32;
1166 break;
1167 case I915_TILING_NONE:
1168 *tile_w = cpp;
1169 *tile_h = 1;
1170 break;
1171 default:
1172 unreachable("not reached");
1173 }
1174 } else {
1175 uint32_t aspect_ratio = 1;
1176 assert(_mesa_is_pow_two(cpp));
1177
1178 switch (cpp) {
1179 case 1:
1180 *tile_h = 64;
1181 break;
1182 case 2:
1183 case 4:
1184 *tile_h = 32;
1185 break;
1186 case 8:
1187 case 16:
1188 *tile_h = 16;
1189 break;
1190 default:
1191 unreachable("not reached");
1192 }
1193
1194 if (cpp == 2 || cpp == 8)
1195 aspect_ratio = 2;
1196
1197 if (tr_mode == INTEL_MIPTREE_TRMODE_YS)
1198 *tile_h *= 4;
1199
1200 *tile_w = *tile_h * aspect_ratio * cpp;
1201 }
1202 }
1203
1204
1205 /**
1206 * This function computes masks that may be used to select the bits of the X
1207 * and Y coordinates that indicate the offset within a tile. If the BO is
1208 * untiled, the masks are set to 0.
1209 */
1210 void
1211 intel_get_tile_masks(uint32_t tiling, uint32_t tr_mode, uint32_t cpp,
1212 uint32_t *mask_x, uint32_t *mask_y)
1213 {
1214 uint32_t tile_w_bytes, tile_h;
1215
1216 intel_get_tile_dims(tiling, tr_mode, cpp, &tile_w_bytes, &tile_h);
1217
1218 *mask_x = tile_w_bytes / cpp - 1;
1219 *mask_y = tile_h - 1;
1220 }
1221
1222 /**
1223 * Compute the offset (in bytes) from the start of the BO to the given x
1224 * and y coordinate. For tiled BOs, caller must ensure that x and y are
1225 * multiples of the tile size.
1226 */
1227 uint32_t
1228 intel_miptree_get_aligned_offset(const struct intel_mipmap_tree *mt,
1229 uint32_t x, uint32_t y)
1230 {
1231 int cpp = mt->cpp;
1232 uint32_t pitch = mt->pitch;
1233 uint32_t tiling = mt->tiling;
1234
1235 switch (tiling) {
1236 default:
1237 unreachable("not reached");
1238 case I915_TILING_NONE:
1239 return y * pitch + x * cpp;
1240 case I915_TILING_X:
1241 assert((x % (512 / cpp)) == 0);
1242 assert((y % 8) == 0);
1243 return y * pitch + x / (512 / cpp) * 4096;
1244 case I915_TILING_Y:
1245 assert((x % (128 / cpp)) == 0);
1246 assert((y % 32) == 0);
1247 return y * pitch + x / (128 / cpp) * 4096;
1248 }
1249 }
1250
1251 /**
1252 * Rendering with tiled buffers requires that the base address of the buffer
1253 * be aligned to a page boundary. For renderbuffers, and sometimes with
1254 * textures, we may want the surface to point at a texture image level that
1255 * isn't at a page boundary.
1256 *
1257 * This function returns an appropriately-aligned base offset
1258 * according to the tiling restrictions, plus any required x/y offset
1259 * from there.
1260 */
1261 uint32_t
1262 intel_miptree_get_tile_offsets(const struct intel_mipmap_tree *mt,
1263 GLuint level, GLuint slice,
1264 uint32_t *tile_x,
1265 uint32_t *tile_y)
1266 {
1267 uint32_t x, y;
1268 uint32_t mask_x, mask_y;
1269
1270 intel_get_tile_masks(mt->tiling, mt->tr_mode, mt->cpp, &mask_x, &mask_y);
1271 intel_miptree_get_image_offset(mt, level, slice, &x, &y);
1272
1273 *tile_x = x & mask_x;
1274 *tile_y = y & mask_y;
1275
1276 return intel_miptree_get_aligned_offset(mt, x & ~mask_x, y & ~mask_y);
1277 }
1278
1279 static void
1280 intel_miptree_copy_slice_sw(struct brw_context *brw,
1281 struct intel_mipmap_tree *dst_mt,
1282 struct intel_mipmap_tree *src_mt,
1283 int level,
1284 int slice,
1285 int width,
1286 int height)
1287 {
1288 void *src, *dst;
1289 ptrdiff_t src_stride, dst_stride;
1290 int cpp = dst_mt->cpp;
1291
1292 intel_miptree_map(brw, src_mt,
1293 level, slice,
1294 0, 0,
1295 width, height,
1296 GL_MAP_READ_BIT | BRW_MAP_DIRECT_BIT,
1297 &src, &src_stride);
1298
1299 intel_miptree_map(brw, dst_mt,
1300 level, slice,
1301 0, 0,
1302 width, height,
1303 GL_MAP_WRITE_BIT | GL_MAP_INVALIDATE_RANGE_BIT |
1304 BRW_MAP_DIRECT_BIT,
1305 &dst, &dst_stride);
1306
1307 DBG("sw blit %s mt %p %p/%"PRIdPTR" -> %s mt %p %p/%"PRIdPTR" (%dx%d)\n",
1308 _mesa_get_format_name(src_mt->format),
1309 src_mt, src, src_stride,
1310 _mesa_get_format_name(dst_mt->format),
1311 dst_mt, dst, dst_stride,
1312 width, height);
1313
1314 int row_size = cpp * width;
1315 if (src_stride == row_size &&
1316 dst_stride == row_size) {
1317 memcpy(dst, src, row_size * height);
1318 } else {
1319 for (int i = 0; i < height; i++) {
1320 memcpy(dst, src, row_size);
1321 dst += dst_stride;
1322 src += src_stride;
1323 }
1324 }
1325
1326 intel_miptree_unmap(brw, dst_mt, level, slice);
1327 intel_miptree_unmap(brw, src_mt, level, slice);
1328
1329 /* Don't forget to copy the stencil data over, too. We could have skipped
1330 * passing BRW_MAP_DIRECT_BIT, but that would have meant intel_miptree_map
1331 * shuffling the two data sources in/out of temporary storage instead of
1332 * the direct mapping we get this way.
1333 */
1334 if (dst_mt->stencil_mt) {
1335 assert(src_mt->stencil_mt);
1336 intel_miptree_copy_slice_sw(brw, dst_mt->stencil_mt, src_mt->stencil_mt,
1337 level, slice, width, height);
1338 }
1339 }
1340
1341 static void
1342 intel_miptree_copy_slice(struct brw_context *brw,
1343 struct intel_mipmap_tree *dst_mt,
1344 struct intel_mipmap_tree *src_mt,
1345 int level,
1346 int face,
1347 int depth)
1348
1349 {
1350 mesa_format format = src_mt->format;
1351 uint32_t width = minify(src_mt->physical_width0, level - src_mt->first_level);
1352 uint32_t height = minify(src_mt->physical_height0, level - src_mt->first_level);
1353 int slice;
1354
1355 if (face > 0)
1356 slice = face;
1357 else
1358 slice = depth;
1359
1360 assert(depth < src_mt->level[level].depth);
1361 assert(src_mt->format == dst_mt->format);
1362
1363 if (dst_mt->compressed) {
1364 unsigned int i, j;
1365 _mesa_get_format_block_size(dst_mt->format, &i, &j);
1366 height = ALIGN_NPOT(height, j) / j;
1367 width = ALIGN_NPOT(width, i) / i;
1368 }
1369
1370 /* If it's a packed depth/stencil buffer with separate stencil, the blit
1371 * below won't apply since we can't do the depth's Y tiling or the
1372 * stencil's W tiling in the blitter.
1373 */
1374 if (src_mt->stencil_mt) {
1375 intel_miptree_copy_slice_sw(brw,
1376 dst_mt, src_mt,
1377 level, slice,
1378 width, height);
1379 return;
1380 }
1381
1382 uint32_t dst_x, dst_y, src_x, src_y;
1383 intel_miptree_get_image_offset(dst_mt, level, slice, &dst_x, &dst_y);
1384 intel_miptree_get_image_offset(src_mt, level, slice, &src_x, &src_y);
1385
1386 DBG("validate blit mt %s %p %d,%d/%d -> mt %s %p %d,%d/%d (%dx%d)\n",
1387 _mesa_get_format_name(src_mt->format),
1388 src_mt, src_x, src_y, src_mt->pitch,
1389 _mesa_get_format_name(dst_mt->format),
1390 dst_mt, dst_x, dst_y, dst_mt->pitch,
1391 width, height);
1392
1393 if (!intel_miptree_blit(brw,
1394 src_mt, level, slice, 0, 0, false,
1395 dst_mt, level, slice, 0, 0, false,
1396 width, height, GL_COPY)) {
1397 perf_debug("miptree validate blit for %s failed\n",
1398 _mesa_get_format_name(format));
1399
1400 intel_miptree_copy_slice_sw(brw, dst_mt, src_mt, level, slice,
1401 width, height);
1402 }
1403 }
1404
1405 /**
1406 * Copies the image's current data to the given miptree, and associates that
1407 * miptree with the image.
1408 *
1409 * If \c invalidate is true, then the actual image data does not need to be
1410 * copied, but the image still needs to be associated to the new miptree (this
1411 * is set to true if we're about to clear the image).
1412 */
1413 void
1414 intel_miptree_copy_teximage(struct brw_context *brw,
1415 struct intel_texture_image *intelImage,
1416 struct intel_mipmap_tree *dst_mt,
1417 bool invalidate)
1418 {
1419 struct intel_mipmap_tree *src_mt = intelImage->mt;
1420 struct intel_texture_object *intel_obj =
1421 intel_texture_object(intelImage->base.Base.TexObject);
1422 int level = intelImage->base.Base.Level;
1423 int face = intelImage->base.Base.Face;
1424
1425 GLuint depth;
1426 if (intel_obj->base.Target == GL_TEXTURE_1D_ARRAY)
1427 depth = intelImage->base.Base.Height;
1428 else
1429 depth = intelImage->base.Base.Depth;
1430
1431 if (!invalidate) {
1432 for (int slice = 0; slice < depth; slice++) {
1433 intel_miptree_copy_slice(brw, dst_mt, src_mt, level, face, slice);
1434 }
1435 }
1436
1437 intel_miptree_reference(&intelImage->mt, dst_mt);
1438 intel_obj->needs_validate = true;
1439 }
1440
1441 static void
1442 intel_miptree_init_mcs(struct brw_context *brw,
1443 struct intel_mipmap_tree *mt,
1444 int init_value)
1445 {
1446 assert(mt->mcs_buf != NULL);
1447
1448 /* From the Ivy Bridge PRM, Vol 2 Part 1 p326:
1449 *
1450 * When MCS buffer is enabled and bound to MSRT, it is required that it
1451 * is cleared prior to any rendering.
1452 *
1453 * Since we don't use the MCS buffer for any purpose other than rendering,
1454 * it makes sense to just clear it immediately upon allocation.
1455 *
1456 * Note: the clear value for MCS buffers is all 1's, so we memset to 0xff.
1457 */
1458 const int ret = brw_bo_map_gtt(brw, mt->mcs_buf->bo, "miptree");
1459 if (unlikely(ret)) {
1460 fprintf(stderr, "Failed to map mcs buffer into GTT\n");
1461 drm_intel_bo_unreference(mt->mcs_buf->bo);
1462 free(mt->mcs_buf);
1463 return;
1464 }
1465 void *data = mt->mcs_buf->bo->virtual;
1466 memset(data, init_value, mt->mcs_buf->size);
1467 drm_intel_bo_unmap(mt->mcs_buf->bo);
1468 }
1469
1470 static struct intel_miptree_aux_buffer *
1471 intel_mcs_miptree_buf_create(struct brw_context *brw,
1472 struct intel_mipmap_tree *mt,
1473 mesa_format format,
1474 unsigned mcs_width,
1475 unsigned mcs_height,
1476 uint32_t layout_flags)
1477 {
1478 struct intel_miptree_aux_buffer *buf = calloc(sizeof(*buf), 1);
1479 struct intel_mipmap_tree *temp_mt;
1480
1481 if (!buf)
1482 return NULL;
1483
1484 /* From the Ivy Bridge PRM, Vol4 Part1 p76, "MCS Base Address":
1485 *
1486 * "The MCS surface must be stored as Tile Y."
1487 */
1488 layout_flags |= MIPTREE_LAYOUT_TILING_Y;
1489 temp_mt = miptree_create(brw,
1490 mt->target,
1491 format,
1492 mt->first_level,
1493 mt->last_level,
1494 mcs_width,
1495 mcs_height,
1496 mt->logical_depth0,
1497 0 /* num_samples */,
1498 layout_flags);
1499 if (!temp_mt) {
1500 free(buf);
1501 return NULL;
1502 }
1503
1504 buf->bo = temp_mt->bo;
1505 buf->offset = temp_mt->offset;
1506 buf->size = temp_mt->total_height * temp_mt->pitch;
1507 buf->pitch = temp_mt->pitch;
1508 buf->qpitch = temp_mt->qpitch;
1509
1510 /* Just hang on to the BO which backs the AUX buffer; the rest of the miptree
1511 * structure should go away. We use miptree create simply as a means to make
1512 * sure all the constraints for the buffer are satisfied.
1513 */
1514 drm_intel_bo_reference(temp_mt->bo);
1515 intel_miptree_release(&temp_mt);
1516
1517 return buf;
1518 }
1519
1520 static bool
1521 intel_miptree_alloc_mcs(struct brw_context *brw,
1522 struct intel_mipmap_tree *mt,
1523 GLuint num_samples)
1524 {
1525 assert(brw->gen >= 7); /* MCS only used on Gen7+ */
1526 assert(mt->mcs_buf == NULL);
1527 assert(!mt->disable_aux_buffers);
1528
1529 /* Choose the correct format for the MCS buffer. All that really matters
1530 * is that we allocate the right buffer size, since we'll always be
1531 * accessing this miptree using MCS-specific hardware mechanisms, which
1532 * infer the correct format based on num_samples.
1533 */
1534 mesa_format format;
1535 switch (num_samples) {
1536 case 2:
1537 case 4:
1538 /* 8 bits/pixel are required for MCS data when using 4x MSAA (2 bits for
1539 * each sample).
1540 */
1541 format = MESA_FORMAT_R_UNORM8;
1542 break;
1543 case 8:
1544 /* 32 bits/pixel are required for MCS data when using 8x MSAA (3 bits
1545 * for each sample, plus 8 padding bits).
1546 */
1547 format = MESA_FORMAT_R_UINT32;
1548 break;
1549 case 16:
1550 /* 64 bits/pixel are required for MCS data when using 16x MSAA (4 bits
1551 * for each sample).
1552 */
1553 format = MESA_FORMAT_RG_UINT32;
1554 break;
1555 default:
1556 unreachable("Unrecognized sample count in intel_miptree_alloc_mcs");
1557 };
1558
1559 mt->mcs_buf =
1560 intel_mcs_miptree_buf_create(brw, mt,
1561 format,
1562 mt->logical_width0,
1563 mt->logical_height0,
1564 MIPTREE_LAYOUT_ACCELERATED_UPLOAD);
1565 if (!mt->mcs_buf)
1566 return false;
1567
1568 intel_miptree_init_mcs(brw, mt, 0xFF);
1569
1570 /* Multisampled miptrees are only supported for single level. */
1571 assert(mt->first_level == 0);
1572 intel_miptree_set_fast_clear_state(brw, mt, mt->first_level, 0,
1573 mt->logical_depth0,
1574 INTEL_FAST_CLEAR_STATE_CLEAR);
1575
1576 return true;
1577 }
1578
1579
1580 bool
1581 intel_miptree_alloc_non_msrt_mcs(struct brw_context *brw,
1582 struct intel_mipmap_tree *mt,
1583 bool is_lossless_compressed)
1584 {
1585 assert(mt->mcs_buf == NULL);
1586 assert(!mt->disable_aux_buffers);
1587 assert(!mt->no_ccs);
1588
1589 struct isl_surf temp_main_surf;
1590 struct isl_surf temp_ccs_surf;
1591
1592 /* Create first an ISL presentation for the main color surface and let ISL
1593 * calculate equivalent CCS surface against it.
1594 */
1595 intel_miptree_get_isl_surf(brw, mt, &temp_main_surf);
1596 if (!isl_surf_get_ccs_surf(&brw->isl_dev, &temp_main_surf, &temp_ccs_surf))
1597 return false;
1598
1599 assert(temp_ccs_surf.size &&
1600 (temp_ccs_surf.size % temp_ccs_surf.row_pitch == 0));
1601
1602 struct intel_miptree_aux_buffer *buf = calloc(sizeof(*buf), 1);
1603 if (!buf)
1604 return false;
1605
1606 buf->size = temp_ccs_surf.size;
1607 buf->pitch = temp_ccs_surf.row_pitch;
1608 buf->qpitch = isl_surf_get_array_pitch_sa_rows(&temp_ccs_surf);
1609
1610 /* In case of compression mcs buffer needs to be initialised requiring the
1611 * buffer to be immediately mapped to cpu space for writing. Therefore do
1612 * not use the gpu access flag which can cause an unnecessary delay if the
1613 * backing pages happened to be just used by the GPU.
1614 */
1615 const uint32_t alloc_flags =
1616 is_lossless_compressed ? 0 : BO_ALLOC_FOR_RENDER;
1617 uint32_t tiling = I915_TILING_Y;
1618 unsigned long pitch;
1619
1620 /* ISL has stricter set of alignment rules then the drm allocator.
1621 * Therefore one can pass the ISL dimensions in terms of bytes instead of
1622 * trying to recalculate based on different format block sizes.
1623 */
1624 buf->bo = drm_intel_bo_alloc_tiled(brw->bufmgr, "ccs-miptree",
1625 buf->pitch, buf->size / buf->pitch,
1626 1, &tiling, &pitch, alloc_flags);
1627 if (buf->bo) {
1628 assert(pitch == buf->pitch);
1629 assert(tiling == I915_TILING_Y);
1630 } else {
1631 free(buf);
1632 return false;
1633 }
1634
1635 mt->mcs_buf = buf;
1636
1637 /* From Gen9 onwards single-sampled (non-msrt) auxiliary buffers are
1638 * used for lossless compression which requires similar initialisation
1639 * as multi-sample compression.
1640 */
1641 if (is_lossless_compressed) {
1642 /* Hardware sets the auxiliary buffer to all zeroes when it does full
1643 * resolve. Initialize it accordingly in case the first renderer is
1644 * cpu (or other none compression aware party).
1645 *
1646 * This is also explicitly stated in the spec (MCS Buffer for Render
1647 * Target(s)):
1648 * "If Software wants to enable Color Compression without Fast clear,
1649 * Software needs to initialize MCS with zeros."
1650 */
1651 intel_miptree_init_mcs(brw, mt, 0);
1652 mt->msaa_layout = INTEL_MSAA_LAYOUT_CMS;
1653 }
1654
1655 return true;
1656 }
1657
1658 /**
1659 * Helper for intel_miptree_alloc_hiz() that sets
1660 * \c mt->level[level].has_hiz. Return true if and only if
1661 * \c has_hiz was set.
1662 */
1663 static bool
1664 intel_miptree_level_enable_hiz(struct brw_context *brw,
1665 struct intel_mipmap_tree *mt,
1666 uint32_t level)
1667 {
1668 assert(mt->hiz_buf);
1669
1670 if (brw->gen >= 8 || brw->is_haswell) {
1671 uint32_t width = minify(mt->physical_width0, level);
1672 uint32_t height = minify(mt->physical_height0, level);
1673
1674 /* Disable HiZ for LOD > 0 unless the width is 8 aligned
1675 * and the height is 4 aligned. This allows our HiZ support
1676 * to fulfill Haswell restrictions for HiZ ops. For LOD == 0,
1677 * we can grow the width & height to allow the HiZ op to
1678 * force the proper size alignments.
1679 */
1680 if (level > 0 && ((width & 7) || (height & 3))) {
1681 DBG("mt %p level %d: HiZ DISABLED\n", mt, level);
1682 return false;
1683 }
1684 }
1685
1686 DBG("mt %p level %d: HiZ enabled\n", mt, level);
1687 mt->level[level].has_hiz = true;
1688 return true;
1689 }
1690
1691
1692 /**
1693 * Helper for intel_miptree_alloc_hiz() that determines the required hiz
1694 * buffer dimensions and allocates a bo for the hiz buffer.
1695 */
1696 static struct intel_miptree_hiz_buffer *
1697 intel_gen7_hiz_buf_create(struct brw_context *brw,
1698 struct intel_mipmap_tree *mt)
1699 {
1700 unsigned z_width = mt->logical_width0;
1701 unsigned z_height = mt->logical_height0;
1702 const unsigned z_depth = MAX2(mt->logical_depth0, 1);
1703 unsigned hz_width, hz_height;
1704 struct intel_miptree_hiz_buffer *buf = calloc(sizeof(*buf), 1);
1705
1706 if (!buf)
1707 return NULL;
1708
1709 /* Gen7 PRM Volume 2, Part 1, 11.5.3 "Hierarchical Depth Buffer" documents
1710 * adjustments required for Z_Height and Z_Width based on multisampling.
1711 */
1712 switch (mt->num_samples) {
1713 case 0:
1714 case 1:
1715 break;
1716 case 2:
1717 case 4:
1718 z_width *= 2;
1719 z_height *= 2;
1720 break;
1721 case 8:
1722 z_width *= 4;
1723 z_height *= 2;
1724 break;
1725 default:
1726 unreachable("unsupported sample count");
1727 }
1728
1729 const unsigned vertical_align = 8; /* 'j' in the docs */
1730 const unsigned H0 = z_height;
1731 const unsigned h0 = ALIGN(H0, vertical_align);
1732 const unsigned h1 = ALIGN(minify(H0, 1), vertical_align);
1733 const unsigned Z0 = z_depth;
1734
1735 /* HZ_Width (bytes) = ceiling(Z_Width / 16) * 16 */
1736 hz_width = ALIGN(z_width, 16);
1737
1738 if (mt->target == GL_TEXTURE_3D) {
1739 unsigned H_i = H0;
1740 unsigned Z_i = Z0;
1741 hz_height = 0;
1742 for (unsigned level = mt->first_level; level <= mt->last_level; ++level) {
1743 unsigned h_i = ALIGN(H_i, vertical_align);
1744 /* sum(i=0 to m; h_i * max(1, floor(Z_Depth/2**i))) */
1745 hz_height += h_i * Z_i;
1746 H_i = minify(H_i, 1);
1747 Z_i = minify(Z_i, 1);
1748 }
1749 /* HZ_Height =
1750 * (1/2) * sum(i=0 to m; h_i * max(1, floor(Z_Depth/2**i)))
1751 */
1752 hz_height = DIV_ROUND_UP(hz_height, 2);
1753 } else {
1754 const unsigned hz_qpitch = h0 + h1 + (12 * vertical_align);
1755 /* HZ_Height (rows) = Ceiling ( ( Q_pitch * Z_depth/2) /8 ) * 8 */
1756 hz_height = DIV_ROUND_UP(hz_qpitch * Z0, 2 * 8) * 8;
1757 }
1758
1759 unsigned long pitch;
1760 uint32_t tiling = I915_TILING_Y;
1761 buf->aux_base.bo = drm_intel_bo_alloc_tiled(brw->bufmgr, "hiz",
1762 hz_width, hz_height, 1,
1763 &tiling, &pitch,
1764 BO_ALLOC_FOR_RENDER);
1765 if (!buf->aux_base.bo) {
1766 free(buf);
1767 return NULL;
1768 } else if (tiling != I915_TILING_Y) {
1769 drm_intel_bo_unreference(buf->aux_base.bo);
1770 free(buf);
1771 return NULL;
1772 }
1773
1774 buf->aux_base.size = hz_width * hz_height;
1775 buf->aux_base.pitch = pitch;
1776
1777 return buf;
1778 }
1779
1780
1781 /**
1782 * Helper for intel_miptree_alloc_hiz() that determines the required hiz
1783 * buffer dimensions and allocates a bo for the hiz buffer.
1784 */
1785 static struct intel_miptree_hiz_buffer *
1786 intel_gen8_hiz_buf_create(struct brw_context *brw,
1787 struct intel_mipmap_tree *mt)
1788 {
1789 unsigned z_width = mt->logical_width0;
1790 unsigned z_height = mt->logical_height0;
1791 const unsigned z_depth = MAX2(mt->logical_depth0, 1);
1792 unsigned hz_width, hz_height;
1793 struct intel_miptree_hiz_buffer *buf = calloc(sizeof(*buf), 1);
1794
1795 if (!buf)
1796 return NULL;
1797
1798 /* Gen7 PRM Volume 2, Part 1, 11.5.3 "Hierarchical Depth Buffer" documents
1799 * adjustments required for Z_Height and Z_Width based on multisampling.
1800 */
1801 if (brw->gen < 9) {
1802 switch (mt->num_samples) {
1803 case 0:
1804 case 1:
1805 break;
1806 case 2:
1807 case 4:
1808 z_width *= 2;
1809 z_height *= 2;
1810 break;
1811 case 8:
1812 z_width *= 4;
1813 z_height *= 2;
1814 break;
1815 default:
1816 unreachable("unsupported sample count");
1817 }
1818 }
1819
1820 const unsigned vertical_align = 8; /* 'j' in the docs */
1821 const unsigned H0 = z_height;
1822 const unsigned h0 = ALIGN(H0, vertical_align);
1823 const unsigned h1 = ALIGN(minify(H0, 1), vertical_align);
1824 const unsigned Z0 = z_depth;
1825
1826 /* HZ_Width (bytes) = ceiling(Z_Width / 16) * 16 */
1827 hz_width = ALIGN(z_width, 16);
1828
1829 unsigned H_i = H0;
1830 unsigned Z_i = Z0;
1831 unsigned sum_h_i = 0;
1832 unsigned hz_height_3d_sum = 0;
1833 for (unsigned level = mt->first_level; level <= mt->last_level; ++level) {
1834 unsigned i = level - mt->first_level;
1835 unsigned h_i = ALIGN(H_i, vertical_align);
1836 /* sum(i=2 to m; h_i) */
1837 if (i >= 2) {
1838 sum_h_i += h_i;
1839 }
1840 /* sum(i=0 to m; h_i * max(1, floor(Z_Depth/2**i))) */
1841 hz_height_3d_sum += h_i * Z_i;
1842 H_i = minify(H_i, 1);
1843 Z_i = minify(Z_i, 1);
1844 }
1845 /* HZ_QPitch = h0 + max(h1, sum(i=2 to m; h_i)) */
1846 buf->aux_base.qpitch = h0 + MAX2(h1, sum_h_i);
1847
1848 if (mt->target == GL_TEXTURE_3D) {
1849 /* (1/2) * sum(i=0 to m; h_i * max(1, floor(Z_Depth/2**i))) */
1850 hz_height = DIV_ROUND_UP(hz_height_3d_sum, 2);
1851 } else {
1852 /* HZ_Height (rows) = ceiling( (HZ_QPitch/2)/8) *8 * Z_Depth */
1853 hz_height = DIV_ROUND_UP(buf->aux_base.qpitch, 2 * 8) * 8 * Z0;
1854 }
1855
1856 unsigned long pitch;
1857 uint32_t tiling = I915_TILING_Y;
1858 buf->aux_base.bo = drm_intel_bo_alloc_tiled(brw->bufmgr, "hiz",
1859 hz_width, hz_height, 1,
1860 &tiling, &pitch,
1861 BO_ALLOC_FOR_RENDER);
1862 if (!buf->aux_base.bo) {
1863 free(buf);
1864 return NULL;
1865 } else if (tiling != I915_TILING_Y) {
1866 drm_intel_bo_unreference(buf->aux_base.bo);
1867 free(buf);
1868 return NULL;
1869 }
1870
1871 buf->aux_base.size = hz_width * hz_height;
1872 buf->aux_base.pitch = pitch;
1873
1874 return buf;
1875 }
1876
1877
1878 static struct intel_miptree_hiz_buffer *
1879 intel_hiz_miptree_buf_create(struct brw_context *brw,
1880 struct intel_mipmap_tree *mt)
1881 {
1882 struct intel_miptree_hiz_buffer *buf = calloc(sizeof(*buf), 1);
1883 uint32_t layout_flags = MIPTREE_LAYOUT_ACCELERATED_UPLOAD;
1884
1885 if (brw->gen == 6)
1886 layout_flags |= MIPTREE_LAYOUT_FORCE_ALL_SLICE_AT_LOD;
1887
1888 if (!buf)
1889 return NULL;
1890
1891 layout_flags |= MIPTREE_LAYOUT_TILING_ANY;
1892 buf->mt = intel_miptree_create(brw,
1893 mt->target,
1894 mt->format,
1895 mt->first_level,
1896 mt->last_level,
1897 mt->logical_width0,
1898 mt->logical_height0,
1899 mt->logical_depth0,
1900 mt->num_samples,
1901 layout_flags);
1902 if (!buf->mt) {
1903 free(buf);
1904 return NULL;
1905 }
1906
1907 buf->aux_base.bo = buf->mt->bo;
1908 buf->aux_base.size = buf->mt->total_height * buf->mt->pitch;
1909 buf->aux_base.pitch = buf->mt->pitch;
1910 buf->aux_base.qpitch = buf->mt->qpitch;
1911
1912 return buf;
1913 }
1914
1915 bool
1916 intel_miptree_wants_hiz_buffer(struct brw_context *brw,
1917 struct intel_mipmap_tree *mt)
1918 {
1919 if (!brw->has_hiz)
1920 return false;
1921
1922 if (mt->hiz_buf != NULL)
1923 return false;
1924
1925 if (mt->disable_aux_buffers)
1926 return false;
1927
1928 switch (mt->format) {
1929 case MESA_FORMAT_Z_FLOAT32:
1930 case MESA_FORMAT_Z32_FLOAT_S8X24_UINT:
1931 case MESA_FORMAT_Z24_UNORM_X8_UINT:
1932 case MESA_FORMAT_Z24_UNORM_S8_UINT:
1933 case MESA_FORMAT_Z_UNORM16:
1934 return true;
1935 default:
1936 return false;
1937 }
1938 }
1939
1940 bool
1941 intel_miptree_alloc_hiz(struct brw_context *brw,
1942 struct intel_mipmap_tree *mt)
1943 {
1944 assert(mt->hiz_buf == NULL);
1945 assert(!mt->disable_aux_buffers);
1946
1947 if (brw->gen == 7) {
1948 mt->hiz_buf = intel_gen7_hiz_buf_create(brw, mt);
1949 } else if (brw->gen >= 8) {
1950 mt->hiz_buf = intel_gen8_hiz_buf_create(brw, mt);
1951 } else {
1952 mt->hiz_buf = intel_hiz_miptree_buf_create(brw, mt);
1953 }
1954
1955 if (!mt->hiz_buf)
1956 return false;
1957
1958 /* Mark that all slices need a HiZ resolve. */
1959 for (unsigned level = mt->first_level; level <= mt->last_level; ++level) {
1960 if (!intel_miptree_level_enable_hiz(brw, mt, level))
1961 continue;
1962
1963 for (unsigned layer = 0; layer < mt->level[level].depth; ++layer) {
1964 struct intel_resolve_map *m = malloc(sizeof(struct intel_resolve_map));
1965 exec_node_init(&m->link);
1966 m->level = level;
1967 m->layer = layer;
1968 m->need = BLORP_HIZ_OP_HIZ_RESOLVE;
1969
1970 exec_list_push_tail(&mt->hiz_map, &m->link);
1971 }
1972 }
1973
1974 return true;
1975 }
1976
1977 /**
1978 * Can the miptree sample using the hiz buffer?
1979 */
1980 bool
1981 intel_miptree_sample_with_hiz(struct brw_context *brw,
1982 struct intel_mipmap_tree *mt)
1983 {
1984 /* It's unclear how well supported sampling from the hiz buffer is on GEN8,
1985 * so keep things conservative for now and never enable it unless we're SKL+.
1986 */
1987 if (brw->gen < 9) {
1988 return false;
1989 }
1990
1991 if (!mt->hiz_buf) {
1992 return false;
1993 }
1994
1995 /* It seems the hardware won't fallback to the depth buffer if some of the
1996 * mipmap levels aren't available in the HiZ buffer. So we need all levels
1997 * of the texture to be HiZ enabled.
1998 */
1999 for (unsigned level = mt->first_level; level <= mt->last_level; ++level) {
2000 if (!intel_miptree_level_has_hiz(mt, level))
2001 return false;
2002 }
2003
2004 /* If compressed multisampling is enabled, then we use it for the auxiliary
2005 * buffer instead.
2006 *
2007 * From the BDW PRM (Volume 2d: Command Reference: Structures
2008 * RENDER_SURFACE_STATE.AuxiliarySurfaceMode):
2009 *
2010 * "If this field is set to AUX_HIZ, Number of Multisamples must be
2011 * MULTISAMPLECOUNT_1, and Surface Type cannot be SURFTYPE_3D.
2012 *
2013 * There is no such blurb for 1D textures, but there is sufficient evidence
2014 * that this is broken on SKL+.
2015 */
2016 return (mt->num_samples <= 1 &&
2017 mt->target != GL_TEXTURE_3D &&
2018 mt->target != GL_TEXTURE_1D /* gen9+ restriction */);
2019 }
2020
2021 /**
2022 * Does the miptree slice have hiz enabled?
2023 */
2024 bool
2025 intel_miptree_level_has_hiz(struct intel_mipmap_tree *mt, uint32_t level)
2026 {
2027 intel_miptree_check_level_layer(mt, level, 0);
2028 return mt->level[level].has_hiz;
2029 }
2030
2031 void
2032 intel_miptree_slice_set_needs_hiz_resolve(struct intel_mipmap_tree *mt,
2033 uint32_t level,
2034 uint32_t layer)
2035 {
2036 if (!intel_miptree_level_has_hiz(mt, level))
2037 return;
2038
2039 intel_resolve_map_set(&mt->hiz_map,
2040 level, layer, BLORP_HIZ_OP_HIZ_RESOLVE);
2041 }
2042
2043
2044 void
2045 intel_miptree_slice_set_needs_depth_resolve(struct intel_mipmap_tree *mt,
2046 uint32_t level,
2047 uint32_t layer)
2048 {
2049 if (!intel_miptree_level_has_hiz(mt, level))
2050 return;
2051
2052 intel_resolve_map_set(&mt->hiz_map,
2053 level, layer, BLORP_HIZ_OP_DEPTH_RESOLVE);
2054 }
2055
2056 void
2057 intel_miptree_set_all_slices_need_depth_resolve(struct intel_mipmap_tree *mt,
2058 uint32_t level)
2059 {
2060 uint32_t layer;
2061 uint32_t end_layer = mt->level[level].depth;
2062
2063 for (layer = 0; layer < end_layer; layer++) {
2064 intel_miptree_slice_set_needs_depth_resolve(mt, level, layer);
2065 }
2066 }
2067
2068 static bool
2069 intel_miptree_slice_resolve(struct brw_context *brw,
2070 struct intel_mipmap_tree *mt,
2071 uint32_t level,
2072 uint32_t layer,
2073 enum blorp_hiz_op need)
2074 {
2075 intel_miptree_check_level_layer(mt, level, layer);
2076
2077 struct intel_resolve_map *item =
2078 intel_resolve_map_get(&mt->hiz_map, level, layer);
2079
2080 if (!item || item->need != need)
2081 return false;
2082
2083 intel_hiz_exec(brw, mt, level, layer, need);
2084 intel_resolve_map_remove(item);
2085 return true;
2086 }
2087
2088 bool
2089 intel_miptree_slice_resolve_hiz(struct brw_context *brw,
2090 struct intel_mipmap_tree *mt,
2091 uint32_t level,
2092 uint32_t layer)
2093 {
2094 return intel_miptree_slice_resolve(brw, mt, level, layer,
2095 BLORP_HIZ_OP_HIZ_RESOLVE);
2096 }
2097
2098 bool
2099 intel_miptree_slice_resolve_depth(struct brw_context *brw,
2100 struct intel_mipmap_tree *mt,
2101 uint32_t level,
2102 uint32_t layer)
2103 {
2104 return intel_miptree_slice_resolve(brw, mt, level, layer,
2105 BLORP_HIZ_OP_DEPTH_RESOLVE);
2106 }
2107
2108 static bool
2109 intel_miptree_all_slices_resolve(struct brw_context *brw,
2110 struct intel_mipmap_tree *mt,
2111 enum blorp_hiz_op need)
2112 {
2113 bool did_resolve = false;
2114
2115 foreach_list_typed_safe(struct intel_resolve_map, map, link, &mt->hiz_map) {
2116 if (map->need != need)
2117 continue;
2118
2119 intel_hiz_exec(brw, mt, map->level, map->layer, need);
2120 intel_resolve_map_remove(map);
2121 did_resolve = true;
2122 }
2123
2124 return did_resolve;
2125 }
2126
2127 bool
2128 intel_miptree_all_slices_resolve_hiz(struct brw_context *brw,
2129 struct intel_mipmap_tree *mt)
2130 {
2131 return intel_miptree_all_slices_resolve(brw, mt,
2132 BLORP_HIZ_OP_HIZ_RESOLVE);
2133 }
2134
2135 bool
2136 intel_miptree_all_slices_resolve_depth(struct brw_context *brw,
2137 struct intel_mipmap_tree *mt)
2138 {
2139 return intel_miptree_all_slices_resolve(brw, mt,
2140 BLORP_HIZ_OP_DEPTH_RESOLVE);
2141 }
2142
2143 enum intel_fast_clear_state
2144 intel_miptree_get_fast_clear_state(const struct intel_mipmap_tree *mt,
2145 unsigned level, unsigned layer)
2146 {
2147 intel_miptree_check_level_layer(mt, level, layer);
2148
2149 const struct intel_resolve_map *item =
2150 intel_resolve_map_const_get(&mt->color_resolve_map, level, layer);
2151
2152 if (!item)
2153 return INTEL_FAST_CLEAR_STATE_RESOLVED;
2154
2155 return item->fast_clear_state;
2156 }
2157
2158 static void
2159 intel_miptree_check_color_resolve(const struct brw_context *brw,
2160 const struct intel_mipmap_tree *mt,
2161 unsigned level, unsigned layer)
2162 {
2163 if (mt->no_ccs || !mt->mcs_buf)
2164 return;
2165
2166 /* Fast color clear is supported for mipmapped surfaces only on Gen8+. */
2167 assert(brw->gen >= 8 ||
2168 (level == 0 && mt->first_level == 0 && mt->last_level == 0));
2169
2170 /* Compression of arrayed msaa surfaces is supported. */
2171 if (mt->num_samples > 1)
2172 return;
2173
2174 /* Fast color clear is supported for non-msaa arrays only on Gen8+. */
2175 assert(brw->gen >= 8 || (layer == 0 && mt->logical_depth0 == 1));
2176
2177 (void)level;
2178 (void)layer;
2179 }
2180
2181 void
2182 intel_miptree_set_fast_clear_state(const struct brw_context *brw,
2183 struct intel_mipmap_tree *mt,
2184 unsigned level,
2185 unsigned first_layer,
2186 unsigned num_layers,
2187 enum intel_fast_clear_state new_state)
2188 {
2189 /* Setting the state to resolved means removing the item from the list
2190 * altogether.
2191 */
2192 assert(new_state != INTEL_FAST_CLEAR_STATE_RESOLVED);
2193
2194 intel_miptree_check_color_resolve(brw, mt, level, first_layer);
2195
2196 assert(first_layer + num_layers <= mt->physical_depth0);
2197
2198 for (unsigned i = 0; i < num_layers; i++)
2199 intel_resolve_map_set(&mt->color_resolve_map, level,
2200 first_layer + i, new_state);
2201 }
2202
2203 bool
2204 intel_miptree_has_color_unresolved(const struct intel_mipmap_tree *mt,
2205 unsigned start_level, unsigned num_levels,
2206 unsigned start_layer, unsigned num_layers)
2207 {
2208 return intel_resolve_map_find_any(&mt->color_resolve_map,
2209 start_level, num_levels,
2210 start_layer, num_layers) != NULL;
2211 }
2212
2213 void
2214 intel_miptree_used_for_rendering(const struct brw_context *brw,
2215 struct intel_mipmap_tree *mt, unsigned level,
2216 unsigned start_layer, unsigned num_layers)
2217 {
2218 const bool is_lossless_compressed =
2219 intel_miptree_is_lossless_compressed(brw, mt);
2220
2221 for (unsigned i = 0; i < num_layers; ++i) {
2222 const enum intel_fast_clear_state fast_clear_state =
2223 intel_miptree_get_fast_clear_state(mt, level, start_layer + i);
2224
2225 /* If the buffer was previously in fast clear state, change it to
2226 * unresolved state, since it won't be guaranteed to be clear after
2227 * rendering occurs.
2228 */
2229 if (is_lossless_compressed ||
2230 fast_clear_state == INTEL_FAST_CLEAR_STATE_CLEAR) {
2231 intel_miptree_set_fast_clear_state(
2232 brw, mt, level, start_layer + i, 1,
2233 INTEL_FAST_CLEAR_STATE_UNRESOLVED);
2234 }
2235 }
2236 }
2237
2238 static bool
2239 intel_miptree_needs_color_resolve(const struct brw_context *brw,
2240 const struct intel_mipmap_tree *mt,
2241 int flags)
2242 {
2243 if (mt->no_ccs)
2244 return false;
2245
2246 const bool is_lossless_compressed =
2247 intel_miptree_is_lossless_compressed(brw, mt);
2248
2249 /* From gen9 onwards there is new compression scheme for single sampled
2250 * surfaces called "lossless compressed". These don't need to be always
2251 * resolved.
2252 */
2253 if ((flags & INTEL_MIPTREE_IGNORE_CCS_E) && is_lossless_compressed)
2254 return false;
2255
2256 /* Fast color clear resolves only make sense for non-MSAA buffers. */
2257 if (mt->msaa_layout != INTEL_MSAA_LAYOUT_NONE && !is_lossless_compressed)
2258 return false;
2259
2260 return true;
2261 }
2262
2263 bool
2264 intel_miptree_resolve_color(struct brw_context *brw,
2265 struct intel_mipmap_tree *mt, unsigned level,
2266 unsigned start_layer, unsigned num_layers,
2267 int flags)
2268 {
2269 intel_miptree_check_color_resolve(brw, mt, level, start_layer);
2270
2271 if (!intel_miptree_needs_color_resolve(brw, mt, flags))
2272 return false;
2273
2274 /* Arrayed fast clear is only supported for gen8+. */
2275 assert(brw->gen >= 8 || num_layers == 1);
2276
2277 bool resolved = false;
2278 for (unsigned i = 0; i < num_layers; ++i) {
2279 intel_miptree_check_level_layer(mt, level, start_layer + i);
2280
2281 struct intel_resolve_map *item =
2282 intel_resolve_map_get(&mt->color_resolve_map, level,
2283 start_layer + i);
2284
2285 if (item) {
2286 assert(item->fast_clear_state != INTEL_FAST_CLEAR_STATE_RESOLVED);
2287
2288 brw_blorp_resolve_color(brw, mt, level, start_layer);
2289 intel_resolve_map_remove(item);
2290 resolved = true;
2291 }
2292 }
2293
2294 return resolved;
2295 }
2296
2297 void
2298 intel_miptree_all_slices_resolve_color(struct brw_context *brw,
2299 struct intel_mipmap_tree *mt,
2300 int flags)
2301 {
2302 if (!intel_miptree_needs_color_resolve(brw, mt, flags))
2303 return;
2304
2305 foreach_list_typed_safe(struct intel_resolve_map, map, link,
2306 &mt->color_resolve_map) {
2307 assert(map->fast_clear_state != INTEL_FAST_CLEAR_STATE_RESOLVED);
2308
2309 brw_blorp_resolve_color(brw, mt, map->level, map->layer);
2310 intel_resolve_map_remove(map);
2311 }
2312 }
2313
2314 /**
2315 * Make it possible to share the BO backing the given miptree with another
2316 * process or another miptree.
2317 *
2318 * Fast color clears are unsafe with shared buffers, so we need to resolve and
2319 * then discard the MCS buffer, if present. We also set the no_ccs flag to
2320 * ensure that no MCS buffer gets allocated in the future.
2321 *
2322 * HiZ is similarly unsafe with shared buffers.
2323 */
2324 void
2325 intel_miptree_make_shareable(struct brw_context *brw,
2326 struct intel_mipmap_tree *mt)
2327 {
2328 /* MCS buffers are also used for multisample buffers, but we can't resolve
2329 * away a multisample MCS buffer because it's an integral part of how the
2330 * pixel data is stored. Fortunately this code path should never be
2331 * reached for multisample buffers.
2332 */
2333 assert(mt->msaa_layout == INTEL_MSAA_LAYOUT_NONE || mt->num_samples <= 1);
2334
2335 if (mt->mcs_buf) {
2336 intel_miptree_all_slices_resolve_color(brw, mt, 0);
2337 mt->no_ccs = true;
2338 drm_intel_bo_unreference(mt->mcs_buf->bo);
2339 free(mt->mcs_buf);
2340 mt->mcs_buf = NULL;
2341 }
2342
2343 if (mt->hiz_buf) {
2344 intel_miptree_all_slices_resolve_depth(brw, mt);
2345 intel_miptree_hiz_buffer_free(mt->hiz_buf);
2346 mt->hiz_buf = NULL;
2347 }
2348
2349 mt->disable_aux_buffers = true;
2350 }
2351
2352
2353 /**
2354 * \brief Get pointer offset into stencil buffer.
2355 *
2356 * The stencil buffer is W tiled. Since the GTT is incapable of W fencing, we
2357 * must decode the tile's layout in software.
2358 *
2359 * See
2360 * - PRM, 2011 Sandy Bridge, Volume 1, Part 2, Section 4.5.2.1 W-Major Tile
2361 * Format.
2362 * - PRM, 2011 Sandy Bridge, Volume 1, Part 2, Section 4.5.3 Tiling Algorithm
2363 *
2364 * Even though the returned offset is always positive, the return type is
2365 * signed due to
2366 * commit e8b1c6d6f55f5be3bef25084fdd8b6127517e137
2367 * mesa: Fix return type of _mesa_get_format_bytes() (#37351)
2368 */
2369 static intptr_t
2370 intel_offset_S8(uint32_t stride, uint32_t x, uint32_t y, bool swizzled)
2371 {
2372 uint32_t tile_size = 4096;
2373 uint32_t tile_width = 64;
2374 uint32_t tile_height = 64;
2375 uint32_t row_size = 64 * stride;
2376
2377 uint32_t tile_x = x / tile_width;
2378 uint32_t tile_y = y / tile_height;
2379
2380 /* The byte's address relative to the tile's base addres. */
2381 uint32_t byte_x = x % tile_width;
2382 uint32_t byte_y = y % tile_height;
2383
2384 uintptr_t u = tile_y * row_size
2385 + tile_x * tile_size
2386 + 512 * (byte_x / 8)
2387 + 64 * (byte_y / 8)
2388 + 32 * ((byte_y / 4) % 2)
2389 + 16 * ((byte_x / 4) % 2)
2390 + 8 * ((byte_y / 2) % 2)
2391 + 4 * ((byte_x / 2) % 2)
2392 + 2 * (byte_y % 2)
2393 + 1 * (byte_x % 2);
2394
2395 if (swizzled) {
2396 /* adjust for bit6 swizzling */
2397 if (((byte_x / 8) % 2) == 1) {
2398 if (((byte_y / 8) % 2) == 0) {
2399 u += 64;
2400 } else {
2401 u -= 64;
2402 }
2403 }
2404 }
2405
2406 return u;
2407 }
2408
2409 void
2410 intel_miptree_updownsample(struct brw_context *brw,
2411 struct intel_mipmap_tree *src,
2412 struct intel_mipmap_tree *dst)
2413 {
2414 brw_blorp_blit_miptrees(brw,
2415 src, 0 /* level */, 0 /* layer */,
2416 src->format, SWIZZLE_XYZW,
2417 dst, 0 /* level */, 0 /* layer */, dst->format,
2418 0, 0,
2419 src->logical_width0, src->logical_height0,
2420 0, 0,
2421 dst->logical_width0, dst->logical_height0,
2422 GL_NEAREST, false, false /*mirror x, y*/,
2423 false, false);
2424
2425 if (src->stencil_mt) {
2426 brw_blorp_blit_miptrees(brw,
2427 src->stencil_mt, 0 /* level */, 0 /* layer */,
2428 src->stencil_mt->format, SWIZZLE_XYZW,
2429 dst->stencil_mt, 0 /* level */, 0 /* layer */,
2430 dst->stencil_mt->format,
2431 0, 0,
2432 src->logical_width0, src->logical_height0,
2433 0, 0,
2434 dst->logical_width0, dst->logical_height0,
2435 GL_NEAREST, false, false /*mirror x, y*/,
2436 false, false /* decode/encode srgb */);
2437 }
2438 }
2439
2440 void
2441 intel_update_r8stencil(struct brw_context *brw,
2442 struct intel_mipmap_tree *mt)
2443 {
2444 assert(brw->gen >= 7);
2445 struct intel_mipmap_tree *src =
2446 mt->format == MESA_FORMAT_S_UINT8 ? mt : mt->stencil_mt;
2447 if (!src || brw->gen >= 8 || !src->r8stencil_needs_update)
2448 return;
2449
2450 if (!mt->r8stencil_mt) {
2451 const uint32_t r8stencil_flags =
2452 MIPTREE_LAYOUT_ACCELERATED_UPLOAD | MIPTREE_LAYOUT_TILING_Y |
2453 MIPTREE_LAYOUT_DISABLE_AUX;
2454 assert(brw->gen > 6); /* Handle MIPTREE_LAYOUT_FORCE_ALL_SLICE_AT_LOD */
2455 mt->r8stencil_mt = intel_miptree_create(brw,
2456 src->target,
2457 MESA_FORMAT_R_UINT8,
2458 src->first_level,
2459 src->last_level,
2460 src->logical_width0,
2461 src->logical_height0,
2462 src->logical_depth0,
2463 src->num_samples,
2464 r8stencil_flags);
2465 assert(mt->r8stencil_mt);
2466 }
2467
2468 struct intel_mipmap_tree *dst = mt->r8stencil_mt;
2469
2470 for (int level = src->first_level; level <= src->last_level; level++) {
2471 const unsigned depth = src->level[level].depth;
2472 const int layers_per_blit =
2473 (dst->msaa_layout == INTEL_MSAA_LAYOUT_UMS ||
2474 dst->msaa_layout == INTEL_MSAA_LAYOUT_CMS) ?
2475 dst->num_samples : 1;
2476
2477 for (unsigned layer = 0; layer < depth; layer++) {
2478 brw_blorp_blit_miptrees(brw,
2479 src, level, layer,
2480 src->format, SWIZZLE_X,
2481 dst, level, layers_per_blit * layer,
2482 MESA_FORMAT_R_UNORM8,
2483 0, 0,
2484 minify(src->logical_width0, level),
2485 minify(src->logical_height0, level),
2486 0, 0,
2487 minify(dst->logical_width0, level),
2488 minify(dst->logical_height0, level),
2489 GL_NEAREST, false, false /*mirror x, y*/,
2490 false, false /* decode/encode srgb */);
2491 }
2492 }
2493
2494 brw_render_cache_set_check_flush(brw, dst->bo);
2495 src->r8stencil_needs_update = false;
2496 }
2497
2498 static void *
2499 intel_miptree_map_raw(struct brw_context *brw, struct intel_mipmap_tree *mt)
2500 {
2501 /* CPU accesses to color buffers don't understand fast color clears, so
2502 * resolve any pending fast color clears before we map.
2503 */
2504 intel_miptree_all_slices_resolve_color(brw, mt, 0);
2505
2506 drm_intel_bo *bo = mt->bo;
2507
2508 if (drm_intel_bo_references(brw->batch.bo, bo))
2509 intel_batchbuffer_flush(brw);
2510
2511 if (mt->tiling != I915_TILING_NONE)
2512 brw_bo_map_gtt(brw, bo, "miptree");
2513 else
2514 brw_bo_map(brw, bo, true, "miptree");
2515
2516 return bo->virtual;
2517 }
2518
2519 static void
2520 intel_miptree_unmap_raw(struct intel_mipmap_tree *mt)
2521 {
2522 drm_intel_bo_unmap(mt->bo);
2523 }
2524
2525 static void
2526 intel_miptree_map_gtt(struct brw_context *brw,
2527 struct intel_mipmap_tree *mt,
2528 struct intel_miptree_map *map,
2529 unsigned int level, unsigned int slice)
2530 {
2531 unsigned int bw, bh;
2532 void *base;
2533 unsigned int image_x, image_y;
2534 intptr_t x = map->x;
2535 intptr_t y = map->y;
2536
2537 /* For compressed formats, the stride is the number of bytes per
2538 * row of blocks. intel_miptree_get_image_offset() already does
2539 * the divide.
2540 */
2541 _mesa_get_format_block_size(mt->format, &bw, &bh);
2542 assert(y % bh == 0);
2543 assert(x % bw == 0);
2544 y /= bh;
2545 x /= bw;
2546
2547 base = intel_miptree_map_raw(brw, mt) + mt->offset;
2548
2549 if (base == NULL)
2550 map->ptr = NULL;
2551 else {
2552 /* Note that in the case of cube maps, the caller must have passed the
2553 * slice number referencing the face.
2554 */
2555 intel_miptree_get_image_offset(mt, level, slice, &image_x, &image_y);
2556 x += image_x;
2557 y += image_y;
2558
2559 map->stride = mt->pitch;
2560 map->ptr = base + y * map->stride + x * mt->cpp;
2561 }
2562
2563 DBG("%s: %d,%d %dx%d from mt %p (%s) "
2564 "%"PRIiPTR",%"PRIiPTR" = %p/%d\n", __func__,
2565 map->x, map->y, map->w, map->h,
2566 mt, _mesa_get_format_name(mt->format),
2567 x, y, map->ptr, map->stride);
2568 }
2569
2570 static void
2571 intel_miptree_unmap_gtt(struct intel_mipmap_tree *mt)
2572 {
2573 intel_miptree_unmap_raw(mt);
2574 }
2575
2576 static void
2577 intel_miptree_map_blit(struct brw_context *brw,
2578 struct intel_mipmap_tree *mt,
2579 struct intel_miptree_map *map,
2580 unsigned int level, unsigned int slice)
2581 {
2582 map->linear_mt = intel_miptree_create(brw, GL_TEXTURE_2D, mt->format,
2583 /* first_level */ 0,
2584 /* last_level */ 0,
2585 map->w, map->h, 1,
2586 /* samples */ 0,
2587 MIPTREE_LAYOUT_TILING_NONE);
2588
2589 if (!map->linear_mt) {
2590 fprintf(stderr, "Failed to allocate blit temporary\n");
2591 goto fail;
2592 }
2593 map->stride = map->linear_mt->pitch;
2594
2595 /* One of either READ_BIT or WRITE_BIT or both is set. READ_BIT implies no
2596 * INVALIDATE_RANGE_BIT. WRITE_BIT needs the original values read in unless
2597 * invalidate is set, since we'll be writing the whole rectangle from our
2598 * temporary buffer back out.
2599 */
2600 if (!(map->mode & GL_MAP_INVALIDATE_RANGE_BIT)) {
2601 if (!intel_miptree_copy(brw,
2602 mt, level, slice, map->x, map->y,
2603 map->linear_mt, 0, 0, 0, 0,
2604 map->w, map->h)) {
2605 fprintf(stderr, "Failed to blit\n");
2606 goto fail;
2607 }
2608 }
2609
2610 map->ptr = intel_miptree_map_raw(brw, map->linear_mt);
2611
2612 DBG("%s: %d,%d %dx%d from mt %p (%s) %d,%d = %p/%d\n", __func__,
2613 map->x, map->y, map->w, map->h,
2614 mt, _mesa_get_format_name(mt->format),
2615 level, slice, map->ptr, map->stride);
2616
2617 return;
2618
2619 fail:
2620 intel_miptree_release(&map->linear_mt);
2621 map->ptr = NULL;
2622 map->stride = 0;
2623 }
2624
2625 static void
2626 intel_miptree_unmap_blit(struct brw_context *brw,
2627 struct intel_mipmap_tree *mt,
2628 struct intel_miptree_map *map,
2629 unsigned int level,
2630 unsigned int slice)
2631 {
2632 struct gl_context *ctx = &brw->ctx;
2633
2634 intel_miptree_unmap_raw(map->linear_mt);
2635
2636 if (map->mode & GL_MAP_WRITE_BIT) {
2637 bool ok = intel_miptree_copy(brw,
2638 map->linear_mt, 0, 0, 0, 0,
2639 mt, level, slice, map->x, map->y,
2640 map->w, map->h);
2641 WARN_ONCE(!ok, "Failed to blit from linear temporary mapping");
2642 }
2643
2644 intel_miptree_release(&map->linear_mt);
2645 }
2646
2647 /**
2648 * "Map" a buffer by copying it to an untiled temporary using MOVNTDQA.
2649 */
2650 #if defined(USE_SSE41)
2651 static void
2652 intel_miptree_map_movntdqa(struct brw_context *brw,
2653 struct intel_mipmap_tree *mt,
2654 struct intel_miptree_map *map,
2655 unsigned int level, unsigned int slice)
2656 {
2657 assert(map->mode & GL_MAP_READ_BIT);
2658 assert(!(map->mode & GL_MAP_WRITE_BIT));
2659
2660 DBG("%s: %d,%d %dx%d from mt %p (%s) %d,%d = %p/%d\n", __func__,
2661 map->x, map->y, map->w, map->h,
2662 mt, _mesa_get_format_name(mt->format),
2663 level, slice, map->ptr, map->stride);
2664
2665 /* Map the original image */
2666 uint32_t image_x;
2667 uint32_t image_y;
2668 intel_miptree_get_image_offset(mt, level, slice, &image_x, &image_y);
2669 image_x += map->x;
2670 image_y += map->y;
2671
2672 void *src = intel_miptree_map_raw(brw, mt);
2673 if (!src)
2674 return;
2675
2676 src += mt->offset;
2677
2678 src += image_y * mt->pitch;
2679 src += image_x * mt->cpp;
2680
2681 /* Due to the pixel offsets for the particular image being mapped, our
2682 * src pointer may not be 16-byte aligned. However, if the pitch is
2683 * divisible by 16, then the amount by which it's misaligned will remain
2684 * consistent from row to row.
2685 */
2686 assert((mt->pitch % 16) == 0);
2687 const int misalignment = ((uintptr_t) src) & 15;
2688
2689 /* Create an untiled temporary buffer for the mapping. */
2690 const unsigned width_bytes = _mesa_format_row_stride(mt->format, map->w);
2691
2692 map->stride = ALIGN(misalignment + width_bytes, 16);
2693
2694 map->buffer = _mesa_align_malloc(map->stride * map->h, 16);
2695 /* Offset the destination so it has the same misalignment as src. */
2696 map->ptr = map->buffer + misalignment;
2697
2698 assert((((uintptr_t) map->ptr) & 15) == misalignment);
2699
2700 for (uint32_t y = 0; y < map->h; y++) {
2701 void *dst_ptr = map->ptr + y * map->stride;
2702 void *src_ptr = src + y * mt->pitch;
2703
2704 _mesa_streaming_load_memcpy(dst_ptr, src_ptr, width_bytes);
2705 }
2706
2707 intel_miptree_unmap_raw(mt);
2708 }
2709
2710 static void
2711 intel_miptree_unmap_movntdqa(struct brw_context *brw,
2712 struct intel_mipmap_tree *mt,
2713 struct intel_miptree_map *map,
2714 unsigned int level,
2715 unsigned int slice)
2716 {
2717 _mesa_align_free(map->buffer);
2718 map->buffer = NULL;
2719 map->ptr = NULL;
2720 }
2721 #endif
2722
2723 static void
2724 intel_miptree_map_s8(struct brw_context *brw,
2725 struct intel_mipmap_tree *mt,
2726 struct intel_miptree_map *map,
2727 unsigned int level, unsigned int slice)
2728 {
2729 map->stride = map->w;
2730 map->buffer = map->ptr = malloc(map->stride * map->h);
2731 if (!map->buffer)
2732 return;
2733
2734 /* One of either READ_BIT or WRITE_BIT or both is set. READ_BIT implies no
2735 * INVALIDATE_RANGE_BIT. WRITE_BIT needs the original values read in unless
2736 * invalidate is set, since we'll be writing the whole rectangle from our
2737 * temporary buffer back out.
2738 */
2739 if (!(map->mode & GL_MAP_INVALIDATE_RANGE_BIT)) {
2740 uint8_t *untiled_s8_map = map->ptr;
2741 uint8_t *tiled_s8_map = intel_miptree_map_raw(brw, mt);
2742 unsigned int image_x, image_y;
2743
2744 intel_miptree_get_image_offset(mt, level, slice, &image_x, &image_y);
2745
2746 for (uint32_t y = 0; y < map->h; y++) {
2747 for (uint32_t x = 0; x < map->w; x++) {
2748 ptrdiff_t offset = intel_offset_S8(mt->pitch,
2749 x + image_x + map->x,
2750 y + image_y + map->y,
2751 brw->has_swizzling);
2752 untiled_s8_map[y * map->w + x] = tiled_s8_map[offset];
2753 }
2754 }
2755
2756 intel_miptree_unmap_raw(mt);
2757
2758 DBG("%s: %d,%d %dx%d from mt %p %d,%d = %p/%d\n", __func__,
2759 map->x, map->y, map->w, map->h,
2760 mt, map->x + image_x, map->y + image_y, map->ptr, map->stride);
2761 } else {
2762 DBG("%s: %d,%d %dx%d from mt %p = %p/%d\n", __func__,
2763 map->x, map->y, map->w, map->h,
2764 mt, map->ptr, map->stride);
2765 }
2766 }
2767
2768 static void
2769 intel_miptree_unmap_s8(struct brw_context *brw,
2770 struct intel_mipmap_tree *mt,
2771 struct intel_miptree_map *map,
2772 unsigned int level,
2773 unsigned int slice)
2774 {
2775 if (map->mode & GL_MAP_WRITE_BIT) {
2776 unsigned int image_x, image_y;
2777 uint8_t *untiled_s8_map = map->ptr;
2778 uint8_t *tiled_s8_map = intel_miptree_map_raw(brw, mt);
2779
2780 intel_miptree_get_image_offset(mt, level, slice, &image_x, &image_y);
2781
2782 for (uint32_t y = 0; y < map->h; y++) {
2783 for (uint32_t x = 0; x < map->w; x++) {
2784 ptrdiff_t offset = intel_offset_S8(mt->pitch,
2785 image_x + x + map->x,
2786 image_y + y + map->y,
2787 brw->has_swizzling);
2788 tiled_s8_map[offset] = untiled_s8_map[y * map->w + x];
2789 }
2790 }
2791
2792 intel_miptree_unmap_raw(mt);
2793 }
2794
2795 free(map->buffer);
2796 }
2797
2798 static void
2799 intel_miptree_map_etc(struct brw_context *brw,
2800 struct intel_mipmap_tree *mt,
2801 struct intel_miptree_map *map,
2802 unsigned int level,
2803 unsigned int slice)
2804 {
2805 assert(mt->etc_format != MESA_FORMAT_NONE);
2806 if (mt->etc_format == MESA_FORMAT_ETC1_RGB8) {
2807 assert(mt->format == MESA_FORMAT_R8G8B8X8_UNORM);
2808 }
2809
2810 assert(map->mode & GL_MAP_WRITE_BIT);
2811 assert(map->mode & GL_MAP_INVALIDATE_RANGE_BIT);
2812
2813 map->stride = _mesa_format_row_stride(mt->etc_format, map->w);
2814 map->buffer = malloc(_mesa_format_image_size(mt->etc_format,
2815 map->w, map->h, 1));
2816 map->ptr = map->buffer;
2817 }
2818
2819 static void
2820 intel_miptree_unmap_etc(struct brw_context *brw,
2821 struct intel_mipmap_tree *mt,
2822 struct intel_miptree_map *map,
2823 unsigned int level,
2824 unsigned int slice)
2825 {
2826 uint32_t image_x;
2827 uint32_t image_y;
2828 intel_miptree_get_image_offset(mt, level, slice, &image_x, &image_y);
2829
2830 image_x += map->x;
2831 image_y += map->y;
2832
2833 uint8_t *dst = intel_miptree_map_raw(brw, mt)
2834 + image_y * mt->pitch
2835 + image_x * mt->cpp;
2836
2837 if (mt->etc_format == MESA_FORMAT_ETC1_RGB8)
2838 _mesa_etc1_unpack_rgba8888(dst, mt->pitch,
2839 map->ptr, map->stride,
2840 map->w, map->h);
2841 else
2842 _mesa_unpack_etc2_format(dst, mt->pitch,
2843 map->ptr, map->stride,
2844 map->w, map->h, mt->etc_format);
2845
2846 intel_miptree_unmap_raw(mt);
2847 free(map->buffer);
2848 }
2849
2850 /**
2851 * Mapping function for packed depth/stencil miptrees backed by real separate
2852 * miptrees for depth and stencil.
2853 *
2854 * On gen7, and to support HiZ pre-gen7, we have to have the stencil buffer
2855 * separate from the depth buffer. Yet at the GL API level, we have to expose
2856 * packed depth/stencil textures and FBO attachments, and Mesa core expects to
2857 * be able to map that memory for texture storage and glReadPixels-type
2858 * operations. We give Mesa core that access by mallocing a temporary and
2859 * copying the data between the actual backing store and the temporary.
2860 */
2861 static void
2862 intel_miptree_map_depthstencil(struct brw_context *brw,
2863 struct intel_mipmap_tree *mt,
2864 struct intel_miptree_map *map,
2865 unsigned int level, unsigned int slice)
2866 {
2867 struct intel_mipmap_tree *z_mt = mt;
2868 struct intel_mipmap_tree *s_mt = mt->stencil_mt;
2869 bool map_z32f_x24s8 = mt->format == MESA_FORMAT_Z_FLOAT32;
2870 int packed_bpp = map_z32f_x24s8 ? 8 : 4;
2871
2872 map->stride = map->w * packed_bpp;
2873 map->buffer = map->ptr = malloc(map->stride * map->h);
2874 if (!map->buffer)
2875 return;
2876
2877 /* One of either READ_BIT or WRITE_BIT or both is set. READ_BIT implies no
2878 * INVALIDATE_RANGE_BIT. WRITE_BIT needs the original values read in unless
2879 * invalidate is set, since we'll be writing the whole rectangle from our
2880 * temporary buffer back out.
2881 */
2882 if (!(map->mode & GL_MAP_INVALIDATE_RANGE_BIT)) {
2883 uint32_t *packed_map = map->ptr;
2884 uint8_t *s_map = intel_miptree_map_raw(brw, s_mt);
2885 uint32_t *z_map = intel_miptree_map_raw(brw, z_mt);
2886 unsigned int s_image_x, s_image_y;
2887 unsigned int z_image_x, z_image_y;
2888
2889 intel_miptree_get_image_offset(s_mt, level, slice,
2890 &s_image_x, &s_image_y);
2891 intel_miptree_get_image_offset(z_mt, level, slice,
2892 &z_image_x, &z_image_y);
2893
2894 for (uint32_t y = 0; y < map->h; y++) {
2895 for (uint32_t x = 0; x < map->w; x++) {
2896 int map_x = map->x + x, map_y = map->y + y;
2897 ptrdiff_t s_offset = intel_offset_S8(s_mt->pitch,
2898 map_x + s_image_x,
2899 map_y + s_image_y,
2900 brw->has_swizzling);
2901 ptrdiff_t z_offset = ((map_y + z_image_y) *
2902 (z_mt->pitch / 4) +
2903 (map_x + z_image_x));
2904 uint8_t s = s_map[s_offset];
2905 uint32_t z = z_map[z_offset];
2906
2907 if (map_z32f_x24s8) {
2908 packed_map[(y * map->w + x) * 2 + 0] = z;
2909 packed_map[(y * map->w + x) * 2 + 1] = s;
2910 } else {
2911 packed_map[y * map->w + x] = (s << 24) | (z & 0x00ffffff);
2912 }
2913 }
2914 }
2915
2916 intel_miptree_unmap_raw(s_mt);
2917 intel_miptree_unmap_raw(z_mt);
2918
2919 DBG("%s: %d,%d %dx%d from z mt %p %d,%d, s mt %p %d,%d = %p/%d\n",
2920 __func__,
2921 map->x, map->y, map->w, map->h,
2922 z_mt, map->x + z_image_x, map->y + z_image_y,
2923 s_mt, map->x + s_image_x, map->y + s_image_y,
2924 map->ptr, map->stride);
2925 } else {
2926 DBG("%s: %d,%d %dx%d from mt %p = %p/%d\n", __func__,
2927 map->x, map->y, map->w, map->h,
2928 mt, map->ptr, map->stride);
2929 }
2930 }
2931
2932 static void
2933 intel_miptree_unmap_depthstencil(struct brw_context *brw,
2934 struct intel_mipmap_tree *mt,
2935 struct intel_miptree_map *map,
2936 unsigned int level,
2937 unsigned int slice)
2938 {
2939 struct intel_mipmap_tree *z_mt = mt;
2940 struct intel_mipmap_tree *s_mt = mt->stencil_mt;
2941 bool map_z32f_x24s8 = mt->format == MESA_FORMAT_Z_FLOAT32;
2942
2943 if (map->mode & GL_MAP_WRITE_BIT) {
2944 uint32_t *packed_map = map->ptr;
2945 uint8_t *s_map = intel_miptree_map_raw(brw, s_mt);
2946 uint32_t *z_map = intel_miptree_map_raw(brw, z_mt);
2947 unsigned int s_image_x, s_image_y;
2948 unsigned int z_image_x, z_image_y;
2949
2950 intel_miptree_get_image_offset(s_mt, level, slice,
2951 &s_image_x, &s_image_y);
2952 intel_miptree_get_image_offset(z_mt, level, slice,
2953 &z_image_x, &z_image_y);
2954
2955 for (uint32_t y = 0; y < map->h; y++) {
2956 for (uint32_t x = 0; x < map->w; x++) {
2957 ptrdiff_t s_offset = intel_offset_S8(s_mt->pitch,
2958 x + s_image_x + map->x,
2959 y + s_image_y + map->y,
2960 brw->has_swizzling);
2961 ptrdiff_t z_offset = ((y + z_image_y + map->y) *
2962 (z_mt->pitch / 4) +
2963 (x + z_image_x + map->x));
2964
2965 if (map_z32f_x24s8) {
2966 z_map[z_offset] = packed_map[(y * map->w + x) * 2 + 0];
2967 s_map[s_offset] = packed_map[(y * map->w + x) * 2 + 1];
2968 } else {
2969 uint32_t packed = packed_map[y * map->w + x];
2970 s_map[s_offset] = packed >> 24;
2971 z_map[z_offset] = packed;
2972 }
2973 }
2974 }
2975
2976 intel_miptree_unmap_raw(s_mt);
2977 intel_miptree_unmap_raw(z_mt);
2978
2979 DBG("%s: %d,%d %dx%d from z mt %p (%s) %d,%d, s mt %p %d,%d = %p/%d\n",
2980 __func__,
2981 map->x, map->y, map->w, map->h,
2982 z_mt, _mesa_get_format_name(z_mt->format),
2983 map->x + z_image_x, map->y + z_image_y,
2984 s_mt, map->x + s_image_x, map->y + s_image_y,
2985 map->ptr, map->stride);
2986 }
2987
2988 free(map->buffer);
2989 }
2990
2991 /**
2992 * Create and attach a map to the miptree at (level, slice). Return the
2993 * attached map.
2994 */
2995 static struct intel_miptree_map*
2996 intel_miptree_attach_map(struct intel_mipmap_tree *mt,
2997 unsigned int level,
2998 unsigned int slice,
2999 unsigned int x,
3000 unsigned int y,
3001 unsigned int w,
3002 unsigned int h,
3003 GLbitfield mode)
3004 {
3005 struct intel_miptree_map *map = calloc(1, sizeof(*map));
3006
3007 if (!map)
3008 return NULL;
3009
3010 assert(mt->level[level].slice[slice].map == NULL);
3011 mt->level[level].slice[slice].map = map;
3012
3013 map->mode = mode;
3014 map->x = x;
3015 map->y = y;
3016 map->w = w;
3017 map->h = h;
3018
3019 return map;
3020 }
3021
3022 /**
3023 * Release the map at (level, slice).
3024 */
3025 static void
3026 intel_miptree_release_map(struct intel_mipmap_tree *mt,
3027 unsigned int level,
3028 unsigned int slice)
3029 {
3030 struct intel_miptree_map **map;
3031
3032 map = &mt->level[level].slice[slice].map;
3033 free(*map);
3034 *map = NULL;
3035 }
3036
3037 static bool
3038 can_blit_slice(struct intel_mipmap_tree *mt,
3039 unsigned int level, unsigned int slice)
3040 {
3041 /* See intel_miptree_blit() for details on the 32k pitch limit. */
3042 if (mt->pitch >= 32768)
3043 return false;
3044
3045 return true;
3046 }
3047
3048 static bool
3049 use_intel_mipree_map_blit(struct brw_context *brw,
3050 struct intel_mipmap_tree *mt,
3051 GLbitfield mode,
3052 unsigned int level,
3053 unsigned int slice)
3054 {
3055 if (brw->has_llc &&
3056 /* It's probably not worth swapping to the blit ring because of
3057 * all the overhead involved. But, we must use blitter for the
3058 * surfaces with INTEL_MIPTREE_TRMODE_{YF,YS}.
3059 */
3060 (!(mode & GL_MAP_WRITE_BIT) ||
3061 mt->tr_mode != INTEL_MIPTREE_TRMODE_NONE) &&
3062 !mt->compressed &&
3063 (mt->tiling == I915_TILING_X ||
3064 /* Prior to Sandybridge, the blitter can't handle Y tiling */
3065 (brw->gen >= 6 && mt->tiling == I915_TILING_Y) ||
3066 /* Fast copy blit on skl+ supports all tiling formats. */
3067 brw->gen >= 9) &&
3068 can_blit_slice(mt, level, slice))
3069 return true;
3070
3071 if (mt->tiling != I915_TILING_NONE &&
3072 mt->bo->size >= brw->max_gtt_map_object_size) {
3073 assert(can_blit_slice(mt, level, slice));
3074 return true;
3075 }
3076
3077 return false;
3078 }
3079
3080 /**
3081 * Parameter \a out_stride has type ptrdiff_t not because the buffer stride may
3082 * exceed 32 bits but to diminish the likelihood subtle bugs in pointer
3083 * arithmetic overflow.
3084 *
3085 * If you call this function and use \a out_stride, then you're doing pointer
3086 * arithmetic on \a out_ptr. The type of \a out_stride doesn't prevent all
3087 * bugs. The caller must still take care to avoid 32-bit overflow errors in
3088 * all arithmetic expressions that contain buffer offsets and pixel sizes,
3089 * which usually have type uint32_t or GLuint.
3090 */
3091 void
3092 intel_miptree_map(struct brw_context *brw,
3093 struct intel_mipmap_tree *mt,
3094 unsigned int level,
3095 unsigned int slice,
3096 unsigned int x,
3097 unsigned int y,
3098 unsigned int w,
3099 unsigned int h,
3100 GLbitfield mode,
3101 void **out_ptr,
3102 ptrdiff_t *out_stride)
3103 {
3104 struct intel_miptree_map *map;
3105
3106 assert(mt->num_samples <= 1);
3107
3108 map = intel_miptree_attach_map(mt, level, slice, x, y, w, h, mode);
3109 if (!map){
3110 *out_ptr = NULL;
3111 *out_stride = 0;
3112 return;
3113 }
3114
3115 intel_miptree_slice_resolve_depth(brw, mt, level, slice);
3116 if (map->mode & GL_MAP_WRITE_BIT) {
3117 intel_miptree_slice_set_needs_hiz_resolve(mt, level, slice);
3118 }
3119
3120 if (mt->format == MESA_FORMAT_S_UINT8) {
3121 intel_miptree_map_s8(brw, mt, map, level, slice);
3122 } else if (mt->etc_format != MESA_FORMAT_NONE &&
3123 !(mode & BRW_MAP_DIRECT_BIT)) {
3124 intel_miptree_map_etc(brw, mt, map, level, slice);
3125 } else if (mt->stencil_mt && !(mode & BRW_MAP_DIRECT_BIT)) {
3126 intel_miptree_map_depthstencil(brw, mt, map, level, slice);
3127 } else if (use_intel_mipree_map_blit(brw, mt, mode, level, slice)) {
3128 intel_miptree_map_blit(brw, mt, map, level, slice);
3129 #if defined(USE_SSE41)
3130 } else if (!(mode & GL_MAP_WRITE_BIT) &&
3131 !mt->compressed && cpu_has_sse4_1 &&
3132 (mt->pitch % 16 == 0)) {
3133 intel_miptree_map_movntdqa(brw, mt, map, level, slice);
3134 #endif
3135 } else {
3136 /* intel_miptree_map_gtt() doesn't support surfaces with Yf/Ys tiling. */
3137 assert(mt->tr_mode == INTEL_MIPTREE_TRMODE_NONE);
3138 intel_miptree_map_gtt(brw, mt, map, level, slice);
3139 }
3140
3141 *out_ptr = map->ptr;
3142 *out_stride = map->stride;
3143
3144 if (map->ptr == NULL)
3145 intel_miptree_release_map(mt, level, slice);
3146 }
3147
3148 void
3149 intel_miptree_unmap(struct brw_context *brw,
3150 struct intel_mipmap_tree *mt,
3151 unsigned int level,
3152 unsigned int slice)
3153 {
3154 struct intel_miptree_map *map = mt->level[level].slice[slice].map;
3155
3156 assert(mt->num_samples <= 1);
3157
3158 if (!map)
3159 return;
3160
3161 DBG("%s: mt %p (%s) level %d slice %d\n", __func__,
3162 mt, _mesa_get_format_name(mt->format), level, slice);
3163
3164 if (mt->format == MESA_FORMAT_S_UINT8) {
3165 intel_miptree_unmap_s8(brw, mt, map, level, slice);
3166 } else if (mt->etc_format != MESA_FORMAT_NONE &&
3167 !(map->mode & BRW_MAP_DIRECT_BIT)) {
3168 intel_miptree_unmap_etc(brw, mt, map, level, slice);
3169 } else if (mt->stencil_mt && !(map->mode & BRW_MAP_DIRECT_BIT)) {
3170 intel_miptree_unmap_depthstencil(brw, mt, map, level, slice);
3171 } else if (map->linear_mt) {
3172 intel_miptree_unmap_blit(brw, mt, map, level, slice);
3173 #if defined(USE_SSE41)
3174 } else if (map->buffer && cpu_has_sse4_1) {
3175 intel_miptree_unmap_movntdqa(brw, mt, map, level, slice);
3176 #endif
3177 } else {
3178 intel_miptree_unmap_gtt(mt);
3179 }
3180
3181 intel_miptree_release_map(mt, level, slice);
3182 }
3183
3184 enum isl_surf_dim
3185 get_isl_surf_dim(GLenum target)
3186 {
3187 switch (target) {
3188 case GL_TEXTURE_1D:
3189 case GL_TEXTURE_1D_ARRAY:
3190 return ISL_SURF_DIM_1D;
3191
3192 case GL_TEXTURE_2D:
3193 case GL_TEXTURE_2D_ARRAY:
3194 case GL_TEXTURE_RECTANGLE:
3195 case GL_TEXTURE_CUBE_MAP:
3196 case GL_TEXTURE_CUBE_MAP_ARRAY:
3197 case GL_TEXTURE_2D_MULTISAMPLE:
3198 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
3199 case GL_TEXTURE_EXTERNAL_OES:
3200 return ISL_SURF_DIM_2D;
3201
3202 case GL_TEXTURE_3D:
3203 return ISL_SURF_DIM_3D;
3204 }
3205
3206 unreachable("Invalid texture target");
3207 }
3208
3209 enum isl_dim_layout
3210 get_isl_dim_layout(const struct gen_device_info *devinfo, uint32_t tiling,
3211 GLenum target)
3212 {
3213 switch (target) {
3214 case GL_TEXTURE_1D:
3215 case GL_TEXTURE_1D_ARRAY:
3216 return (devinfo->gen >= 9 && tiling == I915_TILING_NONE ?
3217 ISL_DIM_LAYOUT_GEN9_1D : ISL_DIM_LAYOUT_GEN4_2D);
3218
3219 case GL_TEXTURE_2D:
3220 case GL_TEXTURE_2D_ARRAY:
3221 case GL_TEXTURE_RECTANGLE:
3222 case GL_TEXTURE_2D_MULTISAMPLE:
3223 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
3224 case GL_TEXTURE_EXTERNAL_OES:
3225 return ISL_DIM_LAYOUT_GEN4_2D;
3226
3227 case GL_TEXTURE_CUBE_MAP:
3228 case GL_TEXTURE_CUBE_MAP_ARRAY:
3229 return (devinfo->gen == 4 ? ISL_DIM_LAYOUT_GEN4_3D :
3230 ISL_DIM_LAYOUT_GEN4_2D);
3231
3232 case GL_TEXTURE_3D:
3233 return (devinfo->gen >= 9 ?
3234 ISL_DIM_LAYOUT_GEN4_2D : ISL_DIM_LAYOUT_GEN4_3D);
3235 }
3236
3237 unreachable("Invalid texture target");
3238 }
3239
3240 enum isl_tiling
3241 intel_miptree_get_isl_tiling(const struct intel_mipmap_tree *mt)
3242 {
3243 if (mt->format == MESA_FORMAT_S_UINT8) {
3244 return ISL_TILING_W;
3245 } else {
3246 switch (mt->tiling) {
3247 case I915_TILING_NONE:
3248 return ISL_TILING_LINEAR;
3249 case I915_TILING_X:
3250 return ISL_TILING_X;
3251 case I915_TILING_Y:
3252 switch (mt->tr_mode) {
3253 case INTEL_MIPTREE_TRMODE_NONE:
3254 return ISL_TILING_Y0;
3255 case INTEL_MIPTREE_TRMODE_YF:
3256 return ISL_TILING_Yf;
3257 case INTEL_MIPTREE_TRMODE_YS:
3258 return ISL_TILING_Ys;
3259 default:
3260 unreachable("Invalid tiled resource mode");
3261 }
3262 default:
3263 unreachable("Invalid tiling mode");
3264 }
3265 }
3266 }
3267
3268 void
3269 intel_miptree_get_isl_surf(struct brw_context *brw,
3270 const struct intel_mipmap_tree *mt,
3271 struct isl_surf *surf)
3272 {
3273 surf->dim = get_isl_surf_dim(mt->target);
3274 surf->dim_layout = get_isl_dim_layout(&brw->screen->devinfo,
3275 mt->tiling, mt->target);
3276
3277 if (mt->num_samples > 1) {
3278 switch (mt->msaa_layout) {
3279 case INTEL_MSAA_LAYOUT_IMS:
3280 surf->msaa_layout = ISL_MSAA_LAYOUT_INTERLEAVED;
3281 break;
3282 case INTEL_MSAA_LAYOUT_UMS:
3283 case INTEL_MSAA_LAYOUT_CMS:
3284 surf->msaa_layout = ISL_MSAA_LAYOUT_ARRAY;
3285 break;
3286 default:
3287 unreachable("Invalid MSAA layout");
3288 }
3289 } else {
3290 surf->msaa_layout = ISL_MSAA_LAYOUT_NONE;
3291 }
3292
3293 surf->tiling = intel_miptree_get_isl_tiling(mt);
3294
3295 if (mt->format == MESA_FORMAT_S_UINT8) {
3296 /* The ISL definition of row_pitch matches the surface state pitch field
3297 * a bit better than intel_mipmap_tree. In particular, ISL incorporates
3298 * the factor of 2 for W-tiling in row_pitch.
3299 */
3300 surf->row_pitch = 2 * mt->pitch;
3301 } else {
3302 surf->row_pitch = mt->pitch;
3303 }
3304
3305 surf->format = translate_tex_format(brw, mt->format, false);
3306
3307 if (brw->gen >= 9) {
3308 if (surf->dim == ISL_SURF_DIM_1D && surf->tiling == ISL_TILING_LINEAR) {
3309 /* For gen9 1-D surfaces, intel_mipmap_tree has a bogus alignment. */
3310 surf->image_alignment_el = isl_extent3d(64, 1, 1);
3311 } else {
3312 /* On gen9+, intel_mipmap_tree stores the horizontal and vertical
3313 * alignment in terms of surface elements like we want.
3314 */
3315 surf->image_alignment_el = isl_extent3d(mt->halign, mt->valign, 1);
3316 }
3317 } else {
3318 /* On earlier gens it's stored in pixels. */
3319 unsigned bw, bh;
3320 _mesa_get_format_block_size(mt->format, &bw, &bh);
3321 surf->image_alignment_el =
3322 isl_extent3d(mt->halign / bw, mt->valign / bh, 1);
3323 }
3324
3325 surf->logical_level0_px.width = mt->logical_width0;
3326 surf->logical_level0_px.height = mt->logical_height0;
3327 if (surf->dim == ISL_SURF_DIM_3D) {
3328 surf->logical_level0_px.depth = mt->logical_depth0;
3329 surf->logical_level0_px.array_len = 1;
3330 } else {
3331 surf->logical_level0_px.depth = 1;
3332 surf->logical_level0_px.array_len = mt->logical_depth0;
3333 }
3334
3335 surf->phys_level0_sa.width = mt->physical_width0;
3336 surf->phys_level0_sa.height = mt->physical_height0;
3337 if (surf->dim == ISL_SURF_DIM_3D) {
3338 surf->phys_level0_sa.depth = mt->physical_depth0;
3339 surf->phys_level0_sa.array_len = 1;
3340 } else {
3341 surf->phys_level0_sa.depth = 1;
3342 surf->phys_level0_sa.array_len = mt->physical_depth0;
3343 }
3344
3345 surf->levels = mt->last_level + 1;
3346 surf->samples = MAX2(mt->num_samples, 1);
3347
3348 surf->size = 0; /* TODO */
3349 surf->alignment = 0; /* TODO */
3350
3351 switch (surf->dim_layout) {
3352 case ISL_DIM_LAYOUT_GEN4_2D:
3353 case ISL_DIM_LAYOUT_GEN4_3D:
3354 if (brw->gen >= 9) {
3355 surf->array_pitch_el_rows = mt->qpitch;
3356 } else {
3357 unsigned bw, bh;
3358 _mesa_get_format_block_size(mt->format, &bw, &bh);
3359 assert(mt->qpitch % bh == 0);
3360 surf->array_pitch_el_rows = mt->qpitch / bh;
3361 }
3362 break;
3363 case ISL_DIM_LAYOUT_GEN9_1D:
3364 surf->array_pitch_el_rows = 1;
3365 break;
3366 }
3367
3368 switch (mt->array_layout) {
3369 case ALL_LOD_IN_EACH_SLICE:
3370 surf->array_pitch_span = ISL_ARRAY_PITCH_SPAN_FULL;
3371 break;
3372 case ALL_SLICES_AT_EACH_LOD:
3373 surf->array_pitch_span = ISL_ARRAY_PITCH_SPAN_COMPACT;
3374 break;
3375 default:
3376 unreachable("Invalid array layout");
3377 }
3378
3379 GLenum base_format = _mesa_get_format_base_format(mt->format);
3380 switch (base_format) {
3381 case GL_DEPTH_COMPONENT:
3382 surf->usage = ISL_SURF_USAGE_DEPTH_BIT | ISL_SURF_USAGE_TEXTURE_BIT;
3383 break;
3384 case GL_STENCIL_INDEX:
3385 surf->usage = ISL_SURF_USAGE_STENCIL_BIT;
3386 if (brw->gen >= 8)
3387 surf->usage |= ISL_SURF_USAGE_TEXTURE_BIT;
3388 break;
3389 case GL_DEPTH_STENCIL:
3390 /* In this case we only texture from the depth part */
3391 surf->usage = ISL_SURF_USAGE_DEPTH_BIT | ISL_SURF_USAGE_STENCIL_BIT |
3392 ISL_SURF_USAGE_TEXTURE_BIT;
3393 break;
3394 default:
3395 surf->usage = ISL_SURF_USAGE_TEXTURE_BIT;
3396 if (brw->format_supported_as_render_target[mt->format])
3397 surf->usage = ISL_SURF_USAGE_RENDER_TARGET_BIT;
3398 break;
3399 }
3400
3401 if (_mesa_is_cube_map_texture(mt->target))
3402 surf->usage |= ISL_SURF_USAGE_CUBE_BIT;
3403 }
3404
3405 /* WARNING: THE SURFACE CREATED BY THIS FUNCTION IS NOT COMPLETE AND CANNOT BE
3406 * USED FOR ANY REAL CALCULATIONS. THE ONLY VALID USE OF SUCH A SURFACE IS TO
3407 * PASS IT INTO isl_surf_fill_state.
3408 */
3409 void
3410 intel_miptree_get_aux_isl_surf(struct brw_context *brw,
3411 const struct intel_mipmap_tree *mt,
3412 struct isl_surf *surf,
3413 enum isl_aux_usage *usage)
3414 {
3415 uint32_t aux_pitch, aux_qpitch;
3416 if (mt->mcs_buf) {
3417 aux_pitch = mt->mcs_buf->pitch;
3418 aux_qpitch = mt->mcs_buf->qpitch;
3419
3420 if (mt->num_samples > 1) {
3421 assert(mt->msaa_layout == INTEL_MSAA_LAYOUT_CMS);
3422 *usage = ISL_AUX_USAGE_MCS;
3423 } else if (intel_miptree_is_lossless_compressed(brw, mt)) {
3424 assert(brw->gen >= 9);
3425 *usage = ISL_AUX_USAGE_CCS_E;
3426 } else if (!mt->no_ccs) {
3427 *usage = ISL_AUX_USAGE_CCS_D;
3428 } else {
3429 unreachable("Invalid MCS miptree");
3430 }
3431 } else if (mt->hiz_buf) {
3432 if (mt->hiz_buf->mt) {
3433 aux_pitch = mt->hiz_buf->mt->pitch;
3434 aux_qpitch = mt->hiz_buf->mt->qpitch;
3435 } else {
3436 aux_pitch = mt->hiz_buf->aux_base.pitch;
3437 aux_qpitch = mt->hiz_buf->aux_base.qpitch;
3438 }
3439
3440 *usage = ISL_AUX_USAGE_HIZ;
3441 } else {
3442 *usage = ISL_AUX_USAGE_NONE;
3443 return;
3444 }
3445
3446 /* Start with a copy of the original surface. */
3447 intel_miptree_get_isl_surf(brw, mt, surf);
3448
3449 /* Figure out the format and tiling of the auxiliary surface */
3450 switch (*usage) {
3451 case ISL_AUX_USAGE_NONE:
3452 unreachable("Invalid auxiliary usage");
3453
3454 case ISL_AUX_USAGE_HIZ:
3455 isl_surf_get_hiz_surf(&brw->isl_dev, surf, surf);
3456 break;
3457
3458 case ISL_AUX_USAGE_MCS:
3459 /*
3460 * From the SKL PRM:
3461 * "When Auxiliary Surface Mode is set to AUX_CCS_D or AUX_CCS_E,
3462 * HALIGN 16 must be used."
3463 */
3464 if (brw->gen >= 9)
3465 assert(mt->halign == 16);
3466
3467 isl_surf_get_mcs_surf(&brw->isl_dev, surf, surf);
3468 break;
3469
3470 case ISL_AUX_USAGE_CCS_D:
3471 case ISL_AUX_USAGE_CCS_E:
3472 /*
3473 * From the BDW PRM, Volume 2d, page 260 (RENDER_SURFACE_STATE):
3474 *
3475 * "When MCS is enabled for non-MSRT, HALIGN_16 must be used"
3476 *
3477 * From the hardware spec for GEN9:
3478 *
3479 * "When Auxiliary Surface Mode is set to AUX_CCS_D or AUX_CCS_E,
3480 * HALIGN 16 must be used."
3481 */
3482 assert(mt->num_samples <= 1);
3483 if (brw->gen >= 8)
3484 assert(mt->halign == 16);
3485
3486 isl_surf_get_ccs_surf(&brw->isl_dev, surf, surf);
3487 break;
3488 }
3489
3490 /* We want the pitch of the actual aux buffer. */
3491 surf->row_pitch = aux_pitch;
3492
3493 /* Auxiliary surfaces in ISL have compressed formats and array_pitch_el_rows
3494 * is in elements. This doesn't match intel_mipmap_tree::qpitch which is
3495 * in elements of the primary color surface so we have to divide by the
3496 * compression block height.
3497 */
3498 surf->array_pitch_el_rows =
3499 aux_qpitch / isl_format_get_layout(surf->format)->bh;
3500 }
3501
3502 union isl_color_value
3503 intel_miptree_get_isl_clear_color(struct brw_context *brw,
3504 const struct intel_mipmap_tree *mt)
3505 {
3506 union isl_color_value clear_color;
3507
3508 if (_mesa_get_format_base_format(mt->format) == GL_DEPTH_COMPONENT) {
3509 clear_color.i32[0] = mt->depth_clear_value;
3510 clear_color.i32[1] = 0;
3511 clear_color.i32[2] = 0;
3512 clear_color.i32[3] = 0;
3513 } else if (brw->gen >= 9) {
3514 clear_color.i32[0] = mt->gen9_fast_clear_color.i[0];
3515 clear_color.i32[1] = mt->gen9_fast_clear_color.i[1];
3516 clear_color.i32[2] = mt->gen9_fast_clear_color.i[2];
3517 clear_color.i32[3] = mt->gen9_fast_clear_color.i[3];
3518 } else if (_mesa_is_format_integer(mt->format)) {
3519 clear_color.i32[0] = (mt->fast_clear_color_value & (1u << 31)) != 0;
3520 clear_color.i32[1] = (mt->fast_clear_color_value & (1u << 30)) != 0;
3521 clear_color.i32[2] = (mt->fast_clear_color_value & (1u << 29)) != 0;
3522 clear_color.i32[3] = (mt->fast_clear_color_value & (1u << 28)) != 0;
3523 } else {
3524 clear_color.f32[0] = (mt->fast_clear_color_value & (1u << 31)) != 0;
3525 clear_color.f32[1] = (mt->fast_clear_color_value & (1u << 30)) != 0;
3526 clear_color.f32[2] = (mt->fast_clear_color_value & (1u << 29)) != 0;
3527 clear_color.f32[3] = (mt->fast_clear_color_value & (1u << 28)) != 0;
3528 }
3529
3530 return clear_color;
3531 }