9c7420f2b4c836493a29b6c56bec4def577e66df
[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_transfer.h"
42 #include "util/u_transfer_helper.h"
43 #include "util/u_upload_mgr.h"
44 #include "util/ralloc.h"
45 #include "iris_batch.h"
46 #include "iris_context.h"
47 #include "iris_resource.h"
48 #include "iris_screen.h"
49 #include "intel/common/gen_debug.h"
50 #include "isl/isl.h"
51 #include "drm-uapi/drm_fourcc.h"
52 #include "drm-uapi/i915_drm.h"
53
54 enum modifier_priority {
55 MODIFIER_PRIORITY_INVALID = 0,
56 MODIFIER_PRIORITY_LINEAR,
57 MODIFIER_PRIORITY_X,
58 MODIFIER_PRIORITY_Y,
59 MODIFIER_PRIORITY_Y_CCS,
60 };
61
62 static const uint64_t priority_to_modifier[] = {
63 [MODIFIER_PRIORITY_INVALID] = DRM_FORMAT_MOD_INVALID,
64 [MODIFIER_PRIORITY_LINEAR] = DRM_FORMAT_MOD_LINEAR,
65 [MODIFIER_PRIORITY_X] = I915_FORMAT_MOD_X_TILED,
66 [MODIFIER_PRIORITY_Y] = I915_FORMAT_MOD_Y_TILED,
67 [MODIFIER_PRIORITY_Y_CCS] = I915_FORMAT_MOD_Y_TILED_CCS,
68 };
69
70 static bool
71 modifier_is_supported(const struct gen_device_info *devinfo,
72 uint64_t modifier)
73 {
74 /* XXX: do something real */
75 switch (modifier) {
76 case I915_FORMAT_MOD_Y_TILED:
77 case I915_FORMAT_MOD_X_TILED:
78 case DRM_FORMAT_MOD_LINEAR:
79 return true;
80 case I915_FORMAT_MOD_Y_TILED_CCS:
81 case DRM_FORMAT_MOD_INVALID:
82 default:
83 return false;
84 }
85 }
86
87 static uint64_t
88 select_best_modifier(struct gen_device_info *devinfo,
89 const uint64_t *modifiers,
90 int count)
91 {
92 enum modifier_priority prio = MODIFIER_PRIORITY_INVALID;
93
94 for (int i = 0; i < count; i++) {
95 if (!modifier_is_supported(devinfo, modifiers[i]))
96 continue;
97
98 switch (modifiers[i]) {
99 case I915_FORMAT_MOD_Y_TILED_CCS:
100 prio = MAX2(prio, MODIFIER_PRIORITY_Y_CCS);
101 break;
102 case I915_FORMAT_MOD_Y_TILED:
103 prio = MAX2(prio, MODIFIER_PRIORITY_Y);
104 break;
105 case I915_FORMAT_MOD_X_TILED:
106 prio = MAX2(prio, MODIFIER_PRIORITY_X);
107 break;
108 case DRM_FORMAT_MOD_LINEAR:
109 prio = MAX2(prio, MODIFIER_PRIORITY_LINEAR);
110 break;
111 case DRM_FORMAT_MOD_INVALID:
112 default:
113 break;
114 }
115 }
116
117 return priority_to_modifier[prio];
118 }
119
120 static enum isl_surf_dim
121 target_to_isl_surf_dim(enum pipe_texture_target target)
122 {
123 switch (target) {
124 case PIPE_BUFFER:
125 case PIPE_TEXTURE_1D:
126 case PIPE_TEXTURE_1D_ARRAY:
127 return ISL_SURF_DIM_1D;
128 case PIPE_TEXTURE_2D:
129 case PIPE_TEXTURE_CUBE:
130 case PIPE_TEXTURE_RECT:
131 case PIPE_TEXTURE_2D_ARRAY:
132 case PIPE_TEXTURE_CUBE_ARRAY:
133 return ISL_SURF_DIM_2D;
134 case PIPE_TEXTURE_3D:
135 return ISL_SURF_DIM_3D;
136 case PIPE_MAX_TEXTURE_TYPES:
137 break;
138 }
139 unreachable("invalid texture type");
140 }
141
142 static isl_surf_usage_flags_t
143 pipe_bind_to_isl_usage(unsigned bindings)
144 {
145 isl_surf_usage_flags_t usage = 0;
146
147 if (bindings & PIPE_BIND_RENDER_TARGET)
148 usage |= ISL_SURF_USAGE_RENDER_TARGET_BIT;
149
150 if (bindings & PIPE_BIND_SAMPLER_VIEW)
151 usage |= ISL_SURF_USAGE_TEXTURE_BIT;
152
153 if (bindings & (PIPE_BIND_SHADER_IMAGE | PIPE_BIND_SHADER_BUFFER))
154 usage |= ISL_SURF_USAGE_STORAGE_BIT;
155
156 if (bindings & PIPE_BIND_DISPLAY_TARGET)
157 usage |= ISL_SURF_USAGE_DISPLAY_BIT;
158
159 return usage;
160 }
161
162 struct pipe_resource *
163 iris_resource_get_separate_stencil(struct pipe_resource *p_res)
164 {
165 /* For packed depth-stencil, we treat depth as the primary resource
166 * and store S8 as the "second plane" resource.
167 */
168 return p_res->next;
169 }
170
171 static void
172 iris_resource_set_separate_stencil(struct pipe_resource *p_res,
173 struct pipe_resource *stencil)
174 {
175 assert(util_format_has_depth(util_format_description(p_res->format)));
176 pipe_resource_reference(&p_res->next, stencil);
177 }
178
179 void
180 iris_get_depth_stencil_resources(struct pipe_resource *res,
181 struct iris_resource **out_z,
182 struct iris_resource **out_s)
183 {
184 if (!res) {
185 *out_z = NULL;
186 *out_s = NULL;
187 return;
188 }
189
190 if (res->format != PIPE_FORMAT_S8_UINT) {
191 *out_z = (void *) res;
192 *out_s = (void *) iris_resource_get_separate_stencil(res);
193 } else {
194 *out_z = NULL;
195 *out_s = (void *) res;
196 }
197 }
198
199 void
200 iris_resource_disable_aux(struct iris_resource *res)
201 {
202 iris_bo_unreference(res->aux.bo);
203 free(res->aux.state);
204
205 // XXX: clear color BO
206
207 res->aux.usage = ISL_AUX_USAGE_NONE;
208 res->aux.possible_usages = 1 << ISL_AUX_USAGE_NONE;
209 res->aux.surf.size_B = 0;
210 res->aux.bo = NULL;
211 res->aux.state = NULL;
212 }
213
214 static void
215 iris_resource_destroy(struct pipe_screen *screen,
216 struct pipe_resource *resource)
217 {
218 struct iris_resource *res = (struct iris_resource *)resource;
219
220 iris_resource_disable_aux(res);
221
222 iris_bo_unreference(res->bo);
223 free(res);
224 }
225
226 static struct iris_resource *
227 iris_alloc_resource(struct pipe_screen *pscreen,
228 const struct pipe_resource *templ)
229 {
230 struct iris_resource *res = calloc(1, sizeof(struct iris_resource));
231 if (!res)
232 return NULL;
233
234 res->base = *templ;
235 res->base.screen = pscreen;
236 pipe_reference_init(&res->base.reference, 1);
237
238 res->aux.possible_usages = 1 << ISL_AUX_USAGE_NONE;
239
240 return res;
241 }
242
243 unsigned
244 iris_get_num_logical_layers(const struct iris_resource *res, unsigned level)
245 {
246 if (res->surf.dim == ISL_SURF_DIM_3D)
247 return minify(res->surf.logical_level0_px.depth, level);
248 else
249 return res->surf.logical_level0_px.array_len;
250 }
251
252 static enum isl_aux_state **
253 create_aux_state_map(struct iris_resource *res, enum isl_aux_state initial)
254 {
255 uint32_t total_slices = 0;
256 for (uint32_t level = 0; level < res->surf.levels; level++)
257 total_slices += iris_get_num_logical_layers(res, level);
258
259 const size_t per_level_array_size =
260 res->surf.levels * sizeof(enum isl_aux_state *);
261
262 /* We're going to allocate a single chunk of data for both the per-level
263 * reference array and the arrays of aux_state. This makes cleanup
264 * significantly easier.
265 */
266 const size_t total_size =
267 per_level_array_size + total_slices * sizeof(enum isl_aux_state);
268
269 void *data = malloc(total_size);
270 if (!data)
271 return NULL;
272
273 enum isl_aux_state **per_level_arr = data;
274 enum isl_aux_state *s = data + per_level_array_size;
275 for (uint32_t level = 0; level < res->surf.levels; level++) {
276 per_level_arr[level] = s;
277 const unsigned level_layers = iris_get_num_logical_layers(res, level);
278 for (uint32_t a = 0; a < level_layers; a++)
279 *(s++) = initial;
280 }
281 assert((void *)s == data + total_size);
282
283 return per_level_arr;
284 }
285
286 /**
287 * Allocate the initial aux surface for a resource based on aux.usage
288 */
289 static bool
290 iris_resource_alloc_aux(struct iris_screen *screen, struct iris_resource *res)
291 {
292 struct isl_device *isl_dev = &screen->isl_dev;
293 enum isl_aux_state initial_state;
294 UNUSED bool ok = false;
295 uint8_t memset_value = 0;
296 uint32_t alloc_flags = 0;
297
298 assert(!res->aux.bo);
299
300 switch (res->aux.usage) {
301 case ISL_AUX_USAGE_NONE:
302 res->aux.surf.size_B = 0;
303 break;
304 case ISL_AUX_USAGE_HIZ:
305 initial_state = ISL_AUX_STATE_AUX_INVALID;
306 memset_value = 0;
307 ok = isl_surf_get_hiz_surf(isl_dev, &res->surf, &res->aux.surf);
308 break;
309 case ISL_AUX_USAGE_MCS:
310 /* The Ivybridge PRM, Vol 2 Part 1 p326 says:
311 *
312 * "When MCS buffer is enabled and bound to MSRT, it is required
313 * that it is cleared prior to any rendering."
314 *
315 * Since we only use the MCS buffer for rendering, we just clear it
316 * immediately on allocation. The clear value for MCS buffers is all
317 * 1's, so we simply memset it to 0xff.
318 */
319 initial_state = ISL_AUX_STATE_CLEAR;
320 memset_value = 0xFF;
321 ok = isl_surf_get_mcs_surf(isl_dev, &res->surf, &res->aux.surf);
322 break;
323 case ISL_AUX_USAGE_CCS_D:
324 case ISL_AUX_USAGE_CCS_E:
325 /* When CCS_E is used, we need to ensure that the CCS starts off in
326 * a valid state. From the Sky Lake PRM, "MCS Buffer for Render
327 * Target(s)":
328 *
329 * "If Software wants to enable Color Compression without Fast
330 * clear, Software needs to initialize MCS with zeros."
331 *
332 * A CCS value of 0 indicates that the corresponding block is in the
333 * pass-through state which is what we want.
334 *
335 * For CCS_D, do the same thing. On Gen9+, this avoids having any
336 * undefined bits in the aux buffer.
337 */
338 initial_state = ISL_AUX_STATE_PASS_THROUGH;
339 alloc_flags |= BO_ALLOC_ZEROED;
340 ok = isl_surf_get_ccs_surf(isl_dev, &res->surf, &res->aux.surf, 0);
341 break;
342 }
343
344 /* No work is needed for a zero-sized auxiliary buffer. */
345 if (res->aux.surf.size_B == 0)
346 return true;
347
348 /* Assert that ISL gave us a valid aux surf */
349 assert(ok);
350
351 /* Create the aux_state for the auxiliary buffer. */
352 res->aux.state = create_aux_state_map(res, initial_state);
353 if (!res->aux.state)
354 return false;
355
356 /* Allocate the auxiliary buffer. ISL has stricter set of alignment rules
357 * the drm allocator. Therefore, one can pass the ISL dimensions in terms
358 * of bytes instead of trying to recalculate based on different format
359 * block sizes.
360 */
361 res->aux.bo = iris_bo_alloc_tiled(screen->bufmgr, "aux buffer",
362 res->aux.surf.size_B,
363 IRIS_MEMZONE_OTHER, I915_TILING_Y,
364 res->aux.surf.row_pitch_B, alloc_flags);
365 if (!res->aux.bo)
366 return false;
367
368 /* Optionally, initialize the auxiliary data to the desired value. */
369 if (memset_value != 0) {
370 void *map = iris_bo_map(NULL, res->aux.bo, MAP_WRITE | MAP_RAW);
371 if (!map)
372 return false;
373
374 memset(map, memset_value, res->aux.surf.size_B);
375 iris_bo_unmap(res->aux.bo);
376 }
377
378 if (res->aux.usage == ISL_AUX_USAGE_HIZ) {
379 for (unsigned level = 0; level < res->surf.levels; ++level) {
380 uint32_t width = u_minify(res->surf.phys_level0_sa.width, level);
381 uint32_t height = u_minify(res->surf.phys_level0_sa.height, level);
382
383 /* Disable HiZ for LOD > 0 unless the width/height are 8x4 aligned.
384 * For LOD == 0, we can grow the dimensions to make it work.
385 */
386 if (level == 0 || ((width & 7) == 0 && (height & 3) == 0))
387 res->aux.has_hiz |= 1 << level;
388 }
389 }
390
391 return true;
392 }
393
394 static bool
395 supports_mcs(const struct isl_surf *surf)
396 {
397 /* MCS compression only applies to multisampled resources. */
398 if (surf->samples <= 1)
399 return false;
400
401 /* See isl_surf_get_mcs_surf for details. */
402 if (surf->samples == 16 && surf->logical_level0_px.width > 8192)
403 return false;
404
405 /* Depth and stencil buffers use the IMS (interleaved) layout. */
406 if (isl_surf_usage_is_depth_or_stencil(surf->usage))
407 return false;
408
409 return true;
410 }
411
412 static bool
413 supports_ccs(const struct gen_device_info *devinfo,
414 const struct isl_surf *surf)
415 {
416 /* Gen9+ only supports CCS for Y-tiled buffers. */
417 if (surf->tiling != ISL_TILING_Y0)
418 return false;
419
420 /* CCS only supports singlesampled resources. */
421 if (surf->samples > 1)
422 return false;
423
424 /* The PRM doesn't say this explicitly, but fast-clears don't appear to
425 * work for 3D textures until Gen9 where the layout of 3D textures changes
426 * to match 2D array textures.
427 */
428 if (devinfo->gen < 9 && surf->dim != ISL_SURF_DIM_2D)
429 return false;
430
431 /* Note: still need to check the format! */
432
433 return true;
434 }
435
436 static struct pipe_resource *
437 iris_resource_create_for_buffer(struct pipe_screen *pscreen,
438 const struct pipe_resource *templ)
439 {
440 struct iris_screen *screen = (struct iris_screen *)pscreen;
441 struct iris_resource *res = iris_alloc_resource(pscreen, templ);
442
443 assert(templ->target == PIPE_BUFFER);
444 assert(templ->height0 <= 1);
445 assert(templ->depth0 <= 1);
446 assert(templ->format == PIPE_FORMAT_NONE ||
447 util_format_get_blocksize(templ->format) == 1);
448
449 res->internal_format = templ->format;
450 res->surf.tiling = ISL_TILING_LINEAR;
451
452 enum iris_memory_zone memzone = IRIS_MEMZONE_OTHER;
453 const char *name = templ->target == PIPE_BUFFER ? "buffer" : "miptree";
454 if (templ->flags & IRIS_RESOURCE_FLAG_SHADER_MEMZONE) {
455 memzone = IRIS_MEMZONE_SHADER;
456 name = "shader kernels";
457 } else if (templ->flags & IRIS_RESOURCE_FLAG_SURFACE_MEMZONE) {
458 memzone = IRIS_MEMZONE_SURFACE;
459 name = "surface state";
460 } else if (templ->flags & IRIS_RESOURCE_FLAG_DYNAMIC_MEMZONE) {
461 memzone = IRIS_MEMZONE_DYNAMIC;
462 name = "dynamic state";
463 }
464
465 res->bo = iris_bo_alloc(screen->bufmgr, name, templ->width0, memzone);
466 if (!res->bo) {
467 iris_resource_destroy(pscreen, &res->base);
468 return NULL;
469 }
470
471 return &res->base;
472 }
473
474 static struct pipe_resource *
475 iris_resource_create_with_modifiers(struct pipe_screen *pscreen,
476 const struct pipe_resource *templ,
477 const uint64_t *modifiers,
478 int modifiers_count)
479 {
480 struct iris_screen *screen = (struct iris_screen *)pscreen;
481 struct gen_device_info *devinfo = &screen->devinfo;
482 struct iris_resource *res = iris_alloc_resource(pscreen, templ);
483
484 if (!res)
485 return NULL;
486
487 const struct util_format_description *format_desc =
488 util_format_description(templ->format);
489 const bool has_depth = util_format_has_depth(format_desc);
490 uint64_t modifier =
491 select_best_modifier(devinfo, modifiers, modifiers_count);
492
493 isl_tiling_flags_t tiling_flags = ISL_TILING_ANY_MASK;
494
495 if (modifier != DRM_FORMAT_MOD_INVALID) {
496 res->mod_info = isl_drm_modifier_get_info(modifier);
497
498 tiling_flags = 1 << res->mod_info->tiling;
499 } else {
500 if (modifiers_count > 0) {
501 fprintf(stderr, "Unsupported modifier, resource creation failed.\n");
502 return NULL;
503 }
504
505 /* No modifiers - we can select our own tiling. */
506
507 if (has_depth) {
508 /* Depth must be Y-tiled */
509 tiling_flags = ISL_TILING_Y0_BIT;
510 } else if (templ->format == PIPE_FORMAT_S8_UINT) {
511 /* Stencil must be W-tiled */
512 tiling_flags = ISL_TILING_W_BIT;
513 } else if (templ->target == PIPE_BUFFER ||
514 templ->target == PIPE_TEXTURE_1D ||
515 templ->target == PIPE_TEXTURE_1D_ARRAY) {
516 /* Use linear for buffers and 1D textures */
517 tiling_flags = ISL_TILING_LINEAR_BIT;
518 }
519
520 /* Use linear for staging buffers */
521 if (templ->usage == PIPE_USAGE_STAGING ||
522 templ->bind & (PIPE_BIND_LINEAR | PIPE_BIND_CURSOR) )
523 tiling_flags = ISL_TILING_LINEAR_BIT;
524 }
525
526 isl_surf_usage_flags_t usage = pipe_bind_to_isl_usage(templ->bind);
527
528 if (templ->target == PIPE_TEXTURE_CUBE ||
529 templ->target == PIPE_TEXTURE_CUBE_ARRAY)
530 usage |= ISL_SURF_USAGE_CUBE_BIT;
531
532 if (templ->usage != PIPE_USAGE_STAGING) {
533 if (templ->format == PIPE_FORMAT_S8_UINT)
534 usage |= ISL_SURF_USAGE_STENCIL_BIT;
535 else if (has_depth)
536 usage |= ISL_SURF_USAGE_DEPTH_BIT;
537 }
538
539 enum pipe_format pfmt = templ->format;
540 res->internal_format = pfmt;
541
542 /* Should be handled by u_transfer_helper */
543 assert(!util_format_is_depth_and_stencil(pfmt));
544
545 struct iris_format_info fmt = iris_format_for_usage(devinfo, pfmt, usage);
546 assert(fmt.fmt != ISL_FORMAT_UNSUPPORTED);
547
548 UNUSED const bool isl_surf_created_successfully =
549 isl_surf_init(&screen->isl_dev, &res->surf,
550 .dim = target_to_isl_surf_dim(templ->target),
551 .format = fmt.fmt,
552 .width = templ->width0,
553 .height = templ->height0,
554 .depth = templ->depth0,
555 .levels = templ->last_level + 1,
556 .array_len = templ->array_size,
557 .samples = MAX2(templ->nr_samples, 1),
558 .min_alignment_B = 0,
559 .row_pitch_B = 0,
560 .usage = usage,
561 .tiling_flags = tiling_flags);
562 assert(isl_surf_created_successfully);
563
564 if (res->mod_info) {
565 res->aux.possible_usages |= 1 << res->mod_info->aux_usage;
566 } else if (res->surf.samples > 1) {
567 if (supports_mcs(&res->surf))
568 res->aux.possible_usages |= 1 << ISL_AUX_USAGE_MCS;
569 } else {
570 if (has_depth) {
571 if (likely(!(INTEL_DEBUG & DEBUG_NO_HIZ)))
572 res->aux.possible_usages |= 1 << ISL_AUX_USAGE_HIZ;
573 } else if (likely(!(INTEL_DEBUG & DEBUG_NO_RBC)) &&
574 supports_ccs(devinfo, &res->surf)) {
575 if (isl_format_supports_ccs_e(devinfo, res->surf.format))
576 res->aux.possible_usages |= 1 << ISL_AUX_USAGE_CCS_E;
577
578 if (isl_format_supports_ccs_d(devinfo, res->surf.format))
579 res->aux.possible_usages |= 1 << ISL_AUX_USAGE_CCS_D;
580 }
581 }
582
583 // XXX: we don't actually do aux yet
584 res->aux.possible_usages = 1 << ISL_AUX_USAGE_NONE;
585
586 res->aux.usage = util_last_bit(res->aux.possible_usages) - 1;
587
588 const char *name = "miptree";
589 enum iris_memory_zone memzone = IRIS_MEMZONE_OTHER;
590
591 /* These are for u_upload_mgr buffers only */
592 assert(!(templ->flags & (IRIS_RESOURCE_FLAG_SHADER_MEMZONE |
593 IRIS_RESOURCE_FLAG_SURFACE_MEMZONE |
594 IRIS_RESOURCE_FLAG_DYNAMIC_MEMZONE)));
595
596 res->bo = iris_bo_alloc_tiled(screen->bufmgr, name, res->surf.size_B,
597 memzone,
598 isl_tiling_to_i915_tiling(res->surf.tiling),
599 res->surf.row_pitch_B, 0);
600
601 if (!res->bo)
602 goto fail;
603
604 if (!iris_resource_alloc_aux(screen, res))
605 goto fail;
606
607 return &res->base;
608
609 fail:
610 fprintf(stderr, "XXX: resource creation failed\n");
611 iris_resource_destroy(pscreen, &res->base);
612 return NULL;
613
614 }
615
616 static struct pipe_resource *
617 iris_resource_create(struct pipe_screen *pscreen,
618 const struct pipe_resource *templ)
619 {
620 if (templ->target == PIPE_BUFFER)
621 return iris_resource_create_for_buffer(pscreen, templ);
622 else
623 return iris_resource_create_with_modifiers(pscreen, templ, NULL, 0);
624 }
625
626 static uint64_t
627 tiling_to_modifier(uint32_t tiling)
628 {
629 static const uint64_t map[] = {
630 [I915_TILING_NONE] = DRM_FORMAT_MOD_LINEAR,
631 [I915_TILING_X] = I915_FORMAT_MOD_X_TILED,
632 [I915_TILING_Y] = I915_FORMAT_MOD_Y_TILED,
633 };
634
635 assert(tiling < ARRAY_SIZE(map));
636
637 return map[tiling];
638 }
639
640 static struct pipe_resource *
641 iris_resource_from_user_memory(struct pipe_screen *pscreen,
642 const struct pipe_resource *templ,
643 void *user_memory)
644 {
645 struct iris_screen *screen = (struct iris_screen *)pscreen;
646 struct iris_bufmgr *bufmgr = screen->bufmgr;
647 struct iris_resource *res = iris_alloc_resource(pscreen, templ);
648 if (!res)
649 return NULL;
650
651 assert(templ->target == PIPE_BUFFER);
652
653 res->internal_format = templ->format;
654 res->bo = iris_bo_create_userptr(bufmgr, "user",
655 user_memory, templ->width0,
656 IRIS_MEMZONE_OTHER);
657 if (!res->bo) {
658 free(res);
659 return NULL;
660 }
661
662 return &res->base;
663 }
664
665 static struct pipe_resource *
666 iris_resource_from_handle(struct pipe_screen *pscreen,
667 const struct pipe_resource *templ,
668 struct winsys_handle *whandle,
669 unsigned usage)
670 {
671 struct iris_screen *screen = (struct iris_screen *)pscreen;
672 struct gen_device_info *devinfo = &screen->devinfo;
673 struct iris_bufmgr *bufmgr = screen->bufmgr;
674 struct iris_resource *res = iris_alloc_resource(pscreen, templ);
675 if (!res)
676 return NULL;
677
678 if (whandle->offset != 0) {
679 dbg_printf("Attempt to import unsupported winsys offset %u\n",
680 whandle->offset);
681 goto fail;
682 }
683
684 switch (whandle->type) {
685 case WINSYS_HANDLE_TYPE_FD:
686 res->bo = iris_bo_import_dmabuf(bufmgr, whandle->handle);
687 break;
688 case WINSYS_HANDLE_TYPE_SHARED:
689 res->bo = iris_bo_gem_create_from_name(bufmgr, "winsys image",
690 whandle->handle);
691 break;
692 default:
693 unreachable("invalid winsys handle type");
694 }
695 if (!res->bo)
696 return NULL;
697
698 uint64_t modifier = whandle->modifier;
699 if (modifier == DRM_FORMAT_MOD_INVALID) {
700 modifier = tiling_to_modifier(res->bo->tiling_mode);
701 }
702 res->mod_info = isl_drm_modifier_get_info(modifier);
703 assert(res->mod_info);
704
705 isl_surf_usage_flags_t isl_usage = pipe_bind_to_isl_usage(templ->bind);
706
707 const struct iris_format_info fmt =
708 iris_format_for_usage(devinfo, templ->format, isl_usage);
709 res->internal_format = templ->format;
710
711 if (templ->target == PIPE_BUFFER) {
712 res->surf.tiling = ISL_TILING_LINEAR;
713 } else {
714 isl_surf_init(&screen->isl_dev, &res->surf,
715 .dim = target_to_isl_surf_dim(templ->target),
716 .format = fmt.fmt,
717 .width = templ->width0,
718 .height = templ->height0,
719 .depth = templ->depth0,
720 .levels = templ->last_level + 1,
721 .array_len = templ->array_size,
722 .samples = MAX2(templ->nr_samples, 1),
723 .min_alignment_B = 0,
724 .row_pitch_B = whandle->stride,
725 .usage = isl_usage,
726 .tiling_flags = 1 << res->mod_info->tiling);
727
728 assert(res->bo->tiling_mode ==
729 isl_tiling_to_i915_tiling(res->surf.tiling));
730
731 // XXX: create_ccs_buf_for_image?
732 if (!iris_resource_alloc_aux(screen, res))
733 goto fail;
734 }
735
736 return &res->base;
737
738 fail:
739 iris_resource_destroy(pscreen, &res->base);
740 return NULL;
741 }
742
743 static boolean
744 iris_resource_get_handle(struct pipe_screen *pscreen,
745 struct pipe_context *ctx,
746 struct pipe_resource *resource,
747 struct winsys_handle *whandle,
748 unsigned usage)
749 {
750 struct iris_context *ice = (struct iris_context *)ctx;
751 struct iris_resource *res = (struct iris_resource *)resource;
752
753 /* If this is a buffer, stride should be 0 - no need to special case */
754 whandle->stride = res->surf.row_pitch_B;
755 whandle->modifier =
756 res->mod_info ? res->mod_info->modifier
757 : tiling_to_modifier(res->bo->tiling_mode);
758
759 if (!res->mod_info || res->mod_info->aux_usage != res->aux.usage) {
760 struct iris_batch *render_batch = &ice->batches[IRIS_BATCH_RENDER];
761 iris_resource_prepare_access(ice, render_batch, res,
762 0, INTEL_REMAINING_LEVELS,
763 0, INTEL_REMAINING_LAYERS,
764 ISL_AUX_USAGE_NONE, false);
765 iris_resource_disable_aux(res);
766 }
767
768 switch (whandle->type) {
769 case WINSYS_HANDLE_TYPE_SHARED:
770 return iris_bo_flink(res->bo, &whandle->handle) == 0;
771 case WINSYS_HANDLE_TYPE_KMS:
772 whandle->handle = iris_bo_export_gem_handle(res->bo);
773 return true;
774 case WINSYS_HANDLE_TYPE_FD:
775 return iris_bo_export_dmabuf(res->bo, (int *) &whandle->handle) == 0;
776 }
777
778 return false;
779 }
780
781 static void
782 get_image_offset_el(struct isl_surf *surf, unsigned level, unsigned z,
783 unsigned *out_x0_el, unsigned *out_y0_el)
784 {
785 if (surf->dim == ISL_SURF_DIM_3D) {
786 isl_surf_get_image_offset_el(surf, level, 0, z, out_x0_el, out_y0_el);
787 } else {
788 isl_surf_get_image_offset_el(surf, level, z, 0, out_x0_el, out_y0_el);
789 }
790 }
791
792 /**
793 * Get pointer offset into stencil buffer.
794 *
795 * The stencil buffer is W tiled. Since the GTT is incapable of W fencing, we
796 * must decode the tile's layout in software.
797 *
798 * See
799 * - PRM, 2011 Sandy Bridge, Volume 1, Part 2, Section 4.5.2.1 W-Major Tile
800 * Format.
801 * - PRM, 2011 Sandy Bridge, Volume 1, Part 2, Section 4.5.3 Tiling Algorithm
802 *
803 * Even though the returned offset is always positive, the return type is
804 * signed due to
805 * commit e8b1c6d6f55f5be3bef25084fdd8b6127517e137
806 * mesa: Fix return type of _mesa_get_format_bytes() (#37351)
807 */
808 static intptr_t
809 s8_offset(uint32_t stride, uint32_t x, uint32_t y, bool swizzled)
810 {
811 uint32_t tile_size = 4096;
812 uint32_t tile_width = 64;
813 uint32_t tile_height = 64;
814 uint32_t row_size = 64 * stride / 2; /* Two rows are interleaved. */
815
816 uint32_t tile_x = x / tile_width;
817 uint32_t tile_y = y / tile_height;
818
819 /* The byte's address relative to the tile's base addres. */
820 uint32_t byte_x = x % tile_width;
821 uint32_t byte_y = y % tile_height;
822
823 uintptr_t u = tile_y * row_size
824 + tile_x * tile_size
825 + 512 * (byte_x / 8)
826 + 64 * (byte_y / 8)
827 + 32 * ((byte_y / 4) % 2)
828 + 16 * ((byte_x / 4) % 2)
829 + 8 * ((byte_y / 2) % 2)
830 + 4 * ((byte_x / 2) % 2)
831 + 2 * (byte_y % 2)
832 + 1 * (byte_x % 2);
833
834 if (swizzled) {
835 /* adjust for bit6 swizzling */
836 if (((byte_x / 8) % 2) == 1) {
837 if (((byte_y / 8) % 2) == 0) {
838 u += 64;
839 } else {
840 u -= 64;
841 }
842 }
843 }
844
845 return u;
846 }
847
848 static void
849 iris_unmap_s8(struct iris_transfer *map)
850 {
851 struct pipe_transfer *xfer = &map->base;
852 struct iris_resource *res = (struct iris_resource *) xfer->resource;
853 struct isl_surf *surf = &res->surf;
854 const bool has_swizzling = false;
855
856 if (xfer->usage & PIPE_TRANSFER_WRITE) {
857 uint8_t *untiled_s8_map = map->ptr;
858 uint8_t *tiled_s8_map =
859 iris_bo_map(map->dbg, res->bo, xfer->usage | MAP_RAW);
860
861 struct pipe_box box = xfer->box;
862
863 for (int s = 0; s < box.depth; s++) {
864 unsigned x0_el, y0_el;
865 get_image_offset_el(surf, xfer->level, box.z, &x0_el, &y0_el);
866
867 for (uint32_t y = 0; y < box.height; y++) {
868 for (uint32_t x = 0; x < box.width; x++) {
869 ptrdiff_t offset = s8_offset(surf->row_pitch_B,
870 x0_el + box.x + x,
871 y0_el + box.y + y,
872 has_swizzling);
873 tiled_s8_map[offset] =
874 untiled_s8_map[s * xfer->layer_stride + y * xfer->stride + x];
875 }
876 }
877
878 box.z++;
879 }
880 }
881
882 free(map->buffer);
883 }
884
885 static void
886 iris_map_s8(struct iris_transfer *map)
887 {
888 struct pipe_transfer *xfer = &map->base;
889 struct iris_resource *res = (struct iris_resource *) xfer->resource;
890 struct isl_surf *surf = &res->surf;
891
892 xfer->stride = surf->row_pitch_B;
893 xfer->layer_stride = xfer->stride * xfer->box.height;
894
895 /* The tiling and detiling functions require that the linear buffer has
896 * a 16-byte alignment (that is, its `x0` is 16-byte aligned). Here we
897 * over-allocate the linear buffer to get the proper alignment.
898 */
899 map->buffer = map->ptr = malloc(xfer->layer_stride * xfer->box.depth);
900 assert(map->buffer);
901
902 const bool has_swizzling = false;
903
904 /* One of either READ_BIT or WRITE_BIT or both is set. READ_BIT implies no
905 * INVALIDATE_RANGE_BIT. WRITE_BIT needs the original values read in unless
906 * invalidate is set, since we'll be writing the whole rectangle from our
907 * temporary buffer back out.
908 */
909 if (!(xfer->usage & PIPE_TRANSFER_DISCARD_RANGE)) {
910 uint8_t *untiled_s8_map = map->ptr;
911 uint8_t *tiled_s8_map =
912 iris_bo_map(map->dbg, res->bo, xfer->usage | MAP_RAW);
913
914 struct pipe_box box = xfer->box;
915
916 for (int s = 0; s < box.depth; s++) {
917 unsigned x0_el, y0_el;
918 get_image_offset_el(surf, xfer->level, box.z, &x0_el, &y0_el);
919
920 for (uint32_t y = 0; y < box.height; y++) {
921 for (uint32_t x = 0; x < box.width; x++) {
922 ptrdiff_t offset = s8_offset(surf->row_pitch_B,
923 x0_el + box.x + x,
924 y0_el + box.y + y,
925 has_swizzling);
926 untiled_s8_map[s * xfer->layer_stride + y * xfer->stride + x] =
927 tiled_s8_map[offset];
928 }
929 }
930
931 box.z++;
932 }
933 }
934
935 map->unmap = iris_unmap_s8;
936 }
937
938 /* Compute extent parameters for use with tiled_memcpy functions.
939 * xs are in units of bytes and ys are in units of strides.
940 */
941 static inline void
942 tile_extents(struct isl_surf *surf,
943 const struct pipe_box *box,
944 unsigned level,
945 unsigned *x1_B, unsigned *x2_B,
946 unsigned *y1_el, unsigned *y2_el)
947 {
948 const struct isl_format_layout *fmtl = isl_format_get_layout(surf->format);
949 const unsigned cpp = fmtl->bpb / 8;
950
951 assert(box->x % fmtl->bw == 0);
952 assert(box->y % fmtl->bh == 0);
953
954 unsigned x0_el, y0_el;
955 get_image_offset_el(surf, level, box->z, &x0_el, &y0_el);
956
957 *x1_B = (box->x / fmtl->bw + x0_el) * cpp;
958 *y1_el = box->y / fmtl->bh + y0_el;
959 *x2_B = (DIV_ROUND_UP(box->x + box->width, fmtl->bw) + x0_el) * cpp;
960 *y2_el = DIV_ROUND_UP(box->y + box->height, fmtl->bh) + y0_el;
961 }
962
963 static void
964 iris_unmap_tiled_memcpy(struct iris_transfer *map)
965 {
966 struct pipe_transfer *xfer = &map->base;
967 struct pipe_box box = xfer->box;
968 struct iris_resource *res = (struct iris_resource *) xfer->resource;
969 struct isl_surf *surf = &res->surf;
970
971 const bool has_swizzling = false;
972
973 if (xfer->usage & PIPE_TRANSFER_WRITE) {
974 char *dst = iris_bo_map(map->dbg, res->bo, xfer->usage | MAP_RAW);
975
976 for (int s = 0; s < box.depth; s++) {
977 unsigned x1, x2, y1, y2;
978 tile_extents(surf, &box, xfer->level, &x1, &x2, &y1, &y2);
979
980 void *ptr = map->ptr + s * xfer->layer_stride;
981
982 isl_memcpy_linear_to_tiled(x1, x2, y1, y2, dst, ptr,
983 surf->row_pitch_B, xfer->stride,
984 has_swizzling, surf->tiling, ISL_MEMCPY);
985 box.z++;
986 }
987 }
988 os_free_aligned(map->buffer);
989 map->buffer = map->ptr = NULL;
990 }
991
992 static void
993 iris_map_tiled_memcpy(struct iris_transfer *map)
994 {
995 struct pipe_transfer *xfer = &map->base;
996 struct iris_resource *res = (struct iris_resource *) xfer->resource;
997 struct isl_surf *surf = &res->surf;
998
999 xfer->stride = ALIGN(surf->row_pitch_B, 16);
1000 xfer->layer_stride = xfer->stride * xfer->box.height;
1001
1002 unsigned x1, x2, y1, y2;
1003 tile_extents(surf, &xfer->box, xfer->level, &x1, &x2, &y1, &y2);
1004
1005 /* The tiling and detiling functions require that the linear buffer has
1006 * a 16-byte alignment (that is, its `x0` is 16-byte aligned). Here we
1007 * over-allocate the linear buffer to get the proper alignment.
1008 */
1009 map->buffer =
1010 os_malloc_aligned(xfer->layer_stride * xfer->box.depth, 16);
1011 assert(map->buffer);
1012 map->ptr = (char *)map->buffer + (x1 & 0xf);
1013
1014 const bool has_swizzling = false;
1015
1016 // XXX: PIPE_TRANSFER_READ?
1017 if (!(xfer->usage & PIPE_TRANSFER_DISCARD_RANGE)) {
1018 char *src = iris_bo_map(map->dbg, res->bo, xfer->usage | MAP_RAW);
1019
1020 struct pipe_box box = xfer->box;
1021
1022 for (int s = 0; s < box.depth; s++) {
1023 unsigned x1, x2, y1, y2;
1024 tile_extents(surf, &box, xfer->level, &x1, &x2, &y1, &y2);
1025
1026 /* Use 's' rather than 'box.z' to rebase the first slice to 0. */
1027 void *ptr = map->ptr + s * xfer->layer_stride;
1028
1029 isl_memcpy_tiled_to_linear(x1, x2, y1, y2, ptr, src, xfer->stride,
1030 surf->row_pitch_B, has_swizzling,
1031 surf->tiling, ISL_MEMCPY);
1032 box.z++;
1033 }
1034 }
1035
1036 map->unmap = iris_unmap_tiled_memcpy;
1037 }
1038
1039 static void
1040 iris_map_direct(struct iris_transfer *map)
1041 {
1042 struct pipe_transfer *xfer = &map->base;
1043 struct pipe_box *box = &xfer->box;
1044 struct iris_resource *res = (struct iris_resource *) xfer->resource;
1045
1046 void *ptr = iris_bo_map(map->dbg, res->bo, xfer->usage);
1047
1048 if (res->base.target == PIPE_BUFFER) {
1049 xfer->stride = 0;
1050 xfer->layer_stride = 0;
1051
1052 map->ptr = ptr + box->x;
1053 } else {
1054 struct isl_surf *surf = &res->surf;
1055 const struct isl_format_layout *fmtl =
1056 isl_format_get_layout(surf->format);
1057 const unsigned cpp = fmtl->bpb / 8;
1058 unsigned x0_el, y0_el;
1059
1060 get_image_offset_el(surf, xfer->level, box->z, &x0_el, &y0_el);
1061
1062 xfer->stride = isl_surf_get_row_pitch_B(surf);
1063 xfer->layer_stride = isl_surf_get_array_pitch(surf);
1064
1065 map->ptr = ptr + (y0_el + box->y) * xfer->stride + (x0_el + box->x) * cpp;
1066 }
1067 }
1068
1069 static void *
1070 iris_transfer_map(struct pipe_context *ctx,
1071 struct pipe_resource *resource,
1072 unsigned level,
1073 enum pipe_transfer_usage usage,
1074 const struct pipe_box *box,
1075 struct pipe_transfer **ptransfer)
1076 {
1077 struct iris_context *ice = (struct iris_context *)ctx;
1078 struct iris_resource *res = (struct iris_resource *)resource;
1079 struct isl_surf *surf = &res->surf;
1080
1081 /* If we can discard the whole resource, we can also discard the
1082 * subrange being accessed.
1083 */
1084 if (usage & PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE)
1085 usage |= PIPE_TRANSFER_DISCARD_RANGE;
1086
1087 if (surf->tiling != ISL_TILING_LINEAR &&
1088 (usage & PIPE_TRANSFER_MAP_DIRECTLY))
1089 return NULL;
1090
1091 if (resource->target != PIPE_BUFFER) {
1092 iris_resource_access_raw(ice, &ice->batches[IRIS_BATCH_RENDER], res,
1093 level, box->z, box->depth,
1094 usage & PIPE_TRANSFER_WRITE);
1095 }
1096
1097 if (!(usage & PIPE_TRANSFER_UNSYNCHRONIZED)) {
1098 for (int i = 0; i < IRIS_BATCH_COUNT; i++) {
1099 if (iris_batch_references(&ice->batches[i], res->bo))
1100 iris_batch_flush(&ice->batches[i]);
1101 }
1102 }
1103
1104 if ((usage & PIPE_TRANSFER_DONTBLOCK) && iris_bo_busy(res->bo))
1105 return NULL;
1106
1107 struct iris_transfer *map = slab_alloc(&ice->transfer_pool);
1108 struct pipe_transfer *xfer = &map->base;
1109
1110 if (!map)
1111 return NULL;
1112
1113 memset(map, 0, sizeof(*map));
1114 map->dbg = &ice->dbg;
1115
1116 pipe_resource_reference(&xfer->resource, resource);
1117 xfer->level = level;
1118 xfer->usage = usage;
1119 xfer->box = *box;
1120 *ptransfer = xfer;
1121
1122 xfer->usage &= (PIPE_TRANSFER_READ |
1123 PIPE_TRANSFER_WRITE |
1124 PIPE_TRANSFER_UNSYNCHRONIZED |
1125 PIPE_TRANSFER_PERSISTENT |
1126 PIPE_TRANSFER_COHERENT |
1127 PIPE_TRANSFER_DISCARD_RANGE);
1128
1129 if (surf->tiling == ISL_TILING_W) {
1130 // XXX: just teach iris_map_tiled_memcpy about W tiling...
1131 iris_map_s8(map);
1132 } else if (surf->tiling != ISL_TILING_LINEAR) {
1133 iris_map_tiled_memcpy(map);
1134 } else {
1135 iris_map_direct(map);
1136 }
1137
1138 return map->ptr;
1139 }
1140
1141 static void
1142 iris_transfer_flush_region(struct pipe_context *ctx,
1143 struct pipe_transfer *xfer,
1144 const struct pipe_box *box)
1145 {
1146 struct iris_context *ice = (struct iris_context *)ctx;
1147 struct iris_resource *res = (struct iris_resource *) xfer->resource;
1148
1149
1150 // XXX: don't emit flushes in both engines...? we may also need to flush
1151 // even if there isn't a draw yet - may still be stale data in caches...
1152 for (int i = 0; i < IRIS_BATCH_COUNT; i++) {
1153 if (ice->batches[i].contains_draw) {
1154 iris_batch_maybe_flush(&ice->batches[i], 24);
1155 iris_flush_and_dirty_for_history(ice, &ice->batches[i], res);
1156 }
1157 }
1158 }
1159
1160 static void
1161 iris_transfer_unmap(struct pipe_context *ctx, struct pipe_transfer *xfer)
1162 {
1163 struct iris_context *ice = (struct iris_context *)ctx;
1164 struct iris_transfer *map = (void *) xfer;
1165 struct iris_resource *res = (struct iris_resource *) xfer->resource;
1166
1167 if (map->unmap)
1168 map->unmap(map);
1169
1170 // XXX: don't emit flushes in both engines...?
1171 for (int i = 0; i < IRIS_BATCH_COUNT; i++) {
1172 if (ice->batches[i].contains_draw) {
1173 iris_batch_maybe_flush(&ice->batches[i], 24);
1174 iris_flush_and_dirty_for_history(ice, &ice->batches[i], res);
1175 }
1176 }
1177
1178 pipe_resource_reference(&xfer->resource, NULL);
1179 slab_free(&ice->transfer_pool, map);
1180 }
1181
1182 static void
1183 iris_flush_resource(struct pipe_context *ctx, struct pipe_resource *resource)
1184 {
1185 }
1186
1187 void
1188 iris_flush_and_dirty_for_history(struct iris_context *ice,
1189 struct iris_batch *batch,
1190 struct iris_resource *res)
1191 {
1192 if (res->base.target != PIPE_BUFFER)
1193 return;
1194
1195 unsigned flush = PIPE_CONTROL_CS_STALL;
1196
1197 /* We've likely used the rendering engine (i.e. BLORP) to write to this
1198 * surface. Flush the render cache so the data actually lands.
1199 */
1200 if (batch->name != IRIS_BATCH_COMPUTE)
1201 flush |= PIPE_CONTROL_RENDER_TARGET_FLUSH;
1202
1203 uint64_t dirty = 0ull;
1204
1205 if (res->bind_history & PIPE_BIND_CONSTANT_BUFFER) {
1206 flush |= PIPE_CONTROL_CONST_CACHE_INVALIDATE |
1207 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
1208 dirty |= IRIS_DIRTY_CONSTANTS_VS |
1209 IRIS_DIRTY_CONSTANTS_TCS |
1210 IRIS_DIRTY_CONSTANTS_TES |
1211 IRIS_DIRTY_CONSTANTS_GS |
1212 IRIS_DIRTY_CONSTANTS_FS |
1213 IRIS_DIRTY_CONSTANTS_CS |
1214 IRIS_ALL_DIRTY_BINDINGS;
1215 }
1216
1217 if (res->bind_history & PIPE_BIND_SAMPLER_VIEW)
1218 flush |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
1219
1220 if (res->bind_history & (PIPE_BIND_VERTEX_BUFFER | PIPE_BIND_INDEX_BUFFER))
1221 flush |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
1222
1223 if (res->bind_history & (PIPE_BIND_SHADER_BUFFER | PIPE_BIND_SHADER_IMAGE))
1224 flush |= PIPE_CONTROL_DATA_CACHE_FLUSH;
1225
1226 iris_emit_pipe_control_flush(batch, flush);
1227
1228 ice->state.dirty |= dirty;
1229 }
1230
1231 static enum pipe_format
1232 iris_resource_get_internal_format(struct pipe_resource *p_res)
1233 {
1234 struct iris_resource *res = (void *) p_res;
1235 return res->internal_format;
1236 }
1237
1238 static const struct u_transfer_vtbl transfer_vtbl = {
1239 .resource_create = iris_resource_create,
1240 .resource_destroy = iris_resource_destroy,
1241 .transfer_map = iris_transfer_map,
1242 .transfer_unmap = iris_transfer_unmap,
1243 .transfer_flush_region = iris_transfer_flush_region,
1244 .get_internal_format = iris_resource_get_internal_format,
1245 .set_stencil = iris_resource_set_separate_stencil,
1246 .get_stencil = iris_resource_get_separate_stencil,
1247 };
1248
1249 void
1250 iris_init_screen_resource_functions(struct pipe_screen *pscreen)
1251 {
1252 pscreen->resource_create_with_modifiers =
1253 iris_resource_create_with_modifiers;
1254 pscreen->resource_create = u_transfer_helper_resource_create;
1255 pscreen->resource_from_user_memory = iris_resource_from_user_memory;
1256 pscreen->resource_from_handle = iris_resource_from_handle;
1257 pscreen->resource_get_handle = iris_resource_get_handle;
1258 pscreen->resource_destroy = u_transfer_helper_resource_destroy;
1259 pscreen->transfer_helper =
1260 u_transfer_helper_create(&transfer_vtbl, true, true, false, true);
1261 }
1262
1263 void
1264 iris_init_resource_functions(struct pipe_context *ctx)
1265 {
1266 ctx->flush_resource = iris_flush_resource;
1267 ctx->transfer_map = u_transfer_helper_transfer_map;
1268 ctx->transfer_flush_region = u_transfer_helper_transfer_flush_region;
1269 ctx->transfer_unmap = u_transfer_helper_transfer_unmap;
1270 ctx->buffer_subdata = u_default_buffer_subdata;
1271 ctx->texture_subdata = u_default_texture_subdata;
1272 }