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