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