Merge remote-tracking branch 'origin/master' into vulkan
[mesa.git] / src / intel / isl / isl_gen7.c
1 /*
2 * Copyright 2015 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include "isl_gen7.h"
25 #include "isl_priv.h"
26
27 bool
28 gen7_choose_msaa_layout(const struct isl_device *dev,
29 const struct isl_surf_init_info *info,
30 enum isl_tiling tiling,
31 enum isl_msaa_layout *msaa_layout)
32 {
33 const struct isl_format_layout *fmtl = isl_format_get_layout(info->format);
34
35 bool require_array = false;
36 bool require_interleaved = false;
37
38 assert(ISL_DEV_GEN(dev) == 7);
39 assert(info->samples >= 1);
40
41 if (info->samples == 1) {
42 *msaa_layout = ISL_MSAA_LAYOUT_NONE;
43 return true;
44 }
45
46 /* From the Ivybridge PRM, Volume 4 Part 1 p63, SURFACE_STATE, Surface
47 * Format:
48 *
49 * If Number of Multisamples is set to a value other than
50 * MULTISAMPLECOUNT_1, this field cannot be set to the following
51 * formats: any format with greater than 64 bits per element, any
52 * compressed texture format (BC*), and any YCRCB* format.
53 */
54 if (fmtl->bs > 8)
55 return false;
56 if (isl_format_is_compressed(info->format))
57 return false;
58 if (isl_format_is_yuv(info->format))
59 return false;
60
61 /* From the Ivybridge PRM, Volume 4 Part 1 p73, SURFACE_STATE, Number of
62 * Multisamples:
63 *
64 * - If this field is any value other than MULTISAMPLECOUNT_1, the
65 * Surface Type must be SURFTYPE_2D.
66 *
67 * - If this field is any value other than MULTISAMPLECOUNT_1, Surface
68 * Min LOD, Mip Count / LOD, and Resource Min LOD must be set to zero
69 */
70 if (info->dim != ISL_SURF_DIM_2D)
71 return false;
72 if (info->levels > 1)
73 return false;
74
75 /* The Ivyrbridge PRM insists twice that signed integer formats cannot be
76 * multisampled.
77 *
78 * From the Ivybridge PRM, Volume 4 Part 1 p73, SURFACE_STATE, Number of
79 * Multisamples:
80 *
81 * - This field must be set to MULTISAMPLECOUNT_1 for SINT MSRTs when
82 * all RT channels are not written.
83 *
84 * And errata from the Ivybridge PRM, Volume 4 Part 1 p77,
85 * RENDER_SURFACE_STATE, MCS Enable:
86 *
87 * This field must be set to 0 [MULTISAMPLECOUNT_1] for all SINT MSRTs
88 * when all RT channels are not written.
89 *
90 * Note that the above SINT restrictions apply only to *MSRTs* (that is,
91 * *multisampled* render targets). The restrictions seem to permit an MCS
92 * if the render target is singlesampled.
93 */
94 if (isl_format_has_sint_channel(info->format))
95 return false;
96
97 /* More obvious restrictions */
98 if (isl_surf_usage_is_display(info->usage))
99 return false;
100 if (tiling == ISL_TILING_LINEAR)
101 return false;
102
103 /* From the Ivybridge PRM, Volume 4 Part 1 p72, SURFACE_STATE, Multisampled
104 * Suface Storage Format:
105 *
106 * +---------------------+----------------------------------------------------------------+
107 * | MSFMT_MSS | Multsampled surface was/is rendered as a render target |
108 * | MSFMT_DEPTH_STENCIL | Multisampled surface was rendered as a depth or stencil buffer |
109 * +---------------------+----------------------------------------------------------------+
110 *
111 * In the table above, MSFMT_MSS refers to ISL_MSAA_LAYOUT_ARRAY, and
112 * MSFMT_DEPTH_STENCIL refers to ISL_MSAA_LAYOUT_INTERLEAVED.
113 */
114 if (isl_surf_usage_is_depth_or_stencil(info->usage))
115 require_interleaved = true;
116
117 /* From the Ivybridge PRM, Volume 4 Part 1 p72, SURFACE_STATE, Multisampled
118 * Suface Storage Format:
119 *
120 * If the surface’s Number of Multisamples is MULTISAMPLECOUNT_8, Width
121 * is >= 8192 (meaning the actual surface width is >= 8193 pixels), this
122 * field must be set to MSFMT_MSS.
123 */
124 if (info->samples == 8 && info->width == 8192)
125 require_array = true;
126
127 /* From the Ivybridge PRM, Volume 4 Part 1 p72, SURFACE_STATE, Multisampled
128 * Suface Storage Format:
129 *
130 * If the surface’s Number of Multisamples is MULTISAMPLECOUNT_8,
131 * ((Depth+1) * (Height+1)) is > 4,194,304, OR if the surface’s Number
132 * of Multisamples is MULTISAMPLECOUNT_4, ((Depth+1) * (Height+1)) is
133 * > 8,388,608, this field must be set to MSFMT_DEPTH_STENCIL.
134 */
135 if ((info->samples == 8 && info->height > 4194304u) ||
136 (info->samples == 4 && info->height > 8388608u))
137 require_interleaved = true;
138
139 /* From the Ivybridge PRM, Volume 4 Part 1 p72, SURFACE_STATE, Multisampled
140 * Suface Storage Format:
141 *
142 * This field must be set to MSFMT_DEPTH_STENCIL if Surface Format is
143 * one of the following: I24X8_UNORM, L24X8_UNORM, A24X8_UNORM, or
144 * R24_UNORM_X8_TYPELESS.
145 */
146 if (info->format == ISL_FORMAT_I24X8_UNORM ||
147 info->format == ISL_FORMAT_L24X8_UNORM ||
148 info->format == ISL_FORMAT_A24X8_UNORM ||
149 info->format == ISL_FORMAT_R24_UNORM_X8_TYPELESS)
150 require_interleaved = true;
151
152 if (require_array && require_interleaved)
153 return false;
154
155 if (require_interleaved) {
156 *msaa_layout = ISL_MSAA_LAYOUT_INTERLEAVED;
157 return true;
158 }
159
160 /* Default to the array layout because it permits multisample
161 * compression.
162 */
163 *msaa_layout = ISL_MSAA_LAYOUT_ARRAY;
164 return true;
165 }
166
167 static bool
168 gen7_format_needs_valign2(const struct isl_device *dev,
169 enum isl_format format)
170 {
171 /* This workaround applies only to gen7 */
172 if (ISL_DEV_GEN(dev) > 7)
173 return false;
174
175 /* From the Ivybridge PRM (2012-05-31), Volume 4, Part 1, Section 2.12.1,
176 * RENDER_SURFACE_STATE Surface Vertical Alignment:
177 *
178 * - Value of 1 [VALIGN_4] is not supported for format YCRCB_NORMAL
179 * (0x182), YCRCB_SWAPUVY (0x183), YCRCB_SWAPUV (0x18f), YCRCB_SWAPY
180 * (0x190)
181 *
182 * - VALIGN_4 is not supported for surface format R32G32B32_FLOAT.
183 */
184 return isl_format_is_yuv(format) ||
185 format == ISL_FORMAT_R32G32B32_FLOAT;
186 }
187
188 /**
189 * @brief Filter out tiling flags that are incompatible with the surface.
190 *
191 * The resultant outgoing @a flags is a subset of the incoming @a flags. The
192 * outgoing flags may be empty (0x0) if the incoming flags were too
193 * restrictive.
194 *
195 * For example, if the surface will be used for a display
196 * (ISL_SURF_USAGE_DISPLAY_BIT), then this function filters out all tiling
197 * flags except ISL_TILING_X_BIT and ISL_TILING_LINEAR_BIT.
198 */
199 void
200 gen7_filter_tiling(const struct isl_device *dev,
201 const struct isl_surf_init_info *restrict info,
202 isl_tiling_flags_t *flags)
203 {
204 /* IVB+ requires separate stencil */
205 assert(ISL_DEV_USE_SEPARATE_STENCIL(dev));
206
207 /* Clear flags unsupported on this hardware */
208 if (ISL_DEV_GEN(dev) < 9) {
209 *flags &= ~ISL_TILING_Yf_BIT;
210 *flags &= ~ISL_TILING_Ys_BIT;
211 }
212
213 /* And... clear the Yf and Ys bits anyway because Anvil doesn't support
214 * them yet.
215 */
216 *flags &= ~ISL_TILING_Yf_BIT; /* FINISHME[SKL]: Support Yf */
217 *flags &= ~ISL_TILING_Ys_BIT; /* FINISHME[SKL]: Support Ys */
218
219 if (isl_surf_usage_is_depth(info->usage)) {
220 /* Depth requires Y. */
221 *flags &= ISL_TILING_ANY_Y_MASK;
222 }
223
224 /* Separate stencil requires W tiling, and W tiling requires separate
225 * stencil.
226 */
227 if (isl_surf_usage_is_stencil(info->usage)) {
228 *flags &= ISL_TILING_W_BIT;
229 } else {
230 *flags &= ~ISL_TILING_W_BIT;
231 }
232
233 if (info->usage & (ISL_SURF_USAGE_DISPLAY_ROTATE_90_BIT |
234 ISL_SURF_USAGE_DISPLAY_ROTATE_180_BIT |
235 ISL_SURF_USAGE_DISPLAY_ROTATE_270_BIT)) {
236 assert(*flags & ISL_SURF_USAGE_DISPLAY_BIT);
237 isl_finishme("%s:%s: handle rotated display surfaces",
238 __FILE__, __func__);
239 }
240
241 if (info->usage & (ISL_SURF_USAGE_DISPLAY_FLIP_X_BIT |
242 ISL_SURF_USAGE_DISPLAY_FLIP_Y_BIT)) {
243 assert(*flags & ISL_SURF_USAGE_DISPLAY_BIT);
244 isl_finishme("%s:%s: handle flipped display surfaces",
245 __FILE__, __func__);
246 }
247
248 if (info->usage & ISL_SURF_USAGE_DISPLAY_BIT) {
249 /* Before Skylake, the display engine does not accept Y */
250 /* FINISHME[SKL]: Y tiling for display surfaces */
251 *flags &= (ISL_TILING_LINEAR_BIT | ISL_TILING_X_BIT);
252 }
253
254 if (info->samples > 1) {
255 /* From the Sandybridge PRM, Volume 4 Part 1, SURFACE_STATE Tiled
256 * Surface:
257 *
258 * For multisample render targets, this field must be 1 (true). MSRTs
259 * can only be tiled.
260 *
261 * Multisample surfaces never require X tiling, and Y tiling generally
262 * performs better than X. So choose Y. (Unless it's stencil, then it
263 * must be W).
264 */
265 *flags &= (ISL_TILING_ANY_Y_MASK | ISL_TILING_W_BIT);
266 }
267
268 /* workaround */
269 if (ISL_DEV_GEN(dev) == 7 &&
270 gen7_format_needs_valign2(dev, info->format) &&
271 (info->usage & ISL_SURF_USAGE_RENDER_TARGET_BIT) &&
272 info->samples == 1) {
273 /* Y tiling is illegal. From the Ivybridge PRM, Vol4 Part1 2.12.2.1,
274 * SURFACE_STATE Surface Vertical Alignment:
275 *
276 * This field must be set to VALIGN_4 for all tiled Y Render Target
277 * surfaces.
278 */
279 *flags &= ~ISL_TILING_Y0_BIT;
280 }
281 }
282
283 /**
284 * Choose horizontal subimage alignment, in units of surface elements.
285 */
286 static uint32_t
287 gen7_choose_halign_el(const struct isl_device *dev,
288 const struct isl_surf_init_info *restrict info)
289 {
290 if (isl_format_is_compressed(info->format))
291 return 1;
292
293 /* From the Ivybridge PRM (2012-05-31), Volume 4, Part 1, Section 2.12.1,
294 * RENDER_SURFACE_STATE Surface Hoizontal Alignment:
295 *
296 * - This field is intended to be set to HALIGN_8 only if the surface
297 * was rendered as a depth buffer with Z16 format or a stencil buffer,
298 * since these surfaces support only alignment of 8. Use of HALIGN_8
299 * for other surfaces is supported, but uses more memory.
300 */
301 if (isl_surf_info_is_z16(info) ||
302 isl_surf_usage_is_stencil(info->usage))
303 return 8;
304
305 return 4;
306 }
307
308 /**
309 * Choose vertical subimage alignment, in units of surface elements.
310 */
311 static uint32_t
312 gen7_choose_valign_el(const struct isl_device *dev,
313 const struct isl_surf_init_info *restrict info,
314 enum isl_tiling tiling)
315 {
316 bool require_valign2 = false;
317 bool require_valign4 = false;
318
319 if (isl_format_is_compressed(info->format))
320 return 1;
321
322 if (gen7_format_needs_valign2(dev, info->format))
323 require_valign2 = true;
324
325 /* From the Ivybridge PRM, Volume 4, Part 1, Section 2.12.1:
326 * RENDER_SURFACE_STATE Surface Vertical Alignment:
327 *
328 * - This field is intended to be set to VALIGN_4 if the surface was
329 * rendered as a depth buffer, for a multisampled (4x) render target,
330 * or for a multisampled (8x) render target, since these surfaces
331 * support only alignment of 4. Use of VALIGN_4 for other surfaces is
332 * supported, but uses more memory. This field must be set to
333 * VALIGN_4 for all tiled Y Render Target surfaces.
334 *
335 */
336 if (isl_surf_usage_is_depth(info->usage) ||
337 info->samples > 1 ||
338 tiling == ISL_TILING_Y0) {
339 require_valign4 = true;
340 }
341
342 if (isl_surf_usage_is_stencil(info->usage)) {
343 /* The Ivybridge PRM states that the stencil buffer's vertical alignment
344 * is 8 [Ivybridge PRM, Volume 1, Part 1, Section 6.18.4.4 Alignment
345 * Unit Size]. However, valign=8 is outside the set of valid values of
346 * RENDER_SURFACE_STATE.SurfaceVerticalAlignment, which is VALIGN_2
347 * (0x0) and VALIGN_4 (0x1).
348 *
349 * The PRM is generally confused about the width, height, and alignment
350 * of the stencil buffer; and this confusion appears elsewhere. For
351 * example, the following PRM text effectively converts the stencil
352 * buffer's 8-pixel alignment to a 4-pixel alignment [Ivybridge PRM,
353 * Volume 1, Part 1, Section
354 * 6.18.4.2 Base Address and LOD Calculation]:
355 *
356 * For separate stencil buffer, the width must be mutiplied by 2 and
357 * height divided by 2 as follows:
358 *
359 * w_L = 2*i*ceil(W_L/i)
360 * h_L = 1/2*j*ceil(H_L/j)
361 *
362 * The root of the confusion is that, in W tiling, each pair of rows is
363 * interleaved into one.
364 *
365 * FINISHME(chadv): Decide to set valign=4 or valign=8 after isl's API
366 * is more polished.
367 */
368 require_valign4 = true;
369 }
370
371 assert(!require_valign2 || !require_valign4);
372
373 if (require_valign4)
374 return 4;
375
376 /* Prefer VALIGN_2 because it conserves memory. */
377 return 2;
378 }
379
380 void
381 gen7_choose_image_alignment_el(const struct isl_device *dev,
382 const struct isl_surf_init_info *restrict info,
383 enum isl_tiling tiling,
384 enum isl_msaa_layout msaa_layout,
385 struct isl_extent3d *image_align_el)
386 {
387 /* IVB+ does not support combined depthstencil. */
388 assert(!isl_surf_usage_is_depth_and_stencil(info->usage));
389
390 *image_align_el = (struct isl_extent3d) {
391 .w = gen7_choose_halign_el(dev, info),
392 .h = gen7_choose_valign_el(dev, info, tiling),
393 .d = 1,
394 };
395 }