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