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