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