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