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