1 /*
2  * Copyright © 2017 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 shall be included
12  * in all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20  * DEALINGS IN THE SOFTWARE.
21  */
22 
23 /**
24  * @file iris_resource.c
25  *
26  * Resources are images, buffers, and other objects used by the GPU.
27  *
28  * XXX: explain resources
29  */
30 
31 #include <stdio.h>
32 #include <errno.h>
33 #include "pipe/p_defines.h"
34 #include "pipe/p_state.h"
35 #include "pipe/p_context.h"
36 #include "pipe/p_screen.h"
37 #include "util/os_memory.h"
38 #include "util/u_cpu_detect.h"
39 #include "util/u_inlines.h"
40 #include "util/format/u_format.h"
41 #include "util/u_threaded_context.h"
42 #include "util/u_transfer.h"
43 #include "util/u_transfer_helper.h"
44 #include "util/u_upload_mgr.h"
45 #include "util/ralloc.h"
46 #include "iris_batch.h"
47 #include "iris_context.h"
48 #include "iris_resource.h"
49 #include "iris_screen.h"
50 #include "intel/common/gen_aux_map.h"
51 #include "intel/dev/gen_debug.h"
52 #include "isl/isl.h"
53 #include "drm-uapi/drm_fourcc.h"
54 #include "drm-uapi/i915_drm.h"
55 
56 enum modifier_priority {
57    MODIFIER_PRIORITY_INVALID = 0,
58    MODIFIER_PRIORITY_LINEAR,
59    MODIFIER_PRIORITY_X,
60    MODIFIER_PRIORITY_Y,
61    MODIFIER_PRIORITY_Y_CCS,
62    MODIFIER_PRIORITY_Y_GEN12_RC_CCS,
63 };
64 
65 static const uint64_t priority_to_modifier[] = {
66    [MODIFIER_PRIORITY_INVALID] = DRM_FORMAT_MOD_INVALID,
67    [MODIFIER_PRIORITY_LINEAR] = DRM_FORMAT_MOD_LINEAR,
68    [MODIFIER_PRIORITY_X] = I915_FORMAT_MOD_X_TILED,
69    [MODIFIER_PRIORITY_Y] = I915_FORMAT_MOD_Y_TILED,
70    [MODIFIER_PRIORITY_Y_CCS] = I915_FORMAT_MOD_Y_TILED_CCS,
71    [MODIFIER_PRIORITY_Y_GEN12_RC_CCS] = I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS,
72 };
73 
74 static bool
modifier_is_supported(const struct gen_device_info * devinfo,enum pipe_format pfmt,uint64_t modifier)75 modifier_is_supported(const struct gen_device_info *devinfo,
76                       enum pipe_format pfmt, uint64_t modifier)
77 {
78    /* Check for basic device support. */
79    switch (modifier) {
80    case DRM_FORMAT_MOD_LINEAR:
81    case I915_FORMAT_MOD_X_TILED:
82    case I915_FORMAT_MOD_Y_TILED:
83       break;
84    case I915_FORMAT_MOD_Y_TILED_CCS:
85       if (devinfo->gen <= 8 || devinfo->gen >= 12)
86          return false;
87       break;
88    case I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS:
89       if (devinfo->gen != 12)
90          return false;
91       break;
92    case DRM_FORMAT_MOD_INVALID:
93    default:
94       return false;
95    }
96 
97    /* Check remaining requirements. */
98    switch (modifier) {
99    case I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS:
100    case I915_FORMAT_MOD_Y_TILED_CCS: {
101       if (unlikely(INTEL_DEBUG & DEBUG_NO_RBC))
102          return false;
103 
104       enum isl_format rt_format =
105          iris_format_for_usage(devinfo, pfmt,
106                                ISL_SURF_USAGE_RENDER_TARGET_BIT).fmt;
107 
108       if (rt_format == ISL_FORMAT_UNSUPPORTED ||
109           !isl_format_supports_ccs_e(devinfo, rt_format))
110          return false;
111       break;
112    }
113    default:
114       break;
115    }
116 
117    return true;
118 }
119 
120 static uint64_t
select_best_modifier(struct gen_device_info * devinfo,enum pipe_format pfmt,const uint64_t * modifiers,int count)121 select_best_modifier(struct gen_device_info *devinfo, enum pipe_format pfmt,
122                      const uint64_t *modifiers,
123                      int count)
124 {
125    enum modifier_priority prio = MODIFIER_PRIORITY_INVALID;
126 
127    for (int i = 0; i < count; i++) {
128       if (!modifier_is_supported(devinfo, pfmt, modifiers[i]))
129          continue;
130 
131       switch (modifiers[i]) {
132       case I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS:
133          prio = MAX2(prio, MODIFIER_PRIORITY_Y_GEN12_RC_CCS);
134          break;
135       case I915_FORMAT_MOD_Y_TILED_CCS:
136          prio = MAX2(prio, MODIFIER_PRIORITY_Y_CCS);
137          break;
138       case I915_FORMAT_MOD_Y_TILED:
139          prio = MAX2(prio, MODIFIER_PRIORITY_Y);
140          break;
141       case I915_FORMAT_MOD_X_TILED:
142          prio = MAX2(prio, MODIFIER_PRIORITY_X);
143          break;
144       case DRM_FORMAT_MOD_LINEAR:
145          prio = MAX2(prio, MODIFIER_PRIORITY_LINEAR);
146          break;
147       case DRM_FORMAT_MOD_INVALID:
148       default:
149          break;
150       }
151    }
152 
153    return priority_to_modifier[prio];
154 }
155 
156 enum isl_surf_dim
target_to_isl_surf_dim(enum pipe_texture_target target)157 target_to_isl_surf_dim(enum pipe_texture_target target)
158 {
159    switch (target) {
160    case PIPE_BUFFER:
161    case PIPE_TEXTURE_1D:
162    case PIPE_TEXTURE_1D_ARRAY:
163       return ISL_SURF_DIM_1D;
164    case PIPE_TEXTURE_2D:
165    case PIPE_TEXTURE_CUBE:
166    case PIPE_TEXTURE_RECT:
167    case PIPE_TEXTURE_2D_ARRAY:
168    case PIPE_TEXTURE_CUBE_ARRAY:
169       return ISL_SURF_DIM_2D;
170    case PIPE_TEXTURE_3D:
171       return ISL_SURF_DIM_3D;
172    case PIPE_MAX_TEXTURE_TYPES:
173       break;
174    }
175    unreachable("invalid texture type");
176 }
177 
178 static void
iris_query_dmabuf_modifiers(struct pipe_screen * pscreen,enum pipe_format pfmt,int max,uint64_t * modifiers,unsigned int * external_only,int * count)179 iris_query_dmabuf_modifiers(struct pipe_screen *pscreen,
180                             enum pipe_format pfmt,
181                             int max,
182                             uint64_t *modifiers,
183                             unsigned int *external_only,
184                             int *count)
185 {
186    struct iris_screen *screen = (void *) pscreen;
187    const struct gen_device_info *devinfo = &screen->devinfo;
188 
189    uint64_t all_modifiers[] = {
190       DRM_FORMAT_MOD_LINEAR,
191       I915_FORMAT_MOD_X_TILED,
192       I915_FORMAT_MOD_Y_TILED,
193       I915_FORMAT_MOD_Y_TILED_CCS,
194       I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS,
195    };
196 
197    int supported_mods = 0;
198 
199    for (int i = 0; i < ARRAY_SIZE(all_modifiers); i++) {
200       if (!modifier_is_supported(devinfo, pfmt, all_modifiers[i]))
201          continue;
202 
203       if (supported_mods < max) {
204          if (modifiers)
205             modifiers[supported_mods] = all_modifiers[i];
206 
207          if (external_only)
208             external_only[supported_mods] = util_format_is_yuv(pfmt);
209       }
210 
211       supported_mods++;
212    }
213 
214    *count = supported_mods;
215 }
216 
217 static isl_surf_usage_flags_t
pipe_bind_to_isl_usage(unsigned bindings)218 pipe_bind_to_isl_usage(unsigned bindings)
219 {
220    isl_surf_usage_flags_t usage = 0;
221 
222    if (bindings & PIPE_BIND_RENDER_TARGET)
223       usage |= ISL_SURF_USAGE_RENDER_TARGET_BIT;
224 
225    if (bindings & PIPE_BIND_SAMPLER_VIEW)
226       usage |= ISL_SURF_USAGE_TEXTURE_BIT;
227 
228    if (bindings & (PIPE_BIND_SHADER_IMAGE | PIPE_BIND_SHADER_BUFFER))
229       usage |= ISL_SURF_USAGE_STORAGE_BIT;
230 
231    if (bindings & PIPE_BIND_SCANOUT)
232       usage |= ISL_SURF_USAGE_DISPLAY_BIT;
233 
234    return usage;
235 }
236 
237 enum isl_format
iris_image_view_get_format(struct iris_context * ice,const struct pipe_image_view * img)238 iris_image_view_get_format(struct iris_context *ice,
239                            const struct pipe_image_view *img)
240 {
241    struct iris_screen *screen = (struct iris_screen *)ice->ctx.screen;
242    const struct gen_device_info *devinfo = &screen->devinfo;
243 
244    isl_surf_usage_flags_t usage = ISL_SURF_USAGE_STORAGE_BIT;
245    enum isl_format isl_fmt =
246       iris_format_for_usage(devinfo, img->format, usage).fmt;
247 
248    if (img->shader_access & PIPE_IMAGE_ACCESS_READ) {
249       /* On Gen8, try to use typed surfaces reads (which support a
250        * limited number of formats), and if not possible, fall back
251        * to untyped reads.
252        */
253       if (devinfo->gen == 8 &&
254           !isl_has_matching_typed_storage_image_format(devinfo, isl_fmt))
255          return ISL_FORMAT_RAW;
256       else
257          return isl_lower_storage_image_format(devinfo, isl_fmt);
258    }
259 
260    return isl_fmt;
261 }
262 
263 struct pipe_resource *
iris_resource_get_separate_stencil(struct pipe_resource * p_res)264 iris_resource_get_separate_stencil(struct pipe_resource *p_res)
265 {
266    /* For packed depth-stencil, we treat depth as the primary resource
267     * and store S8 as the "second plane" resource.
268     */
269    if (p_res->next && p_res->next->format == PIPE_FORMAT_S8_UINT)
270       return p_res->next;
271 
272    return NULL;
273 
274 }
275 
276 static void
iris_resource_set_separate_stencil(struct pipe_resource * p_res,struct pipe_resource * stencil)277 iris_resource_set_separate_stencil(struct pipe_resource *p_res,
278                                    struct pipe_resource *stencil)
279 {
280    assert(util_format_has_depth(util_format_description(p_res->format)));
281    pipe_resource_reference(&p_res->next, stencil);
282 }
283 
284 void
iris_get_depth_stencil_resources(struct pipe_resource * res,struct iris_resource ** out_z,struct iris_resource ** out_s)285 iris_get_depth_stencil_resources(struct pipe_resource *res,
286                                  struct iris_resource **out_z,
287                                  struct iris_resource **out_s)
288 {
289    if (!res) {
290       *out_z = NULL;
291       *out_s = NULL;
292       return;
293    }
294 
295    if (res->format != PIPE_FORMAT_S8_UINT) {
296       *out_z = (void *) res;
297       *out_s = (void *) iris_resource_get_separate_stencil(res);
298    } else {
299       *out_z = NULL;
300       *out_s = (void *) res;
301    }
302 }
303 
304 enum isl_dim_layout
iris_get_isl_dim_layout(const struct gen_device_info * devinfo,enum isl_tiling tiling,enum pipe_texture_target target)305 iris_get_isl_dim_layout(const struct gen_device_info *devinfo,
306                         enum isl_tiling tiling,
307                         enum pipe_texture_target target)
308 {
309    switch (target) {
310    case PIPE_TEXTURE_1D:
311    case PIPE_TEXTURE_1D_ARRAY:
312       return (devinfo->gen >= 9 && tiling == ISL_TILING_LINEAR ?
313               ISL_DIM_LAYOUT_GEN9_1D : ISL_DIM_LAYOUT_GEN4_2D);
314 
315    case PIPE_TEXTURE_2D:
316    case PIPE_TEXTURE_2D_ARRAY:
317    case PIPE_TEXTURE_RECT:
318    case PIPE_TEXTURE_CUBE:
319    case PIPE_TEXTURE_CUBE_ARRAY:
320       return ISL_DIM_LAYOUT_GEN4_2D;
321 
322    case PIPE_TEXTURE_3D:
323       return (devinfo->gen >= 9 ?
324               ISL_DIM_LAYOUT_GEN4_2D : ISL_DIM_LAYOUT_GEN4_3D);
325 
326    case PIPE_MAX_TEXTURE_TYPES:
327    case PIPE_BUFFER:
328       break;
329    }
330    unreachable("invalid texture type");
331 }
332 
333 void
iris_resource_disable_aux(struct iris_resource * res)334 iris_resource_disable_aux(struct iris_resource *res)
335 {
336    iris_bo_unreference(res->aux.bo);
337    iris_bo_unreference(res->aux.clear_color_bo);
338    free(res->aux.state);
339 
340    res->aux.usage = ISL_AUX_USAGE_NONE;
341    res->aux.possible_usages = 1 << ISL_AUX_USAGE_NONE;
342    res->aux.sampler_usages = 1 << ISL_AUX_USAGE_NONE;
343    res->aux.has_hiz = 0;
344    res->aux.surf.size_B = 0;
345    res->aux.bo = NULL;
346    res->aux.extra_aux.surf.size_B = 0;
347    res->aux.clear_color_bo = NULL;
348    res->aux.state = NULL;
349 }
350 
351 static void
iris_resource_destroy(struct pipe_screen * screen,struct pipe_resource * resource)352 iris_resource_destroy(struct pipe_screen *screen,
353                       struct pipe_resource *resource)
354 {
355    struct iris_resource *res = (struct iris_resource *)resource;
356 
357    if (resource->target == PIPE_BUFFER)
358       util_range_destroy(&res->valid_buffer_range);
359 
360    iris_resource_disable_aux(res);
361 
362    iris_bo_unreference(res->bo);
363    iris_pscreen_unref(res->base.screen);
364 
365    free(res);
366 }
367 
368 static struct iris_resource *
iris_alloc_resource(struct pipe_screen * pscreen,const struct pipe_resource * templ)369 iris_alloc_resource(struct pipe_screen *pscreen,
370                     const struct pipe_resource *templ)
371 {
372    struct iris_resource *res = calloc(1, sizeof(struct iris_resource));
373    if (!res)
374       return NULL;
375 
376    res->base = *templ;
377    res->base.screen = iris_pscreen_ref(pscreen);
378    pipe_reference_init(&res->base.reference, 1);
379 
380    res->aux.possible_usages = 1 << ISL_AUX_USAGE_NONE;
381    res->aux.sampler_usages = 1 << ISL_AUX_USAGE_NONE;
382 
383    if (templ->target == PIPE_BUFFER)
384       util_range_init(&res->valid_buffer_range);
385 
386    return res;
387 }
388 
389 unsigned
iris_get_num_logical_layers(const struct iris_resource * res,unsigned level)390 iris_get_num_logical_layers(const struct iris_resource *res, unsigned level)
391 {
392    if (res->surf.dim == ISL_SURF_DIM_3D)
393       return minify(res->surf.logical_level0_px.depth, level);
394    else
395       return res->surf.logical_level0_px.array_len;
396 }
397 
398 static enum isl_aux_state **
create_aux_state_map(struct iris_resource * res,enum isl_aux_state initial)399 create_aux_state_map(struct iris_resource *res, enum isl_aux_state initial)
400 {
401    assert(res->aux.state == NULL);
402 
403    uint32_t total_slices = 0;
404    for (uint32_t level = 0; level < res->surf.levels; level++)
405       total_slices += iris_get_num_logical_layers(res, level);
406 
407    const size_t per_level_array_size =
408       res->surf.levels * sizeof(enum isl_aux_state *);
409 
410    /* We're going to allocate a single chunk of data for both the per-level
411     * reference array and the arrays of aux_state.  This makes cleanup
412     * significantly easier.
413     */
414    const size_t total_size =
415       per_level_array_size + total_slices * sizeof(enum isl_aux_state);
416 
417    void *data = malloc(total_size);
418    if (!data)
419       return NULL;
420 
421    enum isl_aux_state **per_level_arr = data;
422    enum isl_aux_state *s = data + per_level_array_size;
423    for (uint32_t level = 0; level < res->surf.levels; level++) {
424       per_level_arr[level] = s;
425       const unsigned level_layers = iris_get_num_logical_layers(res, level);
426       for (uint32_t a = 0; a < level_layers; a++)
427          *(s++) = initial;
428    }
429    assert((void *)s == data + total_size);
430 
431    return per_level_arr;
432 }
433 
434 static unsigned
iris_get_aux_clear_color_state_size(struct iris_screen * screen)435 iris_get_aux_clear_color_state_size(struct iris_screen *screen)
436 {
437    const struct gen_device_info *devinfo = &screen->devinfo;
438    return devinfo->gen >= 10 ? screen->isl_dev.ss.clear_color_state_size : 0;
439 }
440 
441 static void
map_aux_addresses(struct iris_screen * screen,struct iris_resource * res)442 map_aux_addresses(struct iris_screen *screen, struct iris_resource *res)
443 {
444    const struct gen_device_info *devinfo = &screen->devinfo;
445    if (devinfo->gen >= 12 && isl_aux_usage_has_ccs(res->aux.usage)) {
446       void *aux_map_ctx = iris_bufmgr_get_aux_map_context(screen->bufmgr);
447       assert(aux_map_ctx);
448       const unsigned aux_offset = res->aux.extra_aux.surf.size_B > 0 ?
449          res->aux.extra_aux.offset : res->aux.offset;
450       gen_aux_map_add_image(aux_map_ctx, &res->surf, res->bo->gtt_offset,
451                             res->aux.bo->gtt_offset + aux_offset);
452       res->bo->aux_map_address = res->aux.bo->gtt_offset;
453    }
454 }
455 
456 static bool
want_ccs_e_for_format(const struct gen_device_info * devinfo,enum isl_format format)457 want_ccs_e_for_format(const struct gen_device_info *devinfo,
458                       enum isl_format format)
459 {
460    if (!isl_format_supports_ccs_e(devinfo, format))
461       return false;
462 
463    const struct isl_format_layout *fmtl = isl_format_get_layout(format);
464 
465    /* CCS_E seems to significantly hurt performance with 32-bit floating
466     * point formats.  For example, Paraview's "Wavelet Volume" case uses
467     * both R32_FLOAT and R32G32B32A32_FLOAT, and enabling CCS_E for those
468     * formats causes a 62% FPS drop.
469     *
470     * However, many benchmarks seem to use 16-bit float with no issues.
471     */
472    if (fmtl->channels.r.bits == 32 && fmtl->channels.r.type == ISL_SFLOAT)
473       return false;
474 
475    return true;
476 }
477 
478 /**
479  * Configure aux for the resource, but don't allocate it. For images which
480  * might be shared with modifiers, we must allocate the image and aux data in
481  * a single bo.
482  *
483  * Returns false on unexpected error (e.g. allocation failed, or invalid
484  * configuration result).
485  */
486 static bool
iris_resource_configure_aux(struct iris_screen * screen,struct iris_resource * res,bool imported,uint64_t * aux_size_B,uint32_t * alloc_flags)487 iris_resource_configure_aux(struct iris_screen *screen,
488                             struct iris_resource *res, bool imported,
489                             uint64_t *aux_size_B,
490                             uint32_t *alloc_flags)
491 {
492    const struct gen_device_info *devinfo = &screen->devinfo;
493 
494    /* Try to create the auxiliary surfaces allowed by the modifier or by
495     * the user if no modifier is specified.
496     */
497    assert(!res->mod_info ||
498           res->mod_info->aux_usage == ISL_AUX_USAGE_NONE ||
499           res->mod_info->aux_usage == ISL_AUX_USAGE_CCS_E ||
500           res->mod_info->aux_usage == ISL_AUX_USAGE_GEN12_CCS_E);
501 
502    const bool has_mcs = !res->mod_info &&
503       isl_surf_get_mcs_surf(&screen->isl_dev, &res->surf, &res->aux.surf);
504 
505    const bool has_hiz = !res->mod_info && !(INTEL_DEBUG & DEBUG_NO_HIZ) &&
506       isl_surf_get_hiz_surf(&screen->isl_dev, &res->surf, &res->aux.surf);
507 
508    const bool has_ccs =
509       ((!res->mod_info && !(INTEL_DEBUG & DEBUG_NO_RBC)) ||
510        (res->mod_info && res->mod_info->aux_usage != ISL_AUX_USAGE_NONE)) &&
511       isl_surf_get_ccs_surf(&screen->isl_dev, &res->surf, &res->aux.surf,
512                             &res->aux.extra_aux.surf, 0);
513 
514    /* Having both HIZ and MCS is impossible. */
515    assert(!has_mcs || !has_hiz);
516 
517    /* Ensure aux surface creation for MCS_CCS and HIZ_CCS is correct. */
518    if (has_ccs && (has_mcs || has_hiz)) {
519       assert(res->aux.extra_aux.surf.size_B > 0 &&
520              res->aux.extra_aux.surf.usage & ISL_SURF_USAGE_CCS_BIT);
521       assert(res->aux.surf.size_B > 0 &&
522              res->aux.surf.usage &
523              (ISL_SURF_USAGE_HIZ_BIT | ISL_SURF_USAGE_MCS_BIT));
524    }
525 
526    if (res->mod_info && has_ccs) {
527       /* Only allow a CCS modifier if the aux was created successfully. */
528       res->aux.possible_usages |= 1 << res->mod_info->aux_usage;
529    } else if (has_mcs) {
530       res->aux.possible_usages |=
531          1 << (has_ccs ? ISL_AUX_USAGE_MCS_CCS : ISL_AUX_USAGE_MCS);
532    } else if (has_hiz) {
533       if (!has_ccs) {
534          res->aux.possible_usages |= 1 << ISL_AUX_USAGE_HIZ;
535       } else if (res->surf.samples == 1 &&
536                  (res->surf.usage & ISL_SURF_USAGE_TEXTURE_BIT)) {
537          /* If this resource is single-sampled and will be used as a texture,
538           * put the HiZ surface in write-through mode so that we can sample
539           * from it.
540           */
541          res->aux.possible_usages |= 1 << ISL_AUX_USAGE_HIZ_CCS_WT;
542       } else {
543          res->aux.possible_usages |= 1 << ISL_AUX_USAGE_HIZ_CCS;
544       }
545    } else if (has_ccs && isl_surf_usage_is_stencil(res->surf.usage)) {
546       res->aux.possible_usages |= 1 << ISL_AUX_USAGE_STC_CCS;
547    } else if (has_ccs) {
548       if (want_ccs_e_for_format(devinfo, res->surf.format)) {
549          res->aux.possible_usages |= devinfo->gen < 12 ?
550             1 << ISL_AUX_USAGE_CCS_E : 1 << ISL_AUX_USAGE_GEN12_CCS_E;
551       } else if (isl_format_supports_ccs_d(devinfo, res->surf.format)) {
552          res->aux.possible_usages |= 1 << ISL_AUX_USAGE_CCS_D;
553       }
554    }
555 
556    res->aux.usage = util_last_bit(res->aux.possible_usages) - 1;
557 
558    res->aux.sampler_usages = res->aux.possible_usages;
559 
560    /* We don't always support sampling with hiz. But when we do, it must be
561     * single sampled.
562     */
563    if (!devinfo->has_sample_with_hiz || res->surf.samples > 1)
564       res->aux.sampler_usages &= ~(1 << ISL_AUX_USAGE_HIZ);
565 
566    /* ISL_AUX_USAGE_HIZ_CCS doesn't support sampling at all */
567    res->aux.sampler_usages &= ~(1 << ISL_AUX_USAGE_HIZ_CCS);
568 
569    enum isl_aux_state initial_state;
570    *aux_size_B = 0;
571    *alloc_flags = 0;
572    assert(!res->aux.bo);
573 
574    switch (res->aux.usage) {
575    case ISL_AUX_USAGE_NONE:
576       /* Having no aux buffer is only okay if there's no modifier with aux. */
577       return !res->mod_info || res->mod_info->aux_usage == ISL_AUX_USAGE_NONE;
578    case ISL_AUX_USAGE_HIZ:
579    case ISL_AUX_USAGE_HIZ_CCS:
580    case ISL_AUX_USAGE_HIZ_CCS_WT:
581       initial_state = ISL_AUX_STATE_AUX_INVALID;
582       break;
583    case ISL_AUX_USAGE_MCS:
584    case ISL_AUX_USAGE_MCS_CCS:
585       /* The Ivybridge PRM, Vol 2 Part 1 p326 says:
586        *
587        *    "When MCS buffer is enabled and bound to MSRT, it is required
588        *     that it is cleared prior to any rendering."
589        *
590        * Since we only use the MCS buffer for rendering, we just clear it
591        * immediately on allocation.  The clear value for MCS buffers is all
592        * 1's, so we simply memset it to 0xff.
593        */
594       initial_state = ISL_AUX_STATE_CLEAR;
595       break;
596    case ISL_AUX_USAGE_CCS_D:
597    case ISL_AUX_USAGE_CCS_E:
598    case ISL_AUX_USAGE_GEN12_CCS_E:
599    case ISL_AUX_USAGE_STC_CCS:
600       /* When CCS_E is used, we need to ensure that the CCS starts off in
601        * a valid state.  From the Sky Lake PRM, "MCS Buffer for Render
602        * Target(s)":
603        *
604        *    "If Software wants to enable Color Compression without Fast
605        *     clear, Software needs to initialize MCS with zeros."
606        *
607        * A CCS value of 0 indicates that the corresponding block is in the
608        * pass-through state which is what we want.
609        *
610        * For CCS_D, do the same thing.  On Gen9+, this avoids having any
611        * undefined bits in the aux buffer.
612        */
613       if (imported) {
614          assert(res->aux.usage != ISL_AUX_USAGE_STC_CCS);
615          initial_state =
616             isl_drm_modifier_get_default_aux_state(res->mod_info->modifier);
617       } else {
618          initial_state = ISL_AUX_STATE_PASS_THROUGH;
619       }
620       *alloc_flags |= BO_ALLOC_ZEROED;
621       break;
622    case ISL_AUX_USAGE_MC:
623    default:
624       unreachable("Unsupported aux mode");
625    }
626 
627    /* Create the aux_state for the auxiliary buffer. */
628    res->aux.state = create_aux_state_map(res, initial_state);
629    if (!res->aux.state)
630       return false;
631 
632    /* Increase the aux offset if the main and aux surfaces will share a BO. */
633    res->aux.offset =
634       !res->mod_info || res->mod_info->aux_usage == res->aux.usage ?
635       ALIGN(res->surf.size_B, res->aux.surf.alignment_B) : 0;
636    uint64_t size = res->aux.surf.size_B;
637 
638    /* Allocate space in the buffer for storing the CCS. */
639    if (res->aux.extra_aux.surf.size_B > 0) {
640       const uint64_t padded_aux_size =
641          ALIGN(size, res->aux.extra_aux.surf.alignment_B);
642       res->aux.extra_aux.offset = res->aux.offset + padded_aux_size;
643       size = padded_aux_size + res->aux.extra_aux.surf.size_B;
644    }
645 
646    /* Allocate space in the buffer for storing the clear color. On modern
647     * platforms (gen > 9), we can read it directly from such buffer.
648     *
649     * On gen <= 9, we are going to store the clear color on the buffer
650     * anyways, and copy it back to the surface state during state emission.
651     *
652     * Also add some padding to make sure the fast clear color state buffer
653     * starts at a 4K alignment. We believe that 256B might be enough, but due
654     * to lack of testing we will leave this as 4K for now.
655     */
656    size = ALIGN(size, 4096);
657    res->aux.clear_color_offset = res->aux.offset + size;
658    size += iris_get_aux_clear_color_state_size(screen);
659    *aux_size_B = size;
660 
661    if (isl_aux_usage_has_hiz(res->aux.usage)) {
662       for (unsigned level = 0; level < res->surf.levels; ++level) {
663          uint32_t width = u_minify(res->surf.phys_level0_sa.width, level);
664          uint32_t height = u_minify(res->surf.phys_level0_sa.height, level);
665 
666          /* Disable HiZ for LOD > 0 unless the width/height are 8x4 aligned.
667           * For LOD == 0, we can grow the dimensions to make it work.
668           */
669          if (level == 0 || ((width & 7) == 0 && (height & 3) == 0))
670             res->aux.has_hiz |= 1 << level;
671       }
672    }
673 
674    return true;
675 }
676 
677 /**
678  * Initialize the aux buffer contents.
679  *
680  * Returns false on unexpected error (e.g. mapping a BO failed).
681  */
682 static bool
iris_resource_init_aux_buf(struct iris_resource * res,uint32_t alloc_flags,unsigned clear_color_state_size)683 iris_resource_init_aux_buf(struct iris_resource *res, uint32_t alloc_flags,
684                            unsigned clear_color_state_size)
685 {
686    if (!(alloc_flags & BO_ALLOC_ZEROED)) {
687       void *map = iris_bo_map(NULL, res->aux.bo, MAP_WRITE | MAP_RAW);
688 
689       if (!map)
690          return false;
691 
692       if (iris_resource_get_aux_state(res, 0, 0) != ISL_AUX_STATE_AUX_INVALID) {
693          uint8_t memset_value = isl_aux_usage_has_mcs(res->aux.usage) ? 0xFF : 0;
694          memset((char*)map + res->aux.offset, memset_value,
695                 res->aux.surf.size_B);
696       }
697 
698       memset((char*)map + res->aux.extra_aux.offset,
699              0, res->aux.extra_aux.surf.size_B);
700 
701       /* Zero the indirect clear color to match ::fast_clear_color. */
702       memset((char *)map + res->aux.clear_color_offset, 0,
703              clear_color_state_size);
704 
705       iris_bo_unmap(res->aux.bo);
706    }
707 
708    if (clear_color_state_size > 0) {
709       res->aux.clear_color_bo = res->aux.bo;
710       iris_bo_reference(res->aux.clear_color_bo);
711    }
712 
713    return true;
714 }
715 
716 /**
717  * Allocate the initial aux surface for a resource based on aux.usage
718  *
719  * Returns false on unexpected error (e.g. allocation failed, or invalid
720  * configuration result).
721  */
722 static bool
iris_resource_alloc_separate_aux(struct iris_screen * screen,struct iris_resource * res)723 iris_resource_alloc_separate_aux(struct iris_screen *screen,
724                                  struct iris_resource *res)
725 {
726    uint32_t alloc_flags;
727    uint64_t size;
728    if (!iris_resource_configure_aux(screen, res, false, &size, &alloc_flags))
729       return false;
730 
731    if (size == 0)
732       return true;
733 
734    /* Allocate the auxiliary buffer.  ISL has stricter set of alignment rules
735     * the drm allocator.  Therefore, one can pass the ISL dimensions in terms
736     * of bytes instead of trying to recalculate based on different format
737     * block sizes.
738     */
739    res->aux.bo = iris_bo_alloc_tiled(screen->bufmgr, "aux buffer", size, 4096,
740                                      IRIS_MEMZONE_OTHER,
741                                      isl_tiling_to_i915_tiling(res->aux.surf.tiling),
742                                      res->aux.surf.row_pitch_B, alloc_flags);
743    if (!res->aux.bo) {
744       return false;
745    }
746 
747    if (!iris_resource_init_aux_buf(res, alloc_flags,
748                                    iris_get_aux_clear_color_state_size(screen)))
749       return false;
750 
751    map_aux_addresses(screen, res);
752 
753    return true;
754 }
755 
756 void
iris_resource_finish_aux_import(struct pipe_screen * pscreen,struct iris_resource * res)757 iris_resource_finish_aux_import(struct pipe_screen *pscreen,
758                                 struct iris_resource *res)
759 {
760    struct iris_screen *screen = (struct iris_screen *)pscreen;
761    assert(iris_resource_unfinished_aux_import(res));
762    assert(!res->mod_info->supports_clear_color);
763 
764    struct iris_resource *aux_res = (void *) res->base.next;
765    assert(aux_res->aux.surf.row_pitch_B && aux_res->aux.offset &&
766           aux_res->aux.bo);
767 
768    assert(res->bo == aux_res->aux.bo);
769    iris_bo_reference(aux_res->aux.bo);
770    res->aux.bo = aux_res->aux.bo;
771 
772    res->aux.offset = aux_res->aux.offset;
773 
774    assert(res->bo->size >= (res->aux.offset + res->aux.surf.size_B));
775    assert(res->aux.clear_color_bo == NULL);
776    res->aux.clear_color_offset = 0;
777 
778    assert(aux_res->aux.surf.row_pitch_B == res->aux.surf.row_pitch_B);
779 
780    unsigned clear_color_state_size =
781       iris_get_aux_clear_color_state_size(screen);
782 
783    if (clear_color_state_size > 0) {
784       res->aux.clear_color_bo =
785          iris_bo_alloc_tiled(screen->bufmgr, "clear color_buffer",
786                              clear_color_state_size, 1, IRIS_MEMZONE_OTHER,
787                              I915_TILING_NONE, 0, BO_ALLOC_ZEROED);
788       res->aux.clear_color_offset = 0;
789    }
790 
791    iris_resource_destroy(&screen->base, res->base.next);
792    res->base.next = NULL;
793 
794    map_aux_addresses(screen, res);
795 }
796 
797 static struct pipe_resource *
iris_resource_create_for_buffer(struct pipe_screen * pscreen,const struct pipe_resource * templ)798 iris_resource_create_for_buffer(struct pipe_screen *pscreen,
799                                 const struct pipe_resource *templ)
800 {
801    struct iris_screen *screen = (struct iris_screen *)pscreen;
802    struct iris_resource *res = iris_alloc_resource(pscreen, templ);
803 
804    assert(templ->target == PIPE_BUFFER);
805    assert(templ->height0 <= 1);
806    assert(templ->depth0 <= 1);
807    assert(templ->format == PIPE_FORMAT_NONE ||
808           util_format_get_blocksize(templ->format) == 1);
809 
810    res->internal_format = templ->format;
811    res->surf.tiling = ISL_TILING_LINEAR;
812 
813    enum iris_memory_zone memzone = IRIS_MEMZONE_OTHER;
814    const char *name = templ->target == PIPE_BUFFER ? "buffer" : "miptree";
815    if (templ->flags & IRIS_RESOURCE_FLAG_SHADER_MEMZONE) {
816       memzone = IRIS_MEMZONE_SHADER;
817       name = "shader kernels";
818    } else if (templ->flags & IRIS_RESOURCE_FLAG_SURFACE_MEMZONE) {
819       memzone = IRIS_MEMZONE_SURFACE;
820       name = "surface state";
821    } else if (templ->flags & IRIS_RESOURCE_FLAG_DYNAMIC_MEMZONE) {
822       memzone = IRIS_MEMZONE_DYNAMIC;
823       name = "dynamic state";
824    }
825 
826    res->bo = iris_bo_alloc(screen->bufmgr, name, templ->width0, memzone);
827    if (!res->bo) {
828       iris_resource_destroy(pscreen, &res->base);
829       return NULL;
830    }
831 
832    if (templ->bind & PIPE_BIND_SHARED)
833       iris_bo_make_external(res->bo);
834 
835    return &res->base;
836 }
837 
838 static struct pipe_resource *
iris_resource_create_with_modifiers(struct pipe_screen * pscreen,const struct pipe_resource * templ,const uint64_t * modifiers,int modifiers_count)839 iris_resource_create_with_modifiers(struct pipe_screen *pscreen,
840                                     const struct pipe_resource *templ,
841                                     const uint64_t *modifiers,
842                                     int modifiers_count)
843 {
844    struct iris_screen *screen = (struct iris_screen *)pscreen;
845    struct gen_device_info *devinfo = &screen->devinfo;
846    struct iris_resource *res = iris_alloc_resource(pscreen, templ);
847 
848    if (!res)
849       return NULL;
850 
851    const struct util_format_description *format_desc =
852       util_format_description(templ->format);
853    const bool has_depth = util_format_has_depth(format_desc);
854    uint64_t modifier =
855       select_best_modifier(devinfo, templ->format, modifiers, modifiers_count);
856 
857    isl_tiling_flags_t tiling_flags = ISL_TILING_ANY_MASK;
858 
859    if (modifier != DRM_FORMAT_MOD_INVALID) {
860       res->mod_info = isl_drm_modifier_get_info(modifier);
861 
862       tiling_flags = 1 << res->mod_info->tiling;
863    } else {
864       if (modifiers_count > 0) {
865          fprintf(stderr, "Unsupported modifier, resource creation failed.\n");
866          goto fail;
867       }
868 
869       /* Use linear for staging buffers */
870       if (templ->usage == PIPE_USAGE_STAGING ||
871           templ->bind & (PIPE_BIND_LINEAR | PIPE_BIND_CURSOR) ) {
872          tiling_flags = ISL_TILING_LINEAR_BIT;
873       } else if (templ->bind & PIPE_BIND_SCANOUT) {
874          if (devinfo->has_tiling_uapi)
875             tiling_flags = ISL_TILING_X_BIT;
876          else
877             tiling_flags = ISL_TILING_LINEAR_BIT;
878       }
879    }
880 
881    isl_surf_usage_flags_t usage = pipe_bind_to_isl_usage(templ->bind);
882 
883    if (templ->target == PIPE_TEXTURE_CUBE ||
884        templ->target == PIPE_TEXTURE_CUBE_ARRAY)
885       usage |= ISL_SURF_USAGE_CUBE_BIT;
886 
887    if (templ->usage != PIPE_USAGE_STAGING) {
888       if (templ->format == PIPE_FORMAT_S8_UINT)
889          usage |= ISL_SURF_USAGE_STENCIL_BIT;
890       else if (has_depth)
891          usage |= ISL_SURF_USAGE_DEPTH_BIT;
892    }
893 
894    enum pipe_format pfmt = templ->format;
895    res->internal_format = pfmt;
896 
897    /* Should be handled by u_transfer_helper */
898    assert(!util_format_is_depth_and_stencil(pfmt));
899 
900    struct iris_format_info fmt = iris_format_for_usage(devinfo, pfmt, usage);
901    assert(fmt.fmt != ISL_FORMAT_UNSUPPORTED);
902 
903    UNUSED const bool isl_surf_created_successfully =
904       isl_surf_init(&screen->isl_dev, &res->surf,
905                     .dim = target_to_isl_surf_dim(templ->target),
906                     .format = fmt.fmt,
907                     .width = templ->width0,
908                     .height = templ->height0,
909                     .depth = templ->depth0,
910                     .levels = templ->last_level + 1,
911                     .array_len = templ->array_size,
912                     .samples = MAX2(templ->nr_samples, 1),
913                     .min_alignment_B = 0,
914                     .row_pitch_B = 0,
915                     .usage = usage,
916                     .tiling_flags = tiling_flags);
917    assert(isl_surf_created_successfully);
918 
919    const char *name = "miptree";
920    enum iris_memory_zone memzone = IRIS_MEMZONE_OTHER;
921 
922    unsigned int flags = 0;
923    if (templ->usage == PIPE_USAGE_STAGING)
924       flags |= BO_ALLOC_COHERENT;
925 
926    /* These are for u_upload_mgr buffers only */
927    assert(!(templ->flags & (IRIS_RESOURCE_FLAG_SHADER_MEMZONE |
928                             IRIS_RESOURCE_FLAG_SURFACE_MEMZONE |
929                             IRIS_RESOURCE_FLAG_DYNAMIC_MEMZONE)));
930 
931    uint32_t aux_preferred_alloc_flags;
932    uint64_t aux_size = 0;
933    if (!iris_resource_configure_aux(screen, res, false, &aux_size,
934                                     &aux_preferred_alloc_flags)) {
935       goto fail;
936    }
937 
938    /* Modifiers require the aux data to be in the same buffer as the main
939     * surface, but we combine them even when a modifiers is not being used.
940     */
941    const uint64_t bo_size =
942       MAX2(res->surf.size_B, res->aux.offset + aux_size);
943    uint32_t alignment = MAX2(4096, res->surf.alignment_B);
944    res->bo = iris_bo_alloc_tiled(screen->bufmgr, name, bo_size, alignment,
945                                  memzone,
946                                  isl_tiling_to_i915_tiling(res->surf.tiling),
947                                  res->surf.row_pitch_B, flags);
948 
949    if (!res->bo)
950       goto fail;
951 
952    if (aux_size > 0) {
953       res->aux.bo = res->bo;
954       iris_bo_reference(res->aux.bo);
955       unsigned clear_color_state_size =
956          iris_get_aux_clear_color_state_size(screen);
957       if (!iris_resource_init_aux_buf(res, flags, clear_color_state_size))
958          goto fail;
959       map_aux_addresses(screen, res);
960    }
961 
962    if (templ->bind & PIPE_BIND_SHARED)
963       iris_bo_make_external(res->bo);
964 
965    return &res->base;
966 
967 fail:
968    fprintf(stderr, "XXX: resource creation failed\n");
969    iris_resource_destroy(pscreen, &res->base);
970    return NULL;
971 
972 }
973 
974 static struct pipe_resource *
iris_resource_create(struct pipe_screen * pscreen,const struct pipe_resource * templ)975 iris_resource_create(struct pipe_screen *pscreen,
976                      const struct pipe_resource *templ)
977 {
978    if (templ->target == PIPE_BUFFER)
979       return iris_resource_create_for_buffer(pscreen, templ);
980    else
981       return iris_resource_create_with_modifiers(pscreen, templ, NULL, 0);
982 }
983 
984 static uint64_t
tiling_to_modifier(uint32_t tiling)985 tiling_to_modifier(uint32_t tiling)
986 {
987    static const uint64_t map[] = {
988       [I915_TILING_NONE]   = DRM_FORMAT_MOD_LINEAR,
989       [I915_TILING_X]      = I915_FORMAT_MOD_X_TILED,
990       [I915_TILING_Y]      = I915_FORMAT_MOD_Y_TILED,
991    };
992 
993    assert(tiling < ARRAY_SIZE(map));
994 
995    return map[tiling];
996 }
997 
998 static struct pipe_resource *
iris_resource_from_user_memory(struct pipe_screen * pscreen,const struct pipe_resource * templ,void * user_memory)999 iris_resource_from_user_memory(struct pipe_screen *pscreen,
1000                                const struct pipe_resource *templ,
1001                                void *user_memory)
1002 {
1003    struct iris_screen *screen = (struct iris_screen *)pscreen;
1004    struct iris_bufmgr *bufmgr = screen->bufmgr;
1005    struct iris_resource *res = iris_alloc_resource(pscreen, templ);
1006    if (!res)
1007       return NULL;
1008 
1009    assert(templ->target == PIPE_BUFFER);
1010 
1011    res->internal_format = templ->format;
1012    res->bo = iris_bo_create_userptr(bufmgr, "user",
1013                                     user_memory, templ->width0,
1014                                     IRIS_MEMZONE_OTHER);
1015    if (!res->bo) {
1016       iris_resource_destroy(pscreen, &res->base);
1017       return NULL;
1018    }
1019 
1020    util_range_add(&res->base, &res->valid_buffer_range, 0, templ->width0);
1021 
1022    return &res->base;
1023 }
1024 
1025 static struct pipe_resource *
iris_resource_from_handle(struct pipe_screen * pscreen,const struct pipe_resource * templ,struct winsys_handle * whandle,unsigned usage)1026 iris_resource_from_handle(struct pipe_screen *pscreen,
1027                           const struct pipe_resource *templ,
1028                           struct winsys_handle *whandle,
1029                           unsigned usage)
1030 {
1031    struct iris_screen *screen = (struct iris_screen *)pscreen;
1032    struct gen_device_info *devinfo = &screen->devinfo;
1033    struct iris_bufmgr *bufmgr = screen->bufmgr;
1034    struct iris_resource *res = iris_alloc_resource(pscreen, templ);
1035    const struct isl_drm_modifier_info *mod_inf =
1036 	   isl_drm_modifier_get_info(whandle->modifier);
1037    int tiling;
1038 
1039    if (!res)
1040       return NULL;
1041 
1042    switch (whandle->type) {
1043    case WINSYS_HANDLE_TYPE_FD:
1044       if (mod_inf)
1045          tiling = isl_tiling_to_i915_tiling(mod_inf->tiling);
1046       else
1047          tiling = -1;
1048       res->bo = iris_bo_import_dmabuf(bufmgr, whandle->handle,
1049                                       tiling);
1050       break;
1051    case WINSYS_HANDLE_TYPE_SHARED:
1052       res->bo = iris_bo_gem_create_from_name(bufmgr, "winsys image",
1053                                              whandle->handle);
1054       break;
1055    default:
1056       unreachable("invalid winsys handle type");
1057    }
1058    if (!res->bo)
1059       goto fail;
1060 
1061    res->offset = whandle->offset;
1062 
1063    if (mod_inf == NULL) {
1064       mod_inf =
1065          isl_drm_modifier_get_info(tiling_to_modifier(res->bo->tiling_mode));
1066    }
1067    assert(mod_inf);
1068 
1069    res->external_format = whandle->format;
1070    res->mod_info = mod_inf;
1071 
1072    isl_surf_usage_flags_t isl_usage = pipe_bind_to_isl_usage(templ->bind);
1073 
1074    const struct iris_format_info fmt =
1075       iris_format_for_usage(devinfo, templ->format, isl_usage);
1076    res->internal_format = templ->format;
1077 
1078    if (templ->target == PIPE_BUFFER) {
1079       res->surf.tiling = ISL_TILING_LINEAR;
1080    } else {
1081       /* Create a surface for each plane specified by the external format. */
1082       if (whandle->plane < util_format_get_num_planes(whandle->format)) {
1083          UNUSED const bool isl_surf_created_successfully =
1084             isl_surf_init(&screen->isl_dev, &res->surf,
1085                           .dim = target_to_isl_surf_dim(templ->target),
1086                           .format = fmt.fmt,
1087                           .width = templ->width0,
1088                           .height = templ->height0,
1089                           .depth = templ->depth0,
1090                           .levels = templ->last_level + 1,
1091                           .array_len = templ->array_size,
1092                           .samples = MAX2(templ->nr_samples, 1),
1093                           .min_alignment_B = 0,
1094                           .row_pitch_B = whandle->stride,
1095                           .usage = isl_usage,
1096                           .tiling_flags = 1 << res->mod_info->tiling);
1097          assert(isl_surf_created_successfully);
1098          assert(res->bo->tiling_mode ==
1099                 isl_tiling_to_i915_tiling(res->surf.tiling));
1100 
1101          // XXX: create_ccs_buf_for_image?
1102          if (whandle->modifier == DRM_FORMAT_MOD_INVALID) {
1103             if (!iris_resource_alloc_separate_aux(screen, res))
1104                goto fail;
1105          } else {
1106             if (res->mod_info->aux_usage != ISL_AUX_USAGE_NONE) {
1107                uint32_t alloc_flags;
1108                uint64_t size;
1109                bool ok = iris_resource_configure_aux(screen, res, true, &size,
1110                                                      &alloc_flags);
1111                assert(ok);
1112                /* The gallium dri layer will create a separate plane resource
1113                 * for the aux image. iris_resource_finish_aux_import will
1114                 * merge the separate aux parameters back into a single
1115                 * iris_resource.
1116                 */
1117             }
1118          }
1119       } else {
1120          /* Save modifier import information to reconstruct later. After
1121           * import, this will be available under a second image accessible
1122           * from the main image with res->base.next. See
1123           * iris_resource_finish_aux_import.
1124           */
1125          res->aux.surf.row_pitch_B = whandle->stride;
1126          res->aux.offset = whandle->offset;
1127          res->aux.bo = res->bo;
1128          res->bo = NULL;
1129       }
1130    }
1131 
1132    return &res->base;
1133 
1134 fail:
1135    iris_resource_destroy(pscreen, &res->base);
1136    return NULL;
1137 }
1138 
1139 static void
iris_flush_resource(struct pipe_context * ctx,struct pipe_resource * resource)1140 iris_flush_resource(struct pipe_context *ctx, struct pipe_resource *resource)
1141 {
1142    struct iris_context *ice = (struct iris_context *)ctx;
1143    struct iris_resource *res = (void *) resource;
1144    const struct isl_drm_modifier_info *mod = res->mod_info;
1145 
1146    iris_resource_prepare_access(ice, res,
1147                                 0, INTEL_REMAINING_LEVELS,
1148                                 0, INTEL_REMAINING_LAYERS,
1149                                 mod ? mod->aux_usage : ISL_AUX_USAGE_NONE,
1150                                 mod ? mod->supports_clear_color : false);
1151 }
1152 
1153 static void
iris_resource_disable_aux_on_first_query(struct pipe_resource * resource,unsigned usage)1154 iris_resource_disable_aux_on_first_query(struct pipe_resource *resource,
1155                                          unsigned usage)
1156 {
1157    struct iris_resource *res = (struct iris_resource *)resource;
1158    bool mod_with_aux =
1159       res->mod_info && res->mod_info->aux_usage != ISL_AUX_USAGE_NONE;
1160 
1161    /* Disable aux usage if explicit flush not set and this is the first time
1162     * we are dealing with this resource and the resource was not created with
1163     * a modifier with aux.
1164     */
1165    if (!mod_with_aux &&
1166       (!(usage & PIPE_HANDLE_USAGE_EXPLICIT_FLUSH) && res->aux.usage != 0) &&
1167        p_atomic_read(&resource->reference.count) == 1) {
1168          iris_resource_disable_aux(res);
1169    }
1170 }
1171 
1172 static bool
iris_resource_get_param(struct pipe_screen * pscreen,struct pipe_context * context,struct pipe_resource * resource,unsigned plane,unsigned layer,enum pipe_resource_param param,unsigned handle_usage,uint64_t * value)1173 iris_resource_get_param(struct pipe_screen *pscreen,
1174                         struct pipe_context *context,
1175                         struct pipe_resource *resource,
1176                         unsigned plane,
1177                         unsigned layer,
1178                         enum pipe_resource_param param,
1179                         unsigned handle_usage,
1180                         uint64_t *value)
1181 {
1182    struct iris_screen *screen = (struct iris_screen *)pscreen;
1183    struct iris_resource *res = (struct iris_resource *)resource;
1184    bool mod_with_aux =
1185       res->mod_info && res->mod_info->aux_usage != ISL_AUX_USAGE_NONE;
1186    bool wants_aux = mod_with_aux && plane > 0;
1187    bool result;
1188    unsigned handle;
1189 
1190    if (iris_resource_unfinished_aux_import(res))
1191       iris_resource_finish_aux_import(pscreen, res);
1192 
1193    struct iris_bo *bo = wants_aux ? res->aux.bo : res->bo;
1194 
1195    iris_resource_disable_aux_on_first_query(resource, handle_usage);
1196 
1197    switch (param) {
1198    case PIPE_RESOURCE_PARAM_NPLANES:
1199       if (mod_with_aux) {
1200          *value = 2;
1201       } else {
1202          unsigned count = 0;
1203          for (struct pipe_resource *cur = resource; cur; cur = cur->next)
1204             count++;
1205          *value = count;
1206       }
1207       return true;
1208    case PIPE_RESOURCE_PARAM_STRIDE:
1209       *value = wants_aux ? res->aux.surf.row_pitch_B : res->surf.row_pitch_B;
1210       return true;
1211    case PIPE_RESOURCE_PARAM_OFFSET:
1212       *value = wants_aux ? res->aux.offset : 0;
1213       return true;
1214    case PIPE_RESOURCE_PARAM_MODIFIER:
1215       *value = res->mod_info ? res->mod_info->modifier :
1216                tiling_to_modifier(res->bo->tiling_mode);
1217       return true;
1218    case PIPE_RESOURCE_PARAM_HANDLE_TYPE_SHARED:
1219       result = iris_bo_flink(bo, &handle) == 0;
1220       if (result)
1221          *value = handle;
1222       return result;
1223    case PIPE_RESOURCE_PARAM_HANDLE_TYPE_KMS: {
1224       /* Because we share the same drm file across multiple iris_screen, when
1225        * we export a GEM handle we must make sure it is valid in the DRM file
1226        * descriptor the caller is using (this is the FD given at screen
1227        * creation).
1228        */
1229       uint32_t handle;
1230       if (iris_bo_export_gem_handle_for_device(bo, screen->winsys_fd, &handle))
1231          return false;
1232       *value = handle;
1233       return true;
1234    }
1235 
1236    case PIPE_RESOURCE_PARAM_HANDLE_TYPE_FD:
1237       result = iris_bo_export_dmabuf(bo, (int *) &handle) == 0;
1238       if (result)
1239          *value = handle;
1240       return result;
1241    default:
1242       return false;
1243    }
1244 }
1245 
1246 static bool
iris_resource_get_handle(struct pipe_screen * pscreen,struct pipe_context * ctx,struct pipe_resource * resource,struct winsys_handle * whandle,unsigned usage)1247 iris_resource_get_handle(struct pipe_screen *pscreen,
1248                          struct pipe_context *ctx,
1249                          struct pipe_resource *resource,
1250                          struct winsys_handle *whandle,
1251                          unsigned usage)
1252 {
1253    struct iris_screen *screen = (struct iris_screen *) pscreen;
1254    struct iris_resource *res = (struct iris_resource *)resource;
1255    bool mod_with_aux =
1256       res->mod_info && res->mod_info->aux_usage != ISL_AUX_USAGE_NONE;
1257 
1258    iris_resource_disable_aux_on_first_query(resource, usage);
1259 
1260    struct iris_bo *bo;
1261    if (mod_with_aux && whandle->plane > 0) {
1262       assert(res->aux.bo);
1263       bo = res->aux.bo;
1264       whandle->stride = res->aux.surf.row_pitch_B;
1265       whandle->offset = res->aux.offset;
1266    } else {
1267       /* If this is a buffer, stride should be 0 - no need to special case */
1268       whandle->stride = res->surf.row_pitch_B;
1269       bo = res->bo;
1270    }
1271 
1272    whandle->format = res->external_format;
1273    whandle->modifier =
1274       res->mod_info ? res->mod_info->modifier
1275                     : tiling_to_modifier(res->bo->tiling_mode);
1276 
1277 #ifndef NDEBUG
1278    enum isl_aux_usage allowed_usage =
1279       usage & PIPE_HANDLE_USAGE_EXPLICIT_FLUSH ? res->aux.usage :
1280       res->mod_info ? res->mod_info->aux_usage : ISL_AUX_USAGE_NONE;
1281 
1282    if (res->aux.usage != allowed_usage) {
1283       enum isl_aux_state aux_state = iris_resource_get_aux_state(res, 0, 0);
1284       assert(aux_state == ISL_AUX_STATE_RESOLVED ||
1285              aux_state == ISL_AUX_STATE_PASS_THROUGH);
1286    }
1287 #endif
1288 
1289    switch (whandle->type) {
1290    case WINSYS_HANDLE_TYPE_SHARED:
1291       return iris_bo_flink(bo, &whandle->handle) == 0;
1292    case WINSYS_HANDLE_TYPE_KMS: {
1293       /* Because we share the same drm file across multiple iris_screen, when
1294        * we export a GEM handle we must make sure it is valid in the DRM file
1295        * descriptor the caller is using (this is the FD given at screen
1296        * creation).
1297        */
1298       uint32_t handle;
1299       if (iris_bo_export_gem_handle_for_device(bo, screen->winsys_fd, &handle))
1300          return false;
1301       whandle->handle = handle;
1302       return true;
1303    }
1304    case WINSYS_HANDLE_TYPE_FD:
1305       return iris_bo_export_dmabuf(bo, (int *) &whandle->handle) == 0;
1306    }
1307 
1308    return false;
1309 }
1310 
1311 static bool
resource_is_busy(struct iris_context * ice,struct iris_resource * res)1312 resource_is_busy(struct iris_context *ice,
1313                  struct iris_resource *res)
1314 {
1315    bool busy = iris_bo_busy(res->bo);
1316 
1317    for (int i = 0; i < IRIS_BATCH_COUNT; i++)
1318       busy |= iris_batch_references(&ice->batches[i], res->bo);
1319 
1320    return busy;
1321 }
1322 
1323 static void
iris_invalidate_resource(struct pipe_context * ctx,struct pipe_resource * resource)1324 iris_invalidate_resource(struct pipe_context *ctx,
1325                          struct pipe_resource *resource)
1326 {
1327    struct iris_screen *screen = (void *) ctx->screen;
1328    struct iris_context *ice = (void *) ctx;
1329    struct iris_resource *res = (void *) resource;
1330 
1331    if (resource->target != PIPE_BUFFER)
1332       return;
1333 
1334    /* If it's already invalidated, don't bother doing anything. */
1335    if (res->valid_buffer_range.start > res->valid_buffer_range.end)
1336       return;
1337 
1338    if (!resource_is_busy(ice, res)) {
1339       /* The resource is idle, so just mark that it contains no data and
1340        * keep using the same underlying buffer object.
1341        */
1342       util_range_set_empty(&res->valid_buffer_range);
1343       return;
1344    }
1345 
1346    /* Otherwise, try and replace the backing storage with a new BO. */
1347 
1348    /* We can't reallocate memory we didn't allocate in the first place. */
1349    if (res->bo->userptr)
1350       return;
1351 
1352    // XXX: We should support this.
1353    if (res->bind_history & PIPE_BIND_STREAM_OUTPUT)
1354       return;
1355 
1356    struct iris_bo *old_bo = res->bo;
1357    struct iris_bo *new_bo =
1358       iris_bo_alloc(screen->bufmgr, res->bo->name, resource->width0,
1359                     iris_memzone_for_address(old_bo->gtt_offset));
1360    if (!new_bo)
1361       return;
1362 
1363    /* Swap out the backing storage */
1364    res->bo = new_bo;
1365 
1366    /* Rebind the buffer, replacing any state referring to the old BO's
1367     * address, and marking state dirty so it's reemitted.
1368     */
1369    screen->vtbl.rebind_buffer(ice, res);
1370 
1371    util_range_set_empty(&res->valid_buffer_range);
1372 
1373    iris_bo_unreference(old_bo);
1374 }
1375 
1376 static void
iris_flush_staging_region(struct pipe_transfer * xfer,const struct pipe_box * flush_box)1377 iris_flush_staging_region(struct pipe_transfer *xfer,
1378                           const struct pipe_box *flush_box)
1379 {
1380    if (!(xfer->usage & PIPE_TRANSFER_WRITE))
1381       return;
1382 
1383    struct iris_transfer *map = (void *) xfer;
1384 
1385    struct pipe_box src_box = *flush_box;
1386 
1387    /* Account for extra alignment padding in staging buffer */
1388    if (xfer->resource->target == PIPE_BUFFER)
1389       src_box.x += xfer->box.x % IRIS_MAP_BUFFER_ALIGNMENT;
1390 
1391    struct pipe_box dst_box = (struct pipe_box) {
1392       .x = xfer->box.x + flush_box->x,
1393       .y = xfer->box.y + flush_box->y,
1394       .z = xfer->box.z + flush_box->z,
1395       .width = flush_box->width,
1396       .height = flush_box->height,
1397       .depth = flush_box->depth,
1398    };
1399 
1400    iris_copy_region(map->blorp, map->batch, xfer->resource, xfer->level,
1401                     dst_box.x, dst_box.y, dst_box.z, map->staging, 0,
1402                     &src_box);
1403 }
1404 
1405 static void
iris_unmap_copy_region(struct iris_transfer * map)1406 iris_unmap_copy_region(struct iris_transfer *map)
1407 {
1408    iris_resource_destroy(map->staging->screen, map->staging);
1409 
1410    map->ptr = NULL;
1411 }
1412 
1413 static void
iris_map_copy_region(struct iris_transfer * map)1414 iris_map_copy_region(struct iris_transfer *map)
1415 {
1416    struct pipe_screen *pscreen = &map->batch->screen->base;
1417    struct pipe_transfer *xfer = &map->base;
1418    struct pipe_box *box = &xfer->box;
1419    struct iris_resource *res = (void *) xfer->resource;
1420 
1421    unsigned extra = xfer->resource->target == PIPE_BUFFER ?
1422                     box->x % IRIS_MAP_BUFFER_ALIGNMENT : 0;
1423 
1424    struct pipe_resource templ = (struct pipe_resource) {
1425       .usage = PIPE_USAGE_STAGING,
1426       .width0 = box->width + extra,
1427       .height0 = box->height,
1428       .depth0 = 1,
1429       .nr_samples = xfer->resource->nr_samples,
1430       .nr_storage_samples = xfer->resource->nr_storage_samples,
1431       .array_size = box->depth,
1432       .format = res->internal_format,
1433    };
1434 
1435    if (xfer->resource->target == PIPE_BUFFER)
1436       templ.target = PIPE_BUFFER;
1437    else if (templ.array_size > 1)
1438       templ.target = PIPE_TEXTURE_2D_ARRAY;
1439    else
1440       templ.target = PIPE_TEXTURE_2D;
1441 
1442    map->staging = iris_resource_create(pscreen, &templ);
1443    assert(map->staging);
1444 
1445    if (templ.target != PIPE_BUFFER) {
1446       struct isl_surf *surf = &((struct iris_resource *) map->staging)->surf;
1447       xfer->stride = isl_surf_get_row_pitch_B(surf);
1448       xfer->layer_stride = isl_surf_get_array_pitch(surf);
1449    }
1450 
1451    if (!(xfer->usage & PIPE_TRANSFER_DISCARD_RANGE)) {
1452       iris_copy_region(map->blorp, map->batch, map->staging, 0, extra, 0, 0,
1453                        xfer->resource, xfer->level, box);
1454       /* Ensure writes to the staging BO land before we map it below. */
1455       iris_emit_pipe_control_flush(map->batch,
1456                                    "transfer read: flush before mapping",
1457                                    PIPE_CONTROL_RENDER_TARGET_FLUSH |
1458                                    PIPE_CONTROL_CS_STALL);
1459    }
1460 
1461    struct iris_bo *staging_bo = iris_resource_bo(map->staging);
1462 
1463    if (iris_batch_references(map->batch, staging_bo))
1464       iris_batch_flush(map->batch);
1465 
1466    map->ptr =
1467       iris_bo_map(map->dbg, staging_bo, xfer->usage & MAP_FLAGS) + extra;
1468 
1469    map->unmap = iris_unmap_copy_region;
1470 }
1471 
1472 static void
get_image_offset_el(const struct isl_surf * surf,unsigned level,unsigned z,unsigned * out_x0_el,unsigned * out_y0_el)1473 get_image_offset_el(const struct isl_surf *surf, unsigned level, unsigned z,
1474                     unsigned *out_x0_el, unsigned *out_y0_el)
1475 {
1476    if (surf->dim == ISL_SURF_DIM_3D) {
1477       isl_surf_get_image_offset_el(surf, level, 0, z, out_x0_el, out_y0_el);
1478    } else {
1479       isl_surf_get_image_offset_el(surf, level, z, 0, out_x0_el, out_y0_el);
1480    }
1481 }
1482 
1483 /**
1484  * This function computes the tile_w (in bytes) and tile_h (in rows) of
1485  * different tiling patterns.
1486  */
1487 static void
iris_resource_get_tile_dims(enum isl_tiling tiling,uint32_t cpp,uint32_t * tile_w,uint32_t * tile_h)1488 iris_resource_get_tile_dims(enum isl_tiling tiling, uint32_t cpp,
1489                             uint32_t *tile_w, uint32_t *tile_h)
1490 {
1491    switch (tiling) {
1492    case ISL_TILING_X:
1493       *tile_w = 512;
1494       *tile_h = 8;
1495       break;
1496    case ISL_TILING_Y0:
1497       *tile_w = 128;
1498       *tile_h = 32;
1499       break;
1500    case ISL_TILING_LINEAR:
1501       *tile_w = cpp;
1502       *tile_h = 1;
1503       break;
1504    default:
1505       unreachable("not reached");
1506    }
1507 
1508 }
1509 
1510 /**
1511  * This function computes masks that may be used to select the bits of the X
1512  * and Y coordinates that indicate the offset within a tile.  If the BO is
1513  * untiled, the masks are set to 0.
1514  */
1515 static void
iris_resource_get_tile_masks(enum isl_tiling tiling,uint32_t cpp,uint32_t * mask_x,uint32_t * mask_y)1516 iris_resource_get_tile_masks(enum isl_tiling tiling, uint32_t cpp,
1517                              uint32_t *mask_x, uint32_t *mask_y)
1518 {
1519    uint32_t tile_w_bytes, tile_h;
1520 
1521    iris_resource_get_tile_dims(tiling, cpp, &tile_w_bytes, &tile_h);
1522 
1523    *mask_x = tile_w_bytes / cpp - 1;
1524    *mask_y = tile_h - 1;
1525 }
1526 
1527 /**
1528  * Compute the offset (in bytes) from the start of the BO to the given x
1529  * and y coordinate.  For tiled BOs, caller must ensure that x and y are
1530  * multiples of the tile size.
1531  */
1532 static uint32_t
iris_resource_get_aligned_offset(const struct iris_resource * res,uint32_t x,uint32_t y)1533 iris_resource_get_aligned_offset(const struct iris_resource *res,
1534                                  uint32_t x, uint32_t y)
1535 {
1536    const struct isl_format_layout *fmtl = isl_format_get_layout(res->surf.format);
1537    unsigned cpp = fmtl->bpb / 8;
1538    uint32_t pitch = res->surf.row_pitch_B;
1539 
1540    switch (res->surf.tiling) {
1541    default:
1542       unreachable("not reached");
1543    case ISL_TILING_LINEAR:
1544       return y * pitch + x * cpp;
1545    case ISL_TILING_X:
1546       assert((x % (512 / cpp)) == 0);
1547       assert((y % 8) == 0);
1548       return y * pitch + x / (512 / cpp) * 4096;
1549    case ISL_TILING_Y0:
1550       assert((x % (128 / cpp)) == 0);
1551       assert((y % 32) == 0);
1552       return y * pitch + x / (128 / cpp) * 4096;
1553    }
1554 }
1555 
1556 /**
1557  * Rendering with tiled buffers requires that the base address of the buffer
1558  * be aligned to a page boundary.  For renderbuffers, and sometimes with
1559  * textures, we may want the surface to point at a texture image level that
1560  * isn't at a page boundary.
1561  *
1562  * This function returns an appropriately-aligned base offset
1563  * according to the tiling restrictions, plus any required x/y offset
1564  * from there.
1565  */
1566 uint32_t
iris_resource_get_tile_offsets(const struct iris_resource * res,uint32_t level,uint32_t z,uint32_t * tile_x,uint32_t * tile_y)1567 iris_resource_get_tile_offsets(const struct iris_resource *res,
1568                                uint32_t level, uint32_t z,
1569                                uint32_t *tile_x, uint32_t *tile_y)
1570 {
1571    uint32_t x, y;
1572    uint32_t mask_x, mask_y;
1573 
1574    const struct isl_format_layout *fmtl = isl_format_get_layout(res->surf.format);
1575    const unsigned cpp = fmtl->bpb / 8;
1576 
1577    iris_resource_get_tile_masks(res->surf.tiling, cpp, &mask_x, &mask_y);
1578    get_image_offset_el(&res->surf, level, z, &x, &y);
1579 
1580    *tile_x = x & mask_x;
1581    *tile_y = y & mask_y;
1582 
1583    return iris_resource_get_aligned_offset(res, x & ~mask_x, y & ~mask_y);
1584 }
1585 
1586 /**
1587  * Get pointer offset into stencil buffer.
1588  *
1589  * The stencil buffer is W tiled. Since the GTT is incapable of W fencing, we
1590  * must decode the tile's layout in software.
1591  *
1592  * See
1593  *   - PRM, 2011 Sandy Bridge, Volume 1, Part 2, Section 4.5.2.1 W-Major Tile
1594  *     Format.
1595  *   - PRM, 2011 Sandy Bridge, Volume 1, Part 2, Section 4.5.3 Tiling Algorithm
1596  *
1597  * Even though the returned offset is always positive, the return type is
1598  * signed due to
1599  *    commit e8b1c6d6f55f5be3bef25084fdd8b6127517e137
1600  *    mesa: Fix return type of  _mesa_get_format_bytes() (#37351)
1601  */
1602 static intptr_t
s8_offset(uint32_t stride,uint32_t x,uint32_t y)1603 s8_offset(uint32_t stride, uint32_t x, uint32_t y)
1604 {
1605    uint32_t tile_size = 4096;
1606    uint32_t tile_width = 64;
1607    uint32_t tile_height = 64;
1608    uint32_t row_size = 64 * stride / 2; /* Two rows are interleaved. */
1609 
1610    uint32_t tile_x = x / tile_width;
1611    uint32_t tile_y = y / tile_height;
1612 
1613    /* The byte's address relative to the tile's base addres. */
1614    uint32_t byte_x = x % tile_width;
1615    uint32_t byte_y = y % tile_height;
1616 
1617    uintptr_t u = tile_y * row_size
1618                + tile_x * tile_size
1619                + 512 * (byte_x / 8)
1620                +  64 * (byte_y / 8)
1621                +  32 * ((byte_y / 4) % 2)
1622                +  16 * ((byte_x / 4) % 2)
1623                +   8 * ((byte_y / 2) % 2)
1624                +   4 * ((byte_x / 2) % 2)
1625                +   2 * (byte_y % 2)
1626                +   1 * (byte_x % 2);
1627 
1628    return u;
1629 }
1630 
1631 static void
iris_unmap_s8(struct iris_transfer * map)1632 iris_unmap_s8(struct iris_transfer *map)
1633 {
1634    struct pipe_transfer *xfer = &map->base;
1635    const struct pipe_box *box = &xfer->box;
1636    struct iris_resource *res = (struct iris_resource *) xfer->resource;
1637    struct isl_surf *surf = &res->surf;
1638 
1639    if (xfer->usage & PIPE_TRANSFER_WRITE) {
1640       uint8_t *untiled_s8_map = map->ptr;
1641       uint8_t *tiled_s8_map =
1642          iris_bo_map(map->dbg, res->bo, (xfer->usage | MAP_RAW) & MAP_FLAGS);
1643 
1644       for (int s = 0; s < box->depth; s++) {
1645          unsigned x0_el, y0_el;
1646          get_image_offset_el(surf, xfer->level, box->z + s, &x0_el, &y0_el);
1647 
1648          for (uint32_t y = 0; y < box->height; y++) {
1649             for (uint32_t x = 0; x < box->width; x++) {
1650                ptrdiff_t offset = s8_offset(surf->row_pitch_B,
1651                                             x0_el + box->x + x,
1652                                             y0_el + box->y + y);
1653                tiled_s8_map[offset] =
1654                   untiled_s8_map[s * xfer->layer_stride + y * xfer->stride + x];
1655             }
1656          }
1657       }
1658    }
1659 
1660    free(map->buffer);
1661 }
1662 
1663 static void
iris_map_s8(struct iris_transfer * map)1664 iris_map_s8(struct iris_transfer *map)
1665 {
1666    struct pipe_transfer *xfer = &map->base;
1667    const struct pipe_box *box = &xfer->box;
1668    struct iris_resource *res = (struct iris_resource *) xfer->resource;
1669    struct isl_surf *surf = &res->surf;
1670 
1671    xfer->stride = surf->row_pitch_B;
1672    xfer->layer_stride = xfer->stride * box->height;
1673 
1674    /* The tiling and detiling functions require that the linear buffer has
1675     * a 16-byte alignment (that is, its `x0` is 16-byte aligned).  Here we
1676     * over-allocate the linear buffer to get the proper alignment.
1677     */
1678    map->buffer = map->ptr = malloc(xfer->layer_stride * box->depth);
1679    assert(map->buffer);
1680 
1681    /* One of either READ_BIT or WRITE_BIT or both is set.  READ_BIT implies no
1682     * INVALIDATE_RANGE_BIT.  WRITE_BIT needs the original values read in unless
1683     * invalidate is set, since we'll be writing the whole rectangle from our
1684     * temporary buffer back out.
1685     */
1686    if (!(xfer->usage & PIPE_TRANSFER_DISCARD_RANGE)) {
1687       uint8_t *untiled_s8_map = map->ptr;
1688       uint8_t *tiled_s8_map =
1689          iris_bo_map(map->dbg, res->bo, (xfer->usage | MAP_RAW) & MAP_FLAGS);
1690 
1691       for (int s = 0; s < box->depth; s++) {
1692          unsigned x0_el, y0_el;
1693          get_image_offset_el(surf, xfer->level, box->z + s, &x0_el, &y0_el);
1694 
1695          for (uint32_t y = 0; y < box->height; y++) {
1696             for (uint32_t x = 0; x < box->width; x++) {
1697                ptrdiff_t offset = s8_offset(surf->row_pitch_B,
1698                                             x0_el + box->x + x,
1699                                             y0_el + box->y + y);
1700                untiled_s8_map[s * xfer->layer_stride + y * xfer->stride + x] =
1701                   tiled_s8_map[offset];
1702             }
1703          }
1704       }
1705    }
1706 
1707    map->unmap = iris_unmap_s8;
1708 }
1709 
1710 /* Compute extent parameters for use with tiled_memcpy functions.
1711  * xs are in units of bytes and ys are in units of strides.
1712  */
1713 static inline void
tile_extents(const struct isl_surf * surf,const struct pipe_box * box,unsigned level,int z,unsigned * x1_B,unsigned * x2_B,unsigned * y1_el,unsigned * y2_el)1714 tile_extents(const struct isl_surf *surf,
1715              const struct pipe_box *box,
1716              unsigned level, int z,
1717              unsigned *x1_B, unsigned *x2_B,
1718              unsigned *y1_el, unsigned *y2_el)
1719 {
1720    const struct isl_format_layout *fmtl = isl_format_get_layout(surf->format);
1721    const unsigned cpp = fmtl->bpb / 8;
1722 
1723    assert(box->x % fmtl->bw == 0);
1724    assert(box->y % fmtl->bh == 0);
1725 
1726    unsigned x0_el, y0_el;
1727    get_image_offset_el(surf, level, box->z + z, &x0_el, &y0_el);
1728 
1729    *x1_B = (box->x / fmtl->bw + x0_el) * cpp;
1730    *y1_el = box->y / fmtl->bh + y0_el;
1731    *x2_B = (DIV_ROUND_UP(box->x + box->width, fmtl->bw) + x0_el) * cpp;
1732    *y2_el = DIV_ROUND_UP(box->y + box->height, fmtl->bh) + y0_el;
1733 }
1734 
1735 static void
iris_unmap_tiled_memcpy(struct iris_transfer * map)1736 iris_unmap_tiled_memcpy(struct iris_transfer *map)
1737 {
1738    struct pipe_transfer *xfer = &map->base;
1739    const struct pipe_box *box = &xfer->box;
1740    struct iris_resource *res = (struct iris_resource *) xfer->resource;
1741    struct isl_surf *surf = &res->surf;
1742 
1743    const bool has_swizzling = false;
1744 
1745    if (xfer->usage & PIPE_TRANSFER_WRITE) {
1746       char *dst =
1747          iris_bo_map(map->dbg, res->bo, (xfer->usage | MAP_RAW) & MAP_FLAGS);
1748 
1749       for (int s = 0; s < box->depth; s++) {
1750          unsigned x1, x2, y1, y2;
1751          tile_extents(surf, box, xfer->level, s, &x1, &x2, &y1, &y2);
1752 
1753          void *ptr = map->ptr + s * xfer->layer_stride;
1754 
1755          isl_memcpy_linear_to_tiled(x1, x2, y1, y2, dst, ptr,
1756                                     surf->row_pitch_B, xfer->stride,
1757                                     has_swizzling, surf->tiling, ISL_MEMCPY);
1758       }
1759    }
1760    os_free_aligned(map->buffer);
1761    map->buffer = map->ptr = NULL;
1762 }
1763 
1764 static void
iris_map_tiled_memcpy(struct iris_transfer * map)1765 iris_map_tiled_memcpy(struct iris_transfer *map)
1766 {
1767    struct pipe_transfer *xfer = &map->base;
1768    const struct pipe_box *box = &xfer->box;
1769    struct iris_resource *res = (struct iris_resource *) xfer->resource;
1770    struct isl_surf *surf = &res->surf;
1771 
1772    xfer->stride = ALIGN(surf->row_pitch_B, 16);
1773    xfer->layer_stride = xfer->stride * box->height;
1774 
1775    unsigned x1, x2, y1, y2;
1776    tile_extents(surf, box, xfer->level, 0, &x1, &x2, &y1, &y2);
1777 
1778    /* The tiling and detiling functions require that the linear buffer has
1779     * a 16-byte alignment (that is, its `x0` is 16-byte aligned).  Here we
1780     * over-allocate the linear buffer to get the proper alignment.
1781     */
1782    map->buffer =
1783       os_malloc_aligned(xfer->layer_stride * box->depth, 16);
1784    assert(map->buffer);
1785    map->ptr = (char *)map->buffer + (x1 & 0xf);
1786 
1787    const bool has_swizzling = false;
1788 
1789    if (!(xfer->usage & PIPE_TRANSFER_DISCARD_RANGE)) {
1790       char *src =
1791          iris_bo_map(map->dbg, res->bo, (xfer->usage | MAP_RAW) & MAP_FLAGS);
1792 
1793       for (int s = 0; s < box->depth; s++) {
1794          unsigned x1, x2, y1, y2;
1795          tile_extents(surf, box, xfer->level, s, &x1, &x2, &y1, &y2);
1796 
1797          /* Use 's' rather than 'box->z' to rebase the first slice to 0. */
1798          void *ptr = map->ptr + s * xfer->layer_stride;
1799 
1800          isl_memcpy_tiled_to_linear(x1, x2, y1, y2, ptr, src, xfer->stride,
1801                                     surf->row_pitch_B, has_swizzling,
1802                                     surf->tiling, ISL_MEMCPY_STREAMING_LOAD);
1803       }
1804    }
1805 
1806    map->unmap = iris_unmap_tiled_memcpy;
1807 }
1808 
1809 static void
iris_map_direct(struct iris_transfer * map)1810 iris_map_direct(struct iris_transfer *map)
1811 {
1812    struct pipe_transfer *xfer = &map->base;
1813    struct pipe_box *box = &xfer->box;
1814    struct iris_resource *res = (struct iris_resource *) xfer->resource;
1815 
1816    void *ptr = iris_bo_map(map->dbg, res->bo, xfer->usage & MAP_FLAGS);
1817 
1818    if (res->base.target == PIPE_BUFFER) {
1819       xfer->stride = 0;
1820       xfer->layer_stride = 0;
1821 
1822       map->ptr = ptr + box->x;
1823    } else {
1824       struct isl_surf *surf = &res->surf;
1825       const struct isl_format_layout *fmtl =
1826          isl_format_get_layout(surf->format);
1827       const unsigned cpp = fmtl->bpb / 8;
1828       unsigned x0_el, y0_el;
1829 
1830       get_image_offset_el(surf, xfer->level, box->z, &x0_el, &y0_el);
1831 
1832       xfer->stride = isl_surf_get_row_pitch_B(surf);
1833       xfer->layer_stride = isl_surf_get_array_pitch(surf);
1834 
1835       map->ptr = ptr + (y0_el + box->y) * xfer->stride + (x0_el + box->x) * cpp;
1836    }
1837 }
1838 
1839 static bool
can_promote_to_async(const struct iris_resource * res,const struct pipe_box * box,enum pipe_transfer_usage usage)1840 can_promote_to_async(const struct iris_resource *res,
1841                      const struct pipe_box *box,
1842                      enum pipe_transfer_usage usage)
1843 {
1844    /* If we're writing to a section of the buffer that hasn't even been
1845     * initialized with useful data, then we can safely promote this write
1846     * to be unsynchronized.  This helps the common pattern of appending data.
1847     */
1848    return res->base.target == PIPE_BUFFER && (usage & PIPE_TRANSFER_WRITE) &&
1849           !(usage & TC_TRANSFER_MAP_NO_INFER_UNSYNCHRONIZED) &&
1850           !util_ranges_intersect(&res->valid_buffer_range, box->x,
1851                                  box->x + box->width);
1852 }
1853 
1854 static void *
iris_transfer_map(struct pipe_context * ctx,struct pipe_resource * resource,unsigned level,enum pipe_transfer_usage usage,const struct pipe_box * box,struct pipe_transfer ** ptransfer)1855 iris_transfer_map(struct pipe_context *ctx,
1856                   struct pipe_resource *resource,
1857                   unsigned level,
1858                   enum pipe_transfer_usage usage,
1859                   const struct pipe_box *box,
1860                   struct pipe_transfer **ptransfer)
1861 {
1862    struct iris_context *ice = (struct iris_context *)ctx;
1863    struct iris_resource *res = (struct iris_resource *)resource;
1864    struct isl_surf *surf = &res->surf;
1865 
1866    if (iris_resource_unfinished_aux_import(res))
1867       iris_resource_finish_aux_import(ctx->screen, res);
1868 
1869    if (usage & PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE) {
1870       /* Replace the backing storage with a fresh buffer for non-async maps */
1871       if (!(usage & (PIPE_TRANSFER_UNSYNCHRONIZED |
1872                      TC_TRANSFER_MAP_NO_INVALIDATE)))
1873          iris_invalidate_resource(ctx, resource);
1874 
1875       /* If we can discard the whole resource, we can discard the range. */
1876       usage |= PIPE_TRANSFER_DISCARD_RANGE;
1877    }
1878 
1879    if (!(usage & PIPE_TRANSFER_UNSYNCHRONIZED) &&
1880        can_promote_to_async(res, box, usage)) {
1881       usage |= PIPE_TRANSFER_UNSYNCHRONIZED;
1882    }
1883 
1884    bool need_resolve = false;
1885    bool need_color_resolve = false;
1886 
1887    if (resource->target != PIPE_BUFFER) {
1888       bool need_hiz_resolve = iris_resource_level_has_hiz(res, level);
1889       bool need_stencil_resolve = res->aux.usage == ISL_AUX_USAGE_STC_CCS;
1890 
1891       need_color_resolve =
1892          (res->aux.usage == ISL_AUX_USAGE_CCS_D ||
1893           res->aux.usage == ISL_AUX_USAGE_CCS_E ||
1894           res->aux.usage == ISL_AUX_USAGE_GEN12_CCS_E) &&
1895          iris_has_color_unresolved(res, level, 1, box->z, box->depth);
1896 
1897       need_resolve = need_color_resolve ||
1898                      need_hiz_resolve ||
1899                      need_stencil_resolve;
1900    }
1901 
1902    bool map_would_stall = false;
1903 
1904    if (!(usage & PIPE_TRANSFER_UNSYNCHRONIZED)) {
1905       map_would_stall = need_resolve || resource_is_busy(ice, res);
1906 
1907       if (map_would_stall && (usage & PIPE_TRANSFER_DONTBLOCK) &&
1908                              (usage & PIPE_TRANSFER_MAP_DIRECTLY))
1909          return NULL;
1910    }
1911 
1912    if (surf->tiling != ISL_TILING_LINEAR &&
1913        (usage & PIPE_TRANSFER_MAP_DIRECTLY))
1914       return NULL;
1915 
1916    struct iris_transfer *map = slab_alloc(&ice->transfer_pool);
1917    struct pipe_transfer *xfer = &map->base;
1918 
1919    if (!map)
1920       return NULL;
1921 
1922    memset(map, 0, sizeof(*map));
1923    map->dbg = &ice->dbg;
1924 
1925    pipe_resource_reference(&xfer->resource, resource);
1926    xfer->level = level;
1927    xfer->usage = usage;
1928    xfer->box = *box;
1929    *ptransfer = xfer;
1930 
1931    map->dest_had_defined_contents =
1932       util_ranges_intersect(&res->valid_buffer_range, box->x,
1933                             box->x + box->width);
1934 
1935    if (usage & PIPE_TRANSFER_WRITE)
1936       util_range_add(&res->base, &res->valid_buffer_range, box->x, box->x + box->width);
1937 
1938    /* Avoid using GPU copies for persistent/coherent buffers, as the idea
1939     * there is to access them simultaneously on the CPU & GPU.  This also
1940     * avoids trying to use GPU copies for our u_upload_mgr buffers which
1941     * contain state we're constructing for a GPU draw call, which would
1942     * kill us with infinite stack recursion.
1943     */
1944    bool no_gpu = usage & (PIPE_TRANSFER_PERSISTENT |
1945                           PIPE_TRANSFER_COHERENT |
1946                           PIPE_TRANSFER_MAP_DIRECTLY);
1947 
1948    /* GPU copies are not useful for buffer reads.  Instead of stalling to
1949     * read from the original buffer, we'd simply copy it to a temporary...
1950     * then stall (a bit longer) to read from that buffer.
1951     *
1952     * Images are less clear-cut.  Color resolves are destructive, removing
1953     * the underlying compression, so we'd rather blit the data to a linear
1954     * temporary and map that, to avoid the resolve.  (It might be better to
1955     * a tiled temporary and use the tiled_memcpy paths...)
1956     */
1957    if (!(usage & PIPE_TRANSFER_DISCARD_RANGE) && !need_color_resolve)
1958       no_gpu = true;
1959 
1960    const struct isl_format_layout *fmtl = isl_format_get_layout(surf->format);
1961    if (fmtl->txc == ISL_TXC_ASTC)
1962       no_gpu = true;
1963 
1964    if ((map_would_stall ||
1965         res->aux.usage == ISL_AUX_USAGE_CCS_E ||
1966         res->aux.usage == ISL_AUX_USAGE_GEN12_CCS_E) && !no_gpu) {
1967       /* If we need a synchronous mapping and the resource is busy, or needs
1968        * resolving, we copy to/from a linear temporary buffer using the GPU.
1969        */
1970       map->batch = &ice->batches[IRIS_BATCH_RENDER];
1971       map->blorp = &ice->blorp;
1972       iris_map_copy_region(map);
1973    } else {
1974       /* Otherwise we're free to map on the CPU. */
1975 
1976       if (need_resolve) {
1977          iris_resource_access_raw(ice, res, level, box->z, box->depth,
1978                                   usage & PIPE_TRANSFER_WRITE);
1979       }
1980 
1981       if (!(usage & PIPE_TRANSFER_UNSYNCHRONIZED)) {
1982          for (int i = 0; i < IRIS_BATCH_COUNT; i++) {
1983             if (iris_batch_references(&ice->batches[i], res->bo))
1984                iris_batch_flush(&ice->batches[i]);
1985          }
1986       }
1987 
1988       if (surf->tiling == ISL_TILING_W) {
1989          /* TODO: Teach iris_map_tiled_memcpy about W-tiling... */
1990          iris_map_s8(map);
1991       } else if (surf->tiling != ISL_TILING_LINEAR) {
1992          iris_map_tiled_memcpy(map);
1993       } else {
1994          iris_map_direct(map);
1995       }
1996    }
1997 
1998    return map->ptr;
1999 }
2000 
2001 static void
iris_transfer_flush_region(struct pipe_context * ctx,struct pipe_transfer * xfer,const struct pipe_box * box)2002 iris_transfer_flush_region(struct pipe_context *ctx,
2003                            struct pipe_transfer *xfer,
2004                            const struct pipe_box *box)
2005 {
2006    struct iris_context *ice = (struct iris_context *)ctx;
2007    struct iris_resource *res = (struct iris_resource *) xfer->resource;
2008    struct iris_transfer *map = (void *) xfer;
2009 
2010    if (map->staging)
2011       iris_flush_staging_region(xfer, box);
2012 
2013    uint32_t history_flush = 0;
2014 
2015    if (res->base.target == PIPE_BUFFER) {
2016       if (map->staging)
2017          history_flush |= PIPE_CONTROL_RENDER_TARGET_FLUSH;
2018 
2019       if (map->dest_had_defined_contents)
2020          history_flush |= iris_flush_bits_for_history(res);
2021 
2022       util_range_add(&res->base, &res->valid_buffer_range, box->x, box->x + box->width);
2023    }
2024 
2025    if (history_flush & ~PIPE_CONTROL_CS_STALL) {
2026       for (int i = 0; i < IRIS_BATCH_COUNT; i++) {
2027          struct iris_batch *batch = &ice->batches[i];
2028          if (batch->contains_draw || batch->cache.render->entries) {
2029             iris_batch_maybe_flush(batch, 24);
2030             iris_emit_pipe_control_flush(batch,
2031                                          "cache history: transfer flush",
2032                                          history_flush);
2033          }
2034       }
2035    }
2036 
2037    /* Make sure we flag constants dirty even if there's no need to emit
2038     * any PIPE_CONTROLs to a batch.
2039     */
2040    iris_dirty_for_history(ice, res);
2041 }
2042 
2043 static void
iris_transfer_unmap(struct pipe_context * ctx,struct pipe_transfer * xfer)2044 iris_transfer_unmap(struct pipe_context *ctx, struct pipe_transfer *xfer)
2045 {
2046    struct iris_context *ice = (struct iris_context *)ctx;
2047    struct iris_transfer *map = (void *) xfer;
2048 
2049    if (!(xfer->usage & (PIPE_TRANSFER_FLUSH_EXPLICIT |
2050                         PIPE_TRANSFER_COHERENT))) {
2051       struct pipe_box flush_box = {
2052          .x = 0, .y = 0, .z = 0,
2053          .width  = xfer->box.width,
2054          .height = xfer->box.height,
2055          .depth  = xfer->box.depth,
2056       };
2057       iris_transfer_flush_region(ctx, xfer, &flush_box);
2058    }
2059 
2060    if (map->unmap)
2061       map->unmap(map);
2062 
2063    pipe_resource_reference(&xfer->resource, NULL);
2064    slab_free(&ice->transfer_pool, map);
2065 }
2066 
2067 /**
2068  * The pipe->texture_subdata() driver hook.
2069  *
2070  * Mesa's state tracker takes this path whenever possible, even with
2071  * PIPE_CAP_PREFER_BLIT_BASED_TEXTURE_TRANSFER set.
2072  */
2073 static void
iris_texture_subdata(struct pipe_context * ctx,struct pipe_resource * resource,unsigned level,unsigned usage,const struct pipe_box * box,const void * data,unsigned stride,unsigned layer_stride)2074 iris_texture_subdata(struct pipe_context *ctx,
2075                      struct pipe_resource *resource,
2076                      unsigned level,
2077                      unsigned usage,
2078                      const struct pipe_box *box,
2079                      const void *data,
2080                      unsigned stride,
2081                      unsigned layer_stride)
2082 {
2083    struct iris_context *ice = (struct iris_context *)ctx;
2084    struct iris_resource *res = (struct iris_resource *)resource;
2085    const struct isl_surf *surf = &res->surf;
2086 
2087    assert(resource->target != PIPE_BUFFER);
2088 
2089    if (iris_resource_unfinished_aux_import(res))
2090       iris_resource_finish_aux_import(ctx->screen, res);
2091 
2092    /* Just use the transfer-based path for linear buffers - it will already
2093     * do a direct mapping, or a simple linear staging buffer.
2094     *
2095     * Linear staging buffers appear to be better than tiled ones, too, so
2096     * take that path if we need the GPU to perform color compression, or
2097     * stall-avoidance blits.
2098     */
2099    if (surf->tiling == ISL_TILING_LINEAR ||
2100        (isl_aux_usage_has_ccs(res->aux.usage) &&
2101         res->aux.usage != ISL_AUX_USAGE_CCS_D) ||
2102        resource_is_busy(ice, res)) {
2103       return u_default_texture_subdata(ctx, resource, level, usage, box,
2104                                        data, stride, layer_stride);
2105    }
2106 
2107    /* No state trackers pass any flags other than PIPE_TRANSFER_WRITE */
2108 
2109    iris_resource_access_raw(ice, res, level, box->z, box->depth, true);
2110 
2111    for (int i = 0; i < IRIS_BATCH_COUNT; i++) {
2112       if (iris_batch_references(&ice->batches[i], res->bo))
2113          iris_batch_flush(&ice->batches[i]);
2114    }
2115 
2116    uint8_t *dst = iris_bo_map(&ice->dbg, res->bo, MAP_WRITE | MAP_RAW);
2117 
2118    for (int s = 0; s < box->depth; s++) {
2119       const uint8_t *src = data + s * layer_stride;
2120 
2121       if (surf->tiling == ISL_TILING_W) {
2122          unsigned x0_el, y0_el;
2123          get_image_offset_el(surf, level, box->z + s, &x0_el, &y0_el);
2124 
2125          for (unsigned y = 0; y < box->height; y++) {
2126             for (unsigned x = 0; x < box->width; x++) {
2127                ptrdiff_t offset = s8_offset(surf->row_pitch_B,
2128                                             x0_el + box->x + x,
2129                                             y0_el + box->y + y);
2130                dst[offset] = src[y * stride + x];
2131             }
2132          }
2133       } else {
2134          unsigned x1, x2, y1, y2;
2135 
2136          tile_extents(surf, box, level, s, &x1, &x2, &y1, &y2);
2137 
2138          isl_memcpy_linear_to_tiled(x1, x2, y1, y2,
2139                                     (void *)dst, (void *)src,
2140                                     surf->row_pitch_B, stride,
2141                                     false, surf->tiling, ISL_MEMCPY);
2142       }
2143    }
2144 }
2145 
2146 /**
2147  * Mark state dirty that needs to be re-emitted when a resource is written.
2148  */
2149 void
iris_dirty_for_history(struct iris_context * ice,struct iris_resource * res)2150 iris_dirty_for_history(struct iris_context *ice,
2151                        struct iris_resource *res)
2152 {
2153    uint64_t stage_dirty = 0ull;
2154 
2155    if (res->bind_history & PIPE_BIND_CONSTANT_BUFFER) {
2156       stage_dirty |= ((uint64_t)res->bind_stages)
2157                         << IRIS_SHIFT_FOR_STAGE_DIRTY_CONSTANTS;
2158    }
2159 
2160    ice->state.stage_dirty |= stage_dirty;
2161 }
2162 
2163 /**
2164  * Produce a set of PIPE_CONTROL bits which ensure data written to a
2165  * resource becomes visible, and any stale read cache data is invalidated.
2166  */
2167 uint32_t
iris_flush_bits_for_history(struct iris_resource * res)2168 iris_flush_bits_for_history(struct iris_resource *res)
2169 {
2170    uint32_t flush = PIPE_CONTROL_CS_STALL;
2171 
2172    if (res->bind_history & PIPE_BIND_CONSTANT_BUFFER) {
2173       flush |= PIPE_CONTROL_CONST_CACHE_INVALIDATE |
2174                PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
2175    }
2176 
2177    if (res->bind_history & PIPE_BIND_SAMPLER_VIEW)
2178       flush |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
2179 
2180    if (res->bind_history & (PIPE_BIND_VERTEX_BUFFER | PIPE_BIND_INDEX_BUFFER))
2181       flush |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
2182 
2183    if (res->bind_history & (PIPE_BIND_SHADER_BUFFER | PIPE_BIND_SHADER_IMAGE))
2184       flush |= PIPE_CONTROL_DATA_CACHE_FLUSH;
2185 
2186    return flush;
2187 }
2188 
2189 void
iris_flush_and_dirty_for_history(struct iris_context * ice,struct iris_batch * batch,struct iris_resource * res,uint32_t extra_flags,const char * reason)2190 iris_flush_and_dirty_for_history(struct iris_context *ice,
2191                                  struct iris_batch *batch,
2192                                  struct iris_resource *res,
2193                                  uint32_t extra_flags,
2194                                  const char *reason)
2195 {
2196    if (res->base.target != PIPE_BUFFER)
2197       return;
2198 
2199    uint32_t flush = iris_flush_bits_for_history(res) | extra_flags;
2200 
2201    iris_emit_pipe_control_flush(batch, reason, flush);
2202 
2203    iris_dirty_for_history(ice, res);
2204 }
2205 
2206 bool
iris_resource_set_clear_color(struct iris_context * ice,struct iris_resource * res,union isl_color_value color)2207 iris_resource_set_clear_color(struct iris_context *ice,
2208                               struct iris_resource *res,
2209                               union isl_color_value color)
2210 {
2211    if (memcmp(&res->aux.clear_color, &color, sizeof(color)) != 0) {
2212       res->aux.clear_color = color;
2213       return true;
2214    }
2215 
2216    return false;
2217 }
2218 
2219 union isl_color_value
iris_resource_get_clear_color(const struct iris_resource * res,struct iris_bo ** clear_color_bo,uint64_t * clear_color_offset)2220 iris_resource_get_clear_color(const struct iris_resource *res,
2221                               struct iris_bo **clear_color_bo,
2222                               uint64_t *clear_color_offset)
2223 {
2224    assert(res->aux.bo);
2225 
2226    if (clear_color_bo)
2227       *clear_color_bo = res->aux.clear_color_bo;
2228    if (clear_color_offset)
2229       *clear_color_offset = res->aux.clear_color_offset;
2230    return res->aux.clear_color;
2231 }
2232 
2233 static enum pipe_format
iris_resource_get_internal_format(struct pipe_resource * p_res)2234 iris_resource_get_internal_format(struct pipe_resource *p_res)
2235 {
2236    struct iris_resource *res = (void *) p_res;
2237    return res->internal_format;
2238 }
2239 
2240 static const struct u_transfer_vtbl transfer_vtbl = {
2241    .resource_create       = iris_resource_create,
2242    .resource_destroy      = iris_resource_destroy,
2243    .transfer_map          = iris_transfer_map,
2244    .transfer_unmap        = iris_transfer_unmap,
2245    .transfer_flush_region = iris_transfer_flush_region,
2246    .get_internal_format   = iris_resource_get_internal_format,
2247    .set_stencil           = iris_resource_set_separate_stencil,
2248    .get_stencil           = iris_resource_get_separate_stencil,
2249 };
2250 
2251 void
iris_init_screen_resource_functions(struct pipe_screen * pscreen)2252 iris_init_screen_resource_functions(struct pipe_screen *pscreen)
2253 {
2254    pscreen->query_dmabuf_modifiers = iris_query_dmabuf_modifiers;
2255    pscreen->resource_create_with_modifiers =
2256       iris_resource_create_with_modifiers;
2257    pscreen->resource_create = u_transfer_helper_resource_create;
2258    pscreen->resource_from_user_memory = iris_resource_from_user_memory;
2259    pscreen->resource_from_handle = iris_resource_from_handle;
2260    pscreen->resource_get_handle = iris_resource_get_handle;
2261    pscreen->resource_get_param = iris_resource_get_param;
2262    pscreen->resource_destroy = u_transfer_helper_resource_destroy;
2263    pscreen->transfer_helper =
2264       u_transfer_helper_create(&transfer_vtbl, true, true, false, true);
2265 }
2266 
2267 void
iris_init_resource_functions(struct pipe_context * ctx)2268 iris_init_resource_functions(struct pipe_context *ctx)
2269 {
2270    ctx->flush_resource = iris_flush_resource;
2271    ctx->invalidate_resource = iris_invalidate_resource;
2272    ctx->transfer_map = u_transfer_helper_transfer_map;
2273    ctx->transfer_flush_region = u_transfer_helper_transfer_flush_region;
2274    ctx->transfer_unmap = u_transfer_helper_transfer_unmap;
2275    ctx->buffer_subdata = u_default_buffer_subdata;
2276    ctx->texture_subdata = iris_texture_subdata;
2277 }
2278