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