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