vk: Add four unit tests for our lock-free data-structures
[mesa.git] / src / mesa / drivers / dri / i965 / brw_tex_layout.c
1 /*
2 * Copyright 2006 VMware, Inc.
3 * Copyright © 2006 Intel Corporation
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a 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
15 * portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26 /**
27 * \file brw_tex_layout.cpp
28 *
29 * Code to lay out images in a mipmap tree.
30 *
31 * \author Keith Whitwell <keithw@vmware.com>
32 * \author Michel Dänzer <daenzer@vmware.com>
33 */
34
35 #include "intel_mipmap_tree.h"
36 #include "brw_context.h"
37 #include "main/macros.h"
38 #include "main/glformats.h"
39
40 #define FILE_DEBUG_FLAG DEBUG_MIPTREE
41
42 static unsigned int
43 tr_mode_horizontal_texture_alignment(const struct brw_context *brw,
44 const struct intel_mipmap_tree *mt)
45 {
46 const unsigned *align_yf, *align_ys;
47 const unsigned bpp = _mesa_get_format_bytes(mt->format) * 8;
48 unsigned ret_align, divisor;
49
50 /* Horizontal alignment tables for TRMODE_{YF,YS}. Value in below
51 * tables specifies the horizontal alignment requirement in elements
52 * for the surface. An element is defined as a pixel in uncompressed
53 * surface formats, and as a compression block in compressed surface
54 * formats. For MSFMT_DEPTH_STENCIL type multisampled surfaces, an
55 * element is a sample.
56 */
57 const unsigned align_1d_yf[] = {4096, 2048, 1024, 512, 256};
58 const unsigned align_1d_ys[] = {65536, 32768, 16384, 8192, 4096};
59 const unsigned align_2d_yf[] = {64, 64, 32, 32, 16};
60 const unsigned align_2d_ys[] = {256, 256, 128, 128, 64};
61 const unsigned align_3d_yf[] = {16, 8, 8, 8, 4};
62 const unsigned align_3d_ys[] = {64, 32, 32, 32, 16};
63 int i = 0;
64
65 /* Alignment computations below assume bpp >= 8 and a power of 2. */
66 assert (bpp >= 8 && bpp <= 128 && is_power_of_two(bpp));
67
68 switch(mt->target) {
69 case GL_TEXTURE_1D:
70 case GL_TEXTURE_1D_ARRAY:
71 align_yf = align_1d_yf;
72 align_ys = align_1d_ys;
73 break;
74 case GL_TEXTURE_2D:
75 case GL_TEXTURE_RECTANGLE:
76 case GL_TEXTURE_2D_ARRAY:
77 case GL_TEXTURE_CUBE_MAP:
78 case GL_TEXTURE_CUBE_MAP_ARRAY:
79 case GL_TEXTURE_2D_MULTISAMPLE:
80 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
81 align_yf = align_2d_yf;
82 align_ys = align_2d_ys;
83 break;
84 case GL_TEXTURE_3D:
85 align_yf = align_3d_yf;
86 align_ys = align_3d_ys;
87 break;
88 default:
89 unreachable("not reached");
90 }
91
92 /* Compute array index. */
93 i = ffs(bpp/8) - 1;
94
95 ret_align = mt->tr_mode == INTEL_MIPTREE_TRMODE_YF ?
96 align_yf[i] : align_ys[i];
97
98 assert(is_power_of_two(mt->num_samples));
99
100 switch (mt->num_samples) {
101 case 2:
102 case 4:
103 divisor = 2;
104 break;
105 case 8:
106 case 16:
107 divisor = 4;
108 break;
109 default:
110 divisor = 1;
111 break;
112 }
113 return ret_align / divisor;
114 }
115
116
117 static unsigned int
118 intel_horizontal_texture_alignment_unit(struct brw_context *brw,
119 struct intel_mipmap_tree *mt,
120 uint32_t layout_flags)
121 {
122 if (layout_flags & MIPTREE_LAYOUT_FORCE_HALIGN16)
123 return 16;
124
125 /**
126 * From the "Alignment Unit Size" section of various specs, namely:
127 * - Gen3 Spec: "Memory Data Formats" Volume, Section 1.20.1.4
128 * - i965 and G45 PRMs: Volume 1, Section 6.17.3.4.
129 * - Ironlake and Sandybridge PRMs: Volume 1, Part 1, Section 7.18.3.4
130 * - BSpec (for Ivybridge and slight variations in separate stencil)
131 *
132 * +----------------------------------------------------------------------+
133 * | | alignment unit width ("i") |
134 * | Surface Property |-----------------------------|
135 * | | 915 | 965 | ILK | SNB | IVB |
136 * +----------------------------------------------------------------------+
137 * | YUV 4:2:2 format | 8 | 4 | 4 | 4 | 4 |
138 * | BC1-5 compressed format (DXTn/S3TC) | 4 | 4 | 4 | 4 | 4 |
139 * | FXT1 compressed format | 8 | 8 | 8 | 8 | 8 |
140 * | Depth Buffer (16-bit) | 4 | 4 | 4 | 4 | 8 |
141 * | Depth Buffer (other) | 4 | 4 | 4 | 4 | 4 |
142 * | Separate Stencil Buffer | N/A | N/A | 8 | 8 | 8 |
143 * | All Others | 4 | 4 | 4 | 4 | 4 |
144 * +----------------------------------------------------------------------+
145 *
146 * On IVB+, non-special cases can be overridden by setting the SURFACE_STATE
147 * "Surface Horizontal Alignment" field to HALIGN_4 or HALIGN_8.
148 */
149 if (_mesa_is_format_compressed(mt->format)) {
150 /* The hardware alignment requirements for compressed textures
151 * happen to match the block boundaries.
152 */
153 unsigned int i, j;
154 _mesa_get_format_block_size(mt->format, &i, &j);
155
156 /* On Gen9+ we can pick our own alignment for compressed textures but it
157 * has to be a multiple of the block size. The minimum alignment we can
158 * pick is 4 so we effectively have to align to 4 times the block
159 * size
160 */
161 if (brw->gen >= 9)
162 return i * 4;
163 else
164 return i;
165 }
166
167 if (mt->format == MESA_FORMAT_S_UINT8)
168 return 8;
169
170 if (brw->gen >= 9 && mt->tr_mode != INTEL_MIPTREE_TRMODE_NONE) {
171 uint32_t align = tr_mode_horizontal_texture_alignment(brw, mt);
172 /* XY_FAST_COPY_BLT doesn't support horizontal alignment < 32. */
173 return align < 32 ? 32 : align;
174 }
175
176 if (brw->gen >= 7 && mt->format == MESA_FORMAT_Z_UNORM16)
177 return 8;
178
179 return 4;
180 }
181
182 static unsigned int
183 tr_mode_vertical_texture_alignment(const struct brw_context *brw,
184 const struct intel_mipmap_tree *mt)
185 {
186 const unsigned *align_yf, *align_ys;
187 const unsigned bpp = _mesa_get_format_bytes(mt->format) * 8;
188 unsigned ret_align, divisor;
189
190 /* Vertical alignment tables for TRMODE_YF and TRMODE_YS. */
191 const unsigned align_2d_yf[] = {64, 32, 32, 16, 16};
192 const unsigned align_2d_ys[] = {256, 128, 128, 64, 64};
193 const unsigned align_3d_yf[] = {16, 16, 16, 8, 8};
194 const unsigned align_3d_ys[] = {32, 32, 32, 16, 16};
195 int i = 0;
196
197 assert(brw->gen >= 9 &&
198 mt->target != GL_TEXTURE_1D &&
199 mt->target != GL_TEXTURE_1D_ARRAY);
200
201 /* Alignment computations below assume bpp >= 8 and a power of 2. */
202 assert (bpp >= 8 && bpp <= 128 && is_power_of_two(bpp)) ;
203
204 switch(mt->target) {
205 case GL_TEXTURE_2D:
206 case GL_TEXTURE_RECTANGLE:
207 case GL_TEXTURE_2D_ARRAY:
208 case GL_TEXTURE_CUBE_MAP:
209 case GL_TEXTURE_CUBE_MAP_ARRAY:
210 case GL_TEXTURE_2D_MULTISAMPLE:
211 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
212 align_yf = align_2d_yf;
213 align_ys = align_2d_ys;
214 break;
215 case GL_TEXTURE_3D:
216 align_yf = align_3d_yf;
217 align_ys = align_3d_ys;
218 break;
219 default:
220 unreachable("not reached");
221 }
222
223 /* Compute array index. */
224 i = ffs(bpp / 8) - 1;
225
226 ret_align = mt->tr_mode == INTEL_MIPTREE_TRMODE_YF ?
227 align_yf[i] : align_ys[i];
228
229 assert(is_power_of_two(mt->num_samples));
230
231 switch (mt->num_samples) {
232 case 4:
233 case 8:
234 divisor = 2;
235 break;
236 case 16:
237 divisor = 4;
238 break;
239 default:
240 divisor = 1;
241 break;
242 }
243 return ret_align / divisor;
244 }
245
246 static unsigned int
247 intel_vertical_texture_alignment_unit(struct brw_context *brw,
248 const struct intel_mipmap_tree *mt)
249 {
250 /**
251 * From the "Alignment Unit Size" section of various specs, namely:
252 * - Gen3 Spec: "Memory Data Formats" Volume, Section 1.20.1.4
253 * - i965 and G45 PRMs: Volume 1, Section 6.17.3.4.
254 * - Ironlake and Sandybridge PRMs: Volume 1, Part 1, Section 7.18.3.4
255 * - BSpec (for Ivybridge and slight variations in separate stencil)
256 *
257 * +----------------------------------------------------------------------+
258 * | | alignment unit height ("j") |
259 * | Surface Property |-----------------------------|
260 * | | 915 | 965 | ILK | SNB | IVB |
261 * +----------------------------------------------------------------------+
262 * | BC1-5 compressed format (DXTn/S3TC) | 4 | 4 | 4 | 4 | 4 |
263 * | FXT1 compressed format | 4 | 4 | 4 | 4 | 4 |
264 * | Depth Buffer | 2 | 2 | 2 | 4 | 4 |
265 * | Separate Stencil Buffer | N/A | N/A | N/A | 4 | 8 |
266 * | Multisampled (4x or 8x) render target | N/A | N/A | N/A | 4 | 4 |
267 * | All Others | 2 | 2 | 2 | * | * |
268 * +----------------------------------------------------------------------+
269 *
270 * Where "*" means either VALIGN_2 or VALIGN_4 depending on the setting of
271 * the SURFACE_STATE "Surface Vertical Alignment" field.
272 */
273 if (_mesa_is_format_compressed(mt->format))
274 /* See comment above for the horizontal alignment */
275 return brw->gen >= 9 ? 16 : 4;
276
277 if (mt->format == MESA_FORMAT_S_UINT8)
278 return brw->gen >= 7 ? 8 : 4;
279
280 if (mt->tr_mode != INTEL_MIPTREE_TRMODE_NONE) {
281 uint32_t align = tr_mode_vertical_texture_alignment(brw, mt);
282 /* XY_FAST_COPY_BLT doesn't support vertical alignment < 64 */
283 return align < 64 ? 64 : align;
284 }
285
286 /* Broadwell only supports VALIGN of 4, 8, and 16. The BSpec says 4
287 * should always be used, except for stencil buffers, which should be 8.
288 */
289 if (brw->gen >= 8)
290 return 4;
291
292 if (mt->num_samples > 1)
293 return 4;
294
295 GLenum base_format = _mesa_get_format_base_format(mt->format);
296
297 if (brw->gen >= 6 &&
298 (base_format == GL_DEPTH_COMPONENT ||
299 base_format == GL_DEPTH_STENCIL)) {
300 return 4;
301 }
302
303 if (brw->gen == 7) {
304 /* On Gen7, we prefer a vertical alignment of 4 when possible, because
305 * that allows Y tiled render targets.
306 *
307 * From the Ivy Bridge PRM, Vol4 Part1 2.12.2.1 (SURFACE_STATE for most
308 * messages), on p64, under the heading "Surface Vertical Alignment":
309 *
310 * Value of 1 [VALIGN_4] is not supported for format YCRCB_NORMAL
311 * (0x182), YCRCB_SWAPUVY (0x183), YCRCB_SWAPUV (0x18f), YCRCB_SWAPY
312 * (0x190)
313 *
314 * VALIGN_4 is not supported for surface format R32G32B32_FLOAT.
315 */
316 if (base_format == GL_YCBCR_MESA || mt->format == MESA_FORMAT_RGB_FLOAT32)
317 return 2;
318
319 return 4;
320 }
321
322 return 2;
323 }
324
325 static void
326 gen9_miptree_layout_1d(struct intel_mipmap_tree *mt)
327 {
328 unsigned x = 0;
329 unsigned width = mt->physical_width0;
330 unsigned depth = mt->physical_depth0; /* number of array layers. */
331
332 /* When this layout is used the horizontal alignment is fixed at 64 and the
333 * hardware ignores the value given in the surface state
334 */
335 const unsigned int align_w = 64;
336
337 mt->total_height = mt->physical_height0;
338 mt->total_width = 0;
339
340 for (unsigned level = mt->first_level; level <= mt->last_level; level++) {
341 unsigned img_width;
342
343 intel_miptree_set_level_info(mt, level, x, 0, depth);
344
345 img_width = ALIGN(width, align_w);
346
347 mt->total_width = MAX2(mt->total_width, x + img_width);
348
349 x += img_width;
350
351 width = minify(width, 1);
352 }
353 }
354
355 static void
356 brw_miptree_layout_2d(struct intel_mipmap_tree *mt)
357 {
358 unsigned x = 0;
359 unsigned y = 0;
360 unsigned width = mt->physical_width0;
361 unsigned height = mt->physical_height0;
362 unsigned depth = mt->physical_depth0; /* number of array layers. */
363 unsigned int bw, bh;
364
365 _mesa_get_format_block_size(mt->format, &bw, &bh);
366
367 mt->total_width = mt->physical_width0;
368
369 if (mt->compressed) {
370 mt->total_width = ALIGN(mt->physical_width0, mt->align_w);
371 }
372
373 /* May need to adjust width to accommodate the placement of
374 * the 2nd mipmap. This occurs when the alignment
375 * constraints of mipmap placement push the right edge of the
376 * 2nd mipmap out past the width of its parent.
377 */
378 if (mt->first_level != mt->last_level) {
379 unsigned mip1_width;
380
381 if (mt->compressed) {
382 mip1_width = ALIGN(minify(mt->physical_width0, 1), mt->align_w) +
383 ALIGN(minify(mt->physical_width0, 2), bw);
384 } else {
385 mip1_width = ALIGN(minify(mt->physical_width0, 1), mt->align_w) +
386 minify(mt->physical_width0, 2);
387 }
388
389 if (mip1_width > mt->total_width) {
390 mt->total_width = mip1_width;
391 }
392 }
393
394 mt->total_height = 0;
395
396 for (unsigned level = mt->first_level; level <= mt->last_level; level++) {
397 unsigned img_height;
398
399 intel_miptree_set_level_info(mt, level, x, y, depth);
400
401 img_height = ALIGN(height, mt->align_h);
402 if (mt->compressed)
403 img_height /= bh;
404
405 if (mt->array_layout == ALL_SLICES_AT_EACH_LOD) {
406 /* Compact arrays with separated miplevels */
407 img_height *= depth;
408 }
409
410 /* Because the images are packed better, the final offset
411 * might not be the maximal one:
412 */
413 mt->total_height = MAX2(mt->total_height, y + img_height);
414
415 /* Layout_below: step right after second mipmap.
416 */
417 if (level == mt->first_level + 1) {
418 x += ALIGN(width, mt->align_w);
419 } else {
420 y += img_height;
421 }
422
423 width = minify(width, 1);
424 height = minify(height, 1);
425
426 if (mt->target == GL_TEXTURE_3D)
427 depth = minify(depth, 1);
428 }
429 }
430
431 unsigned
432 brw_miptree_get_horizontal_slice_pitch(const struct brw_context *brw,
433 const struct intel_mipmap_tree *mt,
434 unsigned level)
435 {
436 assert(brw->gen < 9);
437
438 if (mt->target == GL_TEXTURE_3D ||
439 (brw->gen == 4 && mt->target == GL_TEXTURE_CUBE_MAP)) {
440 return ALIGN(minify(mt->physical_width0, level), mt->align_w);
441 } else {
442 return 0;
443 }
444 }
445
446 unsigned
447 brw_miptree_get_vertical_slice_pitch(const struct brw_context *brw,
448 const struct intel_mipmap_tree *mt,
449 unsigned level)
450 {
451 if (brw->gen >= 9) {
452 /* ALL_SLICES_AT_EACH_LOD isn't supported on Gen8+ but this code will
453 * effectively end up with a packed qpitch anyway whenever
454 * mt->first_level == mt->last_level.
455 */
456 assert(mt->array_layout != ALL_SLICES_AT_EACH_LOD);
457
458 /* On Gen9 we can pick whatever qpitch we like as long as it's aligned
459 * to the vertical alignment so we don't need to add any extra rows.
460 */
461 unsigned qpitch = mt->total_height;
462
463 /* If the surface might be used as a stencil buffer or HiZ buffer then
464 * it needs to be a multiple of 8.
465 */
466 const GLenum base_format = _mesa_get_format_base_format(mt->format);
467 if (_mesa_is_depth_or_stencil_format(base_format))
468 qpitch = ALIGN(qpitch, 8);
469
470 /* 3D textures need to be aligned to the tile height. At this point we
471 * don't know which tiling will be used so let's just align it to 32
472 */
473 if (mt->target == GL_TEXTURE_3D)
474 qpitch = ALIGN(qpitch, 32);
475
476 return qpitch;
477
478 } else if (mt->target == GL_TEXTURE_3D ||
479 (brw->gen == 4 && mt->target == GL_TEXTURE_CUBE_MAP) ||
480 mt->array_layout == ALL_SLICES_AT_EACH_LOD) {
481 return ALIGN(minify(mt->physical_height0, level), mt->align_h);
482
483 } else {
484 const unsigned h0 = ALIGN(mt->physical_height0, mt->align_h);
485 const unsigned h1 = ALIGN(minify(mt->physical_height0, 1), mt->align_h);
486
487 return h0 + h1 + (brw->gen >= 7 ? 12 : 11) * mt->align_h;
488 }
489 }
490
491 static void
492 align_cube(struct intel_mipmap_tree *mt)
493 {
494 /* The 965's sampler lays cachelines out according to how accesses
495 * in the texture surfaces run, so they may be "vertical" through
496 * memory. As a result, the docs say in Surface Padding Requirements:
497 * Sampling Engine Surfaces that two extra rows of padding are required.
498 */
499 if (mt->target == GL_TEXTURE_CUBE_MAP)
500 mt->total_height += 2;
501 }
502
503 bool
504 gen9_use_linear_1d_layout(const struct brw_context *brw,
505 const struct intel_mipmap_tree *mt)
506 {
507 /* On Gen9+ the mipmap levels of a 1D surface are all laid out in a
508 * horizontal line. This isn't done for depth/stencil buffers however
509 * because those will be using a tiled layout
510 */
511 if (brw->gen >= 9 &&
512 (mt->target == GL_TEXTURE_1D ||
513 mt->target == GL_TEXTURE_1D_ARRAY)) {
514 GLenum base_format = _mesa_get_format_base_format(mt->format);
515
516 if (base_format != GL_DEPTH_COMPONENT &&
517 base_format != GL_DEPTH_STENCIL &&
518 base_format != GL_STENCIL_INDEX)
519 return true;
520 }
521
522 return false;
523 }
524
525 static void
526 brw_miptree_layout_texture_array(struct brw_context *brw,
527 struct intel_mipmap_tree *mt)
528 {
529 unsigned height = mt->physical_height0;
530 bool layout_1d = gen9_use_linear_1d_layout(brw, mt);
531 int physical_qpitch;
532
533 if (layout_1d)
534 gen9_miptree_layout_1d(mt);
535 else
536 brw_miptree_layout_2d(mt);
537
538 if (layout_1d) {
539 physical_qpitch = 1;
540 /* When using the horizontal layout the qpitch specifies the distance in
541 * pixels between array slices. The total_width is forced to be a
542 * multiple of the horizontal alignment in brw_miptree_layout_1d (in
543 * this case it's always 64). The vertical alignment is ignored.
544 */
545 mt->qpitch = mt->total_width;
546 } else {
547 mt->qpitch = brw_miptree_get_vertical_slice_pitch(brw, mt, 0);
548 /* Unlike previous generations the qpitch is a multiple of the
549 * compressed block size on Gen9 so physical_qpitch matches mt->qpitch.
550 */
551 physical_qpitch = (mt->compressed && brw->gen < 9 ? mt->qpitch / 4 :
552 mt->qpitch);
553 }
554
555 for (unsigned level = mt->first_level; level <= mt->last_level; level++) {
556 unsigned img_height;
557 img_height = ALIGN(height, mt->align_h);
558 if (mt->compressed)
559 img_height /= mt->align_h;
560
561 for (int q = 0; q < mt->level[level].depth; q++) {
562 if (mt->array_layout == ALL_SLICES_AT_EACH_LOD) {
563 intel_miptree_set_image_offset(mt, level, q, 0, q * img_height);
564 } else {
565 intel_miptree_set_image_offset(mt, level, q, 0, q * physical_qpitch);
566 }
567 }
568 height = minify(height, 1);
569 }
570 if (mt->array_layout == ALL_LOD_IN_EACH_SLICE)
571 mt->total_height = physical_qpitch * mt->physical_depth0;
572
573 align_cube(mt);
574 }
575
576 static void
577 brw_miptree_layout_texture_3d(struct brw_context *brw,
578 struct intel_mipmap_tree *mt)
579 {
580 unsigned yscale = mt->compressed ? 4 : 1;
581
582 mt->total_width = 0;
583 mt->total_height = 0;
584
585 unsigned ysum = 0;
586 for (unsigned level = mt->first_level; level <= mt->last_level; level++) {
587 unsigned WL = MAX2(mt->physical_width0 >> level, 1);
588 unsigned HL = MAX2(mt->physical_height0 >> level, 1);
589 unsigned DL = MAX2(mt->physical_depth0 >> level, 1);
590 unsigned wL = ALIGN(WL, mt->align_w);
591 unsigned hL = ALIGN(HL, mt->align_h);
592
593 if (mt->target == GL_TEXTURE_CUBE_MAP)
594 DL = 6;
595
596 intel_miptree_set_level_info(mt, level, 0, 0, DL);
597
598 for (unsigned q = 0; q < DL; q++) {
599 unsigned x = (q % (1 << level)) * wL;
600 unsigned y = ysum + (q >> level) * hL;
601
602 intel_miptree_set_image_offset(mt, level, q, x, y / yscale);
603 mt->total_width = MAX2(mt->total_width, x + wL);
604 mt->total_height = MAX2(mt->total_height, (y + hL) / yscale);
605 }
606
607 ysum += ALIGN(DL, 1 << level) / (1 << level) * hL;
608 }
609
610 align_cube(mt);
611 }
612
613 /**
614 * \brief Helper function for intel_miptree_create().
615 */
616 static uint32_t
617 brw_miptree_choose_tiling(struct brw_context *brw,
618 enum intel_miptree_tiling_mode requested,
619 const struct intel_mipmap_tree *mt)
620 {
621 if (mt->format == MESA_FORMAT_S_UINT8) {
622 /* The stencil buffer is W tiled. However, we request from the kernel a
623 * non-tiled buffer because the GTT is incapable of W fencing.
624 */
625 return I915_TILING_NONE;
626 }
627
628 /* Some usages may want only one type of tiling, like depth miptrees (Y
629 * tiled), or temporary BOs for uploading data once (linear).
630 */
631 switch (requested) {
632 case INTEL_MIPTREE_TILING_ANY:
633 break;
634 case INTEL_MIPTREE_TILING_Y:
635 return I915_TILING_Y;
636 case INTEL_MIPTREE_TILING_NONE:
637 return I915_TILING_NONE;
638 }
639
640 if (mt->num_samples > 1) {
641 /* From p82 of the Sandy Bridge PRM, dw3[1] of SURFACE_STATE ("Tiled
642 * Surface"):
643 *
644 * [DevSNB+]: For multi-sample render targets, this field must be
645 * 1. MSRTs can only be tiled.
646 *
647 * Our usual reason for preferring X tiling (fast blits using the
648 * blitting engine) doesn't apply to MSAA, since we'll generally be
649 * downsampling or upsampling when blitting between the MSAA buffer
650 * and another buffer, and the blitting engine doesn't support that.
651 * So use Y tiling, since it makes better use of the cache.
652 */
653 return I915_TILING_Y;
654 }
655
656 GLenum base_format = _mesa_get_format_base_format(mt->format);
657 if (base_format == GL_DEPTH_COMPONENT ||
658 base_format == GL_DEPTH_STENCIL_EXT)
659 return I915_TILING_Y;
660
661 /* 1D textures (and 1D array textures) don't get any benefit from tiling,
662 * in fact it leads to a less efficient use of memory space and bandwidth
663 * due to tile alignment.
664 */
665 if (mt->logical_height0 == 1)
666 return I915_TILING_NONE;
667
668 int minimum_pitch = mt->total_width * mt->cpp;
669
670 /* If the width is much smaller than a tile, don't bother tiling. */
671 if (minimum_pitch < 64)
672 return I915_TILING_NONE;
673
674 if (ALIGN(minimum_pitch, 512) >= 32768 ||
675 mt->total_width >= 32768 || mt->total_height >= 32768) {
676 perf_debug("%dx%d miptree too large to blit, falling back to untiled",
677 mt->total_width, mt->total_height);
678 return I915_TILING_NONE;
679 }
680
681 /* Pre-gen6 doesn't have BLORP to handle Y-tiling, so use X-tiling. */
682 if (brw->gen < 6)
683 return I915_TILING_X;
684
685 /* From the Sandybridge PRM, Volume 1, Part 2, page 32:
686 * "NOTE: 128BPE Format Color Buffer ( render target ) MUST be either TileX
687 * or Linear."
688 * 128 bits per pixel translates to 16 bytes per pixel. This is necessary
689 * all the way back to 965, but is permitted on Gen7+.
690 */
691 if (brw->gen < 7 && mt->cpp >= 16)
692 return I915_TILING_X;
693
694 /* From the Ivy Bridge PRM, Vol4 Part1 2.12.2.1 (SURFACE_STATE for most
695 * messages), on p64, under the heading "Surface Vertical Alignment":
696 *
697 * This field must be set to VALIGN_4 for all tiled Y Render Target
698 * surfaces.
699 *
700 * So if the surface is renderable and uses a vertical alignment of 2,
701 * force it to be X tiled. This is somewhat conservative (it's possible
702 * that the client won't ever render to this surface), but it's difficult
703 * to know that ahead of time. And besides, since we use a vertical
704 * alignment of 4 as often as we can, this shouldn't happen very often.
705 */
706 if (brw->gen == 7 && mt->align_h == 2 &&
707 brw->format_supported_as_render_target[mt->format]) {
708 return I915_TILING_X;
709 }
710
711 return I915_TILING_Y | I915_TILING_X;
712 }
713
714 static void
715 intel_miptree_set_total_width_height(struct brw_context *brw,
716 struct intel_mipmap_tree *mt)
717 {
718 switch (mt->target) {
719 case GL_TEXTURE_CUBE_MAP:
720 if (brw->gen == 4) {
721 /* Gen4 stores cube maps as 3D textures. */
722 assert(mt->physical_depth0 == 6);
723 brw_miptree_layout_texture_3d(brw, mt);
724 } else {
725 /* All other hardware stores cube maps as 2D arrays. */
726 brw_miptree_layout_texture_array(brw, mt);
727 }
728 break;
729
730 case GL_TEXTURE_3D:
731 if (brw->gen >= 9)
732 brw_miptree_layout_texture_array(brw, mt);
733 else
734 brw_miptree_layout_texture_3d(brw, mt);
735 break;
736
737 case GL_TEXTURE_1D_ARRAY:
738 case GL_TEXTURE_2D_ARRAY:
739 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
740 case GL_TEXTURE_CUBE_MAP_ARRAY:
741 brw_miptree_layout_texture_array(brw, mt);
742 break;
743
744 default:
745 switch (mt->msaa_layout) {
746 case INTEL_MSAA_LAYOUT_UMS:
747 case INTEL_MSAA_LAYOUT_CMS:
748 brw_miptree_layout_texture_array(brw, mt);
749 break;
750 case INTEL_MSAA_LAYOUT_NONE:
751 case INTEL_MSAA_LAYOUT_IMS:
752 if (gen9_use_linear_1d_layout(brw, mt))
753 gen9_miptree_layout_1d(mt);
754 else
755 brw_miptree_layout_2d(mt);
756 break;
757 }
758 break;
759 }
760
761 DBG("%s: %dx%dx%d\n", __func__,
762 mt->total_width, mt->total_height, mt->cpp);
763 }
764
765 void
766 brw_miptree_layout(struct brw_context *brw,
767 struct intel_mipmap_tree *mt,
768 enum intel_miptree_tiling_mode requested,
769 uint32_t layout_flags)
770 {
771 bool gen6_hiz_or_stencil = false;
772
773 mt->tr_mode = INTEL_MIPTREE_TRMODE_NONE;
774
775 if (brw->gen == 6 && mt->array_layout == ALL_SLICES_AT_EACH_LOD) {
776 const GLenum base_format = _mesa_get_format_base_format(mt->format);
777 gen6_hiz_or_stencil = _mesa_is_depth_or_stencil_format(base_format);
778 }
779
780 if (gen6_hiz_or_stencil) {
781 /* On gen6, we use ALL_SLICES_AT_EACH_LOD for stencil/hiz because the
782 * hardware doesn't support multiple mip levels on stencil/hiz.
783 *
784 * PRM Vol 2, Part 1, 7.5.3 Hierarchical Depth Buffer:
785 * "The hierarchical depth buffer does not support the LOD field"
786 *
787 * PRM Vol 2, Part 1, 7.5.4.1 Separate Stencil Buffer:
788 * "The stencil depth buffer does not support the LOD field"
789 */
790 if (mt->format == MESA_FORMAT_S_UINT8) {
791 /* Stencil uses W tiling, so we force W tiling alignment for the
792 * ALL_SLICES_AT_EACH_LOD miptree layout.
793 */
794 mt->align_w = 64;
795 mt->align_h = 64;
796 assert((layout_flags & MIPTREE_LAYOUT_FORCE_HALIGN16) == 0);
797 } else {
798 /* Depth uses Y tiling, so we force need Y tiling alignment for the
799 * ALL_SLICES_AT_EACH_LOD miptree layout.
800 */
801 mt->align_w = 128 / mt->cpp;
802 mt->align_h = 32;
803 }
804 } else {
805 mt->align_w =
806 intel_horizontal_texture_alignment_unit(brw, mt, layout_flags);
807 mt->align_h = intel_vertical_texture_alignment_unit(brw, mt);
808 }
809
810 intel_miptree_set_total_width_height(brw, mt);
811
812 if (!mt->total_width || !mt->total_height) {
813 intel_miptree_release(&mt);
814 return;
815 }
816
817 /* On Gen9+ the alignment values are expressed in multiples of the block
818 * size
819 */
820 if (brw->gen >= 9) {
821 unsigned int i, j;
822 _mesa_get_format_block_size(mt->format, &i, &j);
823 mt->align_w /= i;
824 mt->align_h /= j;
825 }
826
827 if ((layout_flags & MIPTREE_LAYOUT_FOR_BO) == 0)
828 mt->tiling = brw_miptree_choose_tiling(brw, requested, mt);
829 }
830