iris: Fix CCS check in iris_texture_subdata().
[mesa.git] / src / gallium / drivers / iris / iris_resource.c
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
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
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
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
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
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
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 *
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
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
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
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
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
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 *
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
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 **
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
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
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
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
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
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
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
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(screen->bufmgr, "clear color buffer",
786 clear_color_state_size, IRIS_MEMZONE_OTHER);
787 res->aux.clear_color_offset = 0;
788 }
789
790 iris_resource_destroy(&screen->base, res->base.next);
791 res->base.next = NULL;
792
793 map_aux_addresses(screen, res);
794 }
795
796 static struct pipe_resource *
797 iris_resource_create_for_buffer(struct pipe_screen *pscreen,
798 const struct pipe_resource *templ)
799 {
800 struct iris_screen *screen = (struct iris_screen *)pscreen;
801 struct iris_resource *res = iris_alloc_resource(pscreen, templ);
802
803 assert(templ->target == PIPE_BUFFER);
804 assert(templ->height0 <= 1);
805 assert(templ->depth0 <= 1);
806 assert(templ->format == PIPE_FORMAT_NONE ||
807 util_format_get_blocksize(templ->format) == 1);
808
809 res->internal_format = templ->format;
810 res->surf.tiling = ISL_TILING_LINEAR;
811
812 enum iris_memory_zone memzone = IRIS_MEMZONE_OTHER;
813 const char *name = templ->target == PIPE_BUFFER ? "buffer" : "miptree";
814 if (templ->flags & IRIS_RESOURCE_FLAG_SHADER_MEMZONE) {
815 memzone = IRIS_MEMZONE_SHADER;
816 name = "shader kernels";
817 } else if (templ->flags & IRIS_RESOURCE_FLAG_SURFACE_MEMZONE) {
818 memzone = IRIS_MEMZONE_SURFACE;
819 name = "surface state";
820 } else if (templ->flags & IRIS_RESOURCE_FLAG_DYNAMIC_MEMZONE) {
821 memzone = IRIS_MEMZONE_DYNAMIC;
822 name = "dynamic state";
823 }
824
825 res->bo = iris_bo_alloc(screen->bufmgr, name, templ->width0, memzone);
826 if (!res->bo) {
827 iris_resource_destroy(pscreen, &res->base);
828 return NULL;
829 }
830
831 if (templ->bind & PIPE_BIND_SHARED)
832 iris_bo_make_external(res->bo);
833
834 return &res->base;
835 }
836
837 static struct pipe_resource *
838 iris_resource_create_with_modifiers(struct pipe_screen *pscreen,
839 const struct pipe_resource *templ,
840 const uint64_t *modifiers,
841 int modifiers_count)
842 {
843 struct iris_screen *screen = (struct iris_screen *)pscreen;
844 struct gen_device_info *devinfo = &screen->devinfo;
845 struct iris_resource *res = iris_alloc_resource(pscreen, templ);
846
847 if (!res)
848 return NULL;
849
850 const struct util_format_description *format_desc =
851 util_format_description(templ->format);
852 const bool has_depth = util_format_has_depth(format_desc);
853 uint64_t modifier =
854 select_best_modifier(devinfo, templ->format, modifiers, modifiers_count);
855
856 isl_tiling_flags_t tiling_flags = ISL_TILING_ANY_MASK;
857
858 if (modifier != DRM_FORMAT_MOD_INVALID) {
859 res->mod_info = isl_drm_modifier_get_info(modifier);
860
861 tiling_flags = 1 << res->mod_info->tiling;
862 } else {
863 if (modifiers_count > 0) {
864 fprintf(stderr, "Unsupported modifier, resource creation failed.\n");
865 goto fail;
866 }
867
868 /* Use linear for staging buffers */
869 if (templ->usage == PIPE_USAGE_STAGING ||
870 templ->bind & (PIPE_BIND_LINEAR | PIPE_BIND_CURSOR) ) {
871 tiling_flags = ISL_TILING_LINEAR_BIT;
872 } else if (templ->bind & PIPE_BIND_SCANOUT) {
873 if (devinfo->has_tiling_uapi)
874 tiling_flags = ISL_TILING_X_BIT;
875 else
876 tiling_flags = ISL_TILING_LINEAR_BIT;
877 }
878 }
879
880 isl_surf_usage_flags_t usage = pipe_bind_to_isl_usage(templ->bind);
881
882 if (templ->target == PIPE_TEXTURE_CUBE ||
883 templ->target == PIPE_TEXTURE_CUBE_ARRAY)
884 usage |= ISL_SURF_USAGE_CUBE_BIT;
885
886 if (templ->usage != PIPE_USAGE_STAGING) {
887 if (templ->format == PIPE_FORMAT_S8_UINT)
888 usage |= ISL_SURF_USAGE_STENCIL_BIT;
889 else if (has_depth)
890 usage |= ISL_SURF_USAGE_DEPTH_BIT;
891 }
892
893 enum pipe_format pfmt = templ->format;
894 res->internal_format = pfmt;
895
896 /* Should be handled by u_transfer_helper */
897 assert(!util_format_is_depth_and_stencil(pfmt));
898
899 struct iris_format_info fmt = iris_format_for_usage(devinfo, pfmt, usage);
900 assert(fmt.fmt != ISL_FORMAT_UNSUPPORTED);
901
902 UNUSED const bool isl_surf_created_successfully =
903 isl_surf_init(&screen->isl_dev, &res->surf,
904 .dim = target_to_isl_surf_dim(templ->target),
905 .format = fmt.fmt,
906 .width = templ->width0,
907 .height = templ->height0,
908 .depth = templ->depth0,
909 .levels = templ->last_level + 1,
910 .array_len = templ->array_size,
911 .samples = MAX2(templ->nr_samples, 1),
912 .min_alignment_B = 0,
913 .row_pitch_B = 0,
914 .usage = usage,
915 .tiling_flags = tiling_flags);
916 assert(isl_surf_created_successfully);
917
918 const char *name = "miptree";
919 enum iris_memory_zone memzone = IRIS_MEMZONE_OTHER;
920
921 unsigned int flags = 0;
922 if (templ->usage == PIPE_USAGE_STAGING)
923 flags |= BO_ALLOC_COHERENT;
924
925 /* These are for u_upload_mgr buffers only */
926 assert(!(templ->flags & (IRIS_RESOURCE_FLAG_SHADER_MEMZONE |
927 IRIS_RESOURCE_FLAG_SURFACE_MEMZONE |
928 IRIS_RESOURCE_FLAG_DYNAMIC_MEMZONE)));
929
930 uint32_t aux_preferred_alloc_flags;
931 uint64_t aux_size = 0;
932 if (!iris_resource_configure_aux(screen, res, false, &aux_size,
933 &aux_preferred_alloc_flags)) {
934 goto fail;
935 }
936
937 /* Modifiers require the aux data to be in the same buffer as the main
938 * surface, but we combine them even when a modifiers is not being used.
939 */
940 const uint64_t bo_size =
941 MAX2(res->surf.size_B, res->aux.offset + aux_size);
942 uint32_t alignment = MAX2(4096, res->surf.alignment_B);
943 res->bo = iris_bo_alloc_tiled(screen->bufmgr, name, bo_size, alignment,
944 memzone,
945 isl_tiling_to_i915_tiling(res->surf.tiling),
946 res->surf.row_pitch_B, flags);
947
948 if (!res->bo)
949 goto fail;
950
951 if (aux_size > 0) {
952 res->aux.bo = res->bo;
953 iris_bo_reference(res->aux.bo);
954 unsigned clear_color_state_size =
955 iris_get_aux_clear_color_state_size(screen);
956 if (!iris_resource_init_aux_buf(res, flags, clear_color_state_size))
957 goto fail;
958 map_aux_addresses(screen, res);
959 }
960
961 if (templ->bind & PIPE_BIND_SHARED)
962 iris_bo_make_external(res->bo);
963
964 return &res->base;
965
966 fail:
967 fprintf(stderr, "XXX: resource creation failed\n");
968 iris_resource_destroy(pscreen, &res->base);
969 return NULL;
970
971 }
972
973 static struct pipe_resource *
974 iris_resource_create(struct pipe_screen *pscreen,
975 const struct pipe_resource *templ)
976 {
977 if (templ->target == PIPE_BUFFER)
978 return iris_resource_create_for_buffer(pscreen, templ);
979 else
980 return iris_resource_create_with_modifiers(pscreen, templ, NULL, 0);
981 }
982
983 static uint64_t
984 tiling_to_modifier(uint32_t tiling)
985 {
986 static const uint64_t map[] = {
987 [I915_TILING_NONE] = DRM_FORMAT_MOD_LINEAR,
988 [I915_TILING_X] = I915_FORMAT_MOD_X_TILED,
989 [I915_TILING_Y] = I915_FORMAT_MOD_Y_TILED,
990 };
991
992 assert(tiling < ARRAY_SIZE(map));
993
994 return map[tiling];
995 }
996
997 static struct pipe_resource *
998 iris_resource_from_user_memory(struct pipe_screen *pscreen,
999 const struct pipe_resource *templ,
1000 void *user_memory)
1001 {
1002 struct iris_screen *screen = (struct iris_screen *)pscreen;
1003 struct iris_bufmgr *bufmgr = screen->bufmgr;
1004 struct iris_resource *res = iris_alloc_resource(pscreen, templ);
1005 if (!res)
1006 return NULL;
1007
1008 assert(templ->target == PIPE_BUFFER);
1009
1010 res->internal_format = templ->format;
1011 res->bo = iris_bo_create_userptr(bufmgr, "user",
1012 user_memory, templ->width0,
1013 IRIS_MEMZONE_OTHER);
1014 if (!res->bo) {
1015 iris_resource_destroy(pscreen, &res->base);
1016 return NULL;
1017 }
1018
1019 util_range_add(&res->base, &res->valid_buffer_range, 0, templ->width0);
1020
1021 return &res->base;
1022 }
1023
1024 static struct pipe_resource *
1025 iris_resource_from_handle(struct pipe_screen *pscreen,
1026 const struct pipe_resource *templ,
1027 struct winsys_handle *whandle,
1028 unsigned usage)
1029 {
1030 struct iris_screen *screen = (struct iris_screen *)pscreen;
1031 struct gen_device_info *devinfo = &screen->devinfo;
1032 struct iris_bufmgr *bufmgr = screen->bufmgr;
1033 struct iris_resource *res = iris_alloc_resource(pscreen, templ);
1034 const struct isl_drm_modifier_info *mod_inf =
1035 isl_drm_modifier_get_info(whandle->modifier);
1036 int tiling;
1037
1038 if (!res)
1039 return NULL;
1040
1041 switch (whandle->type) {
1042 case WINSYS_HANDLE_TYPE_FD:
1043 if (mod_inf)
1044 tiling = isl_tiling_to_i915_tiling(mod_inf->tiling);
1045 else
1046 tiling = -1;
1047 res->bo = iris_bo_import_dmabuf(bufmgr, whandle->handle,
1048 tiling, whandle->stride);
1049 break;
1050 case WINSYS_HANDLE_TYPE_SHARED:
1051 res->bo = iris_bo_gem_create_from_name(bufmgr, "winsys image",
1052 whandle->handle);
1053 break;
1054 default:
1055 unreachable("invalid winsys handle type");
1056 }
1057 if (!res->bo)
1058 goto fail;
1059
1060 res->offset = whandle->offset;
1061
1062 if (mod_inf == NULL) {
1063 mod_inf =
1064 isl_drm_modifier_get_info(tiling_to_modifier(res->bo->tiling_mode));
1065 }
1066 assert(mod_inf);
1067
1068 res->external_format = whandle->format;
1069 res->mod_info = mod_inf;
1070
1071 isl_surf_usage_flags_t isl_usage = pipe_bind_to_isl_usage(templ->bind);
1072
1073 const struct iris_format_info fmt =
1074 iris_format_for_usage(devinfo, templ->format, isl_usage);
1075 res->internal_format = templ->format;
1076
1077 if (templ->target == PIPE_BUFFER) {
1078 res->surf.tiling = ISL_TILING_LINEAR;
1079 } else {
1080 /* Create a surface for each plane specified by the external format. */
1081 if (whandle->plane < util_format_get_num_planes(whandle->format)) {
1082 UNUSED const bool isl_surf_created_successfully =
1083 isl_surf_init(&screen->isl_dev, &res->surf,
1084 .dim = target_to_isl_surf_dim(templ->target),
1085 .format = fmt.fmt,
1086 .width = templ->width0,
1087 .height = templ->height0,
1088 .depth = templ->depth0,
1089 .levels = templ->last_level + 1,
1090 .array_len = templ->array_size,
1091 .samples = MAX2(templ->nr_samples, 1),
1092 .min_alignment_B = 0,
1093 .row_pitch_B = whandle->stride,
1094 .usage = isl_usage,
1095 .tiling_flags = 1 << res->mod_info->tiling);
1096 assert(isl_surf_created_successfully);
1097 assert(res->bo->tiling_mode ==
1098 isl_tiling_to_i915_tiling(res->surf.tiling));
1099
1100 // XXX: create_ccs_buf_for_image?
1101 if (whandle->modifier == DRM_FORMAT_MOD_INVALID) {
1102 if (!iris_resource_alloc_separate_aux(screen, res))
1103 goto fail;
1104 } else {
1105 if (res->mod_info->aux_usage != ISL_AUX_USAGE_NONE) {
1106 uint32_t alloc_flags;
1107 uint64_t size;
1108 bool ok = iris_resource_configure_aux(screen, res, true, &size,
1109 &alloc_flags);
1110 assert(ok);
1111 /* The gallium dri layer will create a separate plane resource
1112 * for the aux image. iris_resource_finish_aux_import will
1113 * merge the separate aux parameters back into a single
1114 * iris_resource.
1115 */
1116 }
1117 }
1118 } else {
1119 /* Save modifier import information to reconstruct later. After
1120 * import, this will be available under a second image accessible
1121 * from the main image with res->base.next. See
1122 * iris_resource_finish_aux_import.
1123 */
1124 res->aux.surf.row_pitch_B = whandle->stride;
1125 res->aux.offset = whandle->offset;
1126 res->aux.bo = res->bo;
1127 res->bo = NULL;
1128 }
1129 }
1130
1131 return &res->base;
1132
1133 fail:
1134 iris_resource_destroy(pscreen, &res->base);
1135 return NULL;
1136 }
1137
1138 static void
1139 iris_flush_resource(struct pipe_context *ctx, struct pipe_resource *resource)
1140 {
1141 struct iris_context *ice = (struct iris_context *)ctx;
1142 struct iris_resource *res = (void *) resource;
1143 const struct isl_drm_modifier_info *mod = res->mod_info;
1144
1145 iris_resource_prepare_access(ice, res,
1146 0, INTEL_REMAINING_LEVELS,
1147 0, INTEL_REMAINING_LAYERS,
1148 mod ? mod->aux_usage : ISL_AUX_USAGE_NONE,
1149 mod ? mod->supports_clear_color : false);
1150 }
1151
1152 static void
1153 iris_resource_disable_aux_on_first_query(struct pipe_resource *resource,
1154 unsigned usage)
1155 {
1156 struct iris_resource *res = (struct iris_resource *)resource;
1157 bool mod_with_aux =
1158 res->mod_info && res->mod_info->aux_usage != ISL_AUX_USAGE_NONE;
1159
1160 /* Disable aux usage if explicit flush not set and this is the first time
1161 * we are dealing with this resource and the resource was not created with
1162 * a modifier with aux.
1163 */
1164 if (!mod_with_aux &&
1165 (!(usage & PIPE_HANDLE_USAGE_EXPLICIT_FLUSH) && res->aux.usage != 0) &&
1166 p_atomic_read(&resource->reference.count) == 1) {
1167 iris_resource_disable_aux(res);
1168 }
1169 }
1170
1171 static bool
1172 iris_resource_get_param(struct pipe_screen *pscreen,
1173 struct pipe_context *context,
1174 struct pipe_resource *resource,
1175 unsigned plane,
1176 unsigned layer,
1177 enum pipe_resource_param param,
1178 unsigned handle_usage,
1179 uint64_t *value)
1180 {
1181 struct iris_screen *screen = (struct iris_screen *)pscreen;
1182 struct iris_resource *res = (struct iris_resource *)resource;
1183 bool mod_with_aux =
1184 res->mod_info && res->mod_info->aux_usage != ISL_AUX_USAGE_NONE;
1185 bool wants_aux = mod_with_aux && plane > 0;
1186 bool result;
1187 unsigned handle;
1188
1189 if (iris_resource_unfinished_aux_import(res))
1190 iris_resource_finish_aux_import(pscreen, res);
1191
1192 struct iris_bo *bo = wants_aux ? res->aux.bo : res->bo;
1193
1194 iris_resource_disable_aux_on_first_query(resource, handle_usage);
1195
1196 switch (param) {
1197 case PIPE_RESOURCE_PARAM_NPLANES:
1198 if (mod_with_aux) {
1199 *value = 2;
1200 } else {
1201 unsigned count = 0;
1202 for (struct pipe_resource *cur = resource; cur; cur = cur->next)
1203 count++;
1204 *value = count;
1205 }
1206 return true;
1207 case PIPE_RESOURCE_PARAM_STRIDE:
1208 *value = wants_aux ? res->aux.surf.row_pitch_B : res->surf.row_pitch_B;
1209 return true;
1210 case PIPE_RESOURCE_PARAM_OFFSET:
1211 *value = wants_aux ? res->aux.offset : 0;
1212 return true;
1213 case PIPE_RESOURCE_PARAM_MODIFIER:
1214 *value = res->mod_info ? res->mod_info->modifier :
1215 tiling_to_modifier(res->bo->tiling_mode);
1216 return true;
1217 case PIPE_RESOURCE_PARAM_HANDLE_TYPE_SHARED:
1218 result = iris_bo_flink(bo, &handle) == 0;
1219 if (result)
1220 *value = handle;
1221 return result;
1222 case PIPE_RESOURCE_PARAM_HANDLE_TYPE_KMS: {
1223 /* Because we share the same drm file across multiple iris_screen, when
1224 * we export a GEM handle we must make sure it is valid in the DRM file
1225 * descriptor the caller is using (this is the FD given at screen
1226 * creation).
1227 */
1228 uint32_t handle;
1229 if (iris_bo_export_gem_handle_for_device(bo, screen->winsys_fd, &handle))
1230 return false;
1231 *value = handle;
1232 return true;
1233 }
1234
1235 case PIPE_RESOURCE_PARAM_HANDLE_TYPE_FD:
1236 result = iris_bo_export_dmabuf(bo, (int *) &handle) == 0;
1237 if (result)
1238 *value = handle;
1239 return result;
1240 default:
1241 return false;
1242 }
1243 }
1244
1245 static bool
1246 iris_resource_get_handle(struct pipe_screen *pscreen,
1247 struct pipe_context *ctx,
1248 struct pipe_resource *resource,
1249 struct winsys_handle *whandle,
1250 unsigned usage)
1251 {
1252 struct iris_screen *screen = (struct iris_screen *) pscreen;
1253 struct iris_resource *res = (struct iris_resource *)resource;
1254 bool mod_with_aux =
1255 res->mod_info && res->mod_info->aux_usage != ISL_AUX_USAGE_NONE;
1256
1257 iris_resource_disable_aux_on_first_query(resource, usage);
1258
1259 struct iris_bo *bo;
1260 if (mod_with_aux && whandle->plane > 0) {
1261 assert(res->aux.bo);
1262 bo = res->aux.bo;
1263 whandle->stride = res->aux.surf.row_pitch_B;
1264 whandle->offset = res->aux.offset;
1265 } else {
1266 /* If this is a buffer, stride should be 0 - no need to special case */
1267 whandle->stride = res->surf.row_pitch_B;
1268 bo = res->bo;
1269 }
1270
1271 whandle->format = res->external_format;
1272 whandle->modifier =
1273 res->mod_info ? res->mod_info->modifier
1274 : tiling_to_modifier(res->bo->tiling_mode);
1275
1276 #ifndef NDEBUG
1277 enum isl_aux_usage allowed_usage =
1278 res->mod_info ? res->mod_info->aux_usage : ISL_AUX_USAGE_NONE;
1279
1280 if (res->aux.usage != allowed_usage) {
1281 enum isl_aux_state aux_state = iris_resource_get_aux_state(res, 0, 0);
1282 assert(aux_state == ISL_AUX_STATE_RESOLVED ||
1283 aux_state == ISL_AUX_STATE_PASS_THROUGH);
1284 }
1285 #endif
1286
1287 switch (whandle->type) {
1288 case WINSYS_HANDLE_TYPE_SHARED:
1289 return iris_bo_flink(bo, &whandle->handle) == 0;
1290 case WINSYS_HANDLE_TYPE_KMS: {
1291 /* Because we share the same drm file across multiple iris_screen, when
1292 * we export a GEM handle we must make sure it is valid in the DRM file
1293 * descriptor the caller is using (this is the FD given at screen
1294 * creation).
1295 */
1296 uint32_t handle;
1297 if (iris_bo_export_gem_handle_for_device(bo, screen->winsys_fd, &handle))
1298 return false;
1299 whandle->handle = handle;
1300 return true;
1301 }
1302 case WINSYS_HANDLE_TYPE_FD:
1303 return iris_bo_export_dmabuf(bo, (int *) &whandle->handle) == 0;
1304 }
1305
1306 return false;
1307 }
1308
1309 static bool
1310 resource_is_busy(struct iris_context *ice,
1311 struct iris_resource *res)
1312 {
1313 bool busy = iris_bo_busy(res->bo);
1314
1315 for (int i = 0; i < IRIS_BATCH_COUNT; i++)
1316 busy |= iris_batch_references(&ice->batches[i], res->bo);
1317
1318 return busy;
1319 }
1320
1321 static void
1322 iris_invalidate_resource(struct pipe_context *ctx,
1323 struct pipe_resource *resource)
1324 {
1325 struct iris_screen *screen = (void *) ctx->screen;
1326 struct iris_context *ice = (void *) ctx;
1327 struct iris_resource *res = (void *) resource;
1328
1329 if (resource->target != PIPE_BUFFER)
1330 return;
1331
1332 /* If it's already invalidated, don't bother doing anything. */
1333 if (res->valid_buffer_range.start > res->valid_buffer_range.end)
1334 return;
1335
1336 if (!resource_is_busy(ice, res)) {
1337 /* The resource is idle, so just mark that it contains no data and
1338 * keep using the same underlying buffer object.
1339 */
1340 util_range_set_empty(&res->valid_buffer_range);
1341 return;
1342 }
1343
1344 /* Otherwise, try and replace the backing storage with a new BO. */
1345
1346 /* We can't reallocate memory we didn't allocate in the first place. */
1347 if (res->bo->userptr)
1348 return;
1349
1350 // XXX: We should support this.
1351 if (res->bind_history & PIPE_BIND_STREAM_OUTPUT)
1352 return;
1353
1354 struct iris_bo *old_bo = res->bo;
1355 struct iris_bo *new_bo =
1356 iris_bo_alloc(screen->bufmgr, res->bo->name, resource->width0,
1357 iris_memzone_for_address(old_bo->gtt_offset));
1358 if (!new_bo)
1359 return;
1360
1361 /* Swap out the backing storage */
1362 res->bo = new_bo;
1363
1364 /* Rebind the buffer, replacing any state referring to the old BO's
1365 * address, and marking state dirty so it's reemitted.
1366 */
1367 screen->vtbl.rebind_buffer(ice, res);
1368
1369 util_range_set_empty(&res->valid_buffer_range);
1370
1371 iris_bo_unreference(old_bo);
1372 }
1373
1374 static void
1375 iris_flush_staging_region(struct pipe_transfer *xfer,
1376 const struct pipe_box *flush_box)
1377 {
1378 if (!(xfer->usage & PIPE_TRANSFER_WRITE))
1379 return;
1380
1381 struct iris_transfer *map = (void *) xfer;
1382
1383 struct pipe_box src_box = *flush_box;
1384
1385 /* Account for extra alignment padding in staging buffer */
1386 if (xfer->resource->target == PIPE_BUFFER)
1387 src_box.x += xfer->box.x % IRIS_MAP_BUFFER_ALIGNMENT;
1388
1389 struct pipe_box dst_box = (struct pipe_box) {
1390 .x = xfer->box.x + flush_box->x,
1391 .y = xfer->box.y + flush_box->y,
1392 .z = xfer->box.z + flush_box->z,
1393 .width = flush_box->width,
1394 .height = flush_box->height,
1395 .depth = flush_box->depth,
1396 };
1397
1398 iris_copy_region(map->blorp, map->batch, xfer->resource, xfer->level,
1399 dst_box.x, dst_box.y, dst_box.z, map->staging, 0,
1400 &src_box);
1401 }
1402
1403 static void
1404 iris_unmap_copy_region(struct iris_transfer *map)
1405 {
1406 iris_resource_destroy(map->staging->screen, map->staging);
1407
1408 map->ptr = NULL;
1409 }
1410
1411 static void
1412 iris_map_copy_region(struct iris_transfer *map)
1413 {
1414 struct pipe_screen *pscreen = &map->batch->screen->base;
1415 struct pipe_transfer *xfer = &map->base;
1416 struct pipe_box *box = &xfer->box;
1417 struct iris_resource *res = (void *) xfer->resource;
1418
1419 unsigned extra = xfer->resource->target == PIPE_BUFFER ?
1420 box->x % IRIS_MAP_BUFFER_ALIGNMENT : 0;
1421
1422 struct pipe_resource templ = (struct pipe_resource) {
1423 .usage = PIPE_USAGE_STAGING,
1424 .width0 = box->width + extra,
1425 .height0 = box->height,
1426 .depth0 = 1,
1427 .nr_samples = xfer->resource->nr_samples,
1428 .nr_storage_samples = xfer->resource->nr_storage_samples,
1429 .array_size = box->depth,
1430 .format = res->internal_format,
1431 };
1432
1433 if (xfer->resource->target == PIPE_BUFFER)
1434 templ.target = PIPE_BUFFER;
1435 else if (templ.array_size > 1)
1436 templ.target = PIPE_TEXTURE_2D_ARRAY;
1437 else
1438 templ.target = PIPE_TEXTURE_2D;
1439
1440 map->staging = iris_resource_create(pscreen, &templ);
1441 assert(map->staging);
1442
1443 if (templ.target != PIPE_BUFFER) {
1444 struct isl_surf *surf = &((struct iris_resource *) map->staging)->surf;
1445 xfer->stride = isl_surf_get_row_pitch_B(surf);
1446 xfer->layer_stride = isl_surf_get_array_pitch(surf);
1447 }
1448
1449 if (!(xfer->usage & PIPE_TRANSFER_DISCARD_RANGE)) {
1450 iris_copy_region(map->blorp, map->batch, map->staging, 0, extra, 0, 0,
1451 xfer->resource, xfer->level, box);
1452 /* Ensure writes to the staging BO land before we map it below. */
1453 iris_emit_pipe_control_flush(map->batch,
1454 "transfer read: flush before mapping",
1455 PIPE_CONTROL_RENDER_TARGET_FLUSH |
1456 PIPE_CONTROL_CS_STALL);
1457 }
1458
1459 struct iris_bo *staging_bo = iris_resource_bo(map->staging);
1460
1461 if (iris_batch_references(map->batch, staging_bo))
1462 iris_batch_flush(map->batch);
1463
1464 map->ptr =
1465 iris_bo_map(map->dbg, staging_bo, xfer->usage & MAP_FLAGS) + extra;
1466
1467 map->unmap = iris_unmap_copy_region;
1468 }
1469
1470 static void
1471 get_image_offset_el(const struct isl_surf *surf, unsigned level, unsigned z,
1472 unsigned *out_x0_el, unsigned *out_y0_el)
1473 {
1474 if (surf->dim == ISL_SURF_DIM_3D) {
1475 isl_surf_get_image_offset_el(surf, level, 0, z, out_x0_el, out_y0_el);
1476 } else {
1477 isl_surf_get_image_offset_el(surf, level, z, 0, out_x0_el, out_y0_el);
1478 }
1479 }
1480
1481 /**
1482 * This function computes the tile_w (in bytes) and tile_h (in rows) of
1483 * different tiling patterns.
1484 */
1485 static void
1486 iris_resource_get_tile_dims(enum isl_tiling tiling, uint32_t cpp,
1487 uint32_t *tile_w, uint32_t *tile_h)
1488 {
1489 switch (tiling) {
1490 case ISL_TILING_X:
1491 *tile_w = 512;
1492 *tile_h = 8;
1493 break;
1494 case ISL_TILING_Y0:
1495 *tile_w = 128;
1496 *tile_h = 32;
1497 break;
1498 case ISL_TILING_LINEAR:
1499 *tile_w = cpp;
1500 *tile_h = 1;
1501 break;
1502 default:
1503 unreachable("not reached");
1504 }
1505
1506 }
1507
1508 /**
1509 * This function computes masks that may be used to select the bits of the X
1510 * and Y coordinates that indicate the offset within a tile. If the BO is
1511 * untiled, the masks are set to 0.
1512 */
1513 static void
1514 iris_resource_get_tile_masks(enum isl_tiling tiling, uint32_t cpp,
1515 uint32_t *mask_x, uint32_t *mask_y)
1516 {
1517 uint32_t tile_w_bytes, tile_h;
1518
1519 iris_resource_get_tile_dims(tiling, cpp, &tile_w_bytes, &tile_h);
1520
1521 *mask_x = tile_w_bytes / cpp - 1;
1522 *mask_y = tile_h - 1;
1523 }
1524
1525 /**
1526 * Compute the offset (in bytes) from the start of the BO to the given x
1527 * and y coordinate. For tiled BOs, caller must ensure that x and y are
1528 * multiples of the tile size.
1529 */
1530 static uint32_t
1531 iris_resource_get_aligned_offset(const struct iris_resource *res,
1532 uint32_t x, uint32_t y)
1533 {
1534 const struct isl_format_layout *fmtl = isl_format_get_layout(res->surf.format);
1535 unsigned cpp = fmtl->bpb / 8;
1536 uint32_t pitch = res->surf.row_pitch_B;
1537
1538 switch (res->surf.tiling) {
1539 default:
1540 unreachable("not reached");
1541 case ISL_TILING_LINEAR:
1542 return y * pitch + x * cpp;
1543 case ISL_TILING_X:
1544 assert((x % (512 / cpp)) == 0);
1545 assert((y % 8) == 0);
1546 return y * pitch + x / (512 / cpp) * 4096;
1547 case ISL_TILING_Y0:
1548 assert((x % (128 / cpp)) == 0);
1549 assert((y % 32) == 0);
1550 return y * pitch + x / (128 / cpp) * 4096;
1551 }
1552 }
1553
1554 /**
1555 * Rendering with tiled buffers requires that the base address of the buffer
1556 * be aligned to a page boundary. For renderbuffers, and sometimes with
1557 * textures, we may want the surface to point at a texture image level that
1558 * isn't at a page boundary.
1559 *
1560 * This function returns an appropriately-aligned base offset
1561 * according to the tiling restrictions, plus any required x/y offset
1562 * from there.
1563 */
1564 uint32_t
1565 iris_resource_get_tile_offsets(const struct iris_resource *res,
1566 uint32_t level, uint32_t z,
1567 uint32_t *tile_x, uint32_t *tile_y)
1568 {
1569 uint32_t x, y;
1570 uint32_t mask_x, mask_y;
1571
1572 const struct isl_format_layout *fmtl = isl_format_get_layout(res->surf.format);
1573 const unsigned cpp = fmtl->bpb / 8;
1574
1575 iris_resource_get_tile_masks(res->surf.tiling, cpp, &mask_x, &mask_y);
1576 get_image_offset_el(&res->surf, level, z, &x, &y);
1577
1578 *tile_x = x & mask_x;
1579 *tile_y = y & mask_y;
1580
1581 return iris_resource_get_aligned_offset(res, x & ~mask_x, y & ~mask_y);
1582 }
1583
1584 /**
1585 * Get pointer offset into stencil buffer.
1586 *
1587 * The stencil buffer is W tiled. Since the GTT is incapable of W fencing, we
1588 * must decode the tile's layout in software.
1589 *
1590 * See
1591 * - PRM, 2011 Sandy Bridge, Volume 1, Part 2, Section 4.5.2.1 W-Major Tile
1592 * Format.
1593 * - PRM, 2011 Sandy Bridge, Volume 1, Part 2, Section 4.5.3 Tiling Algorithm
1594 *
1595 * Even though the returned offset is always positive, the return type is
1596 * signed due to
1597 * commit e8b1c6d6f55f5be3bef25084fdd8b6127517e137
1598 * mesa: Fix return type of _mesa_get_format_bytes() (#37351)
1599 */
1600 static intptr_t
1601 s8_offset(uint32_t stride, uint32_t x, uint32_t y)
1602 {
1603 uint32_t tile_size = 4096;
1604 uint32_t tile_width = 64;
1605 uint32_t tile_height = 64;
1606 uint32_t row_size = 64 * stride / 2; /* Two rows are interleaved. */
1607
1608 uint32_t tile_x = x / tile_width;
1609 uint32_t tile_y = y / tile_height;
1610
1611 /* The byte's address relative to the tile's base addres. */
1612 uint32_t byte_x = x % tile_width;
1613 uint32_t byte_y = y % tile_height;
1614
1615 uintptr_t u = tile_y * row_size
1616 + tile_x * tile_size
1617 + 512 * (byte_x / 8)
1618 + 64 * (byte_y / 8)
1619 + 32 * ((byte_y / 4) % 2)
1620 + 16 * ((byte_x / 4) % 2)
1621 + 8 * ((byte_y / 2) % 2)
1622 + 4 * ((byte_x / 2) % 2)
1623 + 2 * (byte_y % 2)
1624 + 1 * (byte_x % 2);
1625
1626 return u;
1627 }
1628
1629 static void
1630 iris_unmap_s8(struct iris_transfer *map)
1631 {
1632 struct pipe_transfer *xfer = &map->base;
1633 const struct pipe_box *box = &xfer->box;
1634 struct iris_resource *res = (struct iris_resource *) xfer->resource;
1635 struct isl_surf *surf = &res->surf;
1636
1637 if (xfer->usage & PIPE_TRANSFER_WRITE) {
1638 uint8_t *untiled_s8_map = map->ptr;
1639 uint8_t *tiled_s8_map =
1640 iris_bo_map(map->dbg, res->bo, (xfer->usage | MAP_RAW) & MAP_FLAGS);
1641
1642 for (int s = 0; s < box->depth; s++) {
1643 unsigned x0_el, y0_el;
1644 get_image_offset_el(surf, xfer->level, box->z + s, &x0_el, &y0_el);
1645
1646 for (uint32_t y = 0; y < box->height; y++) {
1647 for (uint32_t x = 0; x < box->width; x++) {
1648 ptrdiff_t offset = s8_offset(surf->row_pitch_B,
1649 x0_el + box->x + x,
1650 y0_el + box->y + y);
1651 tiled_s8_map[offset] =
1652 untiled_s8_map[s * xfer->layer_stride + y * xfer->stride + x];
1653 }
1654 }
1655 }
1656 }
1657
1658 free(map->buffer);
1659 }
1660
1661 static void
1662 iris_map_s8(struct iris_transfer *map)
1663 {
1664 struct pipe_transfer *xfer = &map->base;
1665 const struct pipe_box *box = &xfer->box;
1666 struct iris_resource *res = (struct iris_resource *) xfer->resource;
1667 struct isl_surf *surf = &res->surf;
1668
1669 xfer->stride = surf->row_pitch_B;
1670 xfer->layer_stride = xfer->stride * box->height;
1671
1672 /* The tiling and detiling functions require that the linear buffer has
1673 * a 16-byte alignment (that is, its `x0` is 16-byte aligned). Here we
1674 * over-allocate the linear buffer to get the proper alignment.
1675 */
1676 map->buffer = map->ptr = malloc(xfer->layer_stride * box->depth);
1677 assert(map->buffer);
1678
1679 /* One of either READ_BIT or WRITE_BIT or both is set. READ_BIT implies no
1680 * INVALIDATE_RANGE_BIT. WRITE_BIT needs the original values read in unless
1681 * invalidate is set, since we'll be writing the whole rectangle from our
1682 * temporary buffer back out.
1683 */
1684 if (!(xfer->usage & PIPE_TRANSFER_DISCARD_RANGE)) {
1685 uint8_t *untiled_s8_map = map->ptr;
1686 uint8_t *tiled_s8_map =
1687 iris_bo_map(map->dbg, res->bo, (xfer->usage | MAP_RAW) & MAP_FLAGS);
1688
1689 for (int s = 0; s < box->depth; s++) {
1690 unsigned x0_el, y0_el;
1691 get_image_offset_el(surf, xfer->level, box->z + s, &x0_el, &y0_el);
1692
1693 for (uint32_t y = 0; y < box->height; y++) {
1694 for (uint32_t x = 0; x < box->width; x++) {
1695 ptrdiff_t offset = s8_offset(surf->row_pitch_B,
1696 x0_el + box->x + x,
1697 y0_el + box->y + y);
1698 untiled_s8_map[s * xfer->layer_stride + y * xfer->stride + x] =
1699 tiled_s8_map[offset];
1700 }
1701 }
1702 }
1703 }
1704
1705 map->unmap = iris_unmap_s8;
1706 }
1707
1708 /* Compute extent parameters for use with tiled_memcpy functions.
1709 * xs are in units of bytes and ys are in units of strides.
1710 */
1711 static inline void
1712 tile_extents(const struct isl_surf *surf,
1713 const struct pipe_box *box,
1714 unsigned level, int z,
1715 unsigned *x1_B, unsigned *x2_B,
1716 unsigned *y1_el, unsigned *y2_el)
1717 {
1718 const struct isl_format_layout *fmtl = isl_format_get_layout(surf->format);
1719 const unsigned cpp = fmtl->bpb / 8;
1720
1721 assert(box->x % fmtl->bw == 0);
1722 assert(box->y % fmtl->bh == 0);
1723
1724 unsigned x0_el, y0_el;
1725 get_image_offset_el(surf, level, box->z + z, &x0_el, &y0_el);
1726
1727 *x1_B = (box->x / fmtl->bw + x0_el) * cpp;
1728 *y1_el = box->y / fmtl->bh + y0_el;
1729 *x2_B = (DIV_ROUND_UP(box->x + box->width, fmtl->bw) + x0_el) * cpp;
1730 *y2_el = DIV_ROUND_UP(box->y + box->height, fmtl->bh) + y0_el;
1731 }
1732
1733 static void
1734 iris_unmap_tiled_memcpy(struct iris_transfer *map)
1735 {
1736 struct pipe_transfer *xfer = &map->base;
1737 const struct pipe_box *box = &xfer->box;
1738 struct iris_resource *res = (struct iris_resource *) xfer->resource;
1739 struct isl_surf *surf = &res->surf;
1740
1741 const bool has_swizzling = false;
1742
1743 if (xfer->usage & PIPE_TRANSFER_WRITE) {
1744 char *dst =
1745 iris_bo_map(map->dbg, res->bo, (xfer->usage | MAP_RAW) & MAP_FLAGS);
1746
1747 for (int s = 0; s < box->depth; s++) {
1748 unsigned x1, x2, y1, y2;
1749 tile_extents(surf, box, xfer->level, s, &x1, &x2, &y1, &y2);
1750
1751 void *ptr = map->ptr + s * xfer->layer_stride;
1752
1753 isl_memcpy_linear_to_tiled(x1, x2, y1, y2, dst, ptr,
1754 surf->row_pitch_B, xfer->stride,
1755 has_swizzling, surf->tiling, ISL_MEMCPY);
1756 }
1757 }
1758 os_free_aligned(map->buffer);
1759 map->buffer = map->ptr = NULL;
1760 }
1761
1762 static void
1763 iris_map_tiled_memcpy(struct iris_transfer *map)
1764 {
1765 struct pipe_transfer *xfer = &map->base;
1766 const struct pipe_box *box = &xfer->box;
1767 struct iris_resource *res = (struct iris_resource *) xfer->resource;
1768 struct isl_surf *surf = &res->surf;
1769
1770 xfer->stride = ALIGN(surf->row_pitch_B, 16);
1771 xfer->layer_stride = xfer->stride * box->height;
1772
1773 unsigned x1, x2, y1, y2;
1774 tile_extents(surf, box, xfer->level, 0, &x1, &x2, &y1, &y2);
1775
1776 /* The tiling and detiling functions require that the linear buffer has
1777 * a 16-byte alignment (that is, its `x0` is 16-byte aligned). Here we
1778 * over-allocate the linear buffer to get the proper alignment.
1779 */
1780 map->buffer =
1781 os_malloc_aligned(xfer->layer_stride * box->depth, 16);
1782 assert(map->buffer);
1783 map->ptr = (char *)map->buffer + (x1 & 0xf);
1784
1785 const bool has_swizzling = false;
1786
1787 if (!(xfer->usage & PIPE_TRANSFER_DISCARD_RANGE)) {
1788 char *src =
1789 iris_bo_map(map->dbg, res->bo, (xfer->usage | MAP_RAW) & MAP_FLAGS);
1790
1791 for (int s = 0; s < box->depth; s++) {
1792 unsigned x1, x2, y1, y2;
1793 tile_extents(surf, box, xfer->level, s, &x1, &x2, &y1, &y2);
1794
1795 /* Use 's' rather than 'box->z' to rebase the first slice to 0. */
1796 void *ptr = map->ptr + s * xfer->layer_stride;
1797
1798 isl_memcpy_tiled_to_linear(x1, x2, y1, y2, ptr, src, xfer->stride,
1799 surf->row_pitch_B, has_swizzling,
1800 surf->tiling, ISL_MEMCPY_STREAMING_LOAD);
1801 }
1802 }
1803
1804 map->unmap = iris_unmap_tiled_memcpy;
1805 }
1806
1807 static void
1808 iris_map_direct(struct iris_transfer *map)
1809 {
1810 struct pipe_transfer *xfer = &map->base;
1811 struct pipe_box *box = &xfer->box;
1812 struct iris_resource *res = (struct iris_resource *) xfer->resource;
1813
1814 void *ptr = iris_bo_map(map->dbg, res->bo, xfer->usage & MAP_FLAGS);
1815
1816 if (res->base.target == PIPE_BUFFER) {
1817 xfer->stride = 0;
1818 xfer->layer_stride = 0;
1819
1820 map->ptr = ptr + box->x;
1821 } else {
1822 struct isl_surf *surf = &res->surf;
1823 const struct isl_format_layout *fmtl =
1824 isl_format_get_layout(surf->format);
1825 const unsigned cpp = fmtl->bpb / 8;
1826 unsigned x0_el, y0_el;
1827
1828 get_image_offset_el(surf, xfer->level, box->z, &x0_el, &y0_el);
1829
1830 xfer->stride = isl_surf_get_row_pitch_B(surf);
1831 xfer->layer_stride = isl_surf_get_array_pitch(surf);
1832
1833 map->ptr = ptr + (y0_el + box->y) * xfer->stride + (x0_el + box->x) * cpp;
1834 }
1835 }
1836
1837 static bool
1838 can_promote_to_async(const struct iris_resource *res,
1839 const struct pipe_box *box,
1840 enum pipe_transfer_usage usage)
1841 {
1842 /* If we're writing to a section of the buffer that hasn't even been
1843 * initialized with useful data, then we can safely promote this write
1844 * to be unsynchronized. This helps the common pattern of appending data.
1845 */
1846 return res->base.target == PIPE_BUFFER && (usage & PIPE_TRANSFER_WRITE) &&
1847 !(usage & TC_TRANSFER_MAP_NO_INFER_UNSYNCHRONIZED) &&
1848 !util_ranges_intersect(&res->valid_buffer_range, box->x,
1849 box->x + box->width);
1850 }
1851
1852 static void *
1853 iris_transfer_map(struct pipe_context *ctx,
1854 struct pipe_resource *resource,
1855 unsigned level,
1856 enum pipe_transfer_usage usage,
1857 const struct pipe_box *box,
1858 struct pipe_transfer **ptransfer)
1859 {
1860 struct iris_context *ice = (struct iris_context *)ctx;
1861 struct iris_resource *res = (struct iris_resource *)resource;
1862 struct isl_surf *surf = &res->surf;
1863
1864 if (iris_resource_unfinished_aux_import(res))
1865 iris_resource_finish_aux_import(ctx->screen, res);
1866
1867 if (usage & PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE) {
1868 /* Replace the backing storage with a fresh buffer for non-async maps */
1869 if (!(usage & (PIPE_TRANSFER_UNSYNCHRONIZED |
1870 TC_TRANSFER_MAP_NO_INVALIDATE)))
1871 iris_invalidate_resource(ctx, resource);
1872
1873 /* If we can discard the whole resource, we can discard the range. */
1874 usage |= PIPE_TRANSFER_DISCARD_RANGE;
1875 }
1876
1877 if (!(usage & PIPE_TRANSFER_UNSYNCHRONIZED) &&
1878 can_promote_to_async(res, box, usage)) {
1879 usage |= PIPE_TRANSFER_UNSYNCHRONIZED;
1880 }
1881
1882 bool need_resolve = false;
1883 bool need_color_resolve = false;
1884
1885 if (resource->target != PIPE_BUFFER) {
1886 bool need_hiz_resolve = iris_resource_level_has_hiz(res, level);
1887 bool need_stencil_resolve = res->aux.usage == ISL_AUX_USAGE_STC_CCS;
1888
1889 need_color_resolve =
1890 (res->aux.usage == ISL_AUX_USAGE_CCS_D ||
1891 res->aux.usage == ISL_AUX_USAGE_CCS_E ||
1892 res->aux.usage == ISL_AUX_USAGE_GEN12_CCS_E) &&
1893 iris_has_color_unresolved(res, level, 1, box->z, box->depth);
1894
1895 need_resolve = need_color_resolve ||
1896 need_hiz_resolve ||
1897 need_stencil_resolve;
1898 }
1899
1900 bool map_would_stall = false;
1901
1902 if (!(usage & PIPE_TRANSFER_UNSYNCHRONIZED)) {
1903 map_would_stall = need_resolve || resource_is_busy(ice, res);
1904
1905 if (map_would_stall && (usage & PIPE_TRANSFER_DONTBLOCK) &&
1906 (usage & PIPE_TRANSFER_MAP_DIRECTLY))
1907 return NULL;
1908 }
1909
1910 if (surf->tiling != ISL_TILING_LINEAR &&
1911 (usage & PIPE_TRANSFER_MAP_DIRECTLY))
1912 return NULL;
1913
1914 struct iris_transfer *map = slab_alloc(&ice->transfer_pool);
1915 struct pipe_transfer *xfer = &map->base;
1916
1917 if (!map)
1918 return NULL;
1919
1920 memset(map, 0, sizeof(*map));
1921 map->dbg = &ice->dbg;
1922
1923 pipe_resource_reference(&xfer->resource, resource);
1924 xfer->level = level;
1925 xfer->usage = usage;
1926 xfer->box = *box;
1927 *ptransfer = xfer;
1928
1929 map->dest_had_defined_contents =
1930 util_ranges_intersect(&res->valid_buffer_range, box->x,
1931 box->x + box->width);
1932
1933 if (usage & PIPE_TRANSFER_WRITE)
1934 util_range_add(&res->base, &res->valid_buffer_range, box->x, box->x + box->width);
1935
1936 /* Avoid using GPU copies for persistent/coherent buffers, as the idea
1937 * there is to access them simultaneously on the CPU & GPU. This also
1938 * avoids trying to use GPU copies for our u_upload_mgr buffers which
1939 * contain state we're constructing for a GPU draw call, which would
1940 * kill us with infinite stack recursion.
1941 */
1942 bool no_gpu = usage & (PIPE_TRANSFER_PERSISTENT |
1943 PIPE_TRANSFER_COHERENT |
1944 PIPE_TRANSFER_MAP_DIRECTLY);
1945
1946 /* GPU copies are not useful for buffer reads. Instead of stalling to
1947 * read from the original buffer, we'd simply copy it to a temporary...
1948 * then stall (a bit longer) to read from that buffer.
1949 *
1950 * Images are less clear-cut. Color resolves are destructive, removing
1951 * the underlying compression, so we'd rather blit the data to a linear
1952 * temporary and map that, to avoid the resolve. (It might be better to
1953 * a tiled temporary and use the tiled_memcpy paths...)
1954 */
1955 if (!(usage & PIPE_TRANSFER_DISCARD_RANGE) && !need_color_resolve)
1956 no_gpu = true;
1957
1958 const struct isl_format_layout *fmtl = isl_format_get_layout(surf->format);
1959 if (fmtl->txc == ISL_TXC_ASTC)
1960 no_gpu = true;
1961
1962 if ((map_would_stall ||
1963 res->aux.usage == ISL_AUX_USAGE_CCS_E ||
1964 res->aux.usage == ISL_AUX_USAGE_GEN12_CCS_E) && !no_gpu) {
1965 /* If we need a synchronous mapping and the resource is busy, or needs
1966 * resolving, we copy to/from a linear temporary buffer using the GPU.
1967 */
1968 map->batch = &ice->batches[IRIS_BATCH_RENDER];
1969 map->blorp = &ice->blorp;
1970 iris_map_copy_region(map);
1971 } else {
1972 /* Otherwise we're free to map on the CPU. */
1973
1974 if (need_resolve) {
1975 iris_resource_access_raw(ice, res, level, box->z, box->depth,
1976 usage & PIPE_TRANSFER_WRITE);
1977 }
1978
1979 if (!(usage & PIPE_TRANSFER_UNSYNCHRONIZED)) {
1980 for (int i = 0; i < IRIS_BATCH_COUNT; i++) {
1981 if (iris_batch_references(&ice->batches[i], res->bo))
1982 iris_batch_flush(&ice->batches[i]);
1983 }
1984 }
1985
1986 if (surf->tiling == ISL_TILING_W) {
1987 /* TODO: Teach iris_map_tiled_memcpy about W-tiling... */
1988 iris_map_s8(map);
1989 } else if (surf->tiling != ISL_TILING_LINEAR) {
1990 iris_map_tiled_memcpy(map);
1991 } else {
1992 iris_map_direct(map);
1993 }
1994 }
1995
1996 return map->ptr;
1997 }
1998
1999 static void
2000 iris_transfer_flush_region(struct pipe_context *ctx,
2001 struct pipe_transfer *xfer,
2002 const struct pipe_box *box)
2003 {
2004 struct iris_context *ice = (struct iris_context *)ctx;
2005 struct iris_resource *res = (struct iris_resource *) xfer->resource;
2006 struct iris_transfer *map = (void *) xfer;
2007
2008 if (map->staging)
2009 iris_flush_staging_region(xfer, box);
2010
2011 uint32_t history_flush = 0;
2012
2013 if (res->base.target == PIPE_BUFFER) {
2014 if (map->staging)
2015 history_flush |= PIPE_CONTROL_RENDER_TARGET_FLUSH;
2016
2017 if (map->dest_had_defined_contents)
2018 history_flush |= iris_flush_bits_for_history(res);
2019
2020 util_range_add(&res->base, &res->valid_buffer_range, box->x, box->x + box->width);
2021 }
2022
2023 if (history_flush & ~PIPE_CONTROL_CS_STALL) {
2024 for (int i = 0; i < IRIS_BATCH_COUNT; i++) {
2025 struct iris_batch *batch = &ice->batches[i];
2026 if (batch->contains_draw || batch->cache.render->entries) {
2027 iris_batch_maybe_flush(batch, 24);
2028 iris_emit_pipe_control_flush(batch,
2029 "cache history: transfer flush",
2030 history_flush);
2031 }
2032 }
2033 }
2034
2035 /* Make sure we flag constants dirty even if there's no need to emit
2036 * any PIPE_CONTROLs to a batch.
2037 */
2038 iris_dirty_for_history(ice, res);
2039 }
2040
2041 static void
2042 iris_transfer_unmap(struct pipe_context *ctx, struct pipe_transfer *xfer)
2043 {
2044 struct iris_context *ice = (struct iris_context *)ctx;
2045 struct iris_transfer *map = (void *) xfer;
2046
2047 if (!(xfer->usage & (PIPE_TRANSFER_FLUSH_EXPLICIT |
2048 PIPE_TRANSFER_COHERENT))) {
2049 struct pipe_box flush_box = {
2050 .x = 0, .y = 0, .z = 0,
2051 .width = xfer->box.width,
2052 .height = xfer->box.height,
2053 .depth = xfer->box.depth,
2054 };
2055 iris_transfer_flush_region(ctx, xfer, &flush_box);
2056 }
2057
2058 if (map->unmap)
2059 map->unmap(map);
2060
2061 pipe_resource_reference(&xfer->resource, NULL);
2062 slab_free(&ice->transfer_pool, map);
2063 }
2064
2065 /**
2066 * The pipe->texture_subdata() driver hook.
2067 *
2068 * Mesa's state tracker takes this path whenever possible, even with
2069 * PIPE_CAP_PREFER_BLIT_BASED_TEXTURE_TRANSFER set.
2070 */
2071 static void
2072 iris_texture_subdata(struct pipe_context *ctx,
2073 struct pipe_resource *resource,
2074 unsigned level,
2075 unsigned usage,
2076 const struct pipe_box *box,
2077 const void *data,
2078 unsigned stride,
2079 unsigned layer_stride)
2080 {
2081 struct iris_context *ice = (struct iris_context *)ctx;
2082 struct iris_resource *res = (struct iris_resource *)resource;
2083 const struct isl_surf *surf = &res->surf;
2084
2085 assert(resource->target != PIPE_BUFFER);
2086
2087 if (iris_resource_unfinished_aux_import(res))
2088 iris_resource_finish_aux_import(ctx->screen, res);
2089
2090 /* Just use the transfer-based path for linear buffers - it will already
2091 * do a direct mapping, or a simple linear staging buffer.
2092 *
2093 * Linear staging buffers appear to be better than tiled ones, too, so
2094 * take that path if we need the GPU to perform color compression, or
2095 * stall-avoidance blits.
2096 */
2097 if (surf->tiling == ISL_TILING_LINEAR ||
2098 (isl_aux_usage_has_ccs(res->aux.usage) &&
2099 res->aux.usage != ISL_AUX_USAGE_CCS_D) ||
2100 resource_is_busy(ice, res)) {
2101 return u_default_texture_subdata(ctx, resource, level, usage, box,
2102 data, stride, layer_stride);
2103 }
2104
2105 /* No state trackers pass any flags other than PIPE_TRANSFER_WRITE */
2106
2107 iris_resource_access_raw(ice, res, level, box->z, box->depth, true);
2108
2109 for (int i = 0; i < IRIS_BATCH_COUNT; i++) {
2110 if (iris_batch_references(&ice->batches[i], res->bo))
2111 iris_batch_flush(&ice->batches[i]);
2112 }
2113
2114 uint8_t *dst = iris_bo_map(&ice->dbg, res->bo, MAP_WRITE | MAP_RAW);
2115
2116 for (int s = 0; s < box->depth; s++) {
2117 const uint8_t *src = data + s * layer_stride;
2118
2119 if (surf->tiling == ISL_TILING_W) {
2120 unsigned x0_el, y0_el;
2121 get_image_offset_el(surf, level, box->z + s, &x0_el, &y0_el);
2122
2123 for (unsigned y = 0; y < box->height; y++) {
2124 for (unsigned x = 0; x < box->width; x++) {
2125 ptrdiff_t offset = s8_offset(surf->row_pitch_B,
2126 x0_el + box->x + x,
2127 y0_el + box->y + y);
2128 dst[offset] = src[y * stride + x];
2129 }
2130 }
2131 } else {
2132 unsigned x1, x2, y1, y2;
2133
2134 tile_extents(surf, box, level, s, &x1, &x2, &y1, &y2);
2135
2136 isl_memcpy_linear_to_tiled(x1, x2, y1, y2,
2137 (void *)dst, (void *)src,
2138 surf->row_pitch_B, stride,
2139 false, surf->tiling, ISL_MEMCPY);
2140 }
2141 }
2142 }
2143
2144 /**
2145 * Mark state dirty that needs to be re-emitted when a resource is written.
2146 */
2147 void
2148 iris_dirty_for_history(struct iris_context *ice,
2149 struct iris_resource *res)
2150 {
2151 uint64_t stage_dirty = 0ull;
2152
2153 if (res->bind_history & PIPE_BIND_CONSTANT_BUFFER) {
2154 stage_dirty |= ((uint64_t)res->bind_stages)
2155 << IRIS_SHIFT_FOR_STAGE_DIRTY_CONSTANTS;
2156 }
2157
2158 ice->state.stage_dirty |= stage_dirty;
2159 }
2160
2161 /**
2162 * Produce a set of PIPE_CONTROL bits which ensure data written to a
2163 * resource becomes visible, and any stale read cache data is invalidated.
2164 */
2165 uint32_t
2166 iris_flush_bits_for_history(struct iris_resource *res)
2167 {
2168 uint32_t flush = PIPE_CONTROL_CS_STALL;
2169
2170 if (res->bind_history & PIPE_BIND_CONSTANT_BUFFER) {
2171 flush |= PIPE_CONTROL_CONST_CACHE_INVALIDATE |
2172 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
2173 }
2174
2175 if (res->bind_history & PIPE_BIND_SAMPLER_VIEW)
2176 flush |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
2177
2178 if (res->bind_history & (PIPE_BIND_VERTEX_BUFFER | PIPE_BIND_INDEX_BUFFER))
2179 flush |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
2180
2181 if (res->bind_history & (PIPE_BIND_SHADER_BUFFER | PIPE_BIND_SHADER_IMAGE))
2182 flush |= PIPE_CONTROL_DATA_CACHE_FLUSH;
2183
2184 return flush;
2185 }
2186
2187 void
2188 iris_flush_and_dirty_for_history(struct iris_context *ice,
2189 struct iris_batch *batch,
2190 struct iris_resource *res,
2191 uint32_t extra_flags,
2192 const char *reason)
2193 {
2194 if (res->base.target != PIPE_BUFFER)
2195 return;
2196
2197 uint32_t flush = iris_flush_bits_for_history(res) | extra_flags;
2198
2199 iris_emit_pipe_control_flush(batch, reason, flush);
2200
2201 iris_dirty_for_history(ice, res);
2202 }
2203
2204 bool
2205 iris_resource_set_clear_color(struct iris_context *ice,
2206 struct iris_resource *res,
2207 union isl_color_value color)
2208 {
2209 if (memcmp(&res->aux.clear_color, &color, sizeof(color)) != 0) {
2210 res->aux.clear_color = color;
2211 return true;
2212 }
2213
2214 return false;
2215 }
2216
2217 union isl_color_value
2218 iris_resource_get_clear_color(const struct iris_resource *res,
2219 struct iris_bo **clear_color_bo,
2220 uint64_t *clear_color_offset)
2221 {
2222 assert(res->aux.bo);
2223
2224 if (clear_color_bo)
2225 *clear_color_bo = res->aux.clear_color_bo;
2226 if (clear_color_offset)
2227 *clear_color_offset = res->aux.clear_color_offset;
2228 return res->aux.clear_color;
2229 }
2230
2231 static enum pipe_format
2232 iris_resource_get_internal_format(struct pipe_resource *p_res)
2233 {
2234 struct iris_resource *res = (void *) p_res;
2235 return res->internal_format;
2236 }
2237
2238 static const struct u_transfer_vtbl transfer_vtbl = {
2239 .resource_create = iris_resource_create,
2240 .resource_destroy = iris_resource_destroy,
2241 .transfer_map = iris_transfer_map,
2242 .transfer_unmap = iris_transfer_unmap,
2243 .transfer_flush_region = iris_transfer_flush_region,
2244 .get_internal_format = iris_resource_get_internal_format,
2245 .set_stencil = iris_resource_set_separate_stencil,
2246 .get_stencil = iris_resource_get_separate_stencil,
2247 };
2248
2249 void
2250 iris_init_screen_resource_functions(struct pipe_screen *pscreen)
2251 {
2252 pscreen->query_dmabuf_modifiers = iris_query_dmabuf_modifiers;
2253 pscreen->resource_create_with_modifiers =
2254 iris_resource_create_with_modifiers;
2255 pscreen->resource_create = u_transfer_helper_resource_create;
2256 pscreen->resource_from_user_memory = iris_resource_from_user_memory;
2257 pscreen->resource_from_handle = iris_resource_from_handle;
2258 pscreen->resource_get_handle = iris_resource_get_handle;
2259 pscreen->resource_get_param = iris_resource_get_param;
2260 pscreen->resource_destroy = u_transfer_helper_resource_destroy;
2261 pscreen->transfer_helper =
2262 u_transfer_helper_create(&transfer_vtbl, true, true, false, true);
2263 }
2264
2265 void
2266 iris_init_resource_functions(struct pipe_context *ctx)
2267 {
2268 ctx->flush_resource = iris_flush_resource;
2269 ctx->invalidate_resource = iris_invalidate_resource;
2270 ctx->transfer_map = u_transfer_helper_transfer_map;
2271 ctx->transfer_flush_region = u_transfer_helper_transfer_flush_region;
2272 ctx->transfer_unmap = u_transfer_helper_transfer_unmap;
2273 ctx->buffer_subdata = u_default_buffer_subdata;
2274 ctx->texture_subdata = iris_texture_subdata;
2275 }