OSDN Git Service

isl: Refactor func isl_calc_array_pitch_sa_rows
[android-x86/external-mesa.git] / src / isl / isl.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 <assert.h>
25
26 #include "isl.h"
27 #include "isl_gen4.h"
28 #include "isl_gen6.h"
29 #include "isl_gen7.h"
30 #include "isl_gen8.h"
31 #include "isl_gen9.h"
32 #include "isl_priv.h"
33
34 void PRINTFLIKE(3, 4) UNUSED
35 __isl_finishme(const char *file, int line, const char *fmt, ...)
36 {
37    va_list ap;
38    char buf[512];
39
40    va_start(ap, fmt);
41    vsnprintf(buf, sizeof(buf), fmt, ap);
42    va_end(ap);
43
44    fprintf(stderr, "%s:%d: FINISHME: %s\n", file, line, buf);
45 }
46
47 void
48 isl_device_init(struct isl_device *dev,
49                 const struct brw_device_info *info)
50 {
51    dev->info = info;
52    dev->use_separate_stencil = ISL_DEV_GEN(dev) >= 6;
53
54    /* The ISL_DEV macros may be defined in the CFLAGS, thus hardcoding some
55     * device properties at buildtime. Verify that the macros with the device
56     * properties chosen during runtime.
57     */
58    assert(ISL_DEV_GEN(dev) == dev->info->gen);
59    assert(ISL_DEV_USE_SEPARATE_STENCIL(dev) == dev->use_separate_stencil);
60
61    /* Did we break hiz or stencil? */
62    if (ISL_DEV_USE_SEPARATE_STENCIL(dev))
63       assert(info->has_hiz_and_separate_stencil);
64    if (info->must_use_separate_stencil)
65       assert(ISL_DEV_USE_SEPARATE_STENCIL(dev));
66 }
67
68 /**
69  * @param[out] info is written only on success
70  */
71 bool
72 isl_tiling_get_info(const struct isl_device *dev,
73                     enum isl_tiling tiling,
74                     uint32_t format_block_size,
75                     struct isl_tile_info *tile_info)
76 {
77    const uint32_t bs = format_block_size;
78    uint32_t width, height;
79
80    assert(bs > 0);
81
82    switch (tiling) {
83    case ISL_TILING_LINEAR:
84       width = 1;
85       height = 1;
86       break;
87
88    case ISL_TILING_X:
89       width = 1 << 9;
90       height = 1 << 3;
91       break;
92
93    case ISL_TILING_Y0:
94       width = 1 << 7;
95       height = 1 << 5;
96       break;
97
98    case ISL_TILING_W:
99       /* XXX: Should W tile be same as Y? */
100       width = 1 << 6;
101       height = 1 << 6;
102       break;
103
104    case ISL_TILING_Yf:
105    case ISL_TILING_Ys: {
106       if (ISL_DEV_GEN(dev) < 9)
107          return false;
108
109       if (!isl_is_pow2(bs))
110          return false;
111
112       bool is_Ys = tiling == ISL_TILING_Ys;
113
114       width = 1 << (6 + (ffs(bs) / 2) + (2 * is_Ys));
115       height = 1 << (6 - (ffs(bs) / 2) + (2 * is_Ys));
116       break;
117    }
118    } /* end switch */
119
120    *tile_info = (struct isl_tile_info) {
121       .tiling = tiling,
122       .width = width,
123       .height = height,
124       .size = width * height,
125    };
126
127    return true;
128 }
129
130 void
131 isl_tiling_get_extent(const struct isl_device *dev,
132                       enum isl_tiling tiling,
133                       uint32_t format_block_size,
134                       struct isl_extent2d *e)
135 {
136    struct isl_tile_info tile_info;
137    isl_tiling_get_info(dev, tiling, format_block_size, &tile_info);
138    *e = isl_extent2d(tile_info.width, tile_info.height);
139 }
140
141 /**
142  * @param[out] tiling is set only on success
143  */
144 bool
145 isl_surf_choose_tiling(const struct isl_device *dev,
146                        const struct isl_surf_init_info *restrict info,
147                        enum isl_tiling *tiling)
148 {
149    isl_tiling_flags_t tiling_flags = info->tiling_flags;
150
151    if (ISL_DEV_GEN(dev) >= 7) {
152       gen7_filter_tiling(dev, info, &tiling_flags);
153    } else {
154       isl_finishme("%s: gen%u", __func__, ISL_DEV_GEN(dev));
155       gen7_filter_tiling(dev, info, &tiling_flags);
156    }
157
158    #define CHOOSE(__tiling) \
159       do { \
160          if (tiling_flags & (1u << (__tiling))) { \
161             *tiling = (__tiling); \
162             return true; \
163           } \
164       } while (0)
165
166    /* Of the tiling modes remaining, choose the one that offers the best
167     * performance.
168     */
169
170    if (info->dim == ISL_SURF_DIM_1D) {
171       /* Prefer linear for 1D surfaces because they do not benefit from
172        * tiling. To the contrary, tiling leads to wasted memory and poor
173        * memory locality due to the swizzling and alignment restrictions
174        * required in tiled surfaces.
175        */
176       CHOOSE(ISL_TILING_LINEAR);
177    }
178
179    CHOOSE(ISL_TILING_Ys);
180    CHOOSE(ISL_TILING_Yf);
181    CHOOSE(ISL_TILING_Y0);
182    CHOOSE(ISL_TILING_X);
183    CHOOSE(ISL_TILING_W);
184    CHOOSE(ISL_TILING_LINEAR);
185
186    #undef CHOOSE
187
188    /* No tiling mode accomodates the inputs. */
189    return false;
190 }
191
192 static bool
193 isl_choose_msaa_layout(const struct isl_device *dev,
194                  const struct isl_surf_init_info *info,
195                  enum isl_tiling tiling,
196                  enum isl_msaa_layout *msaa_layout)
197 {
198    if (ISL_DEV_GEN(dev) >= 8) {
199       return gen8_choose_msaa_layout(dev, info, tiling, msaa_layout);
200    } else if (ISL_DEV_GEN(dev) >= 7) {
201       return gen7_choose_msaa_layout(dev, info, tiling, msaa_layout);
202    } else if (ISL_DEV_GEN(dev) >= 6) {
203       return gen6_choose_msaa_layout(dev, info, tiling, msaa_layout);
204    } else {
205       return gen4_choose_msaa_layout(dev, info, tiling, msaa_layout);
206    }
207 }
208
209 static void
210 isl_msaa_interleaved_scale_px_to_sa(uint32_t samples,
211                                     uint32_t *width, uint32_t *height)
212 {
213    assert(isl_is_pow2(samples));
214
215    /* From the Broadwell PRM >> Volume 5: Memory Views >> Computing Mip Level
216     * Sizes (p133):
217     *
218     *    If the surface is multisampled and it is a depth or stencil surface
219     *    or Multisampled Surface StorageFormat in SURFACE_STATE is
220     *    MSFMT_DEPTH_STENCIL, W_L and H_L must be adjusted as follows before
221     *    proceeding: [...]
222     */
223    if (width)
224       *width = isl_align(*width, 2) << ((ffs(samples) - 0) / 2);
225    if (height)
226       *height = isl_align(*height, 2) << ((ffs(samples) - 1) / 2);
227 }
228
229 static enum isl_array_pitch_span
230 isl_choose_array_pitch_span(const struct isl_device *dev,
231                             const struct isl_surf_init_info *restrict info,
232                             enum isl_dim_layout dim_layout,
233                             const struct isl_extent4d *phys_level0_sa)
234 {
235    switch (dim_layout) {
236    case ISL_DIM_LAYOUT_GEN9_1D:
237    case ISL_DIM_LAYOUT_GEN4_2D:
238       if (ISL_DEV_GEN(dev) >= 8) {
239          /* QPitch becomes programmable in Broadwell. So choose the
240           * most compact QPitch possible in order to conserve memory.
241           *
242           * From the Broadwell PRM >> Volume 2d: Command Reference: Structures
243           * >> RENDER_SURFACE_STATE Surface QPitch (p325):
244           *
245           *    - Software must ensure that this field is set to a value
246           *      sufficiently large such that the array slices in the surface
247           *      do not overlap. Refer to the Memory Data Formats section for
248           *      information on how surfaces are stored in memory.
249           *
250           *    - This field specifies the distance in rows between array
251           *      slices.  It is used only in the following cases:
252           *
253           *          - Surface Array is enabled OR
254           *          - Number of Mulitsamples is not NUMSAMPLES_1 and
255           *            Multisampled Surface Storage Format set to MSFMT_MSS OR
256           *          - Surface Type is SURFTYPE_CUBE
257           */
258          return ISL_ARRAY_PITCH_SPAN_COMPACT;
259       } else if (ISL_DEV_GEN(dev) >= 7) {
260          /* Note that Ivybridge introduces
261           * RENDER_SURFACE_STATE.SurfaceArraySpacing, which provides the
262           * driver more control over the QPitch.
263           */
264
265          if (phys_level0_sa->array_len == 1) {
266             /* The hardware will never use the QPitch. So choose the most
267              * compact QPitch possible in order to conserve memory.
268              */
269             return ISL_ARRAY_PITCH_SPAN_COMPACT;
270          }
271
272          if (isl_surf_usage_is_depth_or_stencil(info->usage)) {
273             /* From the Ivybridge PRM >> Volume 1 Part 1: Graphics Core >>
274              * Section 6.18.4.7: Surface Arrays (p112):
275              *
276              *    If Surface Array Spacing is set to ARYSPC_FULL (note that
277              *    the depth buffer and stencil buffer have an implied value of
278              *    ARYSPC_FULL):
279              */
280             return ISL_ARRAY_PITCH_SPAN_COMPACT;
281          }
282
283          if (info->levels == 1) {
284             /* We are able to set RENDER_SURFACE_STATE.SurfaceArraySpacing
285              * to ARYSPC_LOD0.
286              */
287             return ISL_ARRAY_PITCH_SPAN_COMPACT;
288          }
289
290          return ISL_ARRAY_PITCH_SPAN_FULL;
291       } else if ((ISL_DEV_GEN(dev) == 5 || ISL_DEV_GEN(dev) == 6) &&
292                  ISL_DEV_USE_SEPARATE_STENCIL(dev) &&
293                  isl_surf_usage_is_stencil(info->usage)) {
294          /* [ILK-SNB] Errata from the Sandy Bridge PRM >> Volume 4 Part 1:
295           * Graphics Core >> Section 7.18.3.7: Surface Arrays:
296           *
297           *    The separate stencil buffer does not support mip mapping, thus
298           *    the storage for LODs other than LOD 0 is not needed.
299           */
300          assert(info->levels == 1);
301          assert(phys_level0_sa->array_len == 1);
302          return ISL_ARRAY_PITCH_SPAN_COMPACT;
303       } else {
304          if ((ISL_DEV_GEN(dev) == 5 || ISL_DEV_GEN(dev) == 6) &&
305              ISL_DEV_USE_SEPARATE_STENCIL(dev) &&
306              isl_surf_usage_is_stencil(info->usage)) {
307             /* [ILK-SNB] Errata from the Sandy Bridge PRM >> Volume 4 Part 1:
308              * Graphics Core >> Section 7.18.3.7: Surface Arrays:
309              *
310              *    The separate stencil buffer does not support mip mapping,
311              *    thus the storage for LODs other than LOD 0 is not needed.
312              */
313             assert(info->levels == 1);
314             assert(phys_level0_sa->array_len == 1);
315             return ISL_ARRAY_PITCH_SPAN_COMPACT;
316          }
317
318          if (phys_level0_sa->array_len == 1) {
319             /* The hardware will never use the QPitch. So choose the most
320              * compact QPitch possible in order to conserve memory.
321              */
322             return ISL_ARRAY_PITCH_SPAN_COMPACT;
323          }
324
325          return ISL_ARRAY_PITCH_SPAN_FULL;
326       }
327
328    case ISL_DIM_LAYOUT_GEN4_3D:
329       /* The hardware will never use the QPitch. So choose the most
330        * compact QPitch possible in order to conserve memory.
331        */
332       return ISL_ARRAY_PITCH_SPAN_COMPACT;
333    }
334
335    unreachable("bad isl_dim_layout");
336    return ISL_ARRAY_PITCH_SPAN_FULL;
337 }
338
339 static void
340 isl_choose_image_alignment_el(const struct isl_device *dev,
341                               const struct isl_surf_init_info *restrict info,
342                               enum isl_tiling tiling,
343                               enum isl_msaa_layout msaa_layout,
344                               struct isl_extent3d *image_align_el)
345 {
346    if (ISL_DEV_GEN(dev) >= 9) {
347       gen9_choose_image_alignment_el(dev, info, tiling, msaa_layout,
348                                      image_align_el);
349    } else if (ISL_DEV_GEN(dev) >= 8) {
350       gen8_choose_image_alignment_el(dev, info, tiling, msaa_layout,
351                                      image_align_el);
352    } else if (ISL_DEV_GEN(dev) >= 7) {
353       gen7_choose_image_alignment_el(dev, info, tiling, msaa_layout,
354                                      image_align_el);
355    } else if (ISL_DEV_GEN(dev) >= 6) {
356       gen6_choose_image_alignment_el(dev, info, tiling, msaa_layout,
357                                      image_align_el);
358    } else {
359       gen4_choose_image_alignment_el(dev, info, tiling, msaa_layout,
360                                      image_align_el);
361    }
362 }
363
364 static enum isl_dim_layout
365 isl_surf_choose_dim_layout(const struct isl_device *dev,
366                            enum isl_surf_dim logical_dim)
367 {
368    if (ISL_DEV_GEN(dev) >= 9) {
369       switch (logical_dim) {
370       case ISL_SURF_DIM_1D:
371          return ISL_DIM_LAYOUT_GEN9_1D;
372       case ISL_SURF_DIM_2D:
373       case ISL_SURF_DIM_3D:
374          return ISL_DIM_LAYOUT_GEN4_2D;
375       }
376    } else {
377       switch (logical_dim) {
378       case ISL_SURF_DIM_1D:
379       case ISL_SURF_DIM_2D:
380          return ISL_DIM_LAYOUT_GEN4_2D;
381       case ISL_SURF_DIM_3D:
382          return ISL_DIM_LAYOUT_GEN4_3D;
383       }
384    }
385
386    unreachable("bad isl_surf_dim");
387    return ISL_DIM_LAYOUT_GEN4_2D;
388 }
389
390 /**
391  * Calculate the physical extent of the surface's first level, in units of
392  * surface samples. The result is aligned to the format's compression block.
393  */
394 static void
395 isl_calc_phys_level0_extent_sa(const struct isl_device *dev,
396                                const struct isl_surf_init_info *restrict info,
397                                enum isl_dim_layout dim_layout,
398                                enum isl_tiling tiling,
399                                enum isl_msaa_layout msaa_layout,
400                                struct isl_extent4d *phys_level0_sa)
401 {
402    const struct isl_format_layout *fmtl = isl_format_get_layout(info->format);
403
404    if (isl_format_is_yuv(info->format))
405       isl_finishme("%s:%s: YUV format", __FILE__, __func__);
406
407    switch (info->dim) {
408    case ISL_SURF_DIM_1D:
409       assert(info->height == 1);
410       assert(info->depth == 1);
411       assert(info->samples == 1);
412       assert(!isl_format_is_compressed(info->format));
413
414       switch (dim_layout) {
415       case ISL_DIM_LAYOUT_GEN4_3D:
416          unreachable("bad isl_dim_layout");
417
418       case ISL_DIM_LAYOUT_GEN9_1D:
419       case ISL_DIM_LAYOUT_GEN4_2D:
420          *phys_level0_sa = (struct isl_extent4d) {
421             .w = info->width,
422             .h = 1,
423             .d = 1,
424             .a = info->array_len,
425          };
426          break;
427       }
428       break;
429
430    case ISL_SURF_DIM_2D:
431       assert(dim_layout == ISL_DIM_LAYOUT_GEN4_2D);
432
433       if (tiling == ISL_TILING_Ys && info->samples > 1)
434          isl_finishme("%s:%s: multisample TileYs layout", __FILE__, __func__);
435
436       switch (msaa_layout) {
437       case ISL_MSAA_LAYOUT_NONE:
438          assert(info->depth == 1);
439          assert(info->samples == 1);
440
441          *phys_level0_sa = (struct isl_extent4d) {
442             .w = isl_align(info->width, fmtl->bw),
443             .h = isl_align(info->height, fmtl->bh),
444             .d = 1,
445             .a = info->array_len,
446          };
447          break;
448
449       case ISL_MSAA_LAYOUT_ARRAY:
450          assert(info->depth == 1);
451          assert(info->array_len == 1);
452          assert(!isl_format_is_compressed(info->format));
453
454          *phys_level0_sa = (struct isl_extent4d) {
455             .w = info->width,
456             .h = info->height,
457             .d = 1,
458             .a = info->samples,
459          };
460          break;
461
462       case ISL_MSAA_LAYOUT_INTERLEAVED:
463          assert(info->depth == 1);
464          assert(info->array_len == 1);
465          assert(!isl_format_is_compressed(info->format));
466
467          *phys_level0_sa = (struct isl_extent4d) {
468             .w = info->width,
469             .h = info->height,
470             .d = 1,
471             .a = 1,
472          };
473
474          isl_msaa_interleaved_scale_px_to_sa(info->samples,
475                                              &phys_level0_sa->w,
476                                              &phys_level0_sa->h);
477          break;
478       }
479       break;
480
481    case ISL_SURF_DIM_3D:
482       assert(info->array_len == 1);
483       assert(info->samples == 1);
484
485       if (fmtl->bd > 1) {
486          isl_finishme("%s:%s: compression block with depth > 1",
487                       __FILE__, __func__);
488       }
489
490       switch (dim_layout) {
491       case ISL_DIM_LAYOUT_GEN9_1D:
492          unreachable("bad isl_dim_layout");
493
494       case ISL_DIM_LAYOUT_GEN4_2D:
495          assert(ISL_DEV_GEN(dev) >= 9);
496
497          *phys_level0_sa = (struct isl_extent4d) {
498             .w = isl_align(info->width, fmtl->bw),
499             .h = isl_align(info->height, fmtl->bh),
500             .d = 1,
501             .a = info->depth,
502          };
503          break;
504
505       case ISL_DIM_LAYOUT_GEN4_3D:
506          assert(ISL_DEV_GEN(dev) < 9);
507          *phys_level0_sa = (struct isl_extent4d) {
508             .w = isl_align(info->width, fmtl->bw),
509             .h = isl_align(info->height, fmtl->bh),
510             .d = info->depth,
511             .a = 1,
512          };
513          break;
514       }
515       break;
516    }
517 }
518
519 /**
520  * A variant of isl_calc_phys_slice0_extent_sa() specific to
521  * ISL_DIM_LAYOUT_GEN4_2D.
522  */
523 static void
524 isl_calc_phys_slice0_extent_sa_gen4_2d(
525       const struct isl_device *dev,
526       const struct isl_surf_init_info *restrict info,
527       enum isl_msaa_layout msaa_layout,
528       const struct isl_extent3d *image_align_sa,
529       const struct isl_extent4d *phys_level0_sa,
530       struct isl_extent2d *phys_slice0_sa)
531 {
532    const struct isl_format_layout *fmtl = isl_format_get_layout(info->format);
533
534    assert(phys_level0_sa->depth == 1);
535
536    if (info->levels == 1 && msaa_layout != ISL_MSAA_LAYOUT_INTERLEAVED) {
537       /* Do not pad the surface to the image alignment. Instead, pad it only
538        * to the pixel format's block alignment.
539        *
540        * For tiled surfaces, using a reduced alignment here avoids wasting CPU
541        * cycles on the below mipmap layout caluclations. Reducing the
542        * alignment here is safe because we later align the row pitch and array
543        * pitch to the tile boundary. It is safe even for
544        * ISL_MSAA_LAYOUT_INTERLEAVED, because phys_level0_sa is already scaled
545        * to accomodate the interleaved samples.
546        *
547        * For linear surfaces, reducing the alignment here permits us to later
548        * choose an arbitrary, non-aligned row pitch. If the surface backs
549        * a VkBuffer, then an arbitrary pitch may be needed to accomodate
550        * VkBufferImageCopy::bufferRowLength.
551        */
552       *phys_slice0_sa = (struct isl_extent2d) {
553          .w = isl_align_npot(phys_level0_sa->w, fmtl->bw),
554          .h = isl_align_npot(phys_level0_sa->h, fmtl->bh),
555       };
556       return;
557    }
558
559    uint32_t slice_top_w = 0;
560    uint32_t slice_bottom_w = 0;
561    uint32_t slice_left_h = 0;
562    uint32_t slice_right_h = 0;
563
564    uint32_t W0 = phys_level0_sa->w;
565    uint32_t H0 = phys_level0_sa->h;
566
567    for (uint32_t l = 0; l < info->levels; ++l) {
568       uint32_t W = isl_minify(W0, l);
569       uint32_t H = isl_minify(H0, l);
570
571       if (msaa_layout == ISL_MSAA_LAYOUT_INTERLEAVED) {
572          /* From the Broadwell PRM >> Volume 5: Memory Views >> Computing Mip Level
573           * Sizes (p133):
574           *
575           *    If the surface is multisampled and it is a depth or stencil
576           *    surface or Multisampled Surface StorageFormat in
577           *    SURFACE_STATE is MSFMT_DEPTH_STENCIL, W_L and H_L must be
578           *    adjusted as follows before proceeding: [...]
579           */
580          isl_msaa_interleaved_scale_px_to_sa(info->samples, &W, &H);
581       }
582
583       uint32_t w = isl_align_npot(W, image_align_sa->w);
584       uint32_t h = isl_align_npot(H, image_align_sa->h);
585
586       if (l == 0) {
587          slice_top_w = w;
588          slice_left_h = h;
589          slice_right_h = h;
590       } else if (l == 1) {
591          slice_bottom_w = w;
592          slice_left_h += h;
593       } else if (l == 2) {
594          slice_bottom_w += w;
595          slice_right_h += h;
596       } else {
597          slice_right_h += h;
598       }
599    }
600
601    *phys_slice0_sa = (struct isl_extent2d) {
602       .w = MAX(slice_top_w, slice_bottom_w),
603       .h = MAX(slice_left_h, slice_right_h),
604    };
605 }
606
607 /**
608  * A variant of isl_calc_phys_slice0_extent_sa() specific to
609  * ISL_DIM_LAYOUT_GEN4_3D.
610  */
611 static void
612 isl_calc_phys_slice0_extent_sa_gen4_3d(
613       const struct isl_device *dev,
614       const struct isl_surf_init_info *restrict info,
615       const struct isl_extent3d *image_align_sa,
616       const struct isl_extent4d *phys_level0_sa,
617       struct isl_extent2d *phys_slice0_sa)
618 {
619    assert(info->samples == 1);
620    assert(phys_level0_sa->array_len == 1);
621
622    uint32_t slice_w = 0;
623    uint32_t slice_h = 0;
624
625    uint32_t W0 = phys_level0_sa->w;
626    uint32_t H0 = phys_level0_sa->h;
627    uint32_t D0 = phys_level0_sa->d;
628
629    for (uint32_t l = 0; l < info->levels; ++l) {
630       uint32_t level_w = isl_align_npot(isl_minify(W0, l), image_align_sa->w);
631       uint32_t level_h = isl_align_npot(isl_minify(H0, l), image_align_sa->h);
632       uint32_t level_d = isl_align_npot(isl_minify(D0, l), image_align_sa->d);
633
634       uint32_t max_layers_horiz = MIN(level_d, 1u << l);
635       uint32_t max_layers_vert = isl_align(level_d, 1u << l) / (1u << l);
636
637       slice_w = MAX(slice_w, level_w * max_layers_horiz);
638       slice_h += level_h * max_layers_vert;
639    }
640
641    *phys_slice0_sa = (struct isl_extent2d) {
642       .w = slice_w,
643       .h = slice_h,
644    };
645 }
646
647 /**
648  * A variant of isl_calc_phys_slice0_extent_sa() specific to
649  * ISL_DIM_LAYOUT_GEN9_1D.
650  */
651 static void
652 isl_calc_phys_slice0_extent_sa_gen9_1d(
653       const struct isl_device *dev,
654       const struct isl_surf_init_info *restrict info,
655       const struct isl_extent3d *image_align_sa,
656       const struct isl_extent4d *phys_level0_sa,
657       struct isl_extent2d *phys_slice0_sa)
658 {
659    const struct isl_format_layout *fmtl = isl_format_get_layout(info->format);
660
661    assert(phys_level0_sa->height == 1);
662    assert(phys_level0_sa->depth == 1);
663    assert(info->samples == 1);
664    assert(image_align_sa->w >= fmtl->bw);
665
666    uint32_t slice_w = 0;
667    const uint32_t W0 = phys_level0_sa->w;
668
669    for (uint32_t l = 0; l < info->levels; ++l) {
670       uint32_t W = isl_minify(W0, l);
671       uint32_t w = isl_align_npot(W, image_align_sa->w);
672
673       slice_w += w;
674    }
675
676    *phys_slice0_sa = isl_extent2d(slice_w, 1);
677 }
678
679 /**
680  * Calculate the physical extent of the surface's first array slice, in units
681  * of surface samples. If the surface is multi-leveled, then the result will
682  * be aligned to \a image_align_sa.
683  */
684 static void
685 isl_calc_phys_slice0_extent_sa(const struct isl_device *dev,
686                                const struct isl_surf_init_info *restrict info,
687                                enum isl_dim_layout dim_layout,
688                                enum isl_msaa_layout msaa_layout,
689                                const struct isl_extent3d *image_align_sa,
690                                const struct isl_extent4d *phys_level0_sa,
691                                struct isl_extent2d *phys_slice0_sa)
692 {
693    switch (dim_layout) {
694    case ISL_DIM_LAYOUT_GEN9_1D:
695       isl_calc_phys_slice0_extent_sa_gen9_1d(dev, info,
696                                              image_align_sa, phys_level0_sa,
697                                              phys_slice0_sa);
698       return;
699    case ISL_DIM_LAYOUT_GEN4_2D:
700       isl_calc_phys_slice0_extent_sa_gen4_2d(dev, info, msaa_layout,
701                                              image_align_sa, phys_level0_sa,
702                                              phys_slice0_sa);
703       return;
704    case ISL_DIM_LAYOUT_GEN4_3D:
705       isl_calc_phys_slice0_extent_sa_gen4_3d(dev, info, image_align_sa,
706                                              phys_level0_sa, phys_slice0_sa);
707       return;
708    }
709 }
710
711 /**
712  * Calculate the pitch between physical array slices, in units of rows of
713  * surface elements.
714  */
715 static uint32_t
716 isl_calc_array_pitch_el_rows(const struct isl_device *dev,
717                              const struct isl_surf_init_info *restrict info,
718                              const struct isl_tile_info *tile_info,
719                              enum isl_dim_layout dim_layout,
720                              enum isl_array_pitch_span array_pitch_span,
721                              const struct isl_extent3d *image_align_sa,
722                              const struct isl_extent4d *phys_level0_sa,
723                              const struct isl_extent2d *phys_slice0_sa)
724 {
725    const struct isl_format_layout *fmtl = isl_format_get_layout(info->format);
726    uint32_t pitch_sa_rows = 0;
727
728    switch (dim_layout) {
729    case ISL_DIM_LAYOUT_GEN9_1D:
730       /* Each row is an array slice */
731       pitch_sa_rows = 1;
732       break;
733    case ISL_DIM_LAYOUT_GEN4_2D:
734       switch (array_pitch_span) {
735       case ISL_ARRAY_PITCH_SPAN_COMPACT:
736          pitch_sa_rows = isl_align_npot(phys_slice0_sa->h, image_align_sa->h);
737       case ISL_ARRAY_PITCH_SPAN_FULL: {
738          /* The QPitch equation is found in the Broadwell PRM >> Volume 5:
739           * Memory Views >> Common Surface Formats >> Surface Layout >> 2D
740           * Surfaces >> Surface Arrays.
741           */
742          uint32_t H0_sa = phys_level0_sa->h;
743          uint32_t H1_sa = isl_minify(H0_sa, 1);
744
745          uint32_t h0_sa = isl_align_npot(H0_sa, image_align_sa->h);
746          uint32_t h1_sa = isl_align_npot(H1_sa, image_align_sa->h);
747
748          uint32_t m;
749          if (ISL_DEV_GEN(dev) >= 7) {
750             /* The QPitch equation changed slightly in Ivybridge. */
751             m = 12;
752          } else {
753             m = 11;
754          }
755
756          pitch_sa_rows = h0_sa + h1_sa + (m * image_align_sa->h);
757
758          if (ISL_DEV_GEN(dev) == 6 && info->samples > 1 &&
759              (info->height % 4 == 1)) {
760             /* [SNB] Errata from the Sandy Bridge PRM >> Volume 4 Part 1:
761              * Graphics Core >> Section 7.18.3.7: Surface Arrays:
762              *
763              *    [SNB] Errata: Sampler MSAA Qpitch will be 4 greater than
764              *    the value calculated in the equation above , for every
765              *    other odd Surface Height starting from 1 i.e. 1,5,9,13.
766              *
767              * XXX(chadv): Is the errata natural corollary of the physical
768              * layout of interleaved samples?
769              */
770             pitch_sa_rows += 4;
771          }
772
773          pitch_sa_rows = isl_align_npot(pitch_sa_rows, fmtl->bh);
774          } /* end case */
775          break;
776       }
777       break;
778    case ISL_DIM_LAYOUT_GEN4_3D:
779       assert(array_pitch_span == ISL_ARRAY_PITCH_SPAN_COMPACT);
780       pitch_sa_rows = isl_align_npot(phys_slice0_sa->h, image_align_sa->h);
781       break;
782    default:
783       unreachable("bad isl_dim_layout");
784       break;
785    }
786
787    assert(pitch_sa_rows % fmtl->bh == 0);
788    return pitch_sa_rows / fmtl->bh;
789 }
790
791 /**
792  * Calculate the pitch of each surface row, in bytes.
793  */
794 static uint32_t
795 isl_calc_row_pitch(const struct isl_device *dev,
796                    const struct isl_surf_init_info *restrict info,
797                    const struct isl_tile_info *tile_info,
798                    const struct isl_extent3d *image_align_sa,
799                    const struct isl_extent2d *phys_slice0_sa)
800 {
801    const struct isl_format_layout *fmtl = isl_format_get_layout(info->format);
802
803    uint32_t row_pitch = info->min_pitch;
804
805    /* First, align the surface to a cache line boundary, as the PRM explains
806     * below.
807     *
808     * From the Broadwell PRM >> Volume 5: Memory Views >> Common Surface
809     * Formats >> Surface Padding Requirements >> Render Target and Media
810     * Surfaces:
811     *
812     *    The data port accesses data (pixels) outside of the surface if they
813     *    are contained in the same cache request as pixels that are within the
814     *    surface. These pixels will not be returned by the requesting message,
815     *    however if these pixels lie outside of defined pages in the GTT,
816     *    a GTT error will result when the cache request is processed. In order
817     *    to avoid these GTT errors, “padding” at the bottom of the surface is
818     *    sometimes necessary.
819     *
820     * From the Broadwell PRM >> Volume 5: Memory Views >> Common Surface
821     * Formats >> Surface Padding Requirements >> Sampling Engine Surfaces:
822     *
823     *    The sampling engine accesses texels outside of the surface if they
824     *    are contained in the same cache line as texels that are within the
825     *    surface.  These texels will not participate in any calculation
826     *    performed by the sampling engine and will not affect the result of
827     *    any sampling engine operation, however if these texels lie outside of
828     *    defined pages in the GTT, a GTT error will result when the cache line
829     *    is accessed. In order to avoid these GTT errors, “padding” at the
830     *    bottom and right side of a sampling engine surface is sometimes
831     *    necessary.
832     *
833     *    It is possible that a cache line will straddle a page boundary if the
834     *    base address or pitch is not aligned. All pages included in the cache
835     *    lines that are part of the surface must map to valid GTT entries to
836     *    avoid errors. To determine the necessary padding on the bottom and
837     *    right side of the surface, refer to the table in  Alignment Unit Size
838     *    section for the i and j parameters for the surface format in use. The
839     *    surface must then be extended to the next multiple of the alignment
840     *    unit size in each dimension, and all texels contained in this
841     *    extended surface must have valid GTT entries.
842     *
843     *    For example, suppose the surface size is 15 texels by 10 texels and
844     *    the alignment parameters are i=4 and j=2. In this case, the extended
845     *    surface would be 16 by 10. Note that these calculations are done in
846     *    texels, and must be converted to bytes based on the surface format
847     *    being used to determine whether additional pages need to be defined.
848     */
849    assert(phys_slice0_sa->w % fmtl->bw == 0);
850    row_pitch = MAX(row_pitch, fmtl->bs * phys_slice0_sa->w);
851
852    switch (tile_info->tiling) {
853    case ISL_TILING_LINEAR:
854       /* From the Broadwel PRM >> Volume 2d: Command Reference: Structures >>
855        * RENDER_SURFACE_STATE Surface Pitch (p349):
856        *
857        *    - For linear render target surfaces and surfaces accessed with the
858        *      typed data port messages, the pitch must be a multiple of the
859        *      element size for non-YUV surface formats.  Pitch must be
860        *      a multiple of 2 * element size for YUV surface formats.
861        *
862        *    - [Requirements for SURFTYPE_BUFFER and SURFTYPE_STRBUF, which we
863        *      ignore because isl doesn't do buffers.]
864        *
865        *    - For other linear surfaces, the pitch can be any multiple of
866        *      bytes.
867        */
868       if (info->usage & ISL_SURF_USAGE_RENDER_TARGET_BIT) {
869          if (isl_format_is_yuv(info->format)) {
870             row_pitch = isl_align_npot(row_pitch, 2 * fmtl->bs);
871          } else  {
872             row_pitch = isl_align_npot(row_pitch, fmtl->bs);
873          }
874       }
875       break;
876    default:
877       /* From the Broadwel PRM >> Volume 2d: Command Reference: Structures >>
878        * RENDER_SURFACE_STATE Surface Pitch (p349):
879        *
880        *    - For tiled surfaces, the pitch must be a multiple of the tile
881        *      width.
882        */
883       row_pitch = isl_align(row_pitch, tile_info->width);
884       break;
885    }
886
887    return row_pitch;
888 }
889
890 /**
891  * Calculate the surface's total height, including padding, in units of
892  * surface elements.
893  */
894 static uint32_t
895 isl_calc_total_height_el(const struct isl_device *dev,
896                          const struct isl_surf_init_info *restrict info,
897                          const struct isl_tile_info *tile_info,
898                          uint32_t phys_array_len,
899                          uint32_t row_pitch,
900                          uint32_t array_pitch_el_rows)
901 {
902    const struct isl_format_layout *fmtl = isl_format_get_layout(info->format);
903
904    uint32_t total_h_el = phys_array_len * array_pitch_el_rows;
905    uint32_t pad_bytes = 0;
906
907    /* From the Broadwell PRM >> Volume 5: Memory Views >> Common Surface
908     * Formats >> Surface Padding Requirements >> Render Target and Media
909     * Surfaces:
910     *
911     *   The data port accesses data (pixels) outside of the surface if they
912     *   are contained in the same cache request as pixels that are within the
913     *   surface. These pixels will not be returned by the requesting message,
914     *   however if these pixels lie outside of defined pages in the GTT,
915     *   a GTT error will result when the cache request is processed. In
916     *   order to avoid these GTT errors, “padding” at the bottom of the
917     *   surface is sometimes necessary.
918     *
919     * From the Broadwell PRM >> Volume 5: Memory Views >> Common Surface
920     * Formats >> Surface Padding Requirements >> Sampling Engine Surfaces:
921     *
922     *    ... Lots of padding requirements, all listed separately below.
923     */
924
925    /* We can safely ignore the first padding requirement, quoted below,
926     * because isl doesn't do buffers.
927     *
928     *    - [pre-BDW] For buffers, which have no inherent “height,” padding
929     *      requirements are different. A buffer must be padded to the next
930     *      multiple of 256 array elements, with an additional 16 bytes added
931     *      beyond that to account for the L1 cache line.
932     */
933
934    /*
935     *    - For compressed textures [...], padding at the bottom of the surface
936     *      is to an even compressed row.
937     */
938    if (isl_format_is_compressed(info->format))
939       total_h_el = isl_align(total_h_el, 2);
940
941    /*
942     *    - For cube surfaces, an additional two rows of padding are required
943     *      at the bottom of the surface.
944     */
945    if (info->usage & ISL_SURF_USAGE_CUBE_BIT)
946       total_h_el += 2;
947
948    /*
949     *    - For packed YUV, 96 bpt, 48 bpt, and 24 bpt surface formats,
950     *      additional padding is required. These surfaces require an extra row
951     *      plus 16 bytes of padding at the bottom in addition to the general
952     *      padding requirements.
953     */
954    if (isl_format_is_yuv(info->format) &&
955        (fmtl->bs == 96 || fmtl->bs == 48|| fmtl->bs == 24)) {
956       total_h_el += 1;
957       pad_bytes += 16;
958    }
959
960    /*
961     *    - For linear surfaces, additional padding of 64 bytes is required at
962     *      the bottom of the surface. This is in addition to the padding
963     *      required above.
964     */
965    if (tile_info->tiling == ISL_TILING_LINEAR)
966       pad_bytes += 64;
967
968    /* The below text weakens, not strengthens, the padding requirements for
969     * linear surfaces. Therefore we can safely ignore it.
970     *
971     *    - [BDW+] For SURFTYPE_BUFFER, SURFTYPE_1D, and SURFTYPE_2D non-array,
972     *      non-MSAA, non-mip-mapped surfaces in linear memory, the only
973     *      padding requirement is to the next aligned 64-byte boundary beyond
974     *      the end of the surface. The rest of the padding requirements
975     *      documented above do not apply to these surfaces.
976     */
977
978    /*
979     *    - [SKL+] For SURFTYPE_2D and SURFTYPE_3D with linear mode and
980     *      height % 4 != 0, the surface must be padded with
981     *      4-(height % 4)*Surface Pitch # of bytes.
982     */
983    if (ISL_DEV_GEN(dev) >= 9 &&
984        tile_info->tiling == ISL_TILING_LINEAR &&
985        (info->dim == ISL_SURF_DIM_2D || info->dim == ISL_SURF_DIM_3D)) {
986       total_h_el = isl_align(total_h_el, 4);
987    }
988
989    /*
990     *    - [SKL+] For SURFTYPE_1D with linear mode, the surface must be padded
991     *      to 4 times the Surface Pitch # of bytes
992     */
993    if (ISL_DEV_GEN(dev) >= 9 &&
994        tile_info->tiling == ISL_TILING_LINEAR &&
995        info->dim == ISL_SURF_DIM_1D) {
996       total_h_el += 4;
997    }
998
999    /* Be sloppy. Align any leftover padding to a row boundary. */
1000    total_h_el += isl_align_div_npot(pad_bytes, row_pitch);
1001
1002    return total_h_el;
1003 }
1004
1005 bool
1006 isl_surf_init_s(const struct isl_device *dev,
1007                 struct isl_surf *surf,
1008                 const struct isl_surf_init_info *restrict info)
1009 {
1010    const struct isl_format_layout *fmtl = isl_format_get_layout(info->format);
1011
1012    const struct isl_extent4d logical_level0_px = {
1013       .w = info->width,
1014       .h = info->height,
1015       .d = info->depth,
1016       .a = info->array_len,
1017    };
1018
1019    enum isl_dim_layout dim_layout =
1020       isl_surf_choose_dim_layout(dev, info->dim);
1021
1022    enum isl_tiling tiling;
1023    if (!isl_surf_choose_tiling(dev, info, &tiling))
1024       return false;
1025
1026    struct isl_tile_info tile_info;
1027    if (!isl_tiling_get_info(dev, tiling, fmtl->bs, &tile_info))
1028       return false;
1029
1030    enum isl_msaa_layout msaa_layout;
1031    if (!isl_choose_msaa_layout(dev, info, tiling, &msaa_layout))
1032        return false;
1033
1034    struct isl_extent3d image_align_el;
1035    isl_choose_image_alignment_el(dev, info, tiling, msaa_layout,
1036                                  &image_align_el);
1037
1038    struct isl_extent3d image_align_sa =
1039       isl_extent3d_el_to_sa(info->format, image_align_el);
1040
1041    struct isl_extent4d phys_level0_sa;
1042    isl_calc_phys_level0_extent_sa(dev, info, dim_layout, tiling, msaa_layout,
1043                                   &phys_level0_sa);
1044    assert(phys_level0_sa.w % fmtl->bw == 0);
1045    assert(phys_level0_sa.h % fmtl->bh == 0);
1046
1047    enum isl_array_pitch_span array_pitch_span =
1048       isl_choose_array_pitch_span(dev, info, dim_layout, &phys_level0_sa);
1049
1050    struct isl_extent2d phys_slice0_sa;
1051    isl_calc_phys_slice0_extent_sa(dev, info, dim_layout, msaa_layout,
1052                                   &image_align_sa, &phys_level0_sa,
1053                                   &phys_slice0_sa);
1054    assert(phys_slice0_sa.w % fmtl->bw == 0);
1055    assert(phys_slice0_sa.h % fmtl->bh == 0);
1056
1057    const uint32_t row_pitch = isl_calc_row_pitch(dev, info, &tile_info,
1058                                                  &image_align_sa,
1059                                                  &phys_slice0_sa);
1060
1061    const uint32_t array_pitch_el_rows =
1062       isl_calc_array_pitch_el_rows(dev, info, &tile_info, dim_layout,
1063                                    array_pitch_span, &image_align_sa,
1064                                    &phys_level0_sa, &phys_slice0_sa);
1065
1066    const uint32_t total_h_el =
1067       isl_calc_total_height_el(dev, info, &tile_info,
1068                                phys_level0_sa.array_len, row_pitch,
1069                                array_pitch_el_rows);
1070
1071    const uint32_t total_h_sa = total_h_el * fmtl->bh;
1072    const uint32_t size = row_pitch * isl_align(total_h_sa, tile_info.height);
1073
1074    /* Alignment of surface base address, in bytes */
1075    uint32_t base_alignment = MAX(1, info->min_alignment);
1076    assert(isl_is_pow2(base_alignment) && isl_is_pow2(tile_info.size));
1077    base_alignment = MAX(base_alignment, tile_info.size);
1078
1079    *surf = (struct isl_surf) {
1080       .dim = info->dim,
1081       .dim_layout = dim_layout,
1082       .msaa_layout = msaa_layout,
1083       .tiling = tiling,
1084       .format = info->format,
1085
1086       .levels = info->levels,
1087       .samples = info->samples,
1088
1089       .image_alignment_el = image_align_el,
1090       .logical_level0_px = logical_level0_px,
1091       .phys_level0_sa = phys_level0_sa,
1092
1093       .size = size,
1094       .alignment = base_alignment,
1095       .row_pitch = row_pitch,
1096       .array_pitch_el_rows = array_pitch_el_rows,
1097       .array_pitch_span = array_pitch_span,
1098
1099       .usage = info->usage,
1100    };
1101
1102    return true;
1103 }
1104
1105 /**
1106  * A variant of isl_surf_get_image_offset_sa() specific to
1107  * ISL_DIM_LAYOUT_GEN4_2D.
1108  */
1109 static void
1110 get_image_offset_sa_gen4_2d(const struct isl_surf *surf,
1111                             uint32_t level, uint32_t layer,
1112                             uint32_t *x_offset_sa,
1113                             uint32_t *y_offset_sa)
1114 {
1115    assert(level < surf->levels);
1116    assert(layer < surf->phys_level0_sa.array_len);
1117    assert(surf->phys_level0_sa.depth == 1);
1118
1119    const struct isl_extent3d image_align_sa =
1120       isl_surf_get_image_alignment_sa(surf);
1121
1122    const uint32_t W0 = surf->phys_level0_sa.width;
1123    const uint32_t H0 = surf->phys_level0_sa.height;
1124
1125    uint32_t x = 0;
1126    uint32_t y = layer * isl_surf_get_array_pitch_sa_rows(surf);
1127
1128    for (uint32_t l = 0; l < level; ++l) {
1129       if (l == 1) {
1130          uint32_t W = isl_minify(W0, l);
1131
1132          if (surf->msaa_layout == ISL_MSAA_LAYOUT_INTERLEAVED)
1133             isl_msaa_interleaved_scale_px_to_sa(surf->samples, &W, NULL);
1134
1135          x += isl_align_npot(W, image_align_sa.w);
1136       } else {
1137          uint32_t H = isl_minify(H0, l);
1138
1139          if (surf->msaa_layout == ISL_MSAA_LAYOUT_INTERLEAVED)
1140             isl_msaa_interleaved_scale_px_to_sa(surf->samples, NULL, &H);
1141
1142          y += isl_align_npot(H, image_align_sa.h);
1143       }
1144    }
1145
1146    *x_offset_sa = x;
1147    *y_offset_sa = y;
1148 }
1149
1150 /**
1151  * A variant of isl_surf_get_image_offset_sa() specific to
1152  * ISL_DIM_LAYOUT_GEN4_3D.
1153  */
1154 static void
1155 get_image_offset_sa_gen4_3d(const struct isl_surf *surf,
1156                             uint32_t level, uint32_t logical_z_offset_px,
1157                             uint32_t *x_offset_sa,
1158                             uint32_t *y_offset_sa)
1159 {
1160    assert(level < surf->levels);
1161    assert(logical_z_offset_px < isl_minify(surf->phys_level0_sa.depth, level));
1162    assert(surf->phys_level0_sa.array_len == 1);
1163
1164    const struct isl_extent3d image_align_sa =
1165       isl_surf_get_image_alignment_sa(surf);
1166
1167    const uint32_t W0 = surf->phys_level0_sa.width;
1168    const uint32_t H0 = surf->phys_level0_sa.height;
1169    const uint32_t D0 = surf->phys_level0_sa.depth;
1170
1171    uint32_t x = 0;
1172    uint32_t y = 0;
1173
1174    for (uint32_t l = 0; l < level; ++l) {
1175       const uint32_t level_h = isl_align_npot(isl_minify(H0, l), image_align_sa.h);
1176       const uint32_t level_d = isl_align_npot(isl_minify(D0, l), image_align_sa.d);
1177       const uint32_t max_layers_vert = isl_align(level_d, 1u << l) / (1u << l);
1178
1179       y += level_h * max_layers_vert;
1180    }
1181
1182    const uint32_t level_w = isl_align_npot(isl_minify(W0, level), image_align_sa.w);
1183    const uint32_t level_h = isl_align_npot(isl_minify(H0, level), image_align_sa.h);
1184    const uint32_t level_d = isl_align_npot(isl_minify(D0, level), image_align_sa.d);
1185
1186    const uint32_t max_layers_horiz = MIN(level_d, 1u << level);
1187    const uint32_t max_layers_vert = isl_align_div(level_d, 1u << level);
1188
1189    x += level_w * (logical_z_offset_px % max_layers_horiz);
1190    y += level_h * (logical_z_offset_px / max_layers_vert);
1191
1192    *x_offset_sa = x;
1193    *y_offset_sa = y;
1194 }
1195
1196 /**
1197  * A variant of isl_surf_get_image_offset_sa() specific to
1198  * ISL_DIM_LAYOUT_GEN9_1D.
1199  */
1200 static void
1201 get_image_offset_sa_gen9_1d(const struct isl_surf *surf,
1202                             uint32_t level, uint32_t layer,
1203                             uint32_t *x_offset_sa,
1204                             uint32_t *y_offset_sa)
1205 {
1206    assert(level < surf->levels);
1207    assert(layer < surf->phys_level0_sa.array_len);
1208    assert(surf->phys_level0_sa.height == 1);
1209    assert(surf->phys_level0_sa.depth == 1);
1210    assert(surf->samples == 1);
1211
1212    const uint32_t W0 = surf->phys_level0_sa.width;
1213    const struct isl_extent3d image_align_sa =
1214       isl_surf_get_image_alignment_sa(surf);
1215
1216    uint32_t x = layer * isl_surf_get_array_pitch_sa_rows(surf);
1217
1218    for (uint32_t l = 0; l < level; ++l) {
1219       uint32_t W = isl_minify(W0, l);
1220       uint32_t w = isl_align_npot(W, image_align_sa.w);
1221
1222       x += w;
1223    }
1224
1225    *x_offset_sa = x;
1226    *y_offset_sa = 0;
1227 }
1228
1229 void
1230 isl_surf_get_image_offset_sa(const struct isl_surf *surf,
1231                              uint32_t level,
1232                              uint32_t logical_array_layer,
1233                              uint32_t logical_z_offset_px,
1234                              uint32_t *x_offset_sa,
1235                              uint32_t *y_offset_sa)
1236 {
1237    assert(level < surf->levels);
1238    assert(logical_array_layer < surf->logical_level0_px.array_len);
1239    assert(logical_z_offset_px
1240           < isl_minify(surf->logical_level0_px.depth, level));
1241
1242    switch (surf->dim_layout) {
1243    case ISL_DIM_LAYOUT_GEN9_1D:
1244       get_image_offset_sa_gen9_1d(surf, level, logical_array_layer,
1245                                   x_offset_sa, y_offset_sa);
1246       break;
1247    case ISL_DIM_LAYOUT_GEN4_2D:
1248       get_image_offset_sa_gen4_2d(surf, level, logical_array_layer,
1249                                   x_offset_sa, y_offset_sa);
1250       break;
1251    case ISL_DIM_LAYOUT_GEN4_3D:
1252       get_image_offset_sa_gen4_3d(surf, level, logical_z_offset_px,
1253                                   x_offset_sa, y_offset_sa);
1254       break;
1255    }
1256 }