i965/miptree: Use make_surface in map_blit
[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 #include <drm_fourcc.h>
29
30 #include "intel_batchbuffer.h"
31 #include "intel_image.h"
32 #include "intel_mipmap_tree.h"
33 #include "intel_tex.h"
34 #include "intel_blit.h"
35 #include "intel_fbo.h"
36
37 #include "brw_blorp.h"
38 #include "brw_context.h"
39 #include "brw_state.h"
40
41 #include "main/enums.h"
42 #include "main/fbobject.h"
43 #include "main/formats.h"
44 #include "main/glformats.h"
45 #include "main/texcompress_etc.h"
46 #include "main/teximage.h"
47 #include "main/streaming-load-memcpy.h"
48
49 #include "util/format_srgb.h"
50
51 #include "x86/common_x86_asm.h"
52
53 #define FILE_DEBUG_FLAG DEBUG_MIPTREE
54
55 static void *intel_miptree_map_raw(struct brw_context *brw,
56 struct intel_mipmap_tree *mt,
57 GLbitfield mode);
58
59 static void intel_miptree_unmap_raw(struct intel_mipmap_tree *mt);
60
61 static bool
62 intel_miptree_supports_mcs(struct brw_context *brw,
63 const struct intel_mipmap_tree *mt)
64 {
65 const struct gen_device_info *devinfo = &brw->screen->devinfo;
66
67 /* MCS compression only applies to multisampled miptrees */
68 if (mt->surf.samples <= 1)
69 return false;
70
71 /* Prior to Gen7, all MSAA surfaces used IMS layout. */
72 if (devinfo->gen < 7)
73 return false;
74
75 /* See isl_surf_get_mcs_surf for details. */
76 if (mt->surf.samples == 16 && mt->surf.logical_level0_px.width > 8192)
77 return false;
78
79 /* In Gen7, IMS layout is only used for depth and stencil buffers. */
80 switch (_mesa_get_format_base_format(mt->format)) {
81 case GL_DEPTH_COMPONENT:
82 case GL_STENCIL_INDEX:
83 case GL_DEPTH_STENCIL:
84 return false;
85 default:
86 /* From the Ivy Bridge PRM, Vol4 Part1 p77 ("MCS Enable"):
87 *
88 * This field must be set to 0 for all SINT MSRTs when all RT channels
89 * are not written
90 *
91 * In practice this means that we have to disable MCS for all signed
92 * integer MSAA buffers. The alternative, to disable MCS only when one
93 * of the render target channels is disabled, is impractical because it
94 * would require converting between CMS and UMS MSAA layouts on the fly,
95 * which is expensive.
96 */
97 if (devinfo->gen == 7 && _mesa_get_format_datatype(mt->format) == GL_INT) {
98 return false;
99 } else {
100 return true;
101 }
102 }
103 }
104
105 static bool
106 intel_tiling_supports_ccs(const struct brw_context *brw,
107 enum isl_tiling tiling)
108 {
109 const struct gen_device_info *devinfo = &brw->screen->devinfo;
110
111 /* From the Ivy Bridge PRM, Vol2 Part1 11.7 "MCS Buffer for Render
112 * Target(s)", beneath the "Fast Color Clear" bullet (p326):
113 *
114 * - Support is limited to tiled render targets.
115 *
116 * Gen9 changes the restriction to Y-tile only.
117 */
118 if (devinfo->gen >= 9)
119 return tiling == ISL_TILING_Y0;
120 else if (devinfo->gen >= 7)
121 return tiling != ISL_TILING_LINEAR;
122 else
123 return false;
124 }
125
126 /**
127 * For a single-sampled render target ("non-MSRT"), determine if an MCS buffer
128 * can be used. This doesn't (and should not) inspect any of the properties of
129 * the miptree's BO.
130 *
131 * From the Ivy Bridge PRM, Vol2 Part1 11.7 "MCS Buffer for Render Target(s)",
132 * beneath the "Fast Color Clear" bullet (p326):
133 *
134 * - Support is for non-mip-mapped and non-array surface types only.
135 *
136 * And then later, on p327:
137 *
138 * - MCS buffer for non-MSRT is supported only for RT formats 32bpp,
139 * 64bpp, and 128bpp.
140 *
141 * From the Skylake documentation, it is made clear that X-tiling is no longer
142 * supported:
143 *
144 * - MCS and Lossless compression is supported for TiledY/TileYs/TileYf
145 * non-MSRTs only.
146 */
147 static bool
148 intel_miptree_supports_ccs(struct brw_context *brw,
149 const struct intel_mipmap_tree *mt)
150 {
151 const struct gen_device_info *devinfo = &brw->screen->devinfo;
152
153 /* MCS support does not exist prior to Gen7 */
154 if (devinfo->gen < 7)
155 return false;
156
157 /* This function applies only to non-multisampled render targets. */
158 if (mt->surf.samples > 1)
159 return false;
160
161 /* MCS is only supported for color buffers */
162 if (!_mesa_is_format_color_format(mt->format))
163 return false;
164
165 if (mt->cpp != 4 && mt->cpp != 8 && mt->cpp != 16)
166 return false;
167
168 const bool mip_mapped = mt->first_level != 0 || mt->last_level != 0;
169 const bool arrayed = mt->surf.logical_level0_px.array_len > 1 ||
170 mt->surf.logical_level0_px.depth > 1;
171
172 if (arrayed) {
173 /* Multisample surfaces with the CMS layout are not layered surfaces,
174 * yet still have physical_depth0 > 1. Assert that we don't
175 * accidentally reject a multisampled surface here. We should have
176 * rejected it earlier by explicitly checking the sample count.
177 */
178 assert(mt->surf.samples == 1);
179 }
180
181 /* Handle the hardware restrictions...
182 *
183 * All GENs have the following restriction: "MCS buffer for non-MSRT is
184 * supported only for RT formats 32bpp, 64bpp, and 128bpp."
185 *
186 * From the HSW PRM Volume 7: 3D-Media-GPGPU, page 652: (Color Clear of
187 * Non-MultiSampler Render Target Restrictions) Support is for
188 * non-mip-mapped and non-array surface types only.
189 *
190 * From the BDW PRM Volume 7: 3D-Media-GPGPU, page 649: (Color Clear of
191 * Non-MultiSampler Render Target Restriction). Mip-mapped and arrayed
192 * surfaces are supported with MCS buffer layout with these alignments in
193 * the RT space: Horizontal Alignment = 256 and Vertical Alignment = 128.
194 *
195 * From the SKL PRM Volume 7: 3D-Media-GPGPU, page 632: (Color Clear of
196 * Non-MultiSampler Render Target Restriction). Mip-mapped and arrayed
197 * surfaces are supported with MCS buffer layout with these alignments in
198 * the RT space: Horizontal Alignment = 128 and Vertical Alignment = 64.
199 */
200 if (devinfo->gen < 8 && (mip_mapped || arrayed))
201 return false;
202
203 /* The PRM doesn't say this explicitly, but fast-clears don't appear to
204 * work for 3D textures until gen9 where the layout of 3D textures changes
205 * to match 2D array textures.
206 */
207 if (devinfo->gen <= 8 && mt->surf.dim != ISL_SURF_DIM_2D)
208 return false;
209
210 /* There's no point in using an MCS buffer if the surface isn't in a
211 * renderable format.
212 */
213 if (!brw->mesa_format_supports_render[mt->format])
214 return false;
215
216 return true;
217 }
218
219 static bool
220 intel_tiling_supports_hiz(const struct brw_context *brw,
221 enum isl_tiling tiling)
222 {
223 const struct gen_device_info *devinfo = &brw->screen->devinfo;
224
225 if (devinfo->gen < 6)
226 return false;
227
228 return tiling == ISL_TILING_Y0;
229 }
230
231 static bool
232 intel_miptree_supports_hiz(const struct brw_context *brw,
233 const struct intel_mipmap_tree *mt)
234 {
235 if (!brw->has_hiz)
236 return false;
237
238 switch (mt->format) {
239 case MESA_FORMAT_Z_FLOAT32:
240 case MESA_FORMAT_Z32_FLOAT_S8X24_UINT:
241 case MESA_FORMAT_Z24_UNORM_X8_UINT:
242 case MESA_FORMAT_Z24_UNORM_S8_UINT:
243 case MESA_FORMAT_Z_UNORM16:
244 return true;
245 default:
246 return false;
247 }
248 }
249
250 /**
251 * Return true if the format that will be used to access the miptree is
252 * CCS_E-compatible with the miptree's linear/non-sRGB format.
253 *
254 * Why use the linear format? Well, although the miptree may be specified with
255 * an sRGB format, the usage of that color space/format can be toggled. Since
256 * our HW tends to support more linear formats than sRGB ones, we use this
257 * format variant for check for CCS_E compatibility.
258 */
259 static bool
260 format_ccs_e_compat_with_miptree(const struct gen_device_info *devinfo,
261 const struct intel_mipmap_tree *mt,
262 enum isl_format access_format)
263 {
264 assert(mt->aux_usage == ISL_AUX_USAGE_CCS_E);
265
266 mesa_format linear_format = _mesa_get_srgb_format_linear(mt->format);
267 enum isl_format isl_format = brw_isl_format_for_mesa_format(linear_format);
268 return isl_formats_are_ccs_e_compatible(devinfo, isl_format, access_format);
269 }
270
271 static bool
272 intel_miptree_supports_ccs_e(struct brw_context *brw,
273 const struct intel_mipmap_tree *mt)
274 {
275 const struct gen_device_info *devinfo = &brw->screen->devinfo;
276
277 if (devinfo->gen < 9)
278 return false;
279
280 /* For now compression is only enabled for integer formats even though
281 * there exist supported floating point formats also. This is a heuristic
282 * decision based on current public benchmarks. In none of the cases these
283 * formats provided any improvement but a few cases were seen to regress.
284 * Hence these are left to to be enabled in the future when they are known
285 * to improve things.
286 */
287 if (_mesa_get_format_datatype(mt->format) == GL_FLOAT)
288 return false;
289
290 if (!intel_miptree_supports_ccs(brw, mt))
291 return false;
292
293 /* Many window system buffers are sRGB even if they are never rendered as
294 * sRGB. For those, we want CCS_E for when sRGBEncode is false. When the
295 * surface is used as sRGB, we fall back to CCS_D.
296 */
297 mesa_format linear_format = _mesa_get_srgb_format_linear(mt->format);
298 enum isl_format isl_format = brw_isl_format_for_mesa_format(linear_format);
299 return isl_format_supports_ccs_e(&brw->screen->devinfo, isl_format);
300 }
301
302 /**
303 * Determine depth format corresponding to a depth+stencil format,
304 * for separate stencil.
305 */
306 mesa_format
307 intel_depth_format_for_depthstencil_format(mesa_format format) {
308 switch (format) {
309 case MESA_FORMAT_Z24_UNORM_S8_UINT:
310 return MESA_FORMAT_Z24_UNORM_X8_UINT;
311 case MESA_FORMAT_Z32_FLOAT_S8X24_UINT:
312 return MESA_FORMAT_Z_FLOAT32;
313 default:
314 return format;
315 }
316 }
317
318 static bool
319 create_mapping_table(GLenum target, unsigned first_level, unsigned last_level,
320 unsigned depth0, struct intel_mipmap_level *table)
321 {
322 for (unsigned level = first_level; level <= last_level; level++) {
323 const unsigned d =
324 target == GL_TEXTURE_3D ? minify(depth0, level) : depth0;
325
326 table[level].slice = calloc(d, sizeof(*table[0].slice));
327 if (!table[level].slice)
328 goto unwind;
329 }
330
331 return true;
332
333 unwind:
334 for (unsigned level = first_level; level <= last_level; level++)
335 free(table[level].slice);
336
337 return false;
338 }
339
340 static bool
341 needs_separate_stencil(const struct brw_context *brw,
342 struct intel_mipmap_tree *mt,
343 mesa_format format)
344 {
345 const struct gen_device_info *devinfo = &brw->screen->devinfo;
346
347 if (_mesa_get_format_base_format(format) != GL_DEPTH_STENCIL)
348 return false;
349
350 if (devinfo->must_use_separate_stencil)
351 return true;
352
353 return brw->has_separate_stencil &&
354 intel_miptree_supports_hiz(brw, mt);
355 }
356
357 /**
358 * Choose the aux usage for this miptree. This function must be called fairly
359 * late in the miptree create process after we have a tiling.
360 */
361 static void
362 intel_miptree_choose_aux_usage(struct brw_context *brw,
363 struct intel_mipmap_tree *mt)
364 {
365 assert(mt->aux_usage == ISL_AUX_USAGE_NONE);
366
367 if (intel_miptree_supports_mcs(brw, mt)) {
368 assert(mt->surf.msaa_layout == ISL_MSAA_LAYOUT_ARRAY);
369 mt->aux_usage = ISL_AUX_USAGE_MCS;
370 } else if (intel_tiling_supports_ccs(brw, mt->surf.tiling) &&
371 intel_miptree_supports_ccs(brw, mt)) {
372 if (!unlikely(INTEL_DEBUG & DEBUG_NO_RBC) &&
373 intel_miptree_supports_ccs_e(brw, mt)) {
374 mt->aux_usage = ISL_AUX_USAGE_CCS_E;
375 } else {
376 mt->aux_usage = ISL_AUX_USAGE_CCS_D;
377 }
378 } else if (intel_tiling_supports_hiz(brw, mt->surf.tiling) &&
379 intel_miptree_supports_hiz(brw, mt)) {
380 mt->aux_usage = ISL_AUX_USAGE_HIZ;
381 }
382
383 /* We can do fast-clear on all auxiliary surface types that are
384 * allocated through the normal texture creation paths.
385 */
386 if (mt->aux_usage != ISL_AUX_USAGE_NONE)
387 mt->supports_fast_clear = true;
388 }
389
390
391 /**
392 * Choose an appropriate uncompressed format for a requested
393 * compressed format, if unsupported.
394 */
395 mesa_format
396 intel_lower_compressed_format(struct brw_context *brw, mesa_format format)
397 {
398 const struct gen_device_info *devinfo = &brw->screen->devinfo;
399
400 /* No need to lower ETC formats on these platforms,
401 * they are supported natively.
402 */
403 if (devinfo->gen >= 8 || devinfo->is_baytrail)
404 return format;
405
406 switch (format) {
407 case MESA_FORMAT_ETC1_RGB8:
408 return MESA_FORMAT_R8G8B8X8_UNORM;
409 case MESA_FORMAT_ETC2_RGB8:
410 return MESA_FORMAT_R8G8B8X8_UNORM;
411 case MESA_FORMAT_ETC2_SRGB8:
412 case MESA_FORMAT_ETC2_SRGB8_ALPHA8_EAC:
413 case MESA_FORMAT_ETC2_SRGB8_PUNCHTHROUGH_ALPHA1:
414 return MESA_FORMAT_B8G8R8A8_SRGB;
415 case MESA_FORMAT_ETC2_RGBA8_EAC:
416 case MESA_FORMAT_ETC2_RGB8_PUNCHTHROUGH_ALPHA1:
417 return MESA_FORMAT_R8G8B8A8_UNORM;
418 case MESA_FORMAT_ETC2_R11_EAC:
419 return MESA_FORMAT_R_UNORM16;
420 case MESA_FORMAT_ETC2_SIGNED_R11_EAC:
421 return MESA_FORMAT_R_SNORM16;
422 case MESA_FORMAT_ETC2_RG11_EAC:
423 return MESA_FORMAT_R16G16_UNORM;
424 case MESA_FORMAT_ETC2_SIGNED_RG11_EAC:
425 return MESA_FORMAT_R16G16_SNORM;
426 default:
427 /* Non ETC1 / ETC2 format */
428 return format;
429 }
430 }
431
432 unsigned
433 brw_get_num_logical_layers(const struct intel_mipmap_tree *mt, unsigned level)
434 {
435 if (mt->surf.dim == ISL_SURF_DIM_3D)
436 return minify(mt->surf.logical_level0_px.depth, level);
437 else
438 return mt->surf.logical_level0_px.array_len;
439 }
440
441 UNUSED static unsigned
442 get_num_phys_layers(const struct isl_surf *surf, unsigned level)
443 {
444 /* In case of physical dimensions one needs to consider also the layout.
445 * See isl_calc_phys_level0_extent_sa().
446 */
447 if (surf->dim != ISL_SURF_DIM_3D)
448 return surf->phys_level0_sa.array_len;
449
450 if (surf->dim_layout == ISL_DIM_LAYOUT_GEN4_2D)
451 return minify(surf->phys_level0_sa.array_len, level);
452
453 return minify(surf->phys_level0_sa.depth, level);
454 }
455
456 /** \brief Assert that the level and layer are valid for the miptree. */
457 void
458 intel_miptree_check_level_layer(const struct intel_mipmap_tree *mt,
459 uint32_t level,
460 uint32_t layer)
461 {
462 (void) mt;
463 (void) level;
464 (void) layer;
465
466 assert(level >= mt->first_level);
467 assert(level <= mt->last_level);
468 assert(layer < get_num_phys_layers(&mt->surf, level));
469 }
470
471 static enum isl_aux_state **
472 create_aux_state_map(struct intel_mipmap_tree *mt,
473 enum isl_aux_state initial)
474 {
475 const uint32_t levels = mt->last_level + 1;
476
477 uint32_t total_slices = 0;
478 for (uint32_t level = 0; level < levels; level++)
479 total_slices += brw_get_num_logical_layers(mt, level);
480
481 const size_t per_level_array_size = levels * sizeof(enum isl_aux_state *);
482
483 /* We're going to allocate a single chunk of data for both the per-level
484 * reference array and the arrays of aux_state. This makes cleanup
485 * significantly easier.
486 */
487 const size_t total_size = per_level_array_size +
488 total_slices * sizeof(enum isl_aux_state);
489 void *data = malloc(total_size);
490 if (data == NULL)
491 return NULL;
492
493 enum isl_aux_state **per_level_arr = data;
494 enum isl_aux_state *s = data + per_level_array_size;
495 for (uint32_t level = 0; level < levels; level++) {
496 per_level_arr[level] = s;
497 const unsigned level_layers = brw_get_num_logical_layers(mt, level);
498 for (uint32_t a = 0; a < level_layers; a++)
499 *(s++) = initial;
500 }
501 assert((void *)s == data + total_size);
502
503 return per_level_arr;
504 }
505
506 static void
507 free_aux_state_map(enum isl_aux_state **state)
508 {
509 free(state);
510 }
511
512 static bool
513 need_to_retile_as_linear(struct brw_context *brw, unsigned blt_pitch,
514 enum isl_tiling tiling, unsigned samples)
515 {
516 if (samples > 1)
517 return false;
518
519 if (tiling == ISL_TILING_LINEAR)
520 return false;
521
522 if (blt_pitch >= 32768) {
523 perf_debug("blt pitch %u too large to blit, falling back to untiled",
524 blt_pitch);
525 return true;
526 }
527
528 return false;
529 }
530
531 static bool
532 need_to_retile_as_x(const struct brw_context *brw, uint64_t size,
533 enum isl_tiling tiling)
534 {
535 const struct gen_device_info *devinfo = &brw->screen->devinfo;
536
537 /* If the BO is too large to fit in the aperture, we need to use the
538 * BLT engine to support it. Prior to Sandybridge, the BLT paths can't
539 * handle Y-tiling, so we need to fall back to X.
540 */
541 if (devinfo->gen < 6 && size >= brw->max_gtt_map_object_size &&
542 tiling == ISL_TILING_Y0)
543 return true;
544
545 return false;
546 }
547
548 static struct intel_mipmap_tree *
549 make_surface(struct brw_context *brw, GLenum target, mesa_format format,
550 unsigned first_level, unsigned last_level,
551 unsigned width0, unsigned height0, unsigned depth0,
552 unsigned num_samples, isl_tiling_flags_t tiling_flags,
553 isl_surf_usage_flags_t isl_usage_flags, uint32_t alloc_flags,
554 unsigned row_pitch, struct brw_bo *bo)
555 {
556 struct intel_mipmap_tree *mt = calloc(sizeof(*mt), 1);
557 if (!mt)
558 return NULL;
559
560 if (!create_mapping_table(target, first_level, last_level, depth0,
561 mt->level)) {
562 free(mt);
563 return NULL;
564 }
565
566 mt->refcount = 1;
567
568 if (target == GL_TEXTURE_CUBE_MAP ||
569 target == GL_TEXTURE_CUBE_MAP_ARRAY)
570 isl_usage_flags |= ISL_SURF_USAGE_CUBE_BIT;
571
572 DBG("%s: %s %s %ux %u:%u:%u %d..%d <-- %p\n",
573 __func__,
574 _mesa_enum_to_string(target),
575 _mesa_get_format_name(format),
576 num_samples, width0, height0, depth0,
577 first_level, last_level, mt);
578
579 struct isl_surf_init_info init_info = {
580 .dim = get_isl_surf_dim(target),
581 .format = translate_tex_format(brw, format, false),
582 .width = width0,
583 .height = height0,
584 .depth = target == GL_TEXTURE_3D ? depth0 : 1,
585 .levels = last_level - first_level + 1,
586 .array_len = target == GL_TEXTURE_3D ? 1 : depth0,
587 .samples = num_samples,
588 .row_pitch = row_pitch,
589 .usage = isl_usage_flags,
590 .tiling_flags = tiling_flags,
591 };
592
593 if (!isl_surf_init_s(&brw->isl_dev, &mt->surf, &init_info))
594 goto fail;
595
596 /* Depth surfaces are always Y-tiled and stencil is always W-tiled, although
597 * on gen7 platforms we also need to create Y-tiled copies of stencil for
598 * texturing since the hardware can't sample from W-tiled surfaces. For
599 * everything else, check for corner cases needing special treatment.
600 */
601 bool is_depth_stencil =
602 mt->surf.usage & (ISL_SURF_USAGE_STENCIL_BIT | ISL_SURF_USAGE_DEPTH_BIT);
603 if (!is_depth_stencil) {
604 if (need_to_retile_as_linear(brw, intel_miptree_blt_pitch(mt),
605 mt->surf.tiling, mt->surf.samples)) {
606 init_info.tiling_flags = 1u << ISL_TILING_LINEAR;
607 if (!isl_surf_init_s(&brw->isl_dev, &mt->surf, &init_info))
608 goto fail;
609 } else if (need_to_retile_as_x(brw, mt->surf.size, mt->surf.tiling)) {
610 init_info.tiling_flags = 1u << ISL_TILING_X;
611 if (!isl_surf_init_s(&brw->isl_dev, &mt->surf, &init_info))
612 goto fail;
613 }
614 }
615
616 /* In case of linear the buffer gets padded by fixed 64 bytes and therefore
617 * the size may not be multiple of row_pitch.
618 * See isl_apply_surface_padding().
619 */
620 if (mt->surf.tiling != ISL_TILING_LINEAR)
621 assert(mt->surf.size % mt->surf.row_pitch == 0);
622
623 if (!bo) {
624 mt->bo = brw_bo_alloc_tiled(brw->bufmgr, "isl-miptree",
625 mt->surf.size,
626 BRW_MEMZONE_OTHER,
627 isl_tiling_to_i915_tiling(
628 mt->surf.tiling),
629 mt->surf.row_pitch, alloc_flags);
630 if (!mt->bo)
631 goto fail;
632 } else {
633 mt->bo = bo;
634 }
635
636 mt->first_level = first_level;
637 mt->last_level = last_level;
638 mt->target = target;
639 mt->format = format;
640 mt->aux_state = NULL;
641 mt->cpp = isl_format_get_layout(mt->surf.format)->bpb / 8;
642 mt->compressed = _mesa_is_format_compressed(format);
643 mt->drm_modifier = DRM_FORMAT_MOD_INVALID;
644
645 return mt;
646
647 fail:
648 intel_miptree_release(&mt);
649 return NULL;
650 }
651
652 static bool
653 make_separate_stencil_surface(struct brw_context *brw,
654 struct intel_mipmap_tree *mt)
655 {
656 mt->stencil_mt = make_surface(brw, mt->target, MESA_FORMAT_S_UINT8,
657 0, mt->surf.levels - 1,
658 mt->surf.logical_level0_px.width,
659 mt->surf.logical_level0_px.height,
660 mt->surf.dim == ISL_SURF_DIM_3D ?
661 mt->surf.logical_level0_px.depth :
662 mt->surf.logical_level0_px.array_len,
663 mt->surf.samples, ISL_TILING_W_BIT,
664 ISL_SURF_USAGE_STENCIL_BIT |
665 ISL_SURF_USAGE_TEXTURE_BIT,
666 BO_ALLOC_BUSY, 0, NULL);
667
668 if (!mt->stencil_mt)
669 return false;
670
671 mt->stencil_mt->r8stencil_needs_update = true;
672
673 return true;
674 }
675
676 static struct intel_mipmap_tree *
677 miptree_create(struct brw_context *brw,
678 GLenum target,
679 mesa_format format,
680 GLuint first_level,
681 GLuint last_level,
682 GLuint width0,
683 GLuint height0,
684 GLuint depth0,
685 GLuint num_samples,
686 enum intel_miptree_create_flags flags)
687 {
688 const struct gen_device_info *devinfo = &brw->screen->devinfo;
689
690 if (format == MESA_FORMAT_S_UINT8)
691 return make_surface(brw, target, format, first_level, last_level,
692 width0, height0, depth0, num_samples,
693 ISL_TILING_W_BIT,
694 ISL_SURF_USAGE_STENCIL_BIT |
695 ISL_SURF_USAGE_TEXTURE_BIT,
696 BO_ALLOC_BUSY,
697 0,
698 NULL);
699
700 const GLenum base_format = _mesa_get_format_base_format(format);
701 if ((base_format == GL_DEPTH_COMPONENT ||
702 base_format == GL_DEPTH_STENCIL) &&
703 !(flags & MIPTREE_CREATE_LINEAR)) {
704 /* Fix up the Z miptree format for how we're splitting out separate
705 * stencil. Gen7 expects there to be no stencil bits in its depth buffer.
706 */
707 const mesa_format depth_only_format =
708 intel_depth_format_for_depthstencil_format(format);
709 struct intel_mipmap_tree *mt = make_surface(
710 brw, target, devinfo->gen >= 6 ? depth_only_format : format,
711 first_level, last_level,
712 width0, height0, depth0, num_samples, ISL_TILING_Y0_BIT,
713 ISL_SURF_USAGE_DEPTH_BIT | ISL_SURF_USAGE_TEXTURE_BIT,
714 BO_ALLOC_BUSY, 0, NULL);
715
716 if (needs_separate_stencil(brw, mt, format) &&
717 !make_separate_stencil_surface(brw, mt)) {
718 intel_miptree_release(&mt);
719 return NULL;
720 }
721
722 if (!(flags & MIPTREE_CREATE_NO_AUX))
723 intel_miptree_choose_aux_usage(brw, mt);
724
725 return mt;
726 }
727
728 mesa_format tex_format = format;
729 mesa_format etc_format = MESA_FORMAT_NONE;
730 uint32_t alloc_flags = 0;
731
732 format = intel_lower_compressed_format(brw, format);
733
734 etc_format = (format != tex_format) ? tex_format : MESA_FORMAT_NONE;
735
736 if (flags & MIPTREE_CREATE_BUSY)
737 alloc_flags |= BO_ALLOC_BUSY;
738
739 isl_tiling_flags_t tiling_flags = (flags & MIPTREE_CREATE_LINEAR) ?
740 ISL_TILING_LINEAR_BIT : ISL_TILING_ANY_MASK;
741
742 /* TODO: This used to be because there wasn't BLORP to handle Y-tiling. */
743 if (devinfo->gen < 6)
744 tiling_flags &= ~ISL_TILING_Y0_BIT;
745
746 struct intel_mipmap_tree *mt = make_surface(
747 brw, target, format,
748 first_level, last_level,
749 width0, height0, depth0,
750 num_samples, tiling_flags,
751 ISL_SURF_USAGE_RENDER_TARGET_BIT |
752 ISL_SURF_USAGE_TEXTURE_BIT,
753 alloc_flags, 0, NULL);
754 if (!mt)
755 return NULL;
756
757 mt->etc_format = etc_format;
758
759 if (!(flags & MIPTREE_CREATE_NO_AUX))
760 intel_miptree_choose_aux_usage(brw, mt);
761
762 return mt;
763 }
764
765 struct intel_mipmap_tree *
766 intel_miptree_create(struct brw_context *brw,
767 GLenum target,
768 mesa_format format,
769 GLuint first_level,
770 GLuint last_level,
771 GLuint width0,
772 GLuint height0,
773 GLuint depth0,
774 GLuint num_samples,
775 enum intel_miptree_create_flags flags)
776 {
777 assert(num_samples > 0);
778
779 struct intel_mipmap_tree *mt = miptree_create(
780 brw, target, format,
781 first_level, last_level,
782 width0, height0, depth0, num_samples,
783 flags);
784 if (!mt)
785 return NULL;
786
787 mt->offset = 0;
788
789 /* Create the auxiliary surface up-front. CCS_D, on the other hand, can only
790 * compress clear color so we wait until an actual fast-clear to allocate
791 * it.
792 */
793 if (mt->aux_usage != ISL_AUX_USAGE_CCS_D &&
794 !intel_miptree_alloc_aux(brw, mt)) {
795 intel_miptree_release(&mt);
796 return NULL;
797 }
798
799 return mt;
800 }
801
802 struct intel_mipmap_tree *
803 intel_miptree_create_for_bo(struct brw_context *brw,
804 struct brw_bo *bo,
805 mesa_format format,
806 uint32_t offset,
807 uint32_t width,
808 uint32_t height,
809 uint32_t depth,
810 int pitch,
811 enum isl_tiling tiling,
812 enum intel_miptree_create_flags flags)
813 {
814 const struct gen_device_info *devinfo = &brw->screen->devinfo;
815 struct intel_mipmap_tree *mt;
816 const GLenum target = depth > 1 ? GL_TEXTURE_2D_ARRAY : GL_TEXTURE_2D;
817 const GLenum base_format = _mesa_get_format_base_format(format);
818
819 if ((base_format == GL_DEPTH_COMPONENT ||
820 base_format == GL_DEPTH_STENCIL)) {
821 const mesa_format depth_only_format =
822 intel_depth_format_for_depthstencil_format(format);
823 mt = make_surface(brw, target,
824 devinfo->gen >= 6 ? depth_only_format : format,
825 0, 0, width, height, depth, 1, ISL_TILING_Y0_BIT,
826 ISL_SURF_USAGE_DEPTH_BIT | ISL_SURF_USAGE_TEXTURE_BIT,
827 0, pitch, bo);
828 if (!mt)
829 return NULL;
830
831 brw_bo_reference(bo);
832
833 if (!(flags & MIPTREE_CREATE_NO_AUX))
834 intel_miptree_choose_aux_usage(brw, mt);
835
836 return mt;
837 } else if (format == MESA_FORMAT_S_UINT8) {
838 mt = make_surface(brw, target, MESA_FORMAT_S_UINT8,
839 0, 0, width, height, depth, 1,
840 ISL_TILING_W_BIT,
841 ISL_SURF_USAGE_STENCIL_BIT |
842 ISL_SURF_USAGE_TEXTURE_BIT,
843 0, pitch, bo);
844 if (!mt)
845 return NULL;
846
847 assert(bo->size >= mt->surf.size);
848
849 brw_bo_reference(bo);
850 return mt;
851 }
852
853 /* Nothing will be able to use this miptree with the BO if the offset isn't
854 * aligned.
855 */
856 if (tiling != ISL_TILING_LINEAR)
857 assert(offset % 4096 == 0);
858
859 /* miptrees can't handle negative pitch. If you need flipping of images,
860 * that's outside of the scope of the mt.
861 */
862 assert(pitch >= 0);
863
864 /* The BO already has a tiling format and we shouldn't confuse the lower
865 * layers by making it try to find a tiling format again.
866 */
867 assert((flags & MIPTREE_CREATE_LINEAR) == 0);
868
869 mt = make_surface(brw, target, format,
870 0, 0, width, height, depth, 1,
871 1lu << tiling,
872 ISL_SURF_USAGE_RENDER_TARGET_BIT |
873 ISL_SURF_USAGE_TEXTURE_BIT,
874 0, pitch, bo);
875 if (!mt)
876 return NULL;
877
878 brw_bo_reference(bo);
879 mt->bo = bo;
880 mt->offset = offset;
881
882 if (!(flags & MIPTREE_CREATE_NO_AUX)) {
883 intel_miptree_choose_aux_usage(brw, mt);
884
885 /* Create the auxiliary surface up-front. CCS_D, on the other hand, can
886 * only compress clear color so we wait until an actual fast-clear to
887 * allocate it.
888 */
889 if (mt->aux_usage != ISL_AUX_USAGE_CCS_D &&
890 !intel_miptree_alloc_aux(brw, mt)) {
891 intel_miptree_release(&mt);
892 return NULL;
893 }
894 }
895
896 return mt;
897 }
898
899 static struct intel_mipmap_tree *
900 miptree_create_for_planar_image(struct brw_context *brw,
901 __DRIimage *image, GLenum target,
902 enum isl_tiling tiling)
903 {
904 const struct intel_image_format *f = image->planar_format;
905 struct intel_mipmap_tree *planar_mt = NULL;
906
907 for (int i = 0; i < f->nplanes; i++) {
908 const int index = f->planes[i].buffer_index;
909 const uint32_t dri_format = f->planes[i].dri_format;
910 const mesa_format format = driImageFormatToGLFormat(dri_format);
911 const uint32_t width = image->width >> f->planes[i].width_shift;
912 const uint32_t height = image->height >> f->planes[i].height_shift;
913
914 /* Disable creation of the texture's aux buffers because the driver
915 * exposes no EGL API to manage them. That is, there is no API for
916 * resolving the aux buffer's content to the main buffer nor for
917 * invalidating the aux buffer's content.
918 */
919 struct intel_mipmap_tree *mt =
920 intel_miptree_create_for_bo(brw, image->bo, format,
921 image->offsets[index],
922 width, height, 1,
923 image->strides[index],
924 tiling,
925 MIPTREE_CREATE_NO_AUX);
926 if (mt == NULL) {
927 intel_miptree_release(&planar_mt);
928 return NULL;
929 }
930
931 mt->target = target;
932
933 if (i == 0)
934 planar_mt = mt;
935 else
936 planar_mt->plane[i - 1] = mt;
937 }
938
939 planar_mt->drm_modifier = image->modifier;
940
941 return planar_mt;
942 }
943
944 static bool
945 create_ccs_buf_for_image(struct brw_context *brw,
946 __DRIimage *image,
947 struct intel_mipmap_tree *mt,
948 enum isl_aux_state initial_state)
949 {
950 struct isl_surf temp_ccs_surf;
951
952 /* CCS is only supported for very simple miptrees */
953 assert(image->aux_offset != 0 && image->aux_pitch != 0);
954 assert(image->tile_x == 0 && image->tile_y == 0);
955 assert(mt->surf.samples == 1);
956 assert(mt->surf.levels == 1);
957 assert(mt->surf.logical_level0_px.depth == 1);
958 assert(mt->surf.logical_level0_px.array_len == 1);
959 assert(mt->first_level == 0);
960 assert(mt->last_level == 0);
961
962 /* We shouldn't already have a CCS */
963 assert(!mt->aux_buf);
964
965 if (!isl_surf_get_ccs_surf(&brw->isl_dev, &mt->surf, &temp_ccs_surf,
966 image->aux_pitch))
967 return false;
968
969 assert(image->aux_offset < image->bo->size);
970 assert(temp_ccs_surf.size <= image->bo->size - image->aux_offset);
971
972 mt->aux_buf = calloc(sizeof(*mt->aux_buf), 1);
973 if (mt->aux_buf == NULL)
974 return false;
975
976 mt->aux_state = create_aux_state_map(mt, initial_state);
977 if (!mt->aux_state) {
978 free(mt->aux_buf);
979 mt->aux_buf = NULL;
980 return false;
981 }
982
983 /* On gen10+ we start using an extra space in the aux buffer to store the
984 * indirect clear color. However, if we imported an image from the window
985 * system with CCS, we don't have the extra space at the end of the aux
986 * buffer. So create a new bo here that will store that clear color.
987 */
988 if (brw->isl_dev.ss.clear_color_state_size > 0) {
989 mt->aux_buf->clear_color_bo =
990 brw_bo_alloc_tiled(brw->bufmgr, "clear_color_bo",
991 brw->isl_dev.ss.clear_color_state_size,
992 BRW_MEMZONE_OTHER, I915_TILING_NONE, 0,
993 BO_ALLOC_ZEROED);
994 if (!mt->aux_buf->clear_color_bo) {
995 free(mt->aux_buf);
996 mt->aux_buf = NULL;
997 return false;
998 }
999 }
1000
1001 mt->aux_buf->bo = image->bo;
1002 brw_bo_reference(image->bo);
1003
1004 mt->aux_buf->offset = image->aux_offset;
1005 mt->aux_buf->surf = temp_ccs_surf;
1006
1007 return true;
1008 }
1009
1010 struct intel_mipmap_tree *
1011 intel_miptree_create_for_dri_image(struct brw_context *brw,
1012 __DRIimage *image, GLenum target,
1013 mesa_format format,
1014 bool allow_internal_aux)
1015 {
1016 uint32_t bo_tiling, bo_swizzle;
1017 brw_bo_get_tiling(image->bo, &bo_tiling, &bo_swizzle);
1018
1019 const struct isl_drm_modifier_info *mod_info =
1020 isl_drm_modifier_get_info(image->modifier);
1021
1022 const enum isl_tiling tiling =
1023 mod_info ? mod_info->tiling : isl_tiling_from_i915_tiling(bo_tiling);
1024
1025 if (image->planar_format && image->planar_format->nplanes > 1)
1026 return miptree_create_for_planar_image(brw, image, target, tiling);
1027
1028 if (image->planar_format)
1029 assert(image->planar_format->planes[0].dri_format == image->dri_format);
1030
1031 if (!brw->ctx.TextureFormatSupported[format]) {
1032 /* The texture storage paths in core Mesa detect if the driver does not
1033 * support the user-requested format, and then searches for a
1034 * fallback format. The DRIimage code bypasses core Mesa, though. So we
1035 * do the fallbacks here for important formats.
1036 *
1037 * We must support DRM_FOURCC_XBGR8888 textures because the Android
1038 * framework produces HAL_PIXEL_FORMAT_RGBX8888 winsys surfaces, which
1039 * the Chrome OS compositor consumes as dma_buf EGLImages.
1040 */
1041 format = _mesa_format_fallback_rgbx_to_rgba(format);
1042 }
1043
1044 if (!brw->ctx.TextureFormatSupported[format])
1045 return NULL;
1046
1047 enum intel_miptree_create_flags mt_create_flags = 0;
1048
1049 /* If this image comes in from a window system, we have different
1050 * requirements than if it comes in via an EGL import operation. Window
1051 * system images can use any form of auxiliary compression we wish because
1052 * they get "flushed" before being handed off to the window system and we
1053 * have the opportunity to do resolves. Non window-system images, on the
1054 * other hand, have no resolve point so we can't have aux without a
1055 * modifier.
1056 */
1057 if (!allow_internal_aux)
1058 mt_create_flags |= MIPTREE_CREATE_NO_AUX;
1059
1060 /* If we have a modifier which specifies aux, don't create one yet */
1061 if (mod_info && mod_info->aux_usage != ISL_AUX_USAGE_NONE)
1062 mt_create_flags |= MIPTREE_CREATE_NO_AUX;
1063
1064 /* Disable creation of the texture's aux buffers because the driver exposes
1065 * no EGL API to manage them. That is, there is no API for resolving the aux
1066 * buffer's content to the main buffer nor for invalidating the aux buffer's
1067 * content.
1068 */
1069 struct intel_mipmap_tree *mt =
1070 intel_miptree_create_for_bo(brw, image->bo, format,
1071 image->offset, image->width, image->height, 1,
1072 image->pitch, tiling, mt_create_flags);
1073 if (mt == NULL)
1074 return NULL;
1075
1076 mt->target = target;
1077 mt->level[0].level_x = image->tile_x;
1078 mt->level[0].level_y = image->tile_y;
1079 mt->drm_modifier = image->modifier;
1080
1081 /* From "OES_EGL_image" error reporting. We report GL_INVALID_OPERATION
1082 * for EGL images from non-tile aligned sufaces in gen4 hw and earlier which has
1083 * trouble resolving back to destination image due to alignment issues.
1084 */
1085 const struct gen_device_info *devinfo = &brw->screen->devinfo;
1086 if (!devinfo->has_surface_tile_offset) {
1087 uint32_t draw_x, draw_y;
1088 intel_miptree_get_tile_offsets(mt, 0, 0, &draw_x, &draw_y);
1089
1090 if (draw_x != 0 || draw_y != 0) {
1091 _mesa_error(&brw->ctx, GL_INVALID_OPERATION, __func__);
1092 intel_miptree_release(&mt);
1093 return NULL;
1094 }
1095 }
1096
1097 if (mod_info && mod_info->aux_usage != ISL_AUX_USAGE_NONE) {
1098 assert(mod_info->aux_usage == ISL_AUX_USAGE_CCS_E);
1099
1100 mt->aux_usage = mod_info->aux_usage;
1101 /* If we are a window system buffer, then we can support fast-clears
1102 * even if the modifier doesn't support them by doing a partial resolve
1103 * as part of the flush operation.
1104 */
1105 mt->supports_fast_clear =
1106 allow_internal_aux || mod_info->supports_clear_color;
1107
1108 /* We don't know the actual state of the surface when we get it but we
1109 * can make a pretty good guess based on the modifier. What we do know
1110 * for sure is that it isn't in the AUX_INVALID state, so we just assume
1111 * a worst case of compression.
1112 */
1113 enum isl_aux_state initial_state =
1114 isl_drm_modifier_get_default_aux_state(image->modifier);
1115
1116 if (!create_ccs_buf_for_image(brw, image, mt, initial_state)) {
1117 intel_miptree_release(&mt);
1118 return NULL;
1119 }
1120 }
1121
1122 /* Don't assume coherency for imported EGLimages. We don't know what
1123 * external clients are going to do with it. They may scan it out.
1124 */
1125 image->bo->cache_coherent = false;
1126
1127 return mt;
1128 }
1129
1130 /**
1131 * For a singlesample renderbuffer, this simply wraps the given BO with a
1132 * miptree.
1133 *
1134 * For a multisample renderbuffer, this wraps the window system's
1135 * (singlesample) BO with a singlesample miptree attached to the
1136 * intel_renderbuffer, then creates a multisample miptree attached to irb->mt
1137 * that will contain the actual rendering (which is lazily resolved to
1138 * irb->singlesample_mt).
1139 */
1140 bool
1141 intel_update_winsys_renderbuffer_miptree(struct brw_context *intel,
1142 struct intel_renderbuffer *irb,
1143 struct intel_mipmap_tree *singlesample_mt,
1144 uint32_t width, uint32_t height,
1145 uint32_t pitch)
1146 {
1147 struct intel_mipmap_tree *multisample_mt = NULL;
1148 struct gl_renderbuffer *rb = &irb->Base.Base;
1149 mesa_format format = rb->Format;
1150 const unsigned num_samples = MAX2(rb->NumSamples, 1);
1151
1152 /* Only the front and back buffers, which are color buffers, are allocated
1153 * through the image loader.
1154 */
1155 assert(_mesa_get_format_base_format(format) == GL_RGB ||
1156 _mesa_get_format_base_format(format) == GL_RGBA);
1157
1158 assert(singlesample_mt);
1159
1160 if (num_samples == 1) {
1161 intel_miptree_release(&irb->mt);
1162 irb->mt = singlesample_mt;
1163
1164 assert(!irb->singlesample_mt);
1165 } else {
1166 intel_miptree_release(&irb->singlesample_mt);
1167 irb->singlesample_mt = singlesample_mt;
1168
1169 if (!irb->mt ||
1170 irb->mt->surf.logical_level0_px.width != width ||
1171 irb->mt->surf.logical_level0_px.height != height) {
1172 multisample_mt = intel_miptree_create_for_renderbuffer(intel,
1173 format,
1174 width,
1175 height,
1176 num_samples);
1177 if (!multisample_mt)
1178 goto fail;
1179
1180 irb->need_downsample = false;
1181 intel_miptree_release(&irb->mt);
1182 irb->mt = multisample_mt;
1183 }
1184 }
1185 return true;
1186
1187 fail:
1188 intel_miptree_release(&irb->mt);
1189 return false;
1190 }
1191
1192 struct intel_mipmap_tree*
1193 intel_miptree_create_for_renderbuffer(struct brw_context *brw,
1194 mesa_format format,
1195 uint32_t width,
1196 uint32_t height,
1197 uint32_t num_samples)
1198 {
1199 struct intel_mipmap_tree *mt;
1200 uint32_t depth = 1;
1201 GLenum target = num_samples > 1 ? GL_TEXTURE_2D_MULTISAMPLE : GL_TEXTURE_2D;
1202
1203 mt = intel_miptree_create(brw, target, format, 0, 0,
1204 width, height, depth, num_samples,
1205 MIPTREE_CREATE_BUSY);
1206 if (!mt)
1207 goto fail;
1208
1209 return mt;
1210
1211 fail:
1212 intel_miptree_release(&mt);
1213 return NULL;
1214 }
1215
1216 void
1217 intel_miptree_reference(struct intel_mipmap_tree **dst,
1218 struct intel_mipmap_tree *src)
1219 {
1220 if (*dst == src)
1221 return;
1222
1223 intel_miptree_release(dst);
1224
1225 if (src) {
1226 src->refcount++;
1227 DBG("%s %p refcount now %d\n", __func__, src, src->refcount);
1228 }
1229
1230 *dst = src;
1231 }
1232
1233 static void
1234 intel_miptree_aux_buffer_free(struct intel_miptree_aux_buffer *aux_buf)
1235 {
1236 if (aux_buf == NULL)
1237 return;
1238
1239 brw_bo_unreference(aux_buf->bo);
1240 brw_bo_unreference(aux_buf->clear_color_bo);
1241
1242 free(aux_buf);
1243 }
1244
1245 void
1246 intel_miptree_release(struct intel_mipmap_tree **mt)
1247 {
1248 if (!*mt)
1249 return;
1250
1251 DBG("%s %p refcount will be %d\n", __func__, *mt, (*mt)->refcount - 1);
1252 if (--(*mt)->refcount <= 0) {
1253 GLuint i;
1254
1255 DBG("%s deleting %p\n", __func__, *mt);
1256
1257 brw_bo_unreference((*mt)->bo);
1258 intel_miptree_release(&(*mt)->stencil_mt);
1259 intel_miptree_release(&(*mt)->r8stencil_mt);
1260 intel_miptree_aux_buffer_free((*mt)->aux_buf);
1261 free_aux_state_map((*mt)->aux_state);
1262
1263 intel_miptree_release(&(*mt)->plane[0]);
1264 intel_miptree_release(&(*mt)->plane[1]);
1265
1266 for (i = 0; i < MAX_TEXTURE_LEVELS; i++) {
1267 free((*mt)->level[i].slice);
1268 }
1269
1270 free(*mt);
1271 }
1272 *mt = NULL;
1273 }
1274
1275
1276 void
1277 intel_get_image_dims(struct gl_texture_image *image,
1278 int *width, int *height, int *depth)
1279 {
1280 switch (image->TexObject->Target) {
1281 case GL_TEXTURE_1D_ARRAY:
1282 /* For a 1D Array texture the OpenGL API will treat the image height as
1283 * the number of array slices. For Intel hardware, we treat the 1D array
1284 * as a 2D Array with a height of 1. So, here we want to swap image
1285 * height and depth.
1286 */
1287 assert(image->Depth == 1);
1288 *width = image->Width;
1289 *height = 1;
1290 *depth = image->Height;
1291 break;
1292 case GL_TEXTURE_CUBE_MAP:
1293 /* For Cube maps, the mesa/main api layer gives us a depth of 1 even
1294 * though we really have 6 slices.
1295 */
1296 assert(image->Depth == 1);
1297 *width = image->Width;
1298 *height = image->Height;
1299 *depth = 6;
1300 break;
1301 default:
1302 *width = image->Width;
1303 *height = image->Height;
1304 *depth = image->Depth;
1305 break;
1306 }
1307 }
1308
1309 /**
1310 * Can the image be pulled into a unified mipmap tree? This mirrors
1311 * the completeness test in a lot of ways.
1312 *
1313 * Not sure whether I want to pass gl_texture_image here.
1314 */
1315 bool
1316 intel_miptree_match_image(struct intel_mipmap_tree *mt,
1317 struct gl_texture_image *image)
1318 {
1319 struct intel_texture_image *intelImage = intel_texture_image(image);
1320 GLuint level = intelImage->base.Base.Level;
1321 int width, height, depth;
1322
1323 /* glTexImage* choose the texture object based on the target passed in, and
1324 * objects can't change targets over their lifetimes, so this should be
1325 * true.
1326 */
1327 assert(image->TexObject->Target == mt->target);
1328
1329 mesa_format mt_format = mt->format;
1330 if (mt->format == MESA_FORMAT_Z24_UNORM_X8_UINT && mt->stencil_mt)
1331 mt_format = MESA_FORMAT_Z24_UNORM_S8_UINT;
1332 if (mt->format == MESA_FORMAT_Z_FLOAT32 && mt->stencil_mt)
1333 mt_format = MESA_FORMAT_Z32_FLOAT_S8X24_UINT;
1334 if (mt->etc_format != MESA_FORMAT_NONE)
1335 mt_format = mt->etc_format;
1336
1337 if (_mesa_get_srgb_format_linear(image->TexFormat) !=
1338 _mesa_get_srgb_format_linear(mt_format))
1339 return false;
1340
1341 intel_get_image_dims(image, &width, &height, &depth);
1342
1343 if (mt->target == GL_TEXTURE_CUBE_MAP)
1344 depth = 6;
1345
1346 if (level >= mt->surf.levels)
1347 return false;
1348
1349 const unsigned level_depth =
1350 mt->surf.dim == ISL_SURF_DIM_3D ?
1351 minify(mt->surf.logical_level0_px.depth, level) :
1352 mt->surf.logical_level0_px.array_len;
1353
1354 return width == minify(mt->surf.logical_level0_px.width, level) &&
1355 height == minify(mt->surf.logical_level0_px.height, level) &&
1356 depth == level_depth &&
1357 MAX2(image->NumSamples, 1) == mt->surf.samples;
1358 }
1359
1360 void
1361 intel_miptree_get_image_offset(const struct intel_mipmap_tree *mt,
1362 GLuint level, GLuint slice,
1363 GLuint *x, GLuint *y)
1364 {
1365 if (level == 0 && slice == 0) {
1366 *x = mt->level[0].level_x;
1367 *y = mt->level[0].level_y;
1368 return;
1369 }
1370
1371 uint32_t x_offset_sa, y_offset_sa;
1372
1373 /* Miptree itself can have an offset only if it represents a single
1374 * slice in an imported buffer object.
1375 * See intel_miptree_create_for_dri_image().
1376 */
1377 assert(mt->level[0].level_x == 0);
1378 assert(mt->level[0].level_y == 0);
1379
1380 /* Given level is relative to level zero while the miptree may be
1381 * represent just a subset of all levels starting from 'first_level'.
1382 */
1383 assert(level >= mt->first_level);
1384 level -= mt->first_level;
1385
1386 const unsigned z = mt->surf.dim == ISL_SURF_DIM_3D ? slice : 0;
1387 slice = mt->surf.dim == ISL_SURF_DIM_3D ? 0 : slice;
1388 isl_surf_get_image_offset_el(&mt->surf, level, slice, z,
1389 &x_offset_sa, &y_offset_sa);
1390
1391 *x = x_offset_sa;
1392 *y = y_offset_sa;
1393 }
1394
1395
1396 /**
1397 * This function computes the tile_w (in bytes) and tile_h (in rows) of
1398 * different tiling patterns. If the BO is untiled, tile_w is set to cpp
1399 * and tile_h is set to 1.
1400 */
1401 void
1402 intel_get_tile_dims(enum isl_tiling tiling, uint32_t cpp,
1403 uint32_t *tile_w, uint32_t *tile_h)
1404 {
1405 switch (tiling) {
1406 case ISL_TILING_X:
1407 *tile_w = 512;
1408 *tile_h = 8;
1409 break;
1410 case ISL_TILING_Y0:
1411 *tile_w = 128;
1412 *tile_h = 32;
1413 break;
1414 case ISL_TILING_LINEAR:
1415 *tile_w = cpp;
1416 *tile_h = 1;
1417 break;
1418 default:
1419 unreachable("not reached");
1420 }
1421 }
1422
1423
1424 /**
1425 * This function computes masks that may be used to select the bits of the X
1426 * and Y coordinates that indicate the offset within a tile. If the BO is
1427 * untiled, the masks are set to 0.
1428 */
1429 void
1430 intel_get_tile_masks(enum isl_tiling tiling, uint32_t cpp,
1431 uint32_t *mask_x, uint32_t *mask_y)
1432 {
1433 uint32_t tile_w_bytes, tile_h;
1434
1435 intel_get_tile_dims(tiling, cpp, &tile_w_bytes, &tile_h);
1436
1437 *mask_x = tile_w_bytes / cpp - 1;
1438 *mask_y = tile_h - 1;
1439 }
1440
1441 /**
1442 * Compute the offset (in bytes) from the start of the BO to the given x
1443 * and y coordinate. For tiled BOs, caller must ensure that x and y are
1444 * multiples of the tile size.
1445 */
1446 uint32_t
1447 intel_miptree_get_aligned_offset(const struct intel_mipmap_tree *mt,
1448 uint32_t x, uint32_t y)
1449 {
1450 int cpp = mt->cpp;
1451 uint32_t pitch = mt->surf.row_pitch;
1452
1453 switch (mt->surf.tiling) {
1454 default:
1455 unreachable("not reached");
1456 case ISL_TILING_LINEAR:
1457 return y * pitch + x * cpp;
1458 case ISL_TILING_X:
1459 assert((x % (512 / cpp)) == 0);
1460 assert((y % 8) == 0);
1461 return y * pitch + x / (512 / cpp) * 4096;
1462 case ISL_TILING_Y0:
1463 assert((x % (128 / cpp)) == 0);
1464 assert((y % 32) == 0);
1465 return y * pitch + x / (128 / cpp) * 4096;
1466 }
1467 }
1468
1469 /**
1470 * Rendering with tiled buffers requires that the base address of the buffer
1471 * be aligned to a page boundary. For renderbuffers, and sometimes with
1472 * textures, we may want the surface to point at a texture image level that
1473 * isn't at a page boundary.
1474 *
1475 * This function returns an appropriately-aligned base offset
1476 * according to the tiling restrictions, plus any required x/y offset
1477 * from there.
1478 */
1479 uint32_t
1480 intel_miptree_get_tile_offsets(const struct intel_mipmap_tree *mt,
1481 GLuint level, GLuint slice,
1482 uint32_t *tile_x,
1483 uint32_t *tile_y)
1484 {
1485 uint32_t x, y;
1486 uint32_t mask_x, mask_y;
1487
1488 intel_get_tile_masks(mt->surf.tiling, mt->cpp, &mask_x, &mask_y);
1489 intel_miptree_get_image_offset(mt, level, slice, &x, &y);
1490
1491 *tile_x = x & mask_x;
1492 *tile_y = y & mask_y;
1493
1494 return intel_miptree_get_aligned_offset(mt, x & ~mask_x, y & ~mask_y);
1495 }
1496
1497 static void
1498 intel_miptree_copy_slice_sw(struct brw_context *brw,
1499 struct intel_mipmap_tree *src_mt,
1500 unsigned src_level, unsigned src_layer,
1501 struct intel_mipmap_tree *dst_mt,
1502 unsigned dst_level, unsigned dst_layer,
1503 unsigned width, unsigned height)
1504 {
1505 void *src, *dst;
1506 ptrdiff_t src_stride, dst_stride;
1507 const unsigned cpp = (isl_format_get_layout(dst_mt->surf.format)->bpb / 8);
1508
1509 intel_miptree_map(brw, src_mt,
1510 src_level, src_layer,
1511 0, 0,
1512 width, height,
1513 GL_MAP_READ_BIT | BRW_MAP_DIRECT_BIT,
1514 &src, &src_stride);
1515
1516 intel_miptree_map(brw, dst_mt,
1517 dst_level, dst_layer,
1518 0, 0,
1519 width, height,
1520 GL_MAP_WRITE_BIT | GL_MAP_INVALIDATE_RANGE_BIT |
1521 BRW_MAP_DIRECT_BIT,
1522 &dst, &dst_stride);
1523
1524 DBG("sw blit %s mt %p %p/%"PRIdPTR" -> %s mt %p %p/%"PRIdPTR" (%dx%d)\n",
1525 _mesa_get_format_name(src_mt->format),
1526 src_mt, src, src_stride,
1527 _mesa_get_format_name(dst_mt->format),
1528 dst_mt, dst, dst_stride,
1529 width, height);
1530
1531 int row_size = cpp * width;
1532 if (src_stride == row_size &&
1533 dst_stride == row_size) {
1534 memcpy(dst, src, row_size * height);
1535 } else {
1536 for (int i = 0; i < height; i++) {
1537 memcpy(dst, src, row_size);
1538 dst += dst_stride;
1539 src += src_stride;
1540 }
1541 }
1542
1543 intel_miptree_unmap(brw, dst_mt, dst_level, dst_layer);
1544 intel_miptree_unmap(brw, src_mt, src_level, src_layer);
1545
1546 /* Don't forget to copy the stencil data over, too. We could have skipped
1547 * passing BRW_MAP_DIRECT_BIT, but that would have meant intel_miptree_map
1548 * shuffling the two data sources in/out of temporary storage instead of
1549 * the direct mapping we get this way.
1550 */
1551 if (dst_mt->stencil_mt) {
1552 assert(src_mt->stencil_mt);
1553 intel_miptree_copy_slice_sw(brw,
1554 src_mt->stencil_mt, src_level, src_layer,
1555 dst_mt->stencil_mt, dst_level, dst_layer,
1556 width, height);
1557 }
1558 }
1559
1560 void
1561 intel_miptree_copy_slice(struct brw_context *brw,
1562 struct intel_mipmap_tree *src_mt,
1563 unsigned src_level, unsigned src_layer,
1564 struct intel_mipmap_tree *dst_mt,
1565 unsigned dst_level, unsigned dst_layer)
1566
1567 {
1568 const struct gen_device_info *devinfo = &brw->screen->devinfo;
1569 mesa_format format = src_mt->format;
1570 unsigned width = minify(src_mt->surf.phys_level0_sa.width,
1571 src_level - src_mt->first_level);
1572 unsigned height = minify(src_mt->surf.phys_level0_sa.height,
1573 src_level - src_mt->first_level);
1574
1575 assert(src_layer < get_num_phys_layers(&src_mt->surf,
1576 src_level - src_mt->first_level));
1577
1578 assert(_mesa_get_srgb_format_linear(src_mt->format) ==
1579 _mesa_get_srgb_format_linear(dst_mt->format));
1580
1581 DBG("validate blit mt %s %p %d,%d -> mt %s %p %d,%d (%dx%d)\n",
1582 _mesa_get_format_name(src_mt->format),
1583 src_mt, src_level, src_layer,
1584 _mesa_get_format_name(dst_mt->format),
1585 dst_mt, dst_level, dst_layer,
1586 width, height);
1587
1588 if (devinfo->gen >= 6) {
1589 /* On gen6 and above, we just use blorp. It's faster than the blitter
1590 * and can handle everything without software fallbacks.
1591 */
1592 brw_blorp_copy_miptrees(brw,
1593 src_mt, src_level, src_layer,
1594 dst_mt, dst_level, dst_layer,
1595 0, 0, 0, 0, width, height);
1596
1597 if (src_mt->stencil_mt) {
1598 assert(dst_mt->stencil_mt);
1599 brw_blorp_copy_miptrees(brw,
1600 src_mt->stencil_mt, src_level, src_layer,
1601 dst_mt->stencil_mt, dst_level, dst_layer,
1602 0, 0, 0, 0, width, height);
1603 }
1604 return;
1605 }
1606
1607 if (dst_mt->compressed) {
1608 unsigned int i, j;
1609 _mesa_get_format_block_size(dst_mt->format, &i, &j);
1610 height = ALIGN_NPOT(height, j) / j;
1611 width = ALIGN_NPOT(width, i) / i;
1612 }
1613
1614 /* Gen4-5 doesn't support separate stencil */
1615 assert(!src_mt->stencil_mt);
1616
1617 uint32_t dst_x, dst_y, src_x, src_y;
1618 intel_miptree_get_image_offset(dst_mt, dst_level, dst_layer,
1619 &dst_x, &dst_y);
1620 intel_miptree_get_image_offset(src_mt, src_level, src_layer,
1621 &src_x, &src_y);
1622
1623 DBG("validate blit mt %s %p %d,%d/%d -> mt %s %p %d,%d/%d (%dx%d)\n",
1624 _mesa_get_format_name(src_mt->format),
1625 src_mt, src_x, src_y, src_mt->surf.row_pitch,
1626 _mesa_get_format_name(dst_mt->format),
1627 dst_mt, dst_x, dst_y, dst_mt->surf.row_pitch,
1628 width, height);
1629
1630 if (!intel_miptree_blit(brw,
1631 src_mt, src_level, src_layer, 0, 0, false,
1632 dst_mt, dst_level, dst_layer, 0, 0, false,
1633 width, height, COLOR_LOGICOP_COPY)) {
1634 perf_debug("miptree validate blit for %s failed\n",
1635 _mesa_get_format_name(format));
1636
1637 intel_miptree_copy_slice_sw(brw,
1638 src_mt, src_level, src_layer,
1639 dst_mt, dst_level, dst_layer,
1640 width, height);
1641 }
1642 }
1643
1644 /**
1645 * Copies the image's current data to the given miptree, and associates that
1646 * miptree with the image.
1647 */
1648 void
1649 intel_miptree_copy_teximage(struct brw_context *brw,
1650 struct intel_texture_image *intelImage,
1651 struct intel_mipmap_tree *dst_mt)
1652 {
1653 struct intel_mipmap_tree *src_mt = intelImage->mt;
1654 struct intel_texture_object *intel_obj =
1655 intel_texture_object(intelImage->base.Base.TexObject);
1656 int level = intelImage->base.Base.Level;
1657 const unsigned face = intelImage->base.Base.Face;
1658 unsigned start_layer, end_layer;
1659
1660 if (intel_obj->base.Target == GL_TEXTURE_1D_ARRAY) {
1661 assert(face == 0);
1662 assert(intelImage->base.Base.Height);
1663 start_layer = 0;
1664 end_layer = intelImage->base.Base.Height - 1;
1665 } else if (face > 0) {
1666 start_layer = face;
1667 end_layer = face;
1668 } else {
1669 assert(intelImage->base.Base.Depth);
1670 start_layer = 0;
1671 end_layer = intelImage->base.Base.Depth - 1;
1672 }
1673
1674 for (unsigned i = start_layer; i <= end_layer; i++) {
1675 intel_miptree_copy_slice(brw,
1676 src_mt, level, i,
1677 dst_mt, level, i);
1678 }
1679
1680 intel_miptree_reference(&intelImage->mt, dst_mt);
1681 intel_obj->needs_validate = true;
1682 }
1683
1684 static struct intel_miptree_aux_buffer *
1685 intel_alloc_aux_buffer(struct brw_context *brw,
1686 const struct isl_surf *aux_surf,
1687 bool wants_memset,
1688 uint8_t memset_value)
1689 {
1690 struct intel_miptree_aux_buffer *buf = calloc(sizeof(*buf), 1);
1691 if (!buf)
1692 return false;
1693
1694 uint64_t size = aux_surf->size;
1695
1696 const bool has_indirect_clear = brw->isl_dev.ss.clear_color_state_size > 0;
1697 if (has_indirect_clear) {
1698 /* On CNL+, instead of setting the clear color in the SURFACE_STATE, we
1699 * will set a pointer to a dword somewhere that contains the color. So,
1700 * allocate the space for the clear color value here on the aux buffer.
1701 */
1702 buf->clear_color_offset = size;
1703 size += brw->isl_dev.ss.clear_color_state_size;
1704 }
1705
1706 /* If the buffer needs to be initialised (requiring the buffer to be
1707 * immediately mapped to cpu space for writing), do not use the gpu access
1708 * flag which can cause an unnecessary delay if the backing pages happened
1709 * to be just used by the GPU.
1710 */
1711 const bool alloc_zeroed = wants_memset && memset_value == 0;
1712 const bool needs_memset =
1713 !alloc_zeroed && (wants_memset || has_indirect_clear);
1714 const uint32_t alloc_flags =
1715 alloc_zeroed ? BO_ALLOC_ZEROED : (needs_memset ? 0 : BO_ALLOC_BUSY);
1716
1717 /* ISL has stricter set of alignment rules then the drm allocator.
1718 * Therefore one can pass the ISL dimensions in terms of bytes instead of
1719 * trying to recalculate based on different format block sizes.
1720 */
1721 buf->bo = brw_bo_alloc_tiled(brw->bufmgr, "aux-miptree", size,
1722 BRW_MEMZONE_OTHER, I915_TILING_Y,
1723 aux_surf->row_pitch, alloc_flags);
1724 if (!buf->bo) {
1725 free(buf);
1726 return NULL;
1727 }
1728
1729 /* Initialize the bo to the desired value */
1730 if (needs_memset) {
1731 assert(!(alloc_flags & BO_ALLOC_BUSY));
1732
1733 void *map = brw_bo_map(brw, buf->bo, MAP_WRITE | MAP_RAW);
1734 if (map == NULL) {
1735 intel_miptree_aux_buffer_free(buf);
1736 return NULL;
1737 }
1738
1739 /* Memset the aux_surf portion of the BO. */
1740 if (wants_memset)
1741 memset(map, memset_value, aux_surf->size);
1742
1743 /* Zero the indirect clear color to match ::fast_clear_color. */
1744 if (has_indirect_clear) {
1745 memset((char *)map + buf->clear_color_offset, 0,
1746 brw->isl_dev.ss.clear_color_state_size);
1747 }
1748
1749 brw_bo_unmap(buf->bo);
1750 }
1751
1752 if (has_indirect_clear) {
1753 buf->clear_color_bo = buf->bo;
1754 brw_bo_reference(buf->clear_color_bo);
1755 }
1756
1757 buf->surf = *aux_surf;
1758
1759 return buf;
1760 }
1761
1762
1763 /**
1764 * Helper for intel_miptree_alloc_aux() that sets
1765 * \c mt->level[level].has_hiz. Return true if and only if
1766 * \c has_hiz was set.
1767 */
1768 static bool
1769 intel_miptree_level_enable_hiz(struct brw_context *brw,
1770 struct intel_mipmap_tree *mt,
1771 uint32_t level)
1772 {
1773 const struct gen_device_info *devinfo = &brw->screen->devinfo;
1774
1775 assert(mt->aux_buf);
1776 assert(mt->surf.size > 0);
1777
1778 if (devinfo->gen >= 8 || devinfo->is_haswell) {
1779 uint32_t width = minify(mt->surf.phys_level0_sa.width, level);
1780 uint32_t height = minify(mt->surf.phys_level0_sa.height, level);
1781
1782 /* Disable HiZ for LOD > 0 unless the width is 8 aligned
1783 * and the height is 4 aligned. This allows our HiZ support
1784 * to fulfill Haswell restrictions for HiZ ops. For LOD == 0,
1785 * we can grow the width & height to allow the HiZ op to
1786 * force the proper size alignments.
1787 */
1788 if (level > 0 && ((width & 7) || (height & 3))) {
1789 DBG("mt %p level %d: HiZ DISABLED\n", mt, level);
1790 return false;
1791 }
1792 }
1793
1794 DBG("mt %p level %d: HiZ enabled\n", mt, level);
1795 mt->level[level].has_hiz = true;
1796 return true;
1797 }
1798
1799
1800 /**
1801 * Allocate the initial aux surface for a miptree based on mt->aux_usage
1802 *
1803 * Since MCS, HiZ, and CCS_E can compress more than just clear color, we
1804 * create the auxiliary surfaces up-front. CCS_D, on the other hand, can only
1805 * compress clear color so we wait until an actual fast-clear to allocate it.
1806 */
1807 bool
1808 intel_miptree_alloc_aux(struct brw_context *brw,
1809 struct intel_mipmap_tree *mt)
1810 {
1811 assert(mt->aux_buf == NULL);
1812
1813 /* Get the aux buf allocation parameters for this miptree. */
1814 enum isl_aux_state initial_state;
1815 uint8_t memset_value;
1816 struct isl_surf aux_surf;
1817 MAYBE_UNUSED bool aux_surf_ok;
1818
1819 switch (mt->aux_usage) {
1820 case ISL_AUX_USAGE_NONE:
1821 aux_surf.size = 0;
1822 aux_surf_ok = true;
1823 break;
1824 case ISL_AUX_USAGE_HIZ:
1825 initial_state = ISL_AUX_STATE_AUX_INVALID;
1826 aux_surf_ok = isl_surf_get_hiz_surf(&brw->isl_dev, &mt->surf, &aux_surf);
1827 break;
1828 case ISL_AUX_USAGE_MCS:
1829 /* From the Ivy Bridge PRM, Vol 2 Part 1 p326:
1830 *
1831 * When MCS buffer is enabled and bound to MSRT, it is required that
1832 * it is cleared prior to any rendering.
1833 *
1834 * Since we don't use the MCS buffer for any purpose other than
1835 * rendering, it makes sense to just clear it immediately upon
1836 * allocation.
1837 *
1838 * Note: the clear value for MCS buffers is all 1's, so we memset to
1839 * 0xff.
1840 */
1841 initial_state = ISL_AUX_STATE_CLEAR;
1842 memset_value = 0xFF;
1843 aux_surf_ok = isl_surf_get_mcs_surf(&brw->isl_dev, &mt->surf, &aux_surf);
1844 break;
1845 case ISL_AUX_USAGE_CCS_D:
1846 case ISL_AUX_USAGE_CCS_E:
1847 /* When CCS_E is used, we need to ensure that the CCS starts off in a
1848 * valid state. From the Sky Lake PRM, "MCS Buffer for Render
1849 * Target(s)":
1850 *
1851 * "If Software wants to enable Color Compression without Fast
1852 * clear, Software needs to initialize MCS with zeros."
1853 *
1854 * A CCS value of 0 indicates that the corresponding block is in the
1855 * pass-through state which is what we want.
1856 *
1857 * For CCS_D, do the same thing. On gen9+, this avoids having any
1858 * undefined bits in the aux buffer.
1859 */
1860 initial_state = ISL_AUX_STATE_PASS_THROUGH;
1861 memset_value = 0;
1862 aux_surf_ok =
1863 isl_surf_get_ccs_surf(&brw->isl_dev, &mt->surf, &aux_surf, 0);
1864 break;
1865 }
1866
1867 /* We should have a valid aux_surf. */
1868 assert(aux_surf_ok);
1869
1870 /* No work is needed for a zero-sized auxiliary buffer. */
1871 if (aux_surf.size == 0)
1872 return true;
1873
1874 /* Create the aux_state for the auxiliary buffer. */
1875 mt->aux_state = create_aux_state_map(mt, initial_state);
1876 if (mt->aux_state == NULL)
1877 return false;
1878
1879 /* Allocate the auxiliary buffer. */
1880 const bool needs_memset = initial_state != ISL_AUX_STATE_AUX_INVALID;
1881 mt->aux_buf = intel_alloc_aux_buffer(brw, &aux_surf, needs_memset,
1882 memset_value);
1883 if (mt->aux_buf == NULL) {
1884 free_aux_state_map(mt->aux_state);
1885 mt->aux_state = NULL;
1886 return false;
1887 }
1888
1889 /* Perform aux_usage-specific initialization. */
1890 if (mt->aux_usage == ISL_AUX_USAGE_HIZ) {
1891 for (unsigned level = mt->first_level; level <= mt->last_level; ++level)
1892 intel_miptree_level_enable_hiz(brw, mt, level);
1893 }
1894
1895 return true;
1896 }
1897
1898
1899 /**
1900 * Can the miptree sample using the hiz buffer?
1901 */
1902 bool
1903 intel_miptree_sample_with_hiz(struct brw_context *brw,
1904 struct intel_mipmap_tree *mt)
1905 {
1906 const struct gen_device_info *devinfo = &brw->screen->devinfo;
1907
1908 if (!devinfo->has_sample_with_hiz) {
1909 return false;
1910 }
1911
1912 if (!mt->aux_buf) {
1913 return false;
1914 }
1915
1916 /* It seems the hardware won't fallback to the depth buffer if some of the
1917 * mipmap levels aren't available in the HiZ buffer. So we need all levels
1918 * of the texture to be HiZ enabled.
1919 */
1920 for (unsigned level = 0; level < mt->surf.levels; ++level) {
1921 if (!intel_miptree_level_has_hiz(mt, level))
1922 return false;
1923 }
1924
1925 /* If compressed multisampling is enabled, then we use it for the auxiliary
1926 * buffer instead.
1927 *
1928 * From the BDW PRM (Volume 2d: Command Reference: Structures
1929 * RENDER_SURFACE_STATE.AuxiliarySurfaceMode):
1930 *
1931 * "If this field is set to AUX_HIZ, Number of Multisamples must be
1932 * MULTISAMPLECOUNT_1, and Surface Type cannot be SURFTYPE_3D.
1933 *
1934 * There is no such blurb for 1D textures, but there is sufficient evidence
1935 * that this is broken on SKL+.
1936 */
1937 return (mt->surf.samples == 1 &&
1938 mt->target != GL_TEXTURE_3D &&
1939 mt->target != GL_TEXTURE_1D /* gen9+ restriction */);
1940 }
1941
1942 /**
1943 * Does the miptree slice have hiz enabled?
1944 */
1945 bool
1946 intel_miptree_level_has_hiz(const struct intel_mipmap_tree *mt, uint32_t level)
1947 {
1948 intel_miptree_check_level_layer(mt, level, 0);
1949 return mt->level[level].has_hiz;
1950 }
1951
1952 static inline uint32_t
1953 miptree_level_range_length(const struct intel_mipmap_tree *mt,
1954 uint32_t start_level, uint32_t num_levels)
1955 {
1956 assert(start_level >= mt->first_level);
1957 assert(start_level <= mt->last_level);
1958
1959 if (num_levels == INTEL_REMAINING_LAYERS)
1960 num_levels = mt->last_level - start_level + 1;
1961 /* Check for overflow */
1962 assert(start_level + num_levels >= start_level);
1963 assert(start_level + num_levels <= mt->last_level + 1);
1964
1965 return num_levels;
1966 }
1967
1968 static inline uint32_t
1969 miptree_layer_range_length(const struct intel_mipmap_tree *mt, uint32_t level,
1970 uint32_t start_layer, uint32_t num_layers)
1971 {
1972 assert(level <= mt->last_level);
1973
1974 const uint32_t total_num_layers = brw_get_num_logical_layers(mt, level);
1975 assert(start_layer < total_num_layers);
1976 if (num_layers == INTEL_REMAINING_LAYERS)
1977 num_layers = total_num_layers - start_layer;
1978 /* Check for overflow */
1979 assert(start_layer + num_layers >= start_layer);
1980 assert(start_layer + num_layers <= total_num_layers);
1981
1982 return num_layers;
1983 }
1984
1985 bool
1986 intel_miptree_has_color_unresolved(const struct intel_mipmap_tree *mt,
1987 unsigned start_level, unsigned num_levels,
1988 unsigned start_layer, unsigned num_layers)
1989 {
1990 assert(_mesa_is_format_color_format(mt->format));
1991
1992 if (!mt->aux_buf)
1993 return false;
1994
1995 /* Clamp the level range to fit the miptree */
1996 num_levels = miptree_level_range_length(mt, start_level, num_levels);
1997
1998 for (uint32_t l = 0; l < num_levels; l++) {
1999 const uint32_t level = start_level + l;
2000 const uint32_t level_layers =
2001 miptree_layer_range_length(mt, level, start_layer, num_layers);
2002 for (unsigned a = 0; a < level_layers; a++) {
2003 enum isl_aux_state aux_state =
2004 intel_miptree_get_aux_state(mt, level, start_layer + a);
2005 assert(aux_state != ISL_AUX_STATE_AUX_INVALID);
2006 if (aux_state != ISL_AUX_STATE_PASS_THROUGH)
2007 return true;
2008 }
2009 }
2010
2011 return false;
2012 }
2013
2014 static void
2015 intel_miptree_check_color_resolve(const struct brw_context *brw,
2016 const struct intel_mipmap_tree *mt,
2017 unsigned level, unsigned layer)
2018 {
2019 if (!mt->aux_buf)
2020 return;
2021
2022 /* Fast color clear is supported for mipmapped surfaces only on Gen8+. */
2023 assert(brw->screen->devinfo.gen >= 8 ||
2024 (level == 0 && mt->first_level == 0 && mt->last_level == 0));
2025
2026 /* Compression of arrayed msaa surfaces is supported. */
2027 if (mt->surf.samples > 1)
2028 return;
2029
2030 /* Fast color clear is supported for non-msaa arrays only on Gen8+. */
2031 assert(brw->screen->devinfo.gen >= 8 ||
2032 (layer == 0 &&
2033 mt->surf.logical_level0_px.depth == 1 &&
2034 mt->surf.logical_level0_px.array_len == 1));
2035
2036 (void)level;
2037 (void)layer;
2038 }
2039
2040 static enum isl_aux_op
2041 get_ccs_d_resolve_op(enum isl_aux_state aux_state,
2042 enum isl_aux_usage aux_usage,
2043 bool fast_clear_supported)
2044 {
2045 assert(aux_usage == ISL_AUX_USAGE_NONE || aux_usage == ISL_AUX_USAGE_CCS_D);
2046
2047 const bool ccs_supported = aux_usage == ISL_AUX_USAGE_CCS_D;
2048
2049 assert(ccs_supported == fast_clear_supported);
2050
2051 switch (aux_state) {
2052 case ISL_AUX_STATE_CLEAR:
2053 case ISL_AUX_STATE_PARTIAL_CLEAR:
2054 if (!ccs_supported)
2055 return ISL_AUX_OP_FULL_RESOLVE;
2056 else
2057 return ISL_AUX_OP_NONE;
2058
2059 case ISL_AUX_STATE_PASS_THROUGH:
2060 return ISL_AUX_OP_NONE;
2061
2062 case ISL_AUX_STATE_RESOLVED:
2063 case ISL_AUX_STATE_AUX_INVALID:
2064 case ISL_AUX_STATE_COMPRESSED_CLEAR:
2065 case ISL_AUX_STATE_COMPRESSED_NO_CLEAR:
2066 break;
2067 }
2068
2069 unreachable("Invalid aux state for CCS_D");
2070 }
2071
2072 static enum isl_aux_op
2073 get_ccs_e_resolve_op(enum isl_aux_state aux_state,
2074 enum isl_aux_usage aux_usage,
2075 bool fast_clear_supported)
2076 {
2077 /* CCS_E surfaces can be accessed as CCS_D if we're careful. */
2078 assert(aux_usage == ISL_AUX_USAGE_NONE ||
2079 aux_usage == ISL_AUX_USAGE_CCS_D ||
2080 aux_usage == ISL_AUX_USAGE_CCS_E);
2081
2082 if (aux_usage == ISL_AUX_USAGE_CCS_D)
2083 assert(fast_clear_supported);
2084
2085 switch (aux_state) {
2086 case ISL_AUX_STATE_CLEAR:
2087 case ISL_AUX_STATE_PARTIAL_CLEAR:
2088 if (fast_clear_supported)
2089 return ISL_AUX_OP_NONE;
2090 else if (aux_usage == ISL_AUX_USAGE_CCS_E)
2091 return ISL_AUX_OP_PARTIAL_RESOLVE;
2092 else
2093 return ISL_AUX_OP_FULL_RESOLVE;
2094
2095 case ISL_AUX_STATE_COMPRESSED_CLEAR:
2096 if (aux_usage != ISL_AUX_USAGE_CCS_E)
2097 return ISL_AUX_OP_FULL_RESOLVE;
2098 else if (!fast_clear_supported)
2099 return ISL_AUX_OP_PARTIAL_RESOLVE;
2100 else
2101 return ISL_AUX_OP_NONE;
2102
2103 case ISL_AUX_STATE_COMPRESSED_NO_CLEAR:
2104 if (aux_usage != ISL_AUX_USAGE_CCS_E)
2105 return ISL_AUX_OP_FULL_RESOLVE;
2106 else
2107 return ISL_AUX_OP_NONE;
2108
2109 case ISL_AUX_STATE_PASS_THROUGH:
2110 return ISL_AUX_OP_NONE;
2111
2112 case ISL_AUX_STATE_RESOLVED:
2113 case ISL_AUX_STATE_AUX_INVALID:
2114 break;
2115 }
2116
2117 unreachable("Invalid aux state for CCS_E");
2118 }
2119
2120 static void
2121 intel_miptree_prepare_ccs_access(struct brw_context *brw,
2122 struct intel_mipmap_tree *mt,
2123 uint32_t level, uint32_t layer,
2124 enum isl_aux_usage aux_usage,
2125 bool fast_clear_supported)
2126 {
2127 enum isl_aux_state aux_state = intel_miptree_get_aux_state(mt, level, layer);
2128
2129 enum isl_aux_op resolve_op;
2130 if (mt->aux_usage == ISL_AUX_USAGE_CCS_E) {
2131 resolve_op = get_ccs_e_resolve_op(aux_state, aux_usage,
2132 fast_clear_supported);
2133 } else {
2134 assert(mt->aux_usage == ISL_AUX_USAGE_CCS_D);
2135 resolve_op = get_ccs_d_resolve_op(aux_state, aux_usage,
2136 fast_clear_supported);
2137 }
2138
2139 if (resolve_op != ISL_AUX_OP_NONE) {
2140 intel_miptree_check_color_resolve(brw, mt, level, layer);
2141 brw_blorp_resolve_color(brw, mt, level, layer, resolve_op);
2142
2143 switch (resolve_op) {
2144 case ISL_AUX_OP_FULL_RESOLVE:
2145 /* The CCS full resolve operation destroys the CCS and sets it to the
2146 * pass-through state. (You can also think of this as being both a
2147 * resolve and an ambiguate in one operation.)
2148 */
2149 intel_miptree_set_aux_state(brw, mt, level, layer, 1,
2150 ISL_AUX_STATE_PASS_THROUGH);
2151 break;
2152
2153 case ISL_AUX_OP_PARTIAL_RESOLVE:
2154 intel_miptree_set_aux_state(brw, mt, level, layer, 1,
2155 ISL_AUX_STATE_COMPRESSED_NO_CLEAR);
2156 break;
2157
2158 default:
2159 unreachable("Invalid resolve op");
2160 }
2161 }
2162 }
2163
2164 static void
2165 intel_miptree_finish_ccs_write(struct brw_context *brw,
2166 struct intel_mipmap_tree *mt,
2167 uint32_t level, uint32_t layer,
2168 enum isl_aux_usage aux_usage)
2169 {
2170 assert(aux_usage == ISL_AUX_USAGE_NONE ||
2171 aux_usage == ISL_AUX_USAGE_CCS_D ||
2172 aux_usage == ISL_AUX_USAGE_CCS_E);
2173
2174 enum isl_aux_state aux_state = intel_miptree_get_aux_state(mt, level, layer);
2175
2176 if (mt->aux_usage == ISL_AUX_USAGE_CCS_E) {
2177 switch (aux_state) {
2178 case ISL_AUX_STATE_CLEAR:
2179 case ISL_AUX_STATE_PARTIAL_CLEAR:
2180 assert(aux_usage == ISL_AUX_USAGE_CCS_E ||
2181 aux_usage == ISL_AUX_USAGE_CCS_D);
2182
2183 if (aux_usage == ISL_AUX_USAGE_CCS_E) {
2184 intel_miptree_set_aux_state(brw, mt, level, layer, 1,
2185 ISL_AUX_STATE_COMPRESSED_CLEAR);
2186 } else if (aux_state != ISL_AUX_STATE_PARTIAL_CLEAR) {
2187 intel_miptree_set_aux_state(brw, mt, level, layer, 1,
2188 ISL_AUX_STATE_PARTIAL_CLEAR);
2189 }
2190 break;
2191
2192 case ISL_AUX_STATE_COMPRESSED_CLEAR:
2193 case ISL_AUX_STATE_COMPRESSED_NO_CLEAR:
2194 assert(aux_usage == ISL_AUX_USAGE_CCS_E);
2195 break; /* Nothing to do */
2196
2197 case ISL_AUX_STATE_PASS_THROUGH:
2198 if (aux_usage == ISL_AUX_USAGE_CCS_E) {
2199 intel_miptree_set_aux_state(brw, mt, level, layer, 1,
2200 ISL_AUX_STATE_COMPRESSED_NO_CLEAR);
2201 } else {
2202 /* Nothing to do */
2203 }
2204 break;
2205
2206 case ISL_AUX_STATE_RESOLVED:
2207 case ISL_AUX_STATE_AUX_INVALID:
2208 unreachable("Invalid aux state for CCS_E");
2209 }
2210 } else {
2211 assert(mt->aux_usage == ISL_AUX_USAGE_CCS_D);
2212 /* CCS_D is a bit simpler */
2213 switch (aux_state) {
2214 case ISL_AUX_STATE_CLEAR:
2215 assert(aux_usage == ISL_AUX_USAGE_CCS_D);
2216 intel_miptree_set_aux_state(brw, mt, level, layer, 1,
2217 ISL_AUX_STATE_PARTIAL_CLEAR);
2218 break;
2219
2220 case ISL_AUX_STATE_PARTIAL_CLEAR:
2221 assert(aux_usage == ISL_AUX_USAGE_CCS_D);
2222 break; /* Nothing to do */
2223
2224 case ISL_AUX_STATE_PASS_THROUGH:
2225 /* Nothing to do */
2226 break;
2227
2228 case ISL_AUX_STATE_COMPRESSED_CLEAR:
2229 case ISL_AUX_STATE_COMPRESSED_NO_CLEAR:
2230 case ISL_AUX_STATE_RESOLVED:
2231 case ISL_AUX_STATE_AUX_INVALID:
2232 unreachable("Invalid aux state for CCS_D");
2233 }
2234 }
2235 }
2236
2237 static void
2238 intel_miptree_prepare_mcs_access(struct brw_context *brw,
2239 struct intel_mipmap_tree *mt,
2240 uint32_t layer,
2241 enum isl_aux_usage aux_usage,
2242 bool fast_clear_supported)
2243 {
2244 assert(aux_usage == ISL_AUX_USAGE_MCS);
2245
2246 switch (intel_miptree_get_aux_state(mt, 0, layer)) {
2247 case ISL_AUX_STATE_CLEAR:
2248 case ISL_AUX_STATE_COMPRESSED_CLEAR:
2249 if (!fast_clear_supported) {
2250 brw_blorp_mcs_partial_resolve(brw, mt, layer, 1);
2251 intel_miptree_set_aux_state(brw, mt, 0, layer, 1,
2252 ISL_AUX_STATE_COMPRESSED_NO_CLEAR);
2253 }
2254 break;
2255
2256 case ISL_AUX_STATE_COMPRESSED_NO_CLEAR:
2257 break; /* Nothing to do */
2258
2259 case ISL_AUX_STATE_RESOLVED:
2260 case ISL_AUX_STATE_PASS_THROUGH:
2261 case ISL_AUX_STATE_AUX_INVALID:
2262 case ISL_AUX_STATE_PARTIAL_CLEAR:
2263 unreachable("Invalid aux state for MCS");
2264 }
2265 }
2266
2267 static void
2268 intel_miptree_finish_mcs_write(struct brw_context *brw,
2269 struct intel_mipmap_tree *mt,
2270 uint32_t layer,
2271 enum isl_aux_usage aux_usage)
2272 {
2273 assert(aux_usage == ISL_AUX_USAGE_MCS);
2274
2275 switch (intel_miptree_get_aux_state(mt, 0, layer)) {
2276 case ISL_AUX_STATE_CLEAR:
2277 intel_miptree_set_aux_state(brw, mt, 0, layer, 1,
2278 ISL_AUX_STATE_COMPRESSED_CLEAR);
2279 break;
2280
2281 case ISL_AUX_STATE_COMPRESSED_CLEAR:
2282 case ISL_AUX_STATE_COMPRESSED_NO_CLEAR:
2283 break; /* Nothing to do */
2284
2285 case ISL_AUX_STATE_RESOLVED:
2286 case ISL_AUX_STATE_PASS_THROUGH:
2287 case ISL_AUX_STATE_AUX_INVALID:
2288 case ISL_AUX_STATE_PARTIAL_CLEAR:
2289 unreachable("Invalid aux state for MCS");
2290 }
2291 }
2292
2293 static void
2294 intel_miptree_prepare_hiz_access(struct brw_context *brw,
2295 struct intel_mipmap_tree *mt,
2296 uint32_t level, uint32_t layer,
2297 enum isl_aux_usage aux_usage,
2298 bool fast_clear_supported)
2299 {
2300 assert(aux_usage == ISL_AUX_USAGE_NONE || aux_usage == ISL_AUX_USAGE_HIZ);
2301
2302 enum isl_aux_op hiz_op = ISL_AUX_OP_NONE;
2303 switch (intel_miptree_get_aux_state(mt, level, layer)) {
2304 case ISL_AUX_STATE_CLEAR:
2305 case ISL_AUX_STATE_COMPRESSED_CLEAR:
2306 if (aux_usage != ISL_AUX_USAGE_HIZ || !fast_clear_supported)
2307 hiz_op = ISL_AUX_OP_FULL_RESOLVE;
2308 break;
2309
2310 case ISL_AUX_STATE_COMPRESSED_NO_CLEAR:
2311 if (aux_usage != ISL_AUX_USAGE_HIZ)
2312 hiz_op = ISL_AUX_OP_FULL_RESOLVE;
2313 break;
2314
2315 case ISL_AUX_STATE_PASS_THROUGH:
2316 case ISL_AUX_STATE_RESOLVED:
2317 break;
2318
2319 case ISL_AUX_STATE_AUX_INVALID:
2320 if (aux_usage == ISL_AUX_USAGE_HIZ)
2321 hiz_op = ISL_AUX_OP_AMBIGUATE;
2322 break;
2323
2324 case ISL_AUX_STATE_PARTIAL_CLEAR:
2325 unreachable("Invalid HiZ state");
2326 }
2327
2328 if (hiz_op != ISL_AUX_OP_NONE) {
2329 intel_hiz_exec(brw, mt, level, layer, 1, hiz_op);
2330
2331 switch (hiz_op) {
2332 case ISL_AUX_OP_FULL_RESOLVE:
2333 intel_miptree_set_aux_state(brw, mt, level, layer, 1,
2334 ISL_AUX_STATE_RESOLVED);
2335 break;
2336
2337 case ISL_AUX_OP_AMBIGUATE:
2338 /* The HiZ resolve operation is actually an ambiguate */
2339 intel_miptree_set_aux_state(brw, mt, level, layer, 1,
2340 ISL_AUX_STATE_PASS_THROUGH);
2341 break;
2342
2343 default:
2344 unreachable("Invalid HiZ op");
2345 }
2346 }
2347 }
2348
2349 static void
2350 intel_miptree_finish_hiz_write(struct brw_context *brw,
2351 struct intel_mipmap_tree *mt,
2352 uint32_t level, uint32_t layer,
2353 enum isl_aux_usage aux_usage)
2354 {
2355 assert(aux_usage == ISL_AUX_USAGE_NONE || aux_usage == ISL_AUX_USAGE_HIZ);
2356
2357 switch (intel_miptree_get_aux_state(mt, level, layer)) {
2358 case ISL_AUX_STATE_CLEAR:
2359 assert(aux_usage == ISL_AUX_USAGE_HIZ);
2360 intel_miptree_set_aux_state(brw, mt, level, layer, 1,
2361 ISL_AUX_STATE_COMPRESSED_CLEAR);
2362 break;
2363
2364 case ISL_AUX_STATE_COMPRESSED_NO_CLEAR:
2365 case ISL_AUX_STATE_COMPRESSED_CLEAR:
2366 assert(aux_usage == ISL_AUX_USAGE_HIZ);
2367 break; /* Nothing to do */
2368
2369 case ISL_AUX_STATE_RESOLVED:
2370 if (aux_usage == ISL_AUX_USAGE_HIZ) {
2371 intel_miptree_set_aux_state(brw, mt, level, layer, 1,
2372 ISL_AUX_STATE_COMPRESSED_NO_CLEAR);
2373 } else {
2374 intel_miptree_set_aux_state(brw, mt, level, layer, 1,
2375 ISL_AUX_STATE_AUX_INVALID);
2376 }
2377 break;
2378
2379 case ISL_AUX_STATE_PASS_THROUGH:
2380 if (aux_usage == ISL_AUX_USAGE_HIZ) {
2381 intel_miptree_set_aux_state(brw, mt, level, layer, 1,
2382 ISL_AUX_STATE_COMPRESSED_NO_CLEAR);
2383 }
2384 break;
2385
2386 case ISL_AUX_STATE_AUX_INVALID:
2387 assert(aux_usage != ISL_AUX_USAGE_HIZ);
2388 break;
2389
2390 case ISL_AUX_STATE_PARTIAL_CLEAR:
2391 unreachable("Invalid HiZ state");
2392 }
2393 }
2394
2395 void
2396 intel_miptree_prepare_access(struct brw_context *brw,
2397 struct intel_mipmap_tree *mt,
2398 uint32_t start_level, uint32_t num_levels,
2399 uint32_t start_layer, uint32_t num_layers,
2400 enum isl_aux_usage aux_usage,
2401 bool fast_clear_supported)
2402 {
2403 num_levels = miptree_level_range_length(mt, start_level, num_levels);
2404
2405 switch (mt->aux_usage) {
2406 case ISL_AUX_USAGE_NONE:
2407 /* Nothing to do */
2408 break;
2409
2410 case ISL_AUX_USAGE_MCS:
2411 assert(mt->aux_buf);
2412 assert(start_level == 0 && num_levels == 1);
2413 const uint32_t level_layers =
2414 miptree_layer_range_length(mt, 0, start_layer, num_layers);
2415 for (uint32_t a = 0; a < level_layers; a++) {
2416 intel_miptree_prepare_mcs_access(brw, mt, start_layer + a,
2417 aux_usage, fast_clear_supported);
2418 }
2419 break;
2420
2421 case ISL_AUX_USAGE_CCS_D:
2422 case ISL_AUX_USAGE_CCS_E:
2423 if (!mt->aux_buf)
2424 return;
2425
2426 for (uint32_t l = 0; l < num_levels; l++) {
2427 const uint32_t level = start_level + l;
2428 const uint32_t level_layers =
2429 miptree_layer_range_length(mt, level, start_layer, num_layers);
2430 for (uint32_t a = 0; a < level_layers; a++) {
2431 intel_miptree_prepare_ccs_access(brw, mt, level,
2432 start_layer + a,
2433 aux_usage, fast_clear_supported);
2434 }
2435 }
2436 break;
2437
2438 case ISL_AUX_USAGE_HIZ:
2439 assert(mt->aux_buf);
2440 for (uint32_t l = 0; l < num_levels; l++) {
2441 const uint32_t level = start_level + l;
2442 if (!intel_miptree_level_has_hiz(mt, level))
2443 continue;
2444
2445 const uint32_t level_layers =
2446 miptree_layer_range_length(mt, level, start_layer, num_layers);
2447 for (uint32_t a = 0; a < level_layers; a++) {
2448 intel_miptree_prepare_hiz_access(brw, mt, level, start_layer + a,
2449 aux_usage, fast_clear_supported);
2450 }
2451 }
2452 break;
2453
2454 default:
2455 unreachable("Invalid aux usage");
2456 }
2457 }
2458
2459 void
2460 intel_miptree_finish_write(struct brw_context *brw,
2461 struct intel_mipmap_tree *mt, uint32_t level,
2462 uint32_t start_layer, uint32_t num_layers,
2463 enum isl_aux_usage aux_usage)
2464 {
2465 const struct gen_device_info *devinfo = &brw->screen->devinfo;
2466 num_layers = miptree_layer_range_length(mt, level, start_layer, num_layers);
2467
2468 switch (mt->aux_usage) {
2469 case ISL_AUX_USAGE_NONE:
2470 if (mt->format == MESA_FORMAT_S_UINT8 && devinfo->gen <= 7)
2471 mt->r8stencil_needs_update = true;
2472 break;
2473
2474 case ISL_AUX_USAGE_MCS:
2475 assert(mt->aux_buf);
2476 for (uint32_t a = 0; a < num_layers; a++) {
2477 intel_miptree_finish_mcs_write(brw, mt, start_layer + a,
2478 aux_usage);
2479 }
2480 break;
2481
2482 case ISL_AUX_USAGE_CCS_D:
2483 case ISL_AUX_USAGE_CCS_E:
2484 if (!mt->aux_buf)
2485 return;
2486
2487 for (uint32_t a = 0; a < num_layers; a++) {
2488 intel_miptree_finish_ccs_write(brw, mt, level, start_layer + a,
2489 aux_usage);
2490 }
2491 break;
2492
2493 case ISL_AUX_USAGE_HIZ:
2494 if (!intel_miptree_level_has_hiz(mt, level))
2495 return;
2496
2497 for (uint32_t a = 0; a < num_layers; a++) {
2498 intel_miptree_finish_hiz_write(brw, mt, level, start_layer + a,
2499 aux_usage);
2500 }
2501 break;
2502
2503 default:
2504 unreachable("Invavlid aux usage");
2505 }
2506 }
2507
2508 enum isl_aux_state
2509 intel_miptree_get_aux_state(const struct intel_mipmap_tree *mt,
2510 uint32_t level, uint32_t layer)
2511 {
2512 intel_miptree_check_level_layer(mt, level, layer);
2513
2514 if (_mesa_is_format_color_format(mt->format)) {
2515 assert(mt->aux_buf != NULL);
2516 assert(mt->surf.samples == 1 ||
2517 mt->surf.msaa_layout == ISL_MSAA_LAYOUT_ARRAY);
2518 } else if (mt->format == MESA_FORMAT_S_UINT8) {
2519 unreachable("Cannot get aux state for stencil");
2520 } else {
2521 assert(intel_miptree_level_has_hiz(mt, level));
2522 }
2523
2524 return mt->aux_state[level][layer];
2525 }
2526
2527 void
2528 intel_miptree_set_aux_state(struct brw_context *brw,
2529 struct intel_mipmap_tree *mt, uint32_t level,
2530 uint32_t start_layer, uint32_t num_layers,
2531 enum isl_aux_state aux_state)
2532 {
2533 num_layers = miptree_layer_range_length(mt, level, start_layer, num_layers);
2534
2535 if (_mesa_is_format_color_format(mt->format)) {
2536 assert(mt->aux_buf != NULL);
2537 assert(mt->surf.samples == 1 ||
2538 mt->surf.msaa_layout == ISL_MSAA_LAYOUT_ARRAY);
2539 } else if (mt->format == MESA_FORMAT_S_UINT8) {
2540 unreachable("Cannot get aux state for stencil");
2541 } else {
2542 assert(intel_miptree_level_has_hiz(mt, level));
2543 }
2544
2545 for (unsigned a = 0; a < num_layers; a++) {
2546 if (mt->aux_state[level][start_layer + a] != aux_state) {
2547 mt->aux_state[level][start_layer + a] = aux_state;
2548 brw->ctx.NewDriverState |= BRW_NEW_AUX_STATE;
2549 }
2550 }
2551 }
2552
2553 /* On Gen9 color buffers may be compressed by the hardware (lossless
2554 * compression). There are, however, format restrictions and care needs to be
2555 * taken that the sampler engine is capable for re-interpreting a buffer with
2556 * format different the buffer was originally written with.
2557 *
2558 * For example, SRGB formats are not compressible and the sampler engine isn't
2559 * capable of treating RGBA_UNORM as SRGB_ALPHA. In such a case the underlying
2560 * color buffer needs to be resolved so that the sampling surface can be
2561 * sampled as non-compressed (i.e., without the auxiliary MCS buffer being
2562 * set).
2563 */
2564 static bool
2565 can_texture_with_ccs(struct brw_context *brw,
2566 struct intel_mipmap_tree *mt,
2567 enum isl_format view_format)
2568 {
2569 if (mt->aux_usage != ISL_AUX_USAGE_CCS_E)
2570 return false;
2571
2572 if (!format_ccs_e_compat_with_miptree(&brw->screen->devinfo,
2573 mt, view_format)) {
2574 perf_debug("Incompatible sampling format (%s) for rbc (%s)\n",
2575 isl_format_get_layout(view_format)->name,
2576 _mesa_get_format_name(mt->format));
2577 return false;
2578 }
2579
2580 return true;
2581 }
2582
2583 enum isl_aux_usage
2584 intel_miptree_texture_aux_usage(struct brw_context *brw,
2585 struct intel_mipmap_tree *mt,
2586 enum isl_format view_format)
2587 {
2588 switch (mt->aux_usage) {
2589 case ISL_AUX_USAGE_HIZ:
2590 if (intel_miptree_sample_with_hiz(brw, mt))
2591 return ISL_AUX_USAGE_HIZ;
2592 break;
2593
2594 case ISL_AUX_USAGE_MCS:
2595 return ISL_AUX_USAGE_MCS;
2596
2597 case ISL_AUX_USAGE_CCS_D:
2598 case ISL_AUX_USAGE_CCS_E:
2599 if (!mt->aux_buf) {
2600 assert(mt->aux_usage == ISL_AUX_USAGE_CCS_D);
2601 return ISL_AUX_USAGE_NONE;
2602 }
2603
2604 /* If we don't have any unresolved color, report an aux usage of
2605 * ISL_AUX_USAGE_NONE. This way, texturing won't even look at the
2606 * aux surface and we can save some bandwidth.
2607 */
2608 if (!intel_miptree_has_color_unresolved(mt, 0, INTEL_REMAINING_LEVELS,
2609 0, INTEL_REMAINING_LAYERS))
2610 return ISL_AUX_USAGE_NONE;
2611
2612 if (can_texture_with_ccs(brw, mt, view_format))
2613 return ISL_AUX_USAGE_CCS_E;
2614 break;
2615
2616 default:
2617 break;
2618 }
2619
2620 return ISL_AUX_USAGE_NONE;
2621 }
2622
2623 static bool
2624 isl_formats_are_fast_clear_compatible(enum isl_format a, enum isl_format b)
2625 {
2626 /* On gen8 and earlier, the hardware was only capable of handling 0/1 clear
2627 * values so sRGB curve application was a no-op for all fast-clearable
2628 * formats.
2629 *
2630 * On gen9+, the hardware supports arbitrary clear values. For sRGB clear
2631 * values, the hardware interprets the floats, not as what would be
2632 * returned from the sampler (or written by the shader), but as being
2633 * between format conversion and sRGB curve application. This means that
2634 * we can switch between sRGB and UNORM without having to whack the clear
2635 * color.
2636 */
2637 return isl_format_srgb_to_linear(a) == isl_format_srgb_to_linear(b);
2638 }
2639
2640 void
2641 intel_miptree_prepare_texture(struct brw_context *brw,
2642 struct intel_mipmap_tree *mt,
2643 enum isl_format view_format,
2644 uint32_t start_level, uint32_t num_levels,
2645 uint32_t start_layer, uint32_t num_layers)
2646 {
2647 enum isl_aux_usage aux_usage =
2648 intel_miptree_texture_aux_usage(brw, mt, view_format);
2649 bool clear_supported = aux_usage != ISL_AUX_USAGE_NONE;
2650
2651 /* Clear color is specified as ints or floats and the conversion is done by
2652 * the sampler. If we have a texture view, we would have to perform the
2653 * clear color conversion manually. Just disable clear color.
2654 */
2655 if (!isl_formats_are_fast_clear_compatible(mt->surf.format, view_format))
2656 clear_supported = false;
2657
2658 intel_miptree_prepare_access(brw, mt, start_level, num_levels,
2659 start_layer, num_layers,
2660 aux_usage, clear_supported);
2661 }
2662
2663 void
2664 intel_miptree_prepare_image(struct brw_context *brw,
2665 struct intel_mipmap_tree *mt)
2666 {
2667 /* The data port doesn't understand any compression */
2668 intel_miptree_prepare_access(brw, mt, 0, INTEL_REMAINING_LEVELS,
2669 0, INTEL_REMAINING_LAYERS,
2670 ISL_AUX_USAGE_NONE, false);
2671 }
2672
2673 enum isl_aux_usage
2674 intel_miptree_render_aux_usage(struct brw_context *brw,
2675 struct intel_mipmap_tree *mt,
2676 enum isl_format render_format,
2677 bool blend_enabled,
2678 bool draw_aux_disabled)
2679 {
2680 struct gen_device_info *devinfo = &brw->screen->devinfo;
2681
2682 if (draw_aux_disabled)
2683 return ISL_AUX_USAGE_NONE;
2684
2685 switch (mt->aux_usage) {
2686 case ISL_AUX_USAGE_MCS:
2687 assert(mt->aux_buf);
2688 return ISL_AUX_USAGE_MCS;
2689
2690 case ISL_AUX_USAGE_CCS_D:
2691 case ISL_AUX_USAGE_CCS_E:
2692 if (!mt->aux_buf) {
2693 assert(mt->aux_usage == ISL_AUX_USAGE_CCS_D);
2694 return ISL_AUX_USAGE_NONE;
2695 }
2696
2697 /* gen9+ hardware technically supports non-0/1 clear colors with sRGB
2698 * formats. However, there are issues with blending where it doesn't
2699 * properly apply the sRGB curve to the clear color when blending.
2700 */
2701 if (devinfo->gen >= 9 && blend_enabled &&
2702 isl_format_is_srgb(render_format) &&
2703 !isl_color_value_is_zero_one(mt->fast_clear_color, render_format))
2704 return ISL_AUX_USAGE_NONE;
2705
2706 if (mt->aux_usage == ISL_AUX_USAGE_CCS_E &&
2707 format_ccs_e_compat_with_miptree(&brw->screen->devinfo,
2708 mt, render_format))
2709 return ISL_AUX_USAGE_CCS_E;
2710
2711 /* Otherwise, we have to fall back to CCS_D */
2712 return ISL_AUX_USAGE_CCS_D;
2713
2714 default:
2715 return ISL_AUX_USAGE_NONE;
2716 }
2717 }
2718
2719 void
2720 intel_miptree_prepare_render(struct brw_context *brw,
2721 struct intel_mipmap_tree *mt, uint32_t level,
2722 uint32_t start_layer, uint32_t layer_count,
2723 enum isl_aux_usage aux_usage)
2724 {
2725 intel_miptree_prepare_access(brw, mt, level, 1, start_layer, layer_count,
2726 aux_usage, aux_usage != ISL_AUX_USAGE_NONE);
2727 }
2728
2729 void
2730 intel_miptree_finish_render(struct brw_context *brw,
2731 struct intel_mipmap_tree *mt, uint32_t level,
2732 uint32_t start_layer, uint32_t layer_count,
2733 enum isl_aux_usage aux_usage)
2734 {
2735 assert(_mesa_is_format_color_format(mt->format));
2736
2737 intel_miptree_finish_write(brw, mt, level, start_layer, layer_count,
2738 aux_usage);
2739 }
2740
2741 void
2742 intel_miptree_prepare_depth(struct brw_context *brw,
2743 struct intel_mipmap_tree *mt, uint32_t level,
2744 uint32_t start_layer, uint32_t layer_count)
2745 {
2746 intel_miptree_prepare_access(brw, mt, level, 1, start_layer, layer_count,
2747 mt->aux_usage, mt->aux_buf != NULL);
2748 }
2749
2750 void
2751 intel_miptree_finish_depth(struct brw_context *brw,
2752 struct intel_mipmap_tree *mt, uint32_t level,
2753 uint32_t start_layer, uint32_t layer_count,
2754 bool depth_written)
2755 {
2756 if (depth_written) {
2757 intel_miptree_finish_write(brw, mt, level, start_layer, layer_count,
2758 mt->aux_buf != NULL);
2759 }
2760 }
2761
2762 void
2763 intel_miptree_prepare_external(struct brw_context *brw,
2764 struct intel_mipmap_tree *mt)
2765 {
2766 enum isl_aux_usage aux_usage = ISL_AUX_USAGE_NONE;
2767 bool supports_fast_clear = false;
2768
2769 const struct isl_drm_modifier_info *mod_info =
2770 isl_drm_modifier_get_info(mt->drm_modifier);
2771
2772 if (mod_info && mod_info->aux_usage != ISL_AUX_USAGE_NONE) {
2773 /* CCS_E is the only supported aux for external images and it's only
2774 * supported on very simple images.
2775 */
2776 assert(mod_info->aux_usage == ISL_AUX_USAGE_CCS_E);
2777 assert(_mesa_is_format_color_format(mt->format));
2778 assert(mt->first_level == 0 && mt->last_level == 0);
2779 assert(mt->surf.logical_level0_px.depth == 1);
2780 assert(mt->surf.logical_level0_px.array_len == 1);
2781 assert(mt->surf.samples == 1);
2782 assert(mt->aux_buf != NULL);
2783
2784 aux_usage = mod_info->aux_usage;
2785 supports_fast_clear = mod_info->supports_clear_color;
2786 }
2787
2788 intel_miptree_prepare_access(brw, mt, 0, INTEL_REMAINING_LEVELS,
2789 0, INTEL_REMAINING_LAYERS,
2790 aux_usage, supports_fast_clear);
2791 }
2792
2793 void
2794 intel_miptree_finish_external(struct brw_context *brw,
2795 struct intel_mipmap_tree *mt)
2796 {
2797 if (!mt->aux_buf)
2798 return;
2799
2800 /* We don't know the actual aux state of the aux surface. The previous
2801 * owner could have given it to us in a number of different states.
2802 * Because we don't know the aux state, we reset the aux state to the
2803 * least common denominator of possible valid states.
2804 */
2805 enum isl_aux_state default_aux_state =
2806 isl_drm_modifier_get_default_aux_state(mt->drm_modifier);
2807 assert(mt->last_level == mt->first_level);
2808 intel_miptree_set_aux_state(brw, mt, 0, 0, INTEL_REMAINING_LAYERS,
2809 default_aux_state);
2810 }
2811
2812 /**
2813 * Make it possible to share the BO backing the given miptree with another
2814 * process or another miptree.
2815 *
2816 * Fast color clears are unsafe with shared buffers, so we need to resolve and
2817 * then discard the MCS buffer, if present. We also set the no_ccs flag to
2818 * ensure that no MCS buffer gets allocated in the future.
2819 *
2820 * HiZ is similarly unsafe with shared buffers.
2821 */
2822 void
2823 intel_miptree_make_shareable(struct brw_context *brw,
2824 struct intel_mipmap_tree *mt)
2825 {
2826 /* MCS buffers are also used for multisample buffers, but we can't resolve
2827 * away a multisample MCS buffer because it's an integral part of how the
2828 * pixel data is stored. Fortunately this code path should never be
2829 * reached for multisample buffers.
2830 */
2831 assert(mt->surf.msaa_layout == ISL_MSAA_LAYOUT_NONE ||
2832 mt->surf.samples == 1);
2833
2834 intel_miptree_prepare_access(brw, mt, 0, INTEL_REMAINING_LEVELS,
2835 0, INTEL_REMAINING_LAYERS,
2836 ISL_AUX_USAGE_NONE, false);
2837
2838 if (mt->aux_buf) {
2839 intel_miptree_aux_buffer_free(mt->aux_buf);
2840 mt->aux_buf = NULL;
2841
2842 /* Make future calls of intel_miptree_level_has_hiz() return false. */
2843 for (uint32_t l = mt->first_level; l <= mt->last_level; ++l) {
2844 mt->level[l].has_hiz = false;
2845 }
2846
2847 free(mt->aux_state);
2848 mt->aux_state = NULL;
2849 brw->ctx.NewDriverState |= BRW_NEW_AUX_STATE;
2850 }
2851
2852 mt->aux_usage = ISL_AUX_USAGE_NONE;
2853 mt->supports_fast_clear = false;
2854 }
2855
2856
2857 /**
2858 * \brief Get pointer offset into stencil buffer.
2859 *
2860 * The stencil buffer is W tiled. Since the GTT is incapable of W fencing, we
2861 * must decode the tile's layout in software.
2862 *
2863 * See
2864 * - PRM, 2011 Sandy Bridge, Volume 1, Part 2, Section 4.5.2.1 W-Major Tile
2865 * Format.
2866 * - PRM, 2011 Sandy Bridge, Volume 1, Part 2, Section 4.5.3 Tiling Algorithm
2867 *
2868 * Even though the returned offset is always positive, the return type is
2869 * signed due to
2870 * commit e8b1c6d6f55f5be3bef25084fdd8b6127517e137
2871 * mesa: Fix return type of _mesa_get_format_bytes() (#37351)
2872 */
2873 static intptr_t
2874 intel_offset_S8(uint32_t stride, uint32_t x, uint32_t y, bool swizzled)
2875 {
2876 uint32_t tile_size = 4096;
2877 uint32_t tile_width = 64;
2878 uint32_t tile_height = 64;
2879 uint32_t row_size = 64 * stride / 2; /* Two rows are interleaved. */
2880
2881 uint32_t tile_x = x / tile_width;
2882 uint32_t tile_y = y / tile_height;
2883
2884 /* The byte's address relative to the tile's base addres. */
2885 uint32_t byte_x = x % tile_width;
2886 uint32_t byte_y = y % tile_height;
2887
2888 uintptr_t u = tile_y * row_size
2889 + tile_x * tile_size
2890 + 512 * (byte_x / 8)
2891 + 64 * (byte_y / 8)
2892 + 32 * ((byte_y / 4) % 2)
2893 + 16 * ((byte_x / 4) % 2)
2894 + 8 * ((byte_y / 2) % 2)
2895 + 4 * ((byte_x / 2) % 2)
2896 + 2 * (byte_y % 2)
2897 + 1 * (byte_x % 2);
2898
2899 if (swizzled) {
2900 /* adjust for bit6 swizzling */
2901 if (((byte_x / 8) % 2) == 1) {
2902 if (((byte_y / 8) % 2) == 0) {
2903 u += 64;
2904 } else {
2905 u -= 64;
2906 }
2907 }
2908 }
2909
2910 return u;
2911 }
2912
2913 void
2914 intel_miptree_updownsample(struct brw_context *brw,
2915 struct intel_mipmap_tree *src,
2916 struct intel_mipmap_tree *dst)
2917 {
2918 unsigned src_w = src->surf.logical_level0_px.width;
2919 unsigned src_h = src->surf.logical_level0_px.height;
2920 unsigned dst_w = dst->surf.logical_level0_px.width;
2921 unsigned dst_h = dst->surf.logical_level0_px.height;
2922
2923 brw_blorp_blit_miptrees(brw,
2924 src, 0 /* level */, 0 /* layer */,
2925 src->format, SWIZZLE_XYZW,
2926 dst, 0 /* level */, 0 /* layer */, dst->format,
2927 0, 0, src_w, src_h,
2928 0, 0, dst_w, dst_h,
2929 GL_NEAREST, false, false /*mirror x, y*/,
2930 false, false);
2931
2932 if (src->stencil_mt) {
2933 src_w = src->stencil_mt->surf.logical_level0_px.width;
2934 src_h = src->stencil_mt->surf.logical_level0_px.height;
2935 dst_w = dst->stencil_mt->surf.logical_level0_px.width;
2936 dst_h = dst->stencil_mt->surf.logical_level0_px.height;
2937
2938 brw_blorp_blit_miptrees(brw,
2939 src->stencil_mt, 0 /* level */, 0 /* layer */,
2940 src->stencil_mt->format, SWIZZLE_XYZW,
2941 dst->stencil_mt, 0 /* level */, 0 /* layer */,
2942 dst->stencil_mt->format,
2943 0, 0, src_w, src_h,
2944 0, 0, dst_w, dst_h,
2945 GL_NEAREST, false, false /*mirror x, y*/,
2946 false, false /* decode/encode srgb */);
2947 }
2948 }
2949
2950 void
2951 intel_update_r8stencil(struct brw_context *brw,
2952 struct intel_mipmap_tree *mt)
2953 {
2954 const struct gen_device_info *devinfo = &brw->screen->devinfo;
2955
2956 assert(devinfo->gen >= 7);
2957 struct intel_mipmap_tree *src =
2958 mt->format == MESA_FORMAT_S_UINT8 ? mt : mt->stencil_mt;
2959 if (!src || devinfo->gen >= 8 || !src->r8stencil_needs_update)
2960 return;
2961
2962 assert(src->surf.size > 0);
2963
2964 if (!mt->r8stencil_mt) {
2965 assert(devinfo->gen > 6); /* Handle MIPTREE_LAYOUT_GEN6_HIZ_STENCIL */
2966 mt->r8stencil_mt = make_surface(
2967 brw,
2968 src->target,
2969 MESA_FORMAT_R_UINT8,
2970 src->first_level, src->last_level,
2971 src->surf.logical_level0_px.width,
2972 src->surf.logical_level0_px.height,
2973 src->surf.dim == ISL_SURF_DIM_3D ?
2974 src->surf.logical_level0_px.depth :
2975 src->surf.logical_level0_px.array_len,
2976 src->surf.samples,
2977 ISL_TILING_Y0_BIT,
2978 ISL_SURF_USAGE_TEXTURE_BIT,
2979 BO_ALLOC_BUSY, 0, NULL);
2980 assert(mt->r8stencil_mt);
2981 }
2982
2983 struct intel_mipmap_tree *dst = mt->r8stencil_mt;
2984
2985 for (int level = src->first_level; level <= src->last_level; level++) {
2986 const unsigned depth = src->surf.dim == ISL_SURF_DIM_3D ?
2987 minify(src->surf.phys_level0_sa.depth, level) :
2988 src->surf.phys_level0_sa.array_len;
2989
2990 for (unsigned layer = 0; layer < depth; layer++) {
2991 brw_blorp_copy_miptrees(brw,
2992 src, level, layer,
2993 dst, level, layer,
2994 0, 0, 0, 0,
2995 minify(src->surf.logical_level0_px.width,
2996 level),
2997 minify(src->surf.logical_level0_px.height,
2998 level));
2999 }
3000 }
3001
3002 brw_cache_flush_for_read(brw, dst->bo);
3003 src->r8stencil_needs_update = false;
3004 }
3005
3006 static void *
3007 intel_miptree_map_raw(struct brw_context *brw,
3008 struct intel_mipmap_tree *mt,
3009 GLbitfield mode)
3010 {
3011 struct brw_bo *bo = mt->bo;
3012
3013 if (brw_batch_references(&brw->batch, bo))
3014 intel_batchbuffer_flush(brw);
3015
3016 return brw_bo_map(brw, bo, mode);
3017 }
3018
3019 static void
3020 intel_miptree_unmap_raw(struct intel_mipmap_tree *mt)
3021 {
3022 brw_bo_unmap(mt->bo);
3023 }
3024
3025 static void
3026 intel_miptree_unmap_gtt(struct brw_context *brw,
3027 struct intel_mipmap_tree *mt,
3028 struct intel_miptree_map *map,
3029 unsigned int level, unsigned int slice)
3030 {
3031 intel_miptree_unmap_raw(mt);
3032 }
3033
3034 static void
3035 intel_miptree_map_gtt(struct brw_context *brw,
3036 struct intel_mipmap_tree *mt,
3037 struct intel_miptree_map *map,
3038 unsigned int level, unsigned int slice)
3039 {
3040 unsigned int bw, bh;
3041 void *base;
3042 unsigned int image_x, image_y;
3043 intptr_t x = map->x;
3044 intptr_t y = map->y;
3045
3046 /* For compressed formats, the stride is the number of bytes per
3047 * row of blocks. intel_miptree_get_image_offset() already does
3048 * the divide.
3049 */
3050 _mesa_get_format_block_size(mt->format, &bw, &bh);
3051 assert(y % bh == 0);
3052 assert(x % bw == 0);
3053 y /= bh;
3054 x /= bw;
3055
3056 intel_miptree_access_raw(brw, mt, level, slice,
3057 map->mode & GL_MAP_WRITE_BIT);
3058
3059 base = intel_miptree_map_raw(brw, mt, map->mode);
3060
3061 if (base == NULL)
3062 map->ptr = NULL;
3063 else {
3064 base += mt->offset;
3065
3066 /* Note that in the case of cube maps, the caller must have passed the
3067 * slice number referencing the face.
3068 */
3069 intel_miptree_get_image_offset(mt, level, slice, &image_x, &image_y);
3070 x += image_x;
3071 y += image_y;
3072
3073 map->stride = mt->surf.row_pitch;
3074 map->ptr = base + y * map->stride + x * mt->cpp;
3075 }
3076
3077 DBG("%s: %d,%d %dx%d from mt %p (%s) "
3078 "%"PRIiPTR",%"PRIiPTR" = %p/%d\n", __func__,
3079 map->x, map->y, map->w, map->h,
3080 mt, _mesa_get_format_name(mt->format),
3081 x, y, map->ptr, map->stride);
3082
3083 map->unmap = intel_miptree_unmap_gtt;
3084 }
3085
3086 static void
3087 intel_miptree_unmap_blit(struct brw_context *brw,
3088 struct intel_mipmap_tree *mt,
3089 struct intel_miptree_map *map,
3090 unsigned int level,
3091 unsigned int slice)
3092 {
3093 const struct gen_device_info *devinfo = &brw->screen->devinfo;
3094 struct gl_context *ctx = &brw->ctx;
3095
3096 intel_miptree_unmap_raw(map->linear_mt);
3097
3098 if (map->mode & GL_MAP_WRITE_BIT) {
3099 if (devinfo->gen >= 6) {
3100 brw_blorp_copy_miptrees(brw, map->linear_mt, 0, 0,
3101 mt, level, slice,
3102 0, 0, map->x, map->y, map->w, map->h);
3103 } else {
3104 bool ok = intel_miptree_copy(brw,
3105 map->linear_mt, 0, 0, 0, 0,
3106 mt, level, slice, map->x, map->y,
3107 map->w, map->h);
3108 WARN_ONCE(!ok, "Failed to blit from linear temporary mapping");
3109 }
3110 }
3111
3112 intel_miptree_release(&map->linear_mt);
3113 }
3114
3115 static void
3116 intel_miptree_map_blit(struct brw_context *brw,
3117 struct intel_mipmap_tree *mt,
3118 struct intel_miptree_map *map,
3119 unsigned int level, unsigned int slice)
3120 {
3121 const struct gen_device_info *devinfo = &brw->screen->devinfo;
3122 map->linear_mt = make_surface(brw, GL_TEXTURE_2D, mt->format,
3123 0, 0, map->w, map->h, 1, 1,
3124 ISL_TILING_LINEAR_BIT,
3125 ISL_SURF_USAGE_RENDER_TARGET_BIT |
3126 ISL_SURF_USAGE_TEXTURE_BIT,
3127 0, 0, NULL);
3128
3129 if (!map->linear_mt) {
3130 fprintf(stderr, "Failed to allocate blit temporary\n");
3131 goto fail;
3132 }
3133 map->stride = map->linear_mt->surf.row_pitch;
3134
3135 /* One of either READ_BIT or WRITE_BIT or both is set. READ_BIT implies no
3136 * INVALIDATE_RANGE_BIT. WRITE_BIT needs the original values read in unless
3137 * invalidate is set, since we'll be writing the whole rectangle from our
3138 * temporary buffer back out.
3139 */
3140 if (!(map->mode & GL_MAP_INVALIDATE_RANGE_BIT)) {
3141 if (devinfo->gen >= 6) {
3142 brw_blorp_copy_miptrees(brw, mt, level, slice,
3143 map->linear_mt, 0, 0,
3144 map->x, map->y, 0, 0, map->w, map->h);
3145 } else {
3146 if (!intel_miptree_copy(brw,
3147 mt, level, slice, map->x, map->y,
3148 map->linear_mt, 0, 0, 0, 0,
3149 map->w, map->h)) {
3150 fprintf(stderr, "Failed to blit\n");
3151 goto fail;
3152 }
3153 }
3154 }
3155
3156 map->ptr = intel_miptree_map_raw(brw, map->linear_mt, map->mode);
3157
3158 DBG("%s: %d,%d %dx%d from mt %p (%s) %d,%d = %p/%d\n", __func__,
3159 map->x, map->y, map->w, map->h,
3160 mt, _mesa_get_format_name(mt->format),
3161 level, slice, map->ptr, map->stride);
3162
3163 map->unmap = intel_miptree_unmap_blit;
3164 return;
3165
3166 fail:
3167 intel_miptree_release(&map->linear_mt);
3168 map->ptr = NULL;
3169 map->stride = 0;
3170 }
3171
3172 /**
3173 * "Map" a buffer by copying it to an untiled temporary using MOVNTDQA.
3174 */
3175 #if defined(USE_SSE41)
3176 static void
3177 intel_miptree_unmap_movntdqa(struct brw_context *brw,
3178 struct intel_mipmap_tree *mt,
3179 struct intel_miptree_map *map,
3180 unsigned int level,
3181 unsigned int slice)
3182 {
3183 _mesa_align_free(map->buffer);
3184 map->buffer = NULL;
3185 map->ptr = NULL;
3186 }
3187
3188 static void
3189 intel_miptree_map_movntdqa(struct brw_context *brw,
3190 struct intel_mipmap_tree *mt,
3191 struct intel_miptree_map *map,
3192 unsigned int level, unsigned int slice)
3193 {
3194 assert(map->mode & GL_MAP_READ_BIT);
3195 assert(!(map->mode & GL_MAP_WRITE_BIT));
3196
3197 intel_miptree_access_raw(brw, mt, level, slice, false);
3198
3199 DBG("%s: %d,%d %dx%d from mt %p (%s) %d,%d = %p/%d\n", __func__,
3200 map->x, map->y, map->w, map->h,
3201 mt, _mesa_get_format_name(mt->format),
3202 level, slice, map->ptr, map->stride);
3203
3204 /* Map the original image */
3205 uint32_t image_x;
3206 uint32_t image_y;
3207 intel_miptree_get_image_offset(mt, level, slice, &image_x, &image_y);
3208 image_x += map->x;
3209 image_y += map->y;
3210
3211 void *src = intel_miptree_map_raw(brw, mt, map->mode);
3212 if (!src)
3213 return;
3214
3215 src += mt->offset;
3216
3217 src += image_y * mt->surf.row_pitch;
3218 src += image_x * mt->cpp;
3219
3220 /* Due to the pixel offsets for the particular image being mapped, our
3221 * src pointer may not be 16-byte aligned. However, if the pitch is
3222 * divisible by 16, then the amount by which it's misaligned will remain
3223 * consistent from row to row.
3224 */
3225 assert((mt->surf.row_pitch % 16) == 0);
3226 const int misalignment = ((uintptr_t) src) & 15;
3227
3228 /* Create an untiled temporary buffer for the mapping. */
3229 const unsigned width_bytes = _mesa_format_row_stride(mt->format, map->w);
3230
3231 map->stride = ALIGN(misalignment + width_bytes, 16);
3232
3233 map->buffer = _mesa_align_malloc(map->stride * map->h, 16);
3234 /* Offset the destination so it has the same misalignment as src. */
3235 map->ptr = map->buffer + misalignment;
3236
3237 assert((((uintptr_t) map->ptr) & 15) == misalignment);
3238
3239 for (uint32_t y = 0; y < map->h; y++) {
3240 void *dst_ptr = map->ptr + y * map->stride;
3241 void *src_ptr = src + y * mt->surf.row_pitch;
3242
3243 _mesa_streaming_load_memcpy(dst_ptr, src_ptr, width_bytes);
3244 }
3245
3246 intel_miptree_unmap_raw(mt);
3247
3248 map->unmap = intel_miptree_unmap_movntdqa;
3249 }
3250 #endif
3251
3252 static void
3253 intel_miptree_unmap_s8(struct brw_context *brw,
3254 struct intel_mipmap_tree *mt,
3255 struct intel_miptree_map *map,
3256 unsigned int level,
3257 unsigned int slice)
3258 {
3259 if (map->mode & GL_MAP_WRITE_BIT) {
3260 unsigned int image_x, image_y;
3261 uint8_t *untiled_s8_map = map->ptr;
3262 uint8_t *tiled_s8_map = intel_miptree_map_raw(brw, mt, GL_MAP_WRITE_BIT);
3263
3264 intel_miptree_get_image_offset(mt, level, slice, &image_x, &image_y);
3265
3266 for (uint32_t y = 0; y < map->h; y++) {
3267 for (uint32_t x = 0; x < map->w; x++) {
3268 ptrdiff_t offset = intel_offset_S8(mt->surf.row_pitch,
3269 image_x + x + map->x,
3270 image_y + y + map->y,
3271 brw->has_swizzling);
3272 tiled_s8_map[offset] = untiled_s8_map[y * map->w + x];
3273 }
3274 }
3275
3276 intel_miptree_unmap_raw(mt);
3277 }
3278
3279 free(map->buffer);
3280 }
3281
3282 static void
3283 intel_miptree_map_s8(struct brw_context *brw,
3284 struct intel_mipmap_tree *mt,
3285 struct intel_miptree_map *map,
3286 unsigned int level, unsigned int slice)
3287 {
3288 map->stride = map->w;
3289 map->buffer = map->ptr = malloc(map->stride * map->h);
3290 if (!map->buffer)
3291 return;
3292
3293 intel_miptree_access_raw(brw, mt, level, slice,
3294 map->mode & GL_MAP_WRITE_BIT);
3295
3296 /* One of either READ_BIT or WRITE_BIT or both is set. READ_BIT implies no
3297 * INVALIDATE_RANGE_BIT. WRITE_BIT needs the original values read in unless
3298 * invalidate is set, since we'll be writing the whole rectangle from our
3299 * temporary buffer back out.
3300 */
3301 if (!(map->mode & GL_MAP_INVALIDATE_RANGE_BIT)) {
3302 uint8_t *untiled_s8_map = map->ptr;
3303 uint8_t *tiled_s8_map = intel_miptree_map_raw(brw, mt, GL_MAP_READ_BIT);
3304 unsigned int image_x, image_y;
3305
3306 intel_miptree_get_image_offset(mt, level, slice, &image_x, &image_y);
3307
3308 for (uint32_t y = 0; y < map->h; y++) {
3309 for (uint32_t x = 0; x < map->w; x++) {
3310 ptrdiff_t offset = intel_offset_S8(mt->surf.row_pitch,
3311 x + image_x + map->x,
3312 y + image_y + map->y,
3313 brw->has_swizzling);
3314 untiled_s8_map[y * map->w + x] = tiled_s8_map[offset];
3315 }
3316 }
3317
3318 intel_miptree_unmap_raw(mt);
3319
3320 DBG("%s: %d,%d %dx%d from mt %p %d,%d = %p/%d\n", __func__,
3321 map->x, map->y, map->w, map->h,
3322 mt, map->x + image_x, map->y + image_y, map->ptr, map->stride);
3323 } else {
3324 DBG("%s: %d,%d %dx%d from mt %p = %p/%d\n", __func__,
3325 map->x, map->y, map->w, map->h,
3326 mt, map->ptr, map->stride);
3327 }
3328
3329 map->unmap = intel_miptree_unmap_s8;
3330 }
3331
3332 static void
3333 intel_miptree_unmap_etc(struct brw_context *brw,
3334 struct intel_mipmap_tree *mt,
3335 struct intel_miptree_map *map,
3336 unsigned int level,
3337 unsigned int slice)
3338 {
3339 uint32_t image_x;
3340 uint32_t image_y;
3341 intel_miptree_get_image_offset(mt, level, slice, &image_x, &image_y);
3342
3343 image_x += map->x;
3344 image_y += map->y;
3345
3346 uint8_t *dst = intel_miptree_map_raw(brw, mt, GL_MAP_WRITE_BIT)
3347 + image_y * mt->surf.row_pitch
3348 + image_x * mt->cpp;
3349
3350 if (mt->etc_format == MESA_FORMAT_ETC1_RGB8)
3351 _mesa_etc1_unpack_rgba8888(dst, mt->surf.row_pitch,
3352 map->ptr, map->stride,
3353 map->w, map->h);
3354 else
3355 _mesa_unpack_etc2_format(dst, mt->surf.row_pitch,
3356 map->ptr, map->stride,
3357 map->w, map->h, mt->etc_format, true);
3358
3359 intel_miptree_unmap_raw(mt);
3360 free(map->buffer);
3361 }
3362
3363 static void
3364 intel_miptree_map_etc(struct brw_context *brw,
3365 struct intel_mipmap_tree *mt,
3366 struct intel_miptree_map *map,
3367 unsigned int level,
3368 unsigned int slice)
3369 {
3370 assert(mt->etc_format != MESA_FORMAT_NONE);
3371 if (mt->etc_format == MESA_FORMAT_ETC1_RGB8) {
3372 assert(mt->format == MESA_FORMAT_R8G8B8X8_UNORM);
3373 }
3374
3375 assert(map->mode & GL_MAP_WRITE_BIT);
3376 assert(map->mode & GL_MAP_INVALIDATE_RANGE_BIT);
3377
3378 intel_miptree_access_raw(brw, mt, level, slice, true);
3379
3380 map->stride = _mesa_format_row_stride(mt->etc_format, map->w);
3381 map->buffer = malloc(_mesa_format_image_size(mt->etc_format,
3382 map->w, map->h, 1));
3383 map->ptr = map->buffer;
3384 map->unmap = intel_miptree_unmap_etc;
3385 }
3386
3387 /**
3388 * Mapping functions for packed depth/stencil miptrees backed by real separate
3389 * miptrees for depth and stencil.
3390 *
3391 * On gen7, and to support HiZ pre-gen7, we have to have the stencil buffer
3392 * separate from the depth buffer. Yet at the GL API level, we have to expose
3393 * packed depth/stencil textures and FBO attachments, and Mesa core expects to
3394 * be able to map that memory for texture storage and glReadPixels-type
3395 * operations. We give Mesa core that access by mallocing a temporary and
3396 * copying the data between the actual backing store and the temporary.
3397 */
3398 static void
3399 intel_miptree_unmap_depthstencil(struct brw_context *brw,
3400 struct intel_mipmap_tree *mt,
3401 struct intel_miptree_map *map,
3402 unsigned int level,
3403 unsigned int slice)
3404 {
3405 struct intel_mipmap_tree *z_mt = mt;
3406 struct intel_mipmap_tree *s_mt = mt->stencil_mt;
3407 bool map_z32f_x24s8 = mt->format == MESA_FORMAT_Z_FLOAT32;
3408
3409 if (map->mode & GL_MAP_WRITE_BIT) {
3410 uint32_t *packed_map = map->ptr;
3411 uint8_t *s_map = intel_miptree_map_raw(brw, s_mt, GL_MAP_WRITE_BIT);
3412 uint32_t *z_map = intel_miptree_map_raw(brw, z_mt, GL_MAP_WRITE_BIT);
3413 unsigned int s_image_x, s_image_y;
3414 unsigned int z_image_x, z_image_y;
3415
3416 intel_miptree_get_image_offset(s_mt, level, slice,
3417 &s_image_x, &s_image_y);
3418 intel_miptree_get_image_offset(z_mt, level, slice,
3419 &z_image_x, &z_image_y);
3420
3421 for (uint32_t y = 0; y < map->h; y++) {
3422 for (uint32_t x = 0; x < map->w; x++) {
3423 ptrdiff_t s_offset = intel_offset_S8(s_mt->surf.row_pitch,
3424 x + s_image_x + map->x,
3425 y + s_image_y + map->y,
3426 brw->has_swizzling);
3427 ptrdiff_t z_offset = ((y + z_image_y + map->y) *
3428 (z_mt->surf.row_pitch / 4) +
3429 (x + z_image_x + map->x));
3430
3431 if (map_z32f_x24s8) {
3432 z_map[z_offset] = packed_map[(y * map->w + x) * 2 + 0];
3433 s_map[s_offset] = packed_map[(y * map->w + x) * 2 + 1];
3434 } else {
3435 uint32_t packed = packed_map[y * map->w + x];
3436 s_map[s_offset] = packed >> 24;
3437 z_map[z_offset] = packed;
3438 }
3439 }
3440 }
3441
3442 intel_miptree_unmap_raw(s_mt);
3443 intel_miptree_unmap_raw(z_mt);
3444
3445 DBG("%s: %d,%d %dx%d from z mt %p (%s) %d,%d, s mt %p %d,%d = %p/%d\n",
3446 __func__,
3447 map->x, map->y, map->w, map->h,
3448 z_mt, _mesa_get_format_name(z_mt->format),
3449 map->x + z_image_x, map->y + z_image_y,
3450 s_mt, map->x + s_image_x, map->y + s_image_y,
3451 map->ptr, map->stride);
3452 }
3453
3454 free(map->buffer);
3455 }
3456
3457 static void
3458 intel_miptree_map_depthstencil(struct brw_context *brw,
3459 struct intel_mipmap_tree *mt,
3460 struct intel_miptree_map *map,
3461 unsigned int level, unsigned int slice)
3462 {
3463 struct intel_mipmap_tree *z_mt = mt;
3464 struct intel_mipmap_tree *s_mt = mt->stencil_mt;
3465 bool map_z32f_x24s8 = mt->format == MESA_FORMAT_Z_FLOAT32;
3466 int packed_bpp = map_z32f_x24s8 ? 8 : 4;
3467
3468 map->stride = map->w * packed_bpp;
3469 map->buffer = map->ptr = malloc(map->stride * map->h);
3470 if (!map->buffer)
3471 return;
3472
3473 intel_miptree_access_raw(brw, z_mt, level, slice,
3474 map->mode & GL_MAP_WRITE_BIT);
3475 intel_miptree_access_raw(brw, s_mt, level, slice,
3476 map->mode & GL_MAP_WRITE_BIT);
3477
3478 /* One of either READ_BIT or WRITE_BIT or both is set. READ_BIT implies no
3479 * INVALIDATE_RANGE_BIT. WRITE_BIT needs the original values read in unless
3480 * invalidate is set, since we'll be writing the whole rectangle from our
3481 * temporary buffer back out.
3482 */
3483 if (!(map->mode & GL_MAP_INVALIDATE_RANGE_BIT)) {
3484 uint32_t *packed_map = map->ptr;
3485 uint8_t *s_map = intel_miptree_map_raw(brw, s_mt, GL_MAP_READ_BIT);
3486 uint32_t *z_map = intel_miptree_map_raw(brw, z_mt, GL_MAP_READ_BIT);
3487 unsigned int s_image_x, s_image_y;
3488 unsigned int z_image_x, z_image_y;
3489
3490 intel_miptree_get_image_offset(s_mt, level, slice,
3491 &s_image_x, &s_image_y);
3492 intel_miptree_get_image_offset(z_mt, level, slice,
3493 &z_image_x, &z_image_y);
3494
3495 for (uint32_t y = 0; y < map->h; y++) {
3496 for (uint32_t x = 0; x < map->w; x++) {
3497 int map_x = map->x + x, map_y = map->y + y;
3498 ptrdiff_t s_offset = intel_offset_S8(s_mt->surf.row_pitch,
3499 map_x + s_image_x,
3500 map_y + s_image_y,
3501 brw->has_swizzling);
3502 ptrdiff_t z_offset = ((map_y + z_image_y) *
3503 (z_mt->surf.row_pitch / 4) +
3504 (map_x + z_image_x));
3505 uint8_t s = s_map[s_offset];
3506 uint32_t z = z_map[z_offset];
3507
3508 if (map_z32f_x24s8) {
3509 packed_map[(y * map->w + x) * 2 + 0] = z;
3510 packed_map[(y * map->w + x) * 2 + 1] = s;
3511 } else {
3512 packed_map[y * map->w + x] = (s << 24) | (z & 0x00ffffff);
3513 }
3514 }
3515 }
3516
3517 intel_miptree_unmap_raw(s_mt);
3518 intel_miptree_unmap_raw(z_mt);
3519
3520 DBG("%s: %d,%d %dx%d from z mt %p %d,%d, s mt %p %d,%d = %p/%d\n",
3521 __func__,
3522 map->x, map->y, map->w, map->h,
3523 z_mt, map->x + z_image_x, map->y + z_image_y,
3524 s_mt, map->x + s_image_x, map->y + s_image_y,
3525 map->ptr, map->stride);
3526 } else {
3527 DBG("%s: %d,%d %dx%d from mt %p = %p/%d\n", __func__,
3528 map->x, map->y, map->w, map->h,
3529 mt, map->ptr, map->stride);
3530 }
3531
3532 map->unmap = intel_miptree_unmap_depthstencil;
3533 }
3534
3535 /**
3536 * Create and attach a map to the miptree at (level, slice). Return the
3537 * attached map.
3538 */
3539 static struct intel_miptree_map*
3540 intel_miptree_attach_map(struct intel_mipmap_tree *mt,
3541 unsigned int level,
3542 unsigned int slice,
3543 unsigned int x,
3544 unsigned int y,
3545 unsigned int w,
3546 unsigned int h,
3547 GLbitfield mode)
3548 {
3549 struct intel_miptree_map *map = calloc(1, sizeof(*map));
3550
3551 if (!map)
3552 return NULL;
3553
3554 assert(mt->level[level].slice[slice].map == NULL);
3555 mt->level[level].slice[slice].map = map;
3556
3557 map->mode = mode;
3558 map->x = x;
3559 map->y = y;
3560 map->w = w;
3561 map->h = h;
3562
3563 return map;
3564 }
3565
3566 /**
3567 * Release the map at (level, slice).
3568 */
3569 static void
3570 intel_miptree_release_map(struct intel_mipmap_tree *mt,
3571 unsigned int level,
3572 unsigned int slice)
3573 {
3574 struct intel_miptree_map **map;
3575
3576 map = &mt->level[level].slice[slice].map;
3577 free(*map);
3578 *map = NULL;
3579 }
3580
3581 static bool
3582 can_blit_slice(struct intel_mipmap_tree *mt,
3583 unsigned int level, unsigned int slice)
3584 {
3585 /* See intel_miptree_blit() for details on the 32k pitch limit. */
3586 if (intel_miptree_blt_pitch(mt) >= 32768)
3587 return false;
3588
3589 return true;
3590 }
3591
3592 static bool
3593 use_intel_mipree_map_blit(struct brw_context *brw,
3594 struct intel_mipmap_tree *mt,
3595 GLbitfield mode,
3596 unsigned int level,
3597 unsigned int slice)
3598 {
3599 const struct gen_device_info *devinfo = &brw->screen->devinfo;
3600
3601 if (devinfo->has_llc &&
3602 /* It's probably not worth swapping to the blit ring because of
3603 * all the overhead involved.
3604 */
3605 !(mode & GL_MAP_WRITE_BIT) &&
3606 !mt->compressed &&
3607 (mt->surf.tiling == ISL_TILING_X ||
3608 /* Prior to Sandybridge, the blitter can't handle Y tiling */
3609 (devinfo->gen >= 6 && mt->surf.tiling == ISL_TILING_Y0) ||
3610 /* Fast copy blit on skl+ supports all tiling formats. */
3611 devinfo->gen >= 9) &&
3612 can_blit_slice(mt, level, slice))
3613 return true;
3614
3615 if (mt->surf.tiling != ISL_TILING_LINEAR &&
3616 mt->bo->size >= brw->max_gtt_map_object_size) {
3617 assert(can_blit_slice(mt, level, slice));
3618 return true;
3619 }
3620
3621 return false;
3622 }
3623
3624 /**
3625 * Parameter \a out_stride has type ptrdiff_t not because the buffer stride may
3626 * exceed 32 bits but to diminish the likelihood subtle bugs in pointer
3627 * arithmetic overflow.
3628 *
3629 * If you call this function and use \a out_stride, then you're doing pointer
3630 * arithmetic on \a out_ptr. The type of \a out_stride doesn't prevent all
3631 * bugs. The caller must still take care to avoid 32-bit overflow errors in
3632 * all arithmetic expressions that contain buffer offsets and pixel sizes,
3633 * which usually have type uint32_t or GLuint.
3634 */
3635 void
3636 intel_miptree_map(struct brw_context *brw,
3637 struct intel_mipmap_tree *mt,
3638 unsigned int level,
3639 unsigned int slice,
3640 unsigned int x,
3641 unsigned int y,
3642 unsigned int w,
3643 unsigned int h,
3644 GLbitfield mode,
3645 void **out_ptr,
3646 ptrdiff_t *out_stride)
3647 {
3648 struct intel_miptree_map *map;
3649
3650 assert(mt->surf.samples == 1);
3651
3652 map = intel_miptree_attach_map(mt, level, slice, x, y, w, h, mode);
3653 if (!map){
3654 *out_ptr = NULL;
3655 *out_stride = 0;
3656 return;
3657 }
3658
3659 if (mt->format == MESA_FORMAT_S_UINT8) {
3660 intel_miptree_map_s8(brw, mt, map, level, slice);
3661 } else if (mt->etc_format != MESA_FORMAT_NONE &&
3662 !(mode & BRW_MAP_DIRECT_BIT)) {
3663 intel_miptree_map_etc(brw, mt, map, level, slice);
3664 } else if (mt->stencil_mt && !(mode & BRW_MAP_DIRECT_BIT)) {
3665 intel_miptree_map_depthstencil(brw, mt, map, level, slice);
3666 } else if (use_intel_mipree_map_blit(brw, mt, mode, level, slice)) {
3667 intel_miptree_map_blit(brw, mt, map, level, slice);
3668 #if defined(USE_SSE41)
3669 } else if (!(mode & GL_MAP_WRITE_BIT) &&
3670 !mt->compressed && cpu_has_sse4_1 &&
3671 (mt->surf.row_pitch % 16 == 0)) {
3672 intel_miptree_map_movntdqa(brw, mt, map, level, slice);
3673 #endif
3674 } else {
3675 intel_miptree_map_gtt(brw, mt, map, level, slice);
3676 }
3677
3678 *out_ptr = map->ptr;
3679 *out_stride = map->stride;
3680
3681 if (map->ptr == NULL)
3682 intel_miptree_release_map(mt, level, slice);
3683 }
3684
3685 void
3686 intel_miptree_unmap(struct brw_context *brw,
3687 struct intel_mipmap_tree *mt,
3688 unsigned int level,
3689 unsigned int slice)
3690 {
3691 struct intel_miptree_map *map = mt->level[level].slice[slice].map;
3692
3693 assert(mt->surf.samples == 1);
3694
3695 if (!map)
3696 return;
3697
3698 DBG("%s: mt %p (%s) level %d slice %d\n", __func__,
3699 mt, _mesa_get_format_name(mt->format), level, slice);
3700
3701 if (map->unmap)
3702 map->unmap(brw, mt, map, level, slice);
3703
3704 intel_miptree_release_map(mt, level, slice);
3705 }
3706
3707 enum isl_surf_dim
3708 get_isl_surf_dim(GLenum target)
3709 {
3710 switch (target) {
3711 case GL_TEXTURE_1D:
3712 case GL_TEXTURE_1D_ARRAY:
3713 return ISL_SURF_DIM_1D;
3714
3715 case GL_TEXTURE_2D:
3716 case GL_TEXTURE_2D_ARRAY:
3717 case GL_TEXTURE_RECTANGLE:
3718 case GL_TEXTURE_CUBE_MAP:
3719 case GL_TEXTURE_CUBE_MAP_ARRAY:
3720 case GL_TEXTURE_2D_MULTISAMPLE:
3721 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
3722 case GL_TEXTURE_EXTERNAL_OES:
3723 return ISL_SURF_DIM_2D;
3724
3725 case GL_TEXTURE_3D:
3726 return ISL_SURF_DIM_3D;
3727 }
3728
3729 unreachable("Invalid texture target");
3730 }
3731
3732 enum isl_dim_layout
3733 get_isl_dim_layout(const struct gen_device_info *devinfo,
3734 enum isl_tiling tiling, GLenum target)
3735 {
3736 switch (target) {
3737 case GL_TEXTURE_1D:
3738 case GL_TEXTURE_1D_ARRAY:
3739 return (devinfo->gen >= 9 && tiling == ISL_TILING_LINEAR ?
3740 ISL_DIM_LAYOUT_GEN9_1D : ISL_DIM_LAYOUT_GEN4_2D);
3741
3742 case GL_TEXTURE_2D:
3743 case GL_TEXTURE_2D_ARRAY:
3744 case GL_TEXTURE_RECTANGLE:
3745 case GL_TEXTURE_2D_MULTISAMPLE:
3746 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
3747 case GL_TEXTURE_EXTERNAL_OES:
3748 return ISL_DIM_LAYOUT_GEN4_2D;
3749
3750 case GL_TEXTURE_CUBE_MAP:
3751 case GL_TEXTURE_CUBE_MAP_ARRAY:
3752 return (devinfo->gen == 4 ? ISL_DIM_LAYOUT_GEN4_3D :
3753 ISL_DIM_LAYOUT_GEN4_2D);
3754
3755 case GL_TEXTURE_3D:
3756 return (devinfo->gen >= 9 ?
3757 ISL_DIM_LAYOUT_GEN4_2D : ISL_DIM_LAYOUT_GEN4_3D);
3758 }
3759
3760 unreachable("Invalid texture target");
3761 }
3762
3763 bool
3764 intel_miptree_set_clear_color(struct brw_context *brw,
3765 struct intel_mipmap_tree *mt,
3766 union isl_color_value clear_color)
3767 {
3768 if (memcmp(&mt->fast_clear_color, &clear_color, sizeof(clear_color)) != 0) {
3769 mt->fast_clear_color = clear_color;
3770 if (mt->aux_buf->clear_color_bo) {
3771 /* We can't update the clear color while the hardware is still using
3772 * the previous one for a resolve or sampling from it. Make sure that
3773 * there are no pending commands at this point.
3774 */
3775 brw_emit_pipe_control_flush(brw, PIPE_CONTROL_CS_STALL);
3776 for (int i = 0; i < 4; i++) {
3777 brw_store_data_imm32(brw, mt->aux_buf->clear_color_bo,
3778 mt->aux_buf->clear_color_offset + i * 4,
3779 mt->fast_clear_color.u32[i]);
3780 }
3781 brw_emit_pipe_control_flush(brw, PIPE_CONTROL_STATE_CACHE_INVALIDATE);
3782 }
3783 brw->ctx.NewDriverState |= BRW_NEW_AUX_STATE;
3784 return true;
3785 }
3786 return false;
3787 }
3788
3789 union isl_color_value
3790 intel_miptree_get_clear_color(const struct gen_device_info *devinfo,
3791 const struct intel_mipmap_tree *mt,
3792 enum isl_format view_format, bool sampling,
3793 struct brw_bo **clear_color_bo,
3794 uint32_t *clear_color_offset)
3795 {
3796 assert(mt->aux_buf);
3797
3798 if (devinfo->gen == 10 && isl_format_is_srgb(view_format) && sampling) {
3799 /* The gen10 sampler doesn't gamma-correct the clear color. In this case,
3800 * we switch to using the inline clear color and do the sRGB color
3801 * conversion process defined in the OpenGL spec. The red, green, and
3802 * blue channels take part in gamma correction, while the alpha channel
3803 * is unchanged.
3804 */
3805 union isl_color_value srgb_decoded_value = mt->fast_clear_color;
3806 for (unsigned i = 0; i < 3; i++) {
3807 srgb_decoded_value.f32[i] =
3808 util_format_srgb_to_linear_float(mt->fast_clear_color.f32[i]);
3809 }
3810 *clear_color_bo = 0;
3811 *clear_color_offset = 0;
3812 return srgb_decoded_value;
3813 } else {
3814 *clear_color_bo = mt->aux_buf->clear_color_bo;
3815 *clear_color_offset = mt->aux_buf->clear_color_offset;
3816 return mt->fast_clear_color;
3817 }
3818 }