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