bcde38ae8b424b27c135f4eec9b6195d6bde75c2
[mesa.git] / src / gallium / drivers / panfrost / pan_resource.c
1 /*
2 * Copyright (C) 2008 VMware, Inc.
3 * Copyright (C) 2014 Broadcom
4 * Copyright (C) 2018-2019 Alyssa Rosenzweig
5 * Copyright (C) 2019 Collabora
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the next
15 * paragraph) shall be included in all copies or substantial portions of the
16 * Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 * SOFTWARE.
25 *
26 * Authors (Collabora):
27 * Tomeu Vizoso <tomeu.vizoso@collabora.com>
28 * Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
29 *
30 */
31
32 #include <xf86drm.h>
33 #include <fcntl.h>
34 #include "drm-uapi/drm_fourcc.h"
35
36 #include "state_tracker/winsys_handle.h"
37 #include "util/u_format.h"
38 #include "util/u_memory.h"
39 #include "util/u_surface.h"
40 #include "util/u_transfer.h"
41 #include "util/u_transfer_helper.h"
42
43 #include "pan_context.h"
44 #include "pan_screen.h"
45 #include "pan_resource.h"
46 #include "pan_swizzle.h"
47 #include "pan_util.h"
48
49 static struct pipe_resource *
50 panfrost_resource_from_handle(struct pipe_screen *pscreen,
51 const struct pipe_resource *templat,
52 struct winsys_handle *whandle,
53 unsigned usage)
54 {
55 struct panfrost_screen *screen = pan_screen(pscreen);
56 struct panfrost_resource *rsc;
57 struct pipe_resource *prsc;
58
59 assert(whandle->type == WINSYS_HANDLE_TYPE_FD);
60
61 rsc = CALLOC_STRUCT(panfrost_resource);
62 if (!rsc)
63 return NULL;
64
65 prsc = &rsc->base;
66
67 *prsc = *templat;
68
69 pipe_reference_init(&prsc->reference, 1);
70 prsc->screen = pscreen;
71
72 rsc->bo = screen->driver->import_bo(screen, whandle);
73 rsc->bo->slices[0].stride = whandle->stride;
74
75 if (screen->ro) {
76 rsc->scanout =
77 renderonly_create_gpu_import_for_resource(prsc, screen->ro, NULL);
78 /* failure is expected in some cases.. */
79 }
80
81 return prsc;
82 }
83
84 static boolean
85 panfrost_resource_get_handle(struct pipe_screen *pscreen,
86 struct pipe_context *ctx,
87 struct pipe_resource *pt,
88 struct winsys_handle *handle,
89 unsigned usage)
90 {
91 struct panfrost_screen *screen = pan_screen(pscreen);
92 struct panfrost_resource *rsrc = (struct panfrost_resource *) pt;
93 struct renderonly_scanout *scanout = rsrc->scanout;
94
95 handle->modifier = DRM_FORMAT_MOD_INVALID;
96
97 if (handle->type == WINSYS_HANDLE_TYPE_SHARED) {
98 return FALSE;
99 } else if (handle->type == WINSYS_HANDLE_TYPE_KMS) {
100 if (renderonly_get_handle(scanout, handle))
101 return TRUE;
102
103 handle->handle = rsrc->bo->gem_handle;
104 handle->stride = rsrc->bo->slices[0].stride;
105 return TRUE;
106 } else if (handle->type == WINSYS_HANDLE_TYPE_FD) {
107 if (scanout) {
108 struct drm_prime_handle args = {
109 .handle = scanout->handle,
110 .flags = DRM_CLOEXEC,
111 };
112
113 int ret = drmIoctl(screen->ro->kms_fd, DRM_IOCTL_PRIME_HANDLE_TO_FD, &args);
114 if (ret == -1)
115 return FALSE;
116
117 handle->stride = scanout->stride;
118 handle->handle = args.fd;
119
120 return TRUE;
121 } else
122 return screen->driver->export_bo(screen, rsrc->bo->gem_handle, rsrc->bo->slices[0].stride, handle);
123 }
124
125 return FALSE;
126 }
127
128 static void
129 panfrost_flush_resource(struct pipe_context *pctx, struct pipe_resource *prsc)
130 {
131 //DBG("TODO %s\n", __func__);
132 }
133
134 static struct pipe_surface *
135 panfrost_create_surface(struct pipe_context *pipe,
136 struct pipe_resource *pt,
137 const struct pipe_surface *surf_tmpl)
138 {
139 struct pipe_surface *ps = NULL;
140
141 ps = CALLOC_STRUCT(pipe_surface);
142
143 if (ps) {
144 pipe_reference_init(&ps->reference, 1);
145 pipe_resource_reference(&ps->texture, pt);
146 ps->context = pipe;
147 ps->format = surf_tmpl->format;
148
149 if (pt->target != PIPE_BUFFER) {
150 assert(surf_tmpl->u.tex.level <= pt->last_level);
151 ps->width = u_minify(pt->width0, surf_tmpl->u.tex.level);
152 ps->height = u_minify(pt->height0, surf_tmpl->u.tex.level);
153 ps->u.tex.level = surf_tmpl->u.tex.level;
154 ps->u.tex.first_layer = surf_tmpl->u.tex.first_layer;
155 ps->u.tex.last_layer = surf_tmpl->u.tex.last_layer;
156 } else {
157 /* setting width as number of elements should get us correct renderbuffer width */
158 ps->width = surf_tmpl->u.buf.last_element - surf_tmpl->u.buf.first_element + 1;
159 ps->height = pt->height0;
160 ps->u.buf.first_element = surf_tmpl->u.buf.first_element;
161 ps->u.buf.last_element = surf_tmpl->u.buf.last_element;
162 assert(ps->u.buf.first_element <= ps->u.buf.last_element);
163 assert(ps->u.buf.last_element < ps->width);
164 }
165 }
166
167 return ps;
168 }
169
170 static void
171 panfrost_surface_destroy(struct pipe_context *pipe,
172 struct pipe_surface *surf)
173 {
174 assert(surf->texture);
175 pipe_resource_reference(&surf->texture, NULL);
176 free(surf);
177 }
178
179 static void
180 panfrost_setup_slices(const struct pipe_resource *tmpl, struct panfrost_bo *bo)
181 {
182 unsigned width = tmpl->width0;
183 unsigned height = tmpl->height0;
184 unsigned bytes_per_pixel = util_format_get_blocksize(tmpl->format);
185
186 /* Tiled operates blockwise; linear is packed. Also, anything
187 * we render to has to be tile-aligned. Maybe not strictly
188 * necessary, but we're not *that* pressed for memory and it
189 * makes code a lot simpler */
190
191 bool renderable = tmpl->bind &
192 (PIPE_BIND_RENDER_TARGET | PIPE_BIND_DEPTH_STENCIL);
193 bool tiled = bo->layout == PAN_TILED;
194 bool should_align = renderable || tiled;
195
196 unsigned offset = 0;
197
198 for (unsigned l = 0; l <= tmpl->last_level; ++l) {
199 struct panfrost_slice *slice = &bo->slices[l];
200
201 unsigned effective_width = width;
202 unsigned effective_height = height;
203
204 if (should_align) {
205 effective_width = ALIGN(effective_width, 16);
206 effective_height = ALIGN(effective_height, 16);
207 }
208
209 slice->offset = offset;
210
211 /* Compute the would-be stride */
212 unsigned stride = bytes_per_pixel * effective_width;
213
214 /* ..but cache-line align it for performance */
215 stride = ALIGN(stride, 64);
216 slice->stride = stride;
217
218 offset += slice->stride * effective_height;
219
220 width = u_minify(width, 1);
221 height = u_minify(height, 1);
222 }
223
224 assert(tmpl->array_size);
225
226 bo->cubemap_stride = ALIGN(offset, 64);
227 bo->size = ALIGN(bo->cubemap_stride * tmpl->array_size, 4096);
228 }
229
230 static struct panfrost_bo *
231 panfrost_create_bo(struct panfrost_screen *screen, const struct pipe_resource *template)
232 {
233 struct panfrost_bo *bo = CALLOC_STRUCT(panfrost_bo);
234 pipe_reference_init(&bo->reference, 1);
235
236 /* Based on the usage, figure out what storing will be used. There are
237 * various tradeoffs:
238 *
239 * Linear: the basic format, bad for memory bandwidth, bad for cache
240 * use. Zero-copy, though. Renderable.
241 *
242 * Tiled: Not compressed, but cache-optimized. Expensive to write into
243 * (due to software tiling), but cheap to sample from. Ideal for most
244 * textures.
245 *
246 * AFBC: Compressed and renderable (so always desirable for non-scanout
247 * rendertargets). Cheap to sample from. The format is black box, so we
248 * can't read/write from software.
249 */
250
251 /* Tiling textures is almost always faster, unless we only use it once */
252 bool should_tile = (template->usage != PIPE_USAGE_STREAM) && (template->bind & PIPE_BIND_SAMPLER_VIEW);
253
254 /* Set the layout appropriately */
255 bo->layout = should_tile ? PAN_TILED : PAN_LINEAR;
256
257 panfrost_setup_slices(template, bo);
258
259 if (bo->layout == PAN_TILED || bo->layout == PAN_LINEAR) {
260 struct panfrost_memory mem;
261
262 screen->driver->allocate_slab(screen, &mem, bo->size / 4096, true, 0, 0, 0);
263
264 bo->cpu = mem.cpu;
265 bo->gpu = mem.gpu;
266 bo->gem_handle = mem.gem_handle;
267 }
268
269 return bo;
270 }
271
272 static struct pipe_resource *
273 panfrost_resource_create(struct pipe_screen *screen,
274 const struct pipe_resource *template)
275 {
276 struct panfrost_resource *so = CALLOC_STRUCT(panfrost_resource);
277 struct panfrost_screen *pscreen = (struct panfrost_screen *) screen;
278
279 so->base = *template;
280 so->base.screen = screen;
281
282 pipe_reference_init(&so->base.reference, 1);
283
284 /* Make sure we're familiar */
285 switch (template->target) {
286 case PIPE_BUFFER:
287 case PIPE_TEXTURE_1D:
288 case PIPE_TEXTURE_2D:
289 case PIPE_TEXTURE_3D:
290 case PIPE_TEXTURE_CUBE:
291 case PIPE_TEXTURE_RECT:
292 break;
293 default:
294 DBG("Unknown texture target %d\n", template->target);
295 assert(0);
296 }
297
298 util_range_init(&so->valid_buffer_range);
299
300 if (template->bind & PIPE_BIND_DISPLAY_TARGET ||
301 template->bind & PIPE_BIND_SCANOUT ||
302 template->bind & PIPE_BIND_SHARED) {
303 struct pipe_resource scanout_templat = *template;
304 struct renderonly_scanout *scanout;
305 struct winsys_handle handle;
306
307 scanout = renderonly_scanout_for_resource(&scanout_templat,
308 pscreen->ro, &handle);
309 if (!scanout)
310 return NULL;
311
312 assert(handle.type == WINSYS_HANDLE_TYPE_FD);
313 /* TODO: handle modifiers? */
314 so = pan_resource(screen->resource_from_handle(screen, template,
315 &handle,
316 PIPE_HANDLE_USAGE_FRAMEBUFFER_WRITE));
317 close(handle.handle);
318 if (!so)
319 return NULL;
320
321 so->scanout = scanout;
322 pscreen->display_target = so;
323 } else {
324 so->bo = panfrost_create_bo(pscreen, template);
325 }
326
327 return (struct pipe_resource *)so;
328 }
329
330 static void
331 panfrost_destroy_bo(struct panfrost_screen *screen, struct panfrost_bo *pbo)
332 {
333 struct panfrost_bo *bo = (struct panfrost_bo *)pbo;
334
335 if ((bo->layout == PAN_LINEAR || bo->layout == PAN_TILED) &&
336 !bo->imported) {
337 struct panfrost_memory mem = {
338 .cpu = bo->cpu,
339 .gpu = bo->gpu,
340 .size = bo->size,
341 .gem_handle = bo->gem_handle,
342 };
343
344 screen->driver->free_slab(screen, &mem);
345 }
346
347 if (bo->layout == PAN_AFBC) {
348 /* TODO */
349 DBG("--leaking afbc (%d bytes)--\n", bo->afbc_metadata_size);
350 }
351
352 if (bo->has_checksum) {
353 struct panfrost_memory mem = {
354 .cpu = bo->checksum_slab.cpu,
355 .gpu = bo->checksum_slab.gpu,
356 .size = bo->checksum_slab.size,
357 .gem_handle = bo->checksum_slab.gem_handle,
358 };
359
360 screen->driver->free_slab(screen, &mem);
361 }
362
363 if (bo->imported) {
364 screen->driver->free_imported_bo(screen, bo);
365 }
366 }
367
368 void
369 panfrost_bo_reference(struct panfrost_bo *bo)
370 {
371 pipe_reference(NULL, &bo->reference);
372 }
373
374 void
375 panfrost_bo_unreference(struct pipe_screen *screen, struct panfrost_bo *bo)
376 {
377 /* When the reference count goes to zero, we need to cleanup */
378
379 if (pipe_reference(&bo->reference, NULL)) {
380 panfrost_destroy_bo(pan_screen(screen), bo);
381 }
382 }
383
384 static void
385 panfrost_resource_destroy(struct pipe_screen *screen,
386 struct pipe_resource *pt)
387 {
388 struct panfrost_screen *pscreen = pan_screen(screen);
389 struct panfrost_resource *rsrc = (struct panfrost_resource *) pt;
390
391 if (rsrc->scanout)
392 renderonly_scanout_destroy(rsrc->scanout, pscreen->ro);
393
394 if (rsrc->bo)
395 panfrost_bo_unreference(screen, rsrc->bo);
396
397 util_range_destroy(&rsrc->valid_buffer_range);
398 FREE(rsrc);
399 }
400
401 static void *
402 panfrost_transfer_map(struct pipe_context *pctx,
403 struct pipe_resource *resource,
404 unsigned level,
405 unsigned usage, /* a combination of PIPE_TRANSFER_x */
406 const struct pipe_box *box,
407 struct pipe_transfer **out_transfer)
408 {
409 int bytes_per_pixel = util_format_get_blocksize(resource->format);
410 struct panfrost_resource *rsrc = pan_resource(resource);
411 struct panfrost_bo *bo = rsrc->bo;
412
413 struct panfrost_gtransfer *transfer = CALLOC_STRUCT(panfrost_gtransfer);
414 transfer->base.level = level;
415 transfer->base.usage = usage;
416 transfer->base.box = *box;
417
418 pipe_resource_reference(&transfer->base.resource, resource);
419
420 *out_transfer = &transfer->base;
421
422 /* Check if we're bound for rendering and this is a read pixels. If so,
423 * we need to flush */
424
425 struct panfrost_context *ctx = pan_context(pctx);
426 struct pipe_framebuffer_state *fb = &ctx->pipe_framebuffer;
427
428 bool is_bound = false;
429
430 for (unsigned c = 0; c < fb->nr_cbufs; ++c) {
431 is_bound |= fb->cbufs[c]->texture == resource;
432 }
433
434 if (is_bound && (usage & PIPE_TRANSFER_READ)) {
435 assert(level == 0);
436 panfrost_flush(pctx, NULL, PIPE_FLUSH_END_OF_FRAME);
437 }
438
439 /* TODO: Respect usage flags */
440
441 if (usage & PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE) {
442 /* TODO: reallocate */
443 //printf("debug: Missed reallocate\n");
444 } else if ((usage & PIPE_TRANSFER_WRITE)
445 && resource->target == PIPE_BUFFER
446 && !util_ranges_intersect(&rsrc->valid_buffer_range, box->x, box->x + box->width)) {
447 /* No flush for writes to uninitialized */
448 } else if (!(usage & PIPE_TRANSFER_UNSYNCHRONIZED)) {
449 if (usage & PIPE_TRANSFER_WRITE) {
450 /* STUB: flush reading */
451 //printf("debug: missed reading flush %d\n", resource->target);
452 } else if (usage & PIPE_TRANSFER_READ) {
453 /* STUB: flush writing */
454 //printf("debug: missed writing flush %d (%d-%d)\n", resource->target, box->x, box->x + box->width);
455 } else {
456 /* Why are you even mapping?! */
457 }
458 }
459
460 if (bo->layout != PAN_LINEAR) {
461 /* Non-linear resources need to be indirectly mapped */
462
463 if (usage & PIPE_TRANSFER_MAP_DIRECTLY)
464 return NULL;
465
466 transfer->base.stride = box->width * bytes_per_pixel;
467 transfer->base.layer_stride = transfer->base.stride * box->height;
468
469 /* TODO: Reads */
470 transfer->map = malloc(transfer->base.layer_stride * box->depth);
471
472 return transfer->map;
473 } else {
474 transfer->base.stride = bo->slices[level].stride;
475 transfer->base.layer_stride = bo->cubemap_stride;
476
477 return bo->cpu
478 + bo->slices[level].offset
479 + transfer->base.box.z * bo->cubemap_stride
480 + transfer->base.box.y * bo->slices[level].stride
481 + transfer->base.box.x * bytes_per_pixel;
482 }
483 }
484
485 static void
486 panfrost_tile_texture(struct panfrost_screen *screen, struct panfrost_resource *rsrc, struct panfrost_gtransfer *trans)
487 {
488 struct panfrost_bo *bo = (struct panfrost_bo *)rsrc->bo;
489
490 unsigned level = trans->base.level;
491
492 panfrost_texture_swizzle(
493 trans->base.box.x,
494 trans->base.box.y,
495 trans->base.box.width,
496 trans->base.box.height,
497 util_format_get_blocksize(rsrc->base.format),
498 u_minify(rsrc->base.width0, level),
499 trans->map,
500 bo->cpu
501 + bo->slices[level].offset
502 + bo->cubemap_stride * trans->base.box.z
503 );
504 }
505
506 static void
507 panfrost_transfer_unmap(struct pipe_context *pctx,
508 struct pipe_transfer *transfer)
509 {
510 struct panfrost_context *ctx = pan_context(pctx);
511
512 /* Gallium expects writeback here, so we tile */
513
514 struct panfrost_gtransfer *trans = pan_transfer(transfer);
515 struct panfrost_resource *prsrc = (struct panfrost_resource *) transfer->resource;
516
517 if (trans->map) {
518 struct panfrost_bo *bo = prsrc->bo;
519
520 if (transfer->usage & PIPE_TRANSFER_WRITE) {
521
522 if (bo->layout == PAN_AFBC) {
523 DBG("Unimplemented: writes to AFBC\n");
524 } else if (bo->layout == PAN_TILED) {
525 struct pipe_context *gallium = (struct pipe_context *) ctx;
526 struct panfrost_screen *screen = pan_screen(gallium->screen);
527 assert(transfer->box.depth == 1);
528 panfrost_tile_texture(screen, prsrc, trans);
529 }
530 }
531
532 free(trans->map);
533 }
534
535
536 util_range_add(&prsrc->valid_buffer_range,
537 transfer->box.x,
538 transfer->box.x + transfer->box.width);
539
540 /* Derefence the resource */
541 pipe_resource_reference(&transfer->resource, NULL);
542
543 /* Transfer itself is CALLOCed at the moment */
544 free(transfer);
545 }
546
547 static void
548 panfrost_transfer_flush_region(struct pipe_context *pctx,
549 struct pipe_transfer *transfer,
550 const struct pipe_box *box)
551 {
552 struct panfrost_resource *rsc = pan_resource(transfer->resource);
553
554 if (transfer->resource->target == PIPE_BUFFER) {
555 util_range_add(&rsc->valid_buffer_range,
556 transfer->box.x + box->x,
557 transfer->box.x + box->x + box->width);
558 }
559 }
560
561 static struct pb_slab *
562 panfrost_slab_alloc(void *priv, unsigned heap, unsigned entry_size, unsigned group_index)
563 {
564 struct panfrost_screen *screen = (struct panfrost_screen *) priv;
565 struct panfrost_memory *mem = CALLOC_STRUCT(panfrost_memory);
566
567 size_t slab_size = (1 << (MAX_SLAB_ENTRY_SIZE + 1));
568
569 mem->slab.num_entries = slab_size / entry_size;
570 mem->slab.num_free = mem->slab.num_entries;
571
572 LIST_INITHEAD(&mem->slab.free);
573 for (unsigned i = 0; i < mem->slab.num_entries; ++i) {
574 /* Create a slab entry */
575 struct panfrost_memory_entry *entry = CALLOC_STRUCT(panfrost_memory_entry);
576 entry->offset = entry_size * i;
577
578 entry->base.slab = &mem->slab;
579 entry->base.group_index = group_index;
580
581 LIST_ADDTAIL(&entry->base.head, &mem->slab.free);
582 }
583
584 /* Actually allocate the memory from kernel-space. Mapped, same_va, no
585 * special flags */
586
587 screen->driver->allocate_slab(screen, mem, slab_size / 4096, true, 0, 0, 0);
588
589 return &mem->slab;
590 }
591
592 static bool
593 panfrost_slab_can_reclaim(void *priv, struct pb_slab_entry *entry)
594 {
595 struct panfrost_memory_entry *p_entry = (struct panfrost_memory_entry *) entry;
596 return p_entry->freed;
597 }
598
599 static void
600 panfrost_slab_free(void *priv, struct pb_slab *slab)
601 {
602 struct panfrost_memory *mem = (struct panfrost_memory *) slab;
603 struct panfrost_screen *screen = (struct panfrost_screen *) priv;
604
605 screen->driver->free_slab(screen, mem);
606 }
607
608 static void
609 panfrost_invalidate_resource(struct pipe_context *pctx, struct pipe_resource *prsc)
610 {
611 //DBG("TODO %s\n", __func__);
612 }
613
614 static enum pipe_format
615 panfrost_resource_get_internal_format(struct pipe_resource *prsrc)
616 {
617 return prsrc->format;
618 }
619
620 static void
621 panfrost_resource_set_stencil(struct pipe_resource *prsrc,
622 struct pipe_resource *stencil)
623 {
624 pan_resource(prsrc)->separate_stencil = pan_resource(stencil);
625 }
626
627 static struct pipe_resource *
628 panfrost_resource_get_stencil(struct pipe_resource *prsrc)
629 {
630 return &pan_resource(prsrc)->separate_stencil->base;
631 }
632
633 static const struct u_transfer_vtbl transfer_vtbl = {
634 .resource_create = panfrost_resource_create,
635 .resource_destroy = panfrost_resource_destroy,
636 .transfer_map = panfrost_transfer_map,
637 .transfer_unmap = panfrost_transfer_unmap,
638 .transfer_flush_region = panfrost_transfer_flush_region,
639 .get_internal_format = panfrost_resource_get_internal_format,
640 .set_stencil = panfrost_resource_set_stencil,
641 .get_stencil = panfrost_resource_get_stencil,
642 };
643
644 void
645 panfrost_resource_screen_init(struct panfrost_screen *pscreen)
646 {
647 //pscreen->base.resource_create_with_modifiers =
648 // panfrost_resource_create_with_modifiers;
649 pscreen->base.resource_create = u_transfer_helper_resource_create;
650 pscreen->base.resource_destroy = u_transfer_helper_resource_destroy;
651 pscreen->base.resource_from_handle = panfrost_resource_from_handle;
652 pscreen->base.resource_get_handle = panfrost_resource_get_handle;
653 pscreen->base.transfer_helper = u_transfer_helper_create(&transfer_vtbl,
654 true, false,
655 true, true);
656
657 pb_slabs_init(&pscreen->slabs,
658 MIN_SLAB_ENTRY_SIZE,
659 MAX_SLAB_ENTRY_SIZE,
660
661 3, /* Number of heaps */
662
663 pscreen,
664
665 panfrost_slab_can_reclaim,
666 panfrost_slab_alloc,
667 panfrost_slab_free);
668 }
669
670 void
671 panfrost_resource_context_init(struct pipe_context *pctx)
672 {
673 pctx->transfer_map = u_transfer_helper_transfer_map;
674 pctx->transfer_flush_region = u_transfer_helper_transfer_flush_region;
675 pctx->transfer_unmap = u_transfer_helper_transfer_unmap;
676 pctx->buffer_subdata = u_default_buffer_subdata;
677 pctx->create_surface = panfrost_create_surface;
678 pctx->surface_destroy = panfrost_surface_destroy;
679 pctx->resource_copy_region = util_resource_copy_region;
680 pctx->blit = panfrost_blit;
681 pctx->flush_resource = panfrost_flush_resource;
682 pctx->invalidate_resource = panfrost_invalidate_resource;
683 pctx->transfer_flush_region = u_transfer_helper_transfer_flush_region;
684 pctx->buffer_subdata = u_default_buffer_subdata;
685 pctx->texture_subdata = u_default_texture_subdata;
686 }