• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_gfx7.h"
25 #include "isl_priv.h"
26 
27 static bool
gfx7_format_needs_valign2(const struct isl_device * dev,enum isl_format format)28 gfx7_format_needs_valign2(const struct isl_device *dev,
29                           enum isl_format format)
30 {
31    assert(ISL_GFX_VER(dev) == 7);
32 
33    /* From the Ivybridge PRM (2012-05-31), Volume 4, Part 1, Section 2.12.1,
34     * RENDER_SURFACE_STATE Surface Vertical Alignment:
35     *
36     *    - Value of 1 [VALIGN_4] is not supported for format YCRCB_NORMAL
37     *      (0x182), YCRCB_SWAPUVY (0x183), YCRCB_SWAPUV (0x18f), YCRCB_SWAPY
38     *      (0x190)
39     *
40     *    - VALIGN_4 is not supported for surface format R32G32B32_FLOAT.
41     *
42     * The R32G32B32_FLOAT restriction is dropped on Haswell.
43     */
44    return isl_format_is_yuv(format) ||
45           (format == ISL_FORMAT_R32G32B32_FLOAT && !ISL_DEV_IS_HASWELL(dev));
46 }
47 
48 bool
isl_gfx7_choose_msaa_layout(const struct isl_device * dev,const struct isl_surf_init_info * info,enum isl_tiling tiling,enum isl_msaa_layout * msaa_layout)49 isl_gfx7_choose_msaa_layout(const struct isl_device *dev,
50                             const struct isl_surf_init_info *info,
51                             enum isl_tiling tiling,
52                             enum isl_msaa_layout *msaa_layout)
53 {
54    bool require_array = false;
55    bool require_interleaved = false;
56 
57    assert(ISL_GFX_VER(dev) == 7);
58    assert(info->samples >= 1);
59 
60    if (info->samples == 1) {
61       *msaa_layout = ISL_MSAA_LAYOUT_NONE;
62       return true;
63    }
64 
65    if (!isl_format_supports_multisampling(dev->info, info->format))
66       return false;
67 
68    /* From the Ivybridge PRM, Volume 4 Part 1 p73, SURFACE_STATE, Number of
69     * Multisamples:
70     *
71     *    - If this field is any value other than MULTISAMPLECOUNT_1, the
72     *      Surface Type must be SURFTYPE_2D.
73     *
74     *    - If this field is any value other than MULTISAMPLECOUNT_1, Surface
75     *      Min LOD, Mip Count / LOD, and Resource Min LOD must be set to zero
76     */
77    if (info->dim != ISL_SURF_DIM_2D)
78       return false;
79    if (info->levels > 1)
80       return false;
81 
82    /* The Ivyrbridge PRM insists twice that signed integer formats cannot be
83     * multisampled.
84     *
85     * From the Ivybridge PRM, Volume 4 Part 1 p73, SURFACE_STATE, Number of
86     * Multisamples:
87     *
88     *    - This field must be set to MULTISAMPLECOUNT_1 for SINT MSRTs when
89     *      all RT channels are not written.
90     *
91     * And errata from the Ivybridge PRM, Volume 4 Part 1 p77,
92     * RENDER_SURFACE_STATE, MCS Enable:
93     *
94     *   This field must be set to 0 [MULTISAMPLECOUNT_1] for all SINT MSRTs
95     *   when all RT channels are not written.
96     *
97     * Note that the above SINT restrictions apply only to *MSRTs* (that is,
98     * *multisampled* render targets). The restrictions seem to permit an MCS
99     * if the render target is singlesampled.
100     *
101     * Moreover, empirically it looks that hardware can render multisampled
102     * surfaces with RGBA8I, RGBA16I and RGBA32I.
103     */
104 
105    /* Multisampling requires vertical alignment of four. */
106    if (info->samples > 1 && gfx7_format_needs_valign2(dev, info->format))
107       return false;
108 
109    /* More obvious restrictions */
110    if (isl_surf_usage_is_display(info->usage))
111       return false;
112    if (tiling == ISL_TILING_LINEAR)
113       return false;
114 
115    /* From the Ivybridge PRM, Volume 4 Part 1 p72, SURFACE_STATE, Multisampled
116     * Suface Storage Format:
117     *
118     *    +---------------------+----------------------------------------------------------------+
119     *    | MSFMT_MSS           | Multsampled surface was/is rendered as a render target         |
120     *    | MSFMT_DEPTH_STENCIL | Multisampled surface was rendered as a depth or stencil buffer |
121     *    +---------------------+----------------------------------------------------------------+
122     *
123     * In the table above, MSFMT_MSS refers to ISL_MSAA_LAYOUT_ARRAY, and
124     * MSFMT_DEPTH_STENCIL refers to ISL_MSAA_LAYOUT_INTERLEAVED.
125     */
126    if (isl_surf_usage_is_depth_or_stencil(info->usage) ||
127        (info->usage & ISL_SURF_USAGE_HIZ_BIT))
128       require_interleaved = true;
129 
130    /* From the Ivybridge PRM, Volume 4 Part 1 p72, SURFACE_STATE, Multisampled
131     * Suface Storage Format:
132     *
133     *    If the surface’s Number of Multisamples is MULTISAMPLECOUNT_8, Width
134     *    is >= 8192 (meaning the actual surface width is >= 8193 pixels), this
135     *    field must be set to MSFMT_MSS.
136     */
137    if (info->samples == 8 && info->width > 8192)
138       require_array = true;
139 
140    /* From the Ivybridge PRM, Volume 4 Part 1 p72, SURFACE_STATE, Multisampled
141     * Suface Storage Format:
142     *
143     *    If the surface’s Number of Multisamples is MULTISAMPLECOUNT_8,
144     *    ((Depth+1) * (Height+1)) is > 4,194,304, OR if the surface’s Number
145     *    of Multisamples is MULTISAMPLECOUNT_4, ((Depth+1) * (Height+1)) is
146     *    > 8,388,608, this field must be set to MSFMT_DEPTH_STENCIL.
147     */
148    if ((info->samples == 8 && info->height > 4194304u) ||
149        (info->samples == 4 && info->height > 8388608u))
150       require_interleaved = true;
151 
152    /* From the Ivybridge PRM, Volume 4 Part 1 p72, SURFACE_STATE, Multisampled
153     * Suface Storage Format:
154     *
155     *    This field must be set to MSFMT_DEPTH_STENCIL if Surface Format is
156     *    one of the following: I24X8_UNORM, L24X8_UNORM, A24X8_UNORM, or
157     *    R24_UNORM_X8_TYPELESS.
158     */
159    if (info->format == ISL_FORMAT_I24X8_UNORM ||
160        info->format == ISL_FORMAT_L24X8_UNORM ||
161        info->format == ISL_FORMAT_A24X8_UNORM ||
162        info->format == ISL_FORMAT_R24_UNORM_X8_TYPELESS)
163       require_interleaved = true;
164 
165    if (require_array && require_interleaved)
166       return false;
167 
168    if (require_interleaved) {
169       *msaa_layout = ISL_MSAA_LAYOUT_INTERLEAVED;
170       return true;
171    }
172 
173    /* Default to the array layout because it permits multisample
174     * compression.
175     */
176    *msaa_layout = ISL_MSAA_LAYOUT_ARRAY;
177    return true;
178 }
179 
180 /**
181  * @brief Filter out tiling flags that are incompatible with the surface.
182  *
183  * The resultant outgoing @a flags is a subset of the incoming @a flags. The
184  * outgoing flags may be empty (0x0) if the incoming flags were too
185  * restrictive.
186  *
187  * For example, if the surface will be used for a display
188  * (ISL_SURF_USAGE_DISPLAY_BIT), then this function filters out all tiling
189  * flags except ISL_TILING_X_BIT and ISL_TILING_LINEAR_BIT.
190  */
191 void
isl_gfx6_filter_tiling(const struct isl_device * dev,const struct isl_surf_init_info * restrict info,isl_tiling_flags_t * flags)192 isl_gfx6_filter_tiling(const struct isl_device *dev,
193                        const struct isl_surf_init_info *restrict info,
194                        isl_tiling_flags_t *flags)
195 {
196    /* IVB+ requires separate stencil */
197    assert(ISL_DEV_USE_SEPARATE_STENCIL(dev));
198 
199    /* Clear flags unsupported on this hardware */
200    assert(ISL_GFX_VERX10(dev) < 125);
201    if (ISL_GFX_VER(dev) >= 12) {
202       *flags &= ISL_TILING_LINEAR_BIT |
203                 ISL_TILING_X_BIT |
204                 ISL_TILING_ANY_Y_MASK;
205    } else if (ISL_GFX_VER(dev) >= 9) {
206       *flags &= ISL_TILING_LINEAR_BIT |
207                 ISL_TILING_X_BIT |
208                 ISL_TILING_W_BIT |
209                 ISL_TILING_ANY_Y_MASK;
210    } else {
211       *flags &= ISL_TILING_LINEAR_BIT |
212                 ISL_TILING_X_BIT |
213                 ISL_TILING_W_BIT |
214                 ISL_TILING_Y0_BIT;
215    }
216 
217    /* And... clear the Yf and Ys bits anyway because Anvil doesn't support
218     * them yet.
219     */
220    *flags &= ~ISL_TILING_Yf_BIT; /* FINISHME[SKL]: Support Yf */
221    *flags &= ~ISL_TILING_Ys_BIT; /* FINISHME[SKL]: Support Ys */
222 
223    if (isl_surf_usage_is_depth(info->usage)) {
224       /* Depth requires Y. */
225       *flags &= ISL_TILING_ANY_Y_MASK;
226    }
227 
228    if (isl_surf_usage_is_stencil(info->usage)) {
229       if (ISL_GFX_VER(dev) >= 12) {
230          /* Stencil requires Y. */
231          *flags &= ISL_TILING_ANY_Y_MASK;
232       } else {
233          /* Stencil requires W. */
234          *flags &= ISL_TILING_W_BIT;
235       }
236    } else {
237       *flags &= ~ISL_TILING_W_BIT;
238    }
239 
240    /* From the SKL+ PRMs, RENDER_SURFACE_STATE:TileMode,
241     *    If Surface Format is ASTC*, this field must be TILEMODE_YMAJOR.
242     */
243    if (isl_format_get_layout(info->format)->txc == ISL_TXC_ASTC)
244       *flags &= ISL_TILING_Y0_BIT;
245 
246    /* MCS buffers are always Y-tiled */
247    if (isl_format_get_layout(info->format)->txc == ISL_TXC_MCS)
248       *flags &= ISL_TILING_Y0_BIT;
249 
250    if (info->usage & ISL_SURF_USAGE_DISPLAY_BIT) {
251       if (ISL_GFX_VER(dev) >= 12) {
252          *flags &= (ISL_TILING_LINEAR_BIT | ISL_TILING_X_BIT |
253                     ISL_TILING_Y0_BIT);
254       } else if (ISL_GFX_VER(dev) >= 9) {
255          /* Note we let Yf even though it was cleared above. This is just for
256           * completeness.
257           */
258          *flags &= (ISL_TILING_LINEAR_BIT | ISL_TILING_X_BIT |
259                     ISL_TILING_Y0_BIT | ISL_TILING_Yf_BIT);
260       } else {
261          /* Before Skylake, the display engine does not accept Y */
262          *flags &= (ISL_TILING_LINEAR_BIT | ISL_TILING_X_BIT);
263       }
264    }
265 
266    if (info->samples > 1) {
267       /* From the Sandybridge PRM, Volume 4 Part 1, SURFACE_STATE Tiled
268        * Surface:
269        *
270        *   For multisample render targets, this field must be 1 (true). MSRTs
271        *   can only be tiled.
272        *
273        * From the Broadwell PRM >> Volume2d: Command Structures >>
274        * RENDER_SURFACE_STATE Tile Mode:
275        *
276        *   If Number of Multisamples is not MULTISAMPLECOUNT_1, this field
277        *   must be YMAJOR.
278        *
279        * As usual, though, stencil is special and requires W-tiling.
280        */
281       *flags &= (ISL_TILING_ANY_Y_MASK | ISL_TILING_W_BIT);
282    }
283 
284    /* workaround */
285    if (ISL_GFX_VER(dev) == 7 &&
286        gfx7_format_needs_valign2(dev, info->format) &&
287        (info->usage & ISL_SURF_USAGE_RENDER_TARGET_BIT) &&
288        info->samples == 1) {
289       /* Y tiling is illegal. From the Ivybridge PRM, Vol4 Part1 2.12.2.1,
290        * SURFACE_STATE Surface Vertical Alignment:
291        *
292        *     This field must be set to VALIGN_4 for all tiled Y Render Target
293        *     surfaces.
294        */
295       *flags &= ~ISL_TILING_Y0_BIT;
296    }
297 
298    /* From the Sandybridge PRM, Volume 1, Part 2, page 32:
299     *
300     *    "NOTE: 128BPE Format Color Buffer ( render target ) MUST be either
301     *     TileX or Linear."
302     *
303     * This is necessary all the way back to 965, but is permitted on Gfx7+.
304     */
305    if (ISL_GFX_VER(dev) < 7 && isl_format_get_layout(info->format)->bpb >= 128)
306       *flags &= ~ISL_TILING_Y0_BIT;
307 
308    /* From the BDW and SKL PRMs, Volume 2d,
309     * RENDER_SURFACE_STATE::Width - Programming Notes:
310     *
311     *   A known issue exists if a primitive is rendered to the first 2 rows and
312     *   last 2 columns of a 16K width surface. If any geometry is drawn inside
313     *   this square it will be copied to column X=2 and X=3 (arrangement on Y
314     *   position will stay the same). If any geometry exceeds the boundaries of
315     *   this 2x2 region it will be drawn normally. The issue also only occurs
316     *   if the surface has TileMode != Linear.
317     *
318     * [Internal documentation notes that this issue isn't present on SKL GT4.]
319     * To prevent this rendering corruption, only allow linear tiling for
320     * surfaces with widths greater than 16K-2 pixels.
321     *
322     * TODO: Is this an issue for multisampled surfaces as well?
323     */
324    if (info->width > 16382 && info->samples == 1 &&
325        info->usage & ISL_SURF_USAGE_RENDER_TARGET_BIT &&
326        (ISL_GFX_VER(dev) == 8 ||
327         (dev->info->is_skylake && dev->info->gt != 4))) {
328           *flags &= ISL_TILING_LINEAR_BIT;
329    }
330 }
331 
332 void
isl_gfx7_choose_image_alignment_el(const struct isl_device * dev,const struct isl_surf_init_info * restrict info,enum isl_tiling tiling,enum isl_dim_layout dim_layout,enum isl_msaa_layout msaa_layout,struct isl_extent3d * image_align_el)333 isl_gfx7_choose_image_alignment_el(const struct isl_device *dev,
334                                    const struct isl_surf_init_info *restrict info,
335                                    enum isl_tiling tiling,
336                                    enum isl_dim_layout dim_layout,
337                                    enum isl_msaa_layout msaa_layout,
338                                    struct isl_extent3d *image_align_el)
339 {
340    assert(ISL_GFX_VER(dev) == 7);
341 
342    /* Handled by isl_choose_image_alignment_el */
343    assert(info->format != ISL_FORMAT_HIZ);
344 
345    /* IVB+ does not support combined depthstencil. */
346    assert(!isl_surf_usage_is_depth_and_stencil(info->usage));
347 
348    /* From the Ivy Bridge PRM, Vol. 2, Part 2, Section 6.18.4.4,
349     * "Alignment unit size", the alignment parameters are summarized in the
350     * following table:
351     *
352     *     Surface Defined By | Surface Format  | Align Width | Align Height
353     *    --------------------+-----------------+-------------+--------------
354     *       DEPTH_BUFFER     |   D16_UNORM     |      8      |      4
355     *                        |     other       |      4      |      4
356     *    --------------------+-----------------+-------------+--------------
357     *       STENCIL_BUFFER   |      N/A        |      8      |      8
358     *    --------------------+-----------------+-------------+--------------
359     *       SURFACE_STATE    | BC*, ETC*, EAC* |      4      |      4
360     *                        |      FXT1       |      8      |      4
361     *                        |   all others    |   HALIGN    |   VALIGN
362     *    -------------------------------------------------------------------
363     */
364    if (isl_surf_usage_is_depth(info->usage)) {
365       *image_align_el = info->format == ISL_FORMAT_R16_UNORM ?
366                         isl_extent3d(8, 4, 1) : isl_extent3d(4, 4, 1);
367       return;
368    } else if (isl_surf_usage_is_stencil(info->usage)) {
369       *image_align_el = isl_extent3d(8, 8, 1);
370       return;
371    } else if (isl_format_is_compressed(info->format)) {
372       /* Compressed formats all have alignment equal to block size. */
373       *image_align_el = isl_extent3d(1, 1, 1);
374       return;
375    }
376 
377    /* Everything after this point is in the "set by Surface Horizontal or
378     * Vertical Alignment" case.  Now it's just a matter of applying
379     * restrictions.
380     */
381 
382    /* There are no restrictions on halign beyond what's given in the table
383     * above.  We set it to the minimum value of 4 because that uses the least
384     * memory.
385     */
386    const uint32_t halign = 4;
387 
388    bool require_valign4 = false;
389 
390    /* From the Ivybridge PRM, Volume 4, Part 1, Section 2.12.1:
391     * RENDER_SURFACE_STATE Surface Vertical Alignment:
392     *
393     *    * This field is intended to be set to VALIGN_4 if the surface was
394     *      rendered as a depth buffer,
395     *
396     *    * for a multisampled (4x) render target, or for a multisampled (8x)
397     *      render target, since these surfaces support only alignment of 4.
398     *
399     *    * This field must be set to VALIGN_4 for all tiled Y Render Target
400     *      surfaces
401     *
402     *    * Value of 1 is not supported for format YCRCB_NORMAL (0x182),
403     *      YCRCB_SWAPUVY (0x183), YCRCB_SWAPUV (0x18f), YCRCB_SWAPY (0x190)
404     *
405     *    * If Number of Multisamples is not MULTISAMPLECOUNT_1, this field
406     *      must be set to VALIGN_4."
407     *
408     * The first restriction is already handled by the table above and the
409     * second restriction is redundant with the fifth.
410     */
411    if (info->samples > 1)
412       require_valign4 = true;
413 
414    if (tiling == ISL_TILING_Y0 &&
415        (info->usage & ISL_SURF_USAGE_RENDER_TARGET_BIT))
416       require_valign4 = true;
417 
418    assert(!(require_valign4 && gfx7_format_needs_valign2(dev, info->format)));
419 
420    /* We default to VALIGN_2 because it uses the least memory. */
421    const uint32_t valign = require_valign4 ? 4 : 2;
422 
423    *image_align_el = isl_extent3d(halign, valign, 1);
424 }
425