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