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