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