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