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