freedreno/fdl6: rework layout code a bit (reduce linear align to 64 bytes)
[mesa.git] / src / gallium / drivers / freedreno / freedreno_resource.c
1 /*
2 * Copyright (C) 2012 Rob Clark <robclark@freedesktop.org>
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 (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 * Authors:
24 * Rob Clark <robclark@freedesktop.org>
25 */
26
27 #include "util/format/u_format.h"
28 #include "util/format/u_format_rgtc.h"
29 #include "util/format/u_format_zs.h"
30 #include "util/u_inlines.h"
31 #include "util/u_transfer.h"
32 #include "util/u_string.h"
33 #include "util/u_surface.h"
34 #include "util/set.h"
35 #include "util/u_drm.h"
36
37 #include "freedreno_resource.h"
38 #include "freedreno_batch_cache.h"
39 #include "freedreno_blitter.h"
40 #include "freedreno_fence.h"
41 #include "freedreno_screen.h"
42 #include "freedreno_surface.h"
43 #include "freedreno_context.h"
44 #include "freedreno_query_hw.h"
45 #include "freedreno_util.h"
46
47 #include "drm-uapi/drm_fourcc.h"
48 #include <errno.h>
49
50 /* XXX this should go away, needed for 'struct winsys_handle' */
51 #include "frontend/drm_driver.h"
52
53 /* A private modifier for now, so we have a way to request tiled but not
54 * compressed. It would perhaps be good to get real modifiers for the
55 * tiled formats, but would probably need to do some work to figure out
56 * the layout(s) of the tiled modes, and whether they are the same
57 * across generations.
58 */
59 #define FD_FORMAT_MOD_QCOM_TILED fourcc_mod_code(QCOM, 0xffffffff)
60
61 /**
62 * Go through the entire state and see if the resource is bound
63 * anywhere. If it is, mark the relevant state as dirty. This is
64 * called on realloc_bo to ensure the necessary state is re-
65 * emitted so the GPU looks at the new backing bo.
66 */
67 static void
68 rebind_resource_in_ctx(struct fd_context *ctx, struct fd_resource *rsc)
69 {
70 struct pipe_resource *prsc = &rsc->base;
71
72 if (ctx->rebind_resource)
73 ctx->rebind_resource(ctx, rsc);
74
75 /* VBOs */
76 if (rsc->dirty & FD_DIRTY_VTXBUF) {
77 struct fd_vertexbuf_stateobj *vb = &ctx->vtx.vertexbuf;
78 for (unsigned i = 0; i < vb->count && !(ctx->dirty & FD_DIRTY_VTXBUF); i++) {
79 if (vb->vb[i].buffer.resource == prsc)
80 ctx->dirty |= FD_DIRTY_VTXBUF;
81 }
82 }
83
84 const enum fd_dirty_3d_state per_stage_dirty =
85 FD_DIRTY_CONST | FD_DIRTY_TEX | FD_DIRTY_IMAGE | FD_DIRTY_SSBO;
86
87 if (!(rsc->dirty & per_stage_dirty))
88 return;
89
90 /* per-shader-stage resources: */
91 for (unsigned stage = 0; stage < PIPE_SHADER_TYPES; stage++) {
92 /* Constbufs.. note that constbuf[0] is normal uniforms emitted in
93 * cmdstream rather than by pointer..
94 */
95 if ((rsc->dirty & FD_DIRTY_CONST) &&
96 !(ctx->dirty_shader[stage] & FD_DIRTY_CONST)) {
97 struct fd_constbuf_stateobj *cb = &ctx->constbuf[stage];
98 const unsigned num_ubos = util_last_bit(cb->enabled_mask);
99 for (unsigned i = 1; i < num_ubos; i++) {
100 if (cb->cb[i].buffer == prsc) {
101 ctx->dirty_shader[stage] |= FD_DIRTY_SHADER_CONST;
102 ctx->dirty |= FD_DIRTY_CONST;
103 break;
104 }
105 }
106 }
107
108 /* Textures */
109 if ((rsc->dirty & FD_DIRTY_TEX) &&
110 !(ctx->dirty_shader[stage] & FD_DIRTY_TEX)) {
111 struct fd_texture_stateobj *tex = &ctx->tex[stage];
112 for (unsigned i = 0; i < tex->num_textures; i++) {
113 if (tex->textures[i] && (tex->textures[i]->texture == prsc)) {
114 ctx->dirty_shader[stage] |= FD_DIRTY_SHADER_TEX;
115 ctx->dirty |= FD_DIRTY_TEX;
116 break;
117 }
118 }
119 }
120
121 /* Images */
122 if ((rsc->dirty & FD_DIRTY_IMAGE) &&
123 !(ctx->dirty_shader[stage] & FD_DIRTY_IMAGE)) {
124 struct fd_shaderimg_stateobj *si = &ctx->shaderimg[stage];
125 const unsigned num_images = util_last_bit(si->enabled_mask);
126 for (unsigned i = 0; i < num_images; i++) {
127 if (si->si[i].resource == prsc) {
128 ctx->dirty_shader[stage] |= FD_DIRTY_SHADER_IMAGE;
129 ctx->dirty |= FD_DIRTY_IMAGE;
130 break;
131 }
132 }
133 }
134
135 /* SSBOs */
136 if ((rsc->dirty & FD_DIRTY_SSBO) &&
137 !(ctx->dirty_shader[stage] & FD_DIRTY_SSBO)) {
138 struct fd_shaderbuf_stateobj *sb = &ctx->shaderbuf[stage];
139 const unsigned num_ssbos = util_last_bit(sb->enabled_mask);
140 for (unsigned i = 0; i < num_ssbos; i++) {
141 if (sb->sb[i].buffer == prsc) {
142 ctx->dirty_shader[stage] |= FD_DIRTY_SHADER_SSBO;
143 ctx->dirty |= FD_DIRTY_SSBO;
144 break;
145 }
146 }
147 }
148 }
149 }
150
151 static void
152 rebind_resource(struct fd_resource *rsc)
153 {
154 struct fd_screen *screen = fd_screen(rsc->base.screen);
155
156 fd_screen_lock(screen);
157 fd_resource_lock(rsc);
158
159 if (rsc->dirty)
160 list_for_each_entry (struct fd_context, ctx, &screen->context_list, node)
161 rebind_resource_in_ctx(ctx, rsc);
162
163 fd_resource_unlock(rsc);
164 fd_screen_unlock(screen);
165 }
166
167 static void
168 realloc_bo(struct fd_resource *rsc, uint32_t size)
169 {
170 struct pipe_resource *prsc = &rsc->base;
171 struct fd_screen *screen = fd_screen(rsc->base.screen);
172 uint32_t flags = DRM_FREEDRENO_GEM_CACHE_WCOMBINE |
173 DRM_FREEDRENO_GEM_TYPE_KMEM |
174 COND(prsc->bind & PIPE_BIND_SCANOUT, DRM_FREEDRENO_GEM_SCANOUT);
175 /* TODO other flags? */
176
177 /* if we start using things other than write-combine,
178 * be sure to check for PIPE_RESOURCE_FLAG_MAP_COHERENT
179 */
180
181 if (rsc->bo)
182 fd_bo_del(rsc->bo);
183
184 rsc->bo = fd_bo_new(screen->dev, size, flags, "%ux%ux%u@%u:%x",
185 prsc->width0, prsc->height0, prsc->depth0, rsc->layout.cpp, prsc->bind);
186
187 /* Zero out the UBWC area on allocation. This fixes intermittent failures
188 * with UBWC, which I suspect are due to the HW having a hard time
189 * interpreting arbitrary values populating the flags buffer when the BO
190 * was recycled through the bo cache (instead of fresh allocations from
191 * the kernel, which are zeroed). sleep(1) in this spot didn't work
192 * around the issue, but any memset value seems to.
193 */
194 if (rsc->layout.ubwc) {
195 void *buf = fd_bo_map(rsc->bo);
196 memset(buf, 0, rsc->layout.slices[0].offset);
197 }
198
199 rsc->seqno = p_atomic_inc_return(&screen->rsc_seqno);
200 util_range_set_empty(&rsc->valid_buffer_range);
201 fd_bc_invalidate_resource(rsc, true);
202 }
203
204 static void
205 do_blit(struct fd_context *ctx, const struct pipe_blit_info *blit, bool fallback)
206 {
207 struct pipe_context *pctx = &ctx->base;
208
209 /* TODO size threshold too?? */
210 if (fallback || !fd_blit(pctx, blit)) {
211 /* do blit on cpu: */
212 util_resource_copy_region(pctx,
213 blit->dst.resource, blit->dst.level, blit->dst.box.x,
214 blit->dst.box.y, blit->dst.box.z,
215 blit->src.resource, blit->src.level, &blit->src.box);
216 }
217 }
218
219 /**
220 * @rsc: the resource to shadow
221 * @level: the level to discard (if box != NULL, otherwise ignored)
222 * @box: the box to discard (or NULL if none)
223 * @modifier: the modifier for the new buffer state
224 */
225 static bool
226 fd_try_shadow_resource(struct fd_context *ctx, struct fd_resource *rsc,
227 unsigned level, const struct pipe_box *box, uint64_t modifier)
228 {
229 struct pipe_context *pctx = &ctx->base;
230 struct pipe_resource *prsc = &rsc->base;
231 bool fallback = false;
232
233 if (prsc->next)
234 return false;
235
236 /* TODO: somehow munge dimensions and format to copy unsupported
237 * render target format to something that is supported?
238 */
239 if (!pctx->screen->is_format_supported(pctx->screen,
240 prsc->format, prsc->target, prsc->nr_samples,
241 prsc->nr_storage_samples,
242 PIPE_BIND_RENDER_TARGET))
243 fallback = true;
244
245 /* do shadowing back-blits on the cpu for buffers: */
246 if (prsc->target == PIPE_BUFFER)
247 fallback = true;
248
249 bool discard_whole_level = box && util_texrange_covers_whole_level(prsc, level,
250 box->x, box->y, box->z, box->width, box->height, box->depth);
251
252 /* TODO need to be more clever about current level */
253 if ((prsc->target >= PIPE_TEXTURE_2D) && box && !discard_whole_level)
254 return false;
255
256 struct pipe_resource *pshadow =
257 pctx->screen->resource_create_with_modifiers(pctx->screen,
258 prsc, &modifier, 1);
259
260 if (!pshadow)
261 return false;
262
263 assert(!ctx->in_shadow);
264 ctx->in_shadow = true;
265
266 /* get rid of any references that batch-cache might have to us (which
267 * should empty/destroy rsc->batches hashset)
268 */
269 fd_bc_invalidate_resource(rsc, false);
270 rebind_resource(rsc);
271
272 fd_screen_lock(ctx->screen);
273
274 /* Swap the backing bo's, so shadow becomes the old buffer,
275 * blit from shadow to new buffer. From here on out, we
276 * cannot fail.
277 *
278 * Note that we need to do it in this order, otherwise if
279 * we go down cpu blit path, the recursive transfer_map()
280 * sees the wrong status..
281 */
282 struct fd_resource *shadow = fd_resource(pshadow);
283
284 DBG("shadow: %p (%d) -> %p (%d)\n", rsc, rsc->base.reference.count,
285 shadow, shadow->base.reference.count);
286
287 /* TODO valid_buffer_range?? */
288 swap(rsc->bo, shadow->bo);
289 swap(rsc->write_batch, shadow->write_batch);
290 swap(rsc->layout, shadow->layout);
291 rsc->seqno = p_atomic_inc_return(&ctx->screen->rsc_seqno);
292
293 /* at this point, the newly created shadow buffer is not referenced
294 * by any batches, but the existing rsc (probably) is. We need to
295 * transfer those references over:
296 */
297 debug_assert(shadow->batch_mask == 0);
298 struct fd_batch *batch;
299 foreach_batch(batch, &ctx->screen->batch_cache, rsc->batch_mask) {
300 struct set_entry *entry = _mesa_set_search(batch->resources, rsc);
301 _mesa_set_remove(batch->resources, entry);
302 _mesa_set_add(batch->resources, shadow);
303 }
304 swap(rsc->batch_mask, shadow->batch_mask);
305
306 fd_screen_unlock(ctx->screen);
307
308 struct pipe_blit_info blit = {};
309 blit.dst.resource = prsc;
310 blit.dst.format = prsc->format;
311 blit.src.resource = pshadow;
312 blit.src.format = pshadow->format;
313 blit.mask = util_format_get_mask(prsc->format);
314 blit.filter = PIPE_TEX_FILTER_NEAREST;
315
316 #define set_box(field, val) do { \
317 blit.dst.field = (val); \
318 blit.src.field = (val); \
319 } while (0)
320
321 /* blit the other levels in their entirety: */
322 for (unsigned l = 0; l <= prsc->last_level; l++) {
323 if (box && l == level)
324 continue;
325
326 /* just blit whole level: */
327 set_box(level, l);
328 set_box(box.width, u_minify(prsc->width0, l));
329 set_box(box.height, u_minify(prsc->height0, l));
330 set_box(box.depth, u_minify(prsc->depth0, l));
331
332 for (int i = 0; i < prsc->array_size; i++) {
333 set_box(box.z, i);
334 do_blit(ctx, &blit, fallback);
335 }
336 }
337
338 /* deal w/ current level specially, since we might need to split
339 * it up into a couple blits:
340 */
341 if (box && !discard_whole_level) {
342 set_box(level, level);
343
344 switch (prsc->target) {
345 case PIPE_BUFFER:
346 case PIPE_TEXTURE_1D:
347 set_box(box.y, 0);
348 set_box(box.z, 0);
349 set_box(box.height, 1);
350 set_box(box.depth, 1);
351
352 if (box->x > 0) {
353 set_box(box.x, 0);
354 set_box(box.width, box->x);
355
356 do_blit(ctx, &blit, fallback);
357 }
358 if ((box->x + box->width) < u_minify(prsc->width0, level)) {
359 set_box(box.x, box->x + box->width);
360 set_box(box.width, u_minify(prsc->width0, level) - (box->x + box->width));
361
362 do_blit(ctx, &blit, fallback);
363 }
364 break;
365 case PIPE_TEXTURE_2D:
366 /* TODO */
367 default:
368 unreachable("TODO");
369 }
370 }
371
372 ctx->in_shadow = false;
373
374 pipe_resource_reference(&pshadow, NULL);
375
376 return true;
377 }
378
379 /**
380 * Uncompress an UBWC compressed buffer "in place". This works basically
381 * like resource shadowing, creating a new resource, and doing an uncompress
382 * blit, and swapping the state between shadow and original resource so it
383 * appears to the gallium frontends as if nothing changed.
384 */
385 void
386 fd_resource_uncompress(struct fd_context *ctx, struct fd_resource *rsc)
387 {
388 bool success =
389 fd_try_shadow_resource(ctx, rsc, 0, NULL, FD_FORMAT_MOD_QCOM_TILED);
390
391 /* shadow should not fail in any cases where we need to uncompress: */
392 debug_assert(success);
393 }
394
395 static struct fd_resource *
396 fd_alloc_staging(struct fd_context *ctx, struct fd_resource *rsc,
397 unsigned level, const struct pipe_box *box)
398 {
399 struct pipe_context *pctx = &ctx->base;
400 struct pipe_resource tmpl = rsc->base;
401
402 tmpl.width0 = box->width;
403 tmpl.height0 = box->height;
404 /* for array textures, box->depth is the array_size, otherwise
405 * for 3d textures, it is the depth:
406 */
407 if (tmpl.array_size > 1) {
408 if (tmpl.target == PIPE_TEXTURE_CUBE)
409 tmpl.target = PIPE_TEXTURE_2D_ARRAY;
410 tmpl.array_size = box->depth;
411 tmpl.depth0 = 1;
412 } else {
413 tmpl.array_size = 1;
414 tmpl.depth0 = box->depth;
415 }
416 tmpl.last_level = 0;
417 tmpl.bind |= PIPE_BIND_LINEAR;
418
419 struct pipe_resource *pstaging =
420 pctx->screen->resource_create(pctx->screen, &tmpl);
421 if (!pstaging)
422 return NULL;
423
424 return fd_resource(pstaging);
425 }
426
427 static void
428 fd_blit_from_staging(struct fd_context *ctx, struct fd_transfer *trans)
429 {
430 struct pipe_resource *dst = trans->base.resource;
431 struct pipe_blit_info blit = {};
432
433 blit.dst.resource = dst;
434 blit.dst.format = dst->format;
435 blit.dst.level = trans->base.level;
436 blit.dst.box = trans->base.box;
437 blit.src.resource = trans->staging_prsc;
438 blit.src.format = trans->staging_prsc->format;
439 blit.src.level = 0;
440 blit.src.box = trans->staging_box;
441 blit.mask = util_format_get_mask(trans->staging_prsc->format);
442 blit.filter = PIPE_TEX_FILTER_NEAREST;
443
444 do_blit(ctx, &blit, false);
445 }
446
447 static void
448 fd_blit_to_staging(struct fd_context *ctx, struct fd_transfer *trans)
449 {
450 struct pipe_resource *src = trans->base.resource;
451 struct pipe_blit_info blit = {};
452
453 blit.src.resource = src;
454 blit.src.format = src->format;
455 blit.src.level = trans->base.level;
456 blit.src.box = trans->base.box;
457 blit.dst.resource = trans->staging_prsc;
458 blit.dst.format = trans->staging_prsc->format;
459 blit.dst.level = 0;
460 blit.dst.box = trans->staging_box;
461 blit.mask = util_format_get_mask(trans->staging_prsc->format);
462 blit.filter = PIPE_TEX_FILTER_NEAREST;
463
464 do_blit(ctx, &blit, false);
465 }
466
467 static void fd_resource_transfer_flush_region(struct pipe_context *pctx,
468 struct pipe_transfer *ptrans,
469 const struct pipe_box *box)
470 {
471 struct fd_resource *rsc = fd_resource(ptrans->resource);
472
473 if (ptrans->resource->target == PIPE_BUFFER)
474 util_range_add(&rsc->base, &rsc->valid_buffer_range,
475 ptrans->box.x + box->x,
476 ptrans->box.x + box->x + box->width);
477 }
478
479 static void
480 flush_resource(struct fd_context *ctx, struct fd_resource *rsc, unsigned usage)
481 {
482 struct fd_batch *write_batch = NULL;
483
484 fd_screen_lock(ctx->screen);
485 fd_batch_reference_locked(&write_batch, rsc->write_batch);
486 fd_screen_unlock(ctx->screen);
487
488 if (usage & PIPE_TRANSFER_WRITE) {
489 struct fd_batch *batch, *batches[32] = {};
490 uint32_t batch_mask;
491
492 /* This is a bit awkward, probably a fd_batch_flush_locked()
493 * would make things simpler.. but we need to hold the lock
494 * to iterate the batches which reference this resource. So
495 * we must first grab references under a lock, then flush.
496 */
497 fd_screen_lock(ctx->screen);
498 batch_mask = rsc->batch_mask;
499 foreach_batch(batch, &ctx->screen->batch_cache, batch_mask)
500 fd_batch_reference_locked(&batches[batch->idx], batch);
501 fd_screen_unlock(ctx->screen);
502
503 foreach_batch(batch, &ctx->screen->batch_cache, batch_mask)
504 fd_batch_flush(batch);
505
506 foreach_batch(batch, &ctx->screen->batch_cache, batch_mask) {
507 fd_batch_reference(&batches[batch->idx], NULL);
508 }
509 assert(rsc->batch_mask == 0);
510 } else if (write_batch) {
511 fd_batch_flush(write_batch);
512 }
513
514 fd_batch_reference(&write_batch, NULL);
515
516 assert(!rsc->write_batch);
517 }
518
519 static void
520 fd_flush_resource(struct pipe_context *pctx, struct pipe_resource *prsc)
521 {
522 flush_resource(fd_context(pctx), fd_resource(prsc), PIPE_TRANSFER_READ);
523 }
524
525 static void
526 fd_resource_transfer_unmap(struct pipe_context *pctx,
527 struct pipe_transfer *ptrans)
528 {
529 struct fd_context *ctx = fd_context(pctx);
530 struct fd_resource *rsc = fd_resource(ptrans->resource);
531 struct fd_transfer *trans = fd_transfer(ptrans);
532
533 if (trans->staging_prsc) {
534 if (ptrans->usage & PIPE_TRANSFER_WRITE)
535 fd_blit_from_staging(ctx, trans);
536 pipe_resource_reference(&trans->staging_prsc, NULL);
537 }
538
539 if (!(ptrans->usage & PIPE_TRANSFER_UNSYNCHRONIZED)) {
540 fd_bo_cpu_fini(rsc->bo);
541 }
542
543 util_range_add(&rsc->base, &rsc->valid_buffer_range,
544 ptrans->box.x,
545 ptrans->box.x + ptrans->box.width);
546
547 pipe_resource_reference(&ptrans->resource, NULL);
548 slab_free(&ctx->transfer_pool, ptrans);
549 }
550
551 static void *
552 fd_resource_transfer_map(struct pipe_context *pctx,
553 struct pipe_resource *prsc,
554 unsigned level, unsigned usage,
555 const struct pipe_box *box,
556 struct pipe_transfer **pptrans)
557 {
558 struct fd_context *ctx = fd_context(pctx);
559 struct fd_resource *rsc = fd_resource(prsc);
560 struct fdl_slice *slice = fd_resource_slice(rsc, level);
561 struct fd_transfer *trans;
562 struct pipe_transfer *ptrans;
563 enum pipe_format format = prsc->format;
564 uint32_t op = 0;
565 uint32_t offset;
566 char *buf;
567 int ret = 0;
568
569 DBG("prsc=%p, level=%u, usage=%x, box=%dx%d+%d,%d", prsc, level, usage,
570 box->width, box->height, box->x, box->y);
571
572 if ((usage & PIPE_TRANSFER_MAP_DIRECTLY) && rsc->layout.tile_mode) {
573 DBG("CANNOT MAP DIRECTLY!\n");
574 return NULL;
575 }
576
577 ptrans = slab_alloc(&ctx->transfer_pool);
578 if (!ptrans)
579 return NULL;
580
581 /* slab_alloc_st() doesn't zero: */
582 trans = fd_transfer(ptrans);
583 memset(trans, 0, sizeof(*trans));
584
585 pipe_resource_reference(&ptrans->resource, prsc);
586 ptrans->level = level;
587 ptrans->usage = usage;
588 ptrans->box = *box;
589 ptrans->stride = slice->pitch;
590 ptrans->layer_stride = fd_resource_layer_stride(rsc, level);
591
592 /* we always need a staging texture for tiled buffers:
593 *
594 * TODO we might sometimes want to *also* shadow the resource to avoid
595 * splitting a batch.. for ex, mid-frame texture uploads to a tiled
596 * texture.
597 */
598 if (rsc->layout.tile_mode) {
599 struct fd_resource *staging_rsc;
600
601 staging_rsc = fd_alloc_staging(ctx, rsc, level, box);
602 if (staging_rsc) {
603 struct fdl_slice *staging_slice =
604 fd_resource_slice(staging_rsc, 0);
605 // TODO for PIPE_TRANSFER_READ, need to do untiling blit..
606 trans->staging_prsc = &staging_rsc->base;
607 trans->base.stride = staging_slice->pitch;
608 trans->base.layer_stride = fd_resource_layer_stride(staging_rsc, 0);
609 trans->staging_box = *box;
610 trans->staging_box.x = 0;
611 trans->staging_box.y = 0;
612 trans->staging_box.z = 0;
613
614 if (usage & PIPE_TRANSFER_READ) {
615 fd_blit_to_staging(ctx, trans);
616
617 fd_bo_cpu_prep(staging_rsc->bo, ctx->pipe,
618 DRM_FREEDRENO_PREP_READ);
619 }
620
621 buf = fd_bo_map(staging_rsc->bo);
622 offset = 0;
623
624 *pptrans = ptrans;
625
626 ctx->stats.staging_uploads++;
627
628 return buf;
629 }
630 }
631
632 if (ctx->in_shadow && !(usage & PIPE_TRANSFER_READ))
633 usage |= PIPE_TRANSFER_UNSYNCHRONIZED;
634
635 if (usage & PIPE_TRANSFER_READ)
636 op |= DRM_FREEDRENO_PREP_READ;
637
638 if (usage & PIPE_TRANSFER_WRITE)
639 op |= DRM_FREEDRENO_PREP_WRITE;
640
641 bool needs_flush = pending(rsc, !!(usage & PIPE_TRANSFER_WRITE));
642
643 if (usage & PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE) {
644 if (needs_flush || fd_resource_busy(rsc, op)) {
645 rebind_resource(rsc);
646 realloc_bo(rsc, fd_bo_size(rsc->bo));
647 }
648 } else if ((usage & PIPE_TRANSFER_WRITE) &&
649 prsc->target == PIPE_BUFFER &&
650 !util_ranges_intersect(&rsc->valid_buffer_range,
651 box->x, box->x + box->width)) {
652 /* We are trying to write to a previously uninitialized range. No need
653 * to wait.
654 */
655 } else if (!(usage & PIPE_TRANSFER_UNSYNCHRONIZED)) {
656 struct fd_batch *write_batch = NULL;
657
658 /* hold a reference, so it doesn't disappear under us: */
659 fd_context_lock(ctx);
660 fd_batch_reference_locked(&write_batch, rsc->write_batch);
661 fd_context_unlock(ctx);
662
663 if ((usage & PIPE_TRANSFER_WRITE) && write_batch &&
664 write_batch->back_blit) {
665 /* if only thing pending is a back-blit, we can discard it: */
666 fd_batch_reset(write_batch);
667 }
668
669 /* If the GPU is writing to the resource, or if it is reading from the
670 * resource and we're trying to write to it, flush the renders.
671 */
672 bool busy = needs_flush || fd_resource_busy(rsc, op);
673
674 /* if we need to flush/stall, see if we can make a shadow buffer
675 * to avoid this:
676 *
677 * TODO we could go down this path !reorder && !busy_for_read
678 * ie. we only *don't* want to go down this path if the blit
679 * will trigger a flush!
680 */
681 if (ctx->screen->reorder && busy && !(usage & PIPE_TRANSFER_READ) &&
682 (usage & PIPE_TRANSFER_DISCARD_RANGE)) {
683 /* try shadowing only if it avoids a flush, otherwise staging would
684 * be better:
685 */
686 if (needs_flush && fd_try_shadow_resource(ctx, rsc, level,
687 box, DRM_FORMAT_MOD_LINEAR)) {
688 needs_flush = busy = false;
689 ctx->stats.shadow_uploads++;
690 } else {
691 struct fd_resource *staging_rsc;
692
693 if (needs_flush) {
694 flush_resource(ctx, rsc, usage);
695 needs_flush = false;
696 }
697
698 /* in this case, we don't need to shadow the whole resource,
699 * since any draw that references the previous contents has
700 * already had rendering flushed for all tiles. So we can
701 * use a staging buffer to do the upload.
702 */
703 staging_rsc = fd_alloc_staging(ctx, rsc, level, box);
704 if (staging_rsc) {
705 struct fdl_slice *staging_slice =
706 fd_resource_slice(staging_rsc, 0);
707 trans->staging_prsc = &staging_rsc->base;
708 trans->base.stride = staging_slice->pitch;
709 trans->base.layer_stride =
710 fd_resource_layer_stride(staging_rsc, 0);
711 trans->staging_box = *box;
712 trans->staging_box.x = 0;
713 trans->staging_box.y = 0;
714 trans->staging_box.z = 0;
715 buf = fd_bo_map(staging_rsc->bo);
716 offset = 0;
717
718 *pptrans = ptrans;
719
720 fd_batch_reference(&write_batch, NULL);
721
722 ctx->stats.staging_uploads++;
723
724 return buf;
725 }
726 }
727 }
728
729 if (needs_flush) {
730 flush_resource(ctx, rsc, usage);
731 needs_flush = false;
732 }
733
734 fd_batch_reference(&write_batch, NULL);
735
736 /* The GPU keeps track of how the various bo's are being used, and
737 * will wait if necessary for the proper operation to have
738 * completed.
739 */
740 if (busy) {
741 ret = fd_bo_cpu_prep(rsc->bo, ctx->pipe, op);
742 if (ret)
743 goto fail;
744 }
745 }
746
747 buf = fd_bo_map(rsc->bo);
748 offset =
749 box->y / util_format_get_blockheight(format) * ptrans->stride +
750 box->x / util_format_get_blockwidth(format) * rsc->layout.cpp +
751 fd_resource_offset(rsc, level, box->z);
752
753 if (usage & PIPE_TRANSFER_WRITE)
754 rsc->valid = true;
755
756 *pptrans = ptrans;
757
758 return buf + offset;
759
760 fail:
761 fd_resource_transfer_unmap(pctx, ptrans);
762 return NULL;
763 }
764
765 static void
766 fd_resource_destroy(struct pipe_screen *pscreen,
767 struct pipe_resource *prsc)
768 {
769 struct fd_resource *rsc = fd_resource(prsc);
770 fd_bc_invalidate_resource(rsc, true);
771 if (rsc->bo)
772 fd_bo_del(rsc->bo);
773 if (rsc->scanout)
774 renderonly_scanout_destroy(rsc->scanout, fd_screen(pscreen)->ro);
775
776 util_range_destroy(&rsc->valid_buffer_range);
777 simple_mtx_destroy(&rsc->lock);
778 FREE(rsc);
779 }
780
781 static uint64_t
782 fd_resource_modifier(struct fd_resource *rsc)
783 {
784 if (!rsc->layout.tile_mode)
785 return DRM_FORMAT_MOD_LINEAR;
786
787 if (rsc->layout.ubwc_layer_size)
788 return DRM_FORMAT_MOD_QCOM_COMPRESSED;
789
790 /* TODO invent a modifier for tiled but not UBWC buffers: */
791 return DRM_FORMAT_MOD_INVALID;
792 }
793
794 static bool
795 fd_resource_get_handle(struct pipe_screen *pscreen,
796 struct pipe_context *pctx,
797 struct pipe_resource *prsc,
798 struct winsys_handle *handle,
799 unsigned usage)
800 {
801 struct fd_resource *rsc = fd_resource(prsc);
802
803 handle->modifier = fd_resource_modifier(rsc);
804
805 return fd_screen_bo_get_handle(pscreen, rsc->bo, rsc->scanout,
806 fd_resource_slice(rsc, 0)->pitch, handle);
807 }
808
809 /* special case to resize query buf after allocated.. */
810 void
811 fd_resource_resize(struct pipe_resource *prsc, uint32_t sz)
812 {
813 struct fd_resource *rsc = fd_resource(prsc);
814
815 debug_assert(prsc->width0 == 0);
816 debug_assert(prsc->target == PIPE_BUFFER);
817 debug_assert(prsc->bind == PIPE_BIND_QUERY_BUFFER);
818
819 prsc->width0 = sz;
820 realloc_bo(rsc, fd_screen(prsc->screen)->setup_slices(rsc));
821 }
822
823 static void
824 fd_resource_layout_init(struct pipe_resource *prsc)
825 {
826 struct fd_resource *rsc = fd_resource(prsc);
827 struct fdl_layout *layout = &rsc->layout;
828
829 layout->width0 = prsc->width0;
830 layout->height0 = prsc->height0;
831 layout->depth0 = prsc->depth0;
832
833 layout->cpp = util_format_get_blocksize(prsc->format);
834 layout->cpp *= fd_resource_nr_samples(prsc);
835 layout->cpp_shift = ffs(layout->cpp) - 1;
836 }
837
838 /**
839 * Create a new texture object, using the given template info.
840 */
841 static struct pipe_resource *
842 fd_resource_create_with_modifiers(struct pipe_screen *pscreen,
843 const struct pipe_resource *tmpl,
844 const uint64_t *modifiers, int count)
845 {
846 struct fd_screen *screen = fd_screen(pscreen);
847 struct fd_resource *rsc;
848 struct pipe_resource *prsc;
849 enum pipe_format format = tmpl->format;
850 uint32_t size;
851
852 /* when using kmsro, scanout buffers are allocated on the display device
853 * create_with_modifiers() doesn't give us usage flags, so we have to
854 * assume that all calls with modifiers are scanout-possible
855 */
856 if (screen->ro &&
857 ((tmpl->bind & PIPE_BIND_SCANOUT) ||
858 !(count == 1 && modifiers[0] == DRM_FORMAT_MOD_INVALID))) {
859 struct pipe_resource scanout_templat = *tmpl;
860 struct renderonly_scanout *scanout;
861 struct winsys_handle handle;
862
863 /* note: alignment is wrong for a6xx */
864 scanout_templat.width0 = align(tmpl->width0, screen->gmem_alignw);
865
866 scanout = renderonly_scanout_for_resource(&scanout_templat,
867 screen->ro, &handle);
868 if (!scanout)
869 return NULL;
870
871 renderonly_scanout_destroy(scanout, screen->ro);
872
873 assert(handle.type == WINSYS_HANDLE_TYPE_FD);
874 rsc = fd_resource(pscreen->resource_from_handle(pscreen, tmpl,
875 &handle,
876 PIPE_HANDLE_USAGE_FRAMEBUFFER_WRITE));
877 close(handle.handle);
878 if (!rsc)
879 return NULL;
880
881 return &rsc->base;
882 }
883
884 rsc = CALLOC_STRUCT(fd_resource);
885 prsc = &rsc->base;
886
887 DBG("%p: target=%d, format=%s, %ux%ux%u, array_size=%u, last_level=%u, "
888 "nr_samples=%u, usage=%u, bind=%x, flags=%x", prsc,
889 tmpl->target, util_format_name(format),
890 tmpl->width0, tmpl->height0, tmpl->depth0,
891 tmpl->array_size, tmpl->last_level, tmpl->nr_samples,
892 tmpl->usage, tmpl->bind, tmpl->flags);
893
894 if (!rsc)
895 return NULL;
896
897 *prsc = *tmpl;
898 fd_resource_layout_init(prsc);
899
900 #define LINEAR \
901 (PIPE_BIND_SCANOUT | \
902 PIPE_BIND_LINEAR | \
903 PIPE_BIND_DISPLAY_TARGET)
904
905 bool linear = drm_find_modifier(DRM_FORMAT_MOD_LINEAR, modifiers, count);
906 if (tmpl->bind & LINEAR)
907 linear = true;
908
909 if (fd_mesa_debug & FD_DBG_NOTILE)
910 linear = true;
911
912 /* Normally, for non-shared buffers, allow buffer compression if
913 * not shared, otherwise only allow if QCOM_COMPRESSED modifier
914 * is requested:
915 *
916 * TODO we should probably also limit tiled in a similar way,
917 * except we don't have a format modifier for tiled. (We probably
918 * should.)
919 */
920 bool allow_ubwc = drm_find_modifier(DRM_FORMAT_MOD_INVALID, modifiers, count);
921 if (tmpl->bind & PIPE_BIND_SHARED)
922 allow_ubwc = drm_find_modifier(DRM_FORMAT_MOD_QCOM_COMPRESSED, modifiers, count);
923
924 allow_ubwc &= !(fd_mesa_debug & FD_DBG_NOUBWC);
925
926 pipe_reference_init(&prsc->reference, 1);
927
928 prsc->screen = pscreen;
929
930 if (screen->tile_mode &&
931 (tmpl->target != PIPE_BUFFER) &&
932 !linear) {
933 rsc->layout.tile_mode = screen->tile_mode(prsc);
934 }
935
936 util_range_init(&rsc->valid_buffer_range);
937
938 simple_mtx_init(&rsc->lock, mtx_plain);
939
940 rsc->internal_format = format;
941
942 rsc->layout.ubwc = rsc->layout.tile_mode && is_a6xx(screen) && allow_ubwc;
943
944 if (prsc->target == PIPE_BUFFER) {
945 assert(prsc->format == PIPE_FORMAT_R8_UNORM);
946 size = prsc->width0;
947 fdl_layout_buffer(&rsc->layout, size);
948 } else {
949 size = screen->setup_slices(rsc);
950 }
951
952 /* special case for hw-query buffer, which we need to allocate before we
953 * know the size:
954 */
955 if (size == 0) {
956 /* note, semi-intention == instead of & */
957 debug_assert(prsc->bind == PIPE_BIND_QUERY_BUFFER);
958 return prsc;
959 }
960
961 /* Set the layer size if the (non-a6xx) backend hasn't done so. */
962 if (rsc->layout.layer_first && !rsc->layout.layer_size) {
963 rsc->layout.layer_size = align(size, 4096);
964 size = rsc->layout.layer_size * prsc->array_size;
965 }
966
967 if (fd_mesa_debug & FD_DBG_LAYOUT)
968 fdl_dump_layout(&rsc->layout);
969
970 realloc_bo(rsc, size);
971 if (!rsc->bo)
972 goto fail;
973
974 return prsc;
975 fail:
976 fd_resource_destroy(pscreen, prsc);
977 return NULL;
978 }
979
980 static struct pipe_resource *
981 fd_resource_create(struct pipe_screen *pscreen,
982 const struct pipe_resource *tmpl)
983 {
984 const uint64_t mod = DRM_FORMAT_MOD_INVALID;
985 return fd_resource_create_with_modifiers(pscreen, tmpl, &mod, 1);
986 }
987
988 /**
989 * Create a texture from a winsys_handle. The handle is often created in
990 * another process by first creating a pipe texture and then calling
991 * resource_get_handle.
992 */
993 static struct pipe_resource *
994 fd_resource_from_handle(struct pipe_screen *pscreen,
995 const struct pipe_resource *tmpl,
996 struct winsys_handle *handle, unsigned usage)
997 {
998 struct fd_screen *screen = fd_screen(pscreen);
999 struct fd_resource *rsc = CALLOC_STRUCT(fd_resource);
1000 struct fdl_slice *slice = fd_resource_slice(rsc, 0);
1001 struct pipe_resource *prsc = &rsc->base;
1002
1003 DBG("target=%d, format=%s, %ux%ux%u, array_size=%u, last_level=%u, "
1004 "nr_samples=%u, usage=%u, bind=%x, flags=%x",
1005 tmpl->target, util_format_name(tmpl->format),
1006 tmpl->width0, tmpl->height0, tmpl->depth0,
1007 tmpl->array_size, tmpl->last_level, tmpl->nr_samples,
1008 tmpl->usage, tmpl->bind, tmpl->flags);
1009
1010 if (!rsc)
1011 return NULL;
1012
1013 *prsc = *tmpl;
1014 fd_resource_layout_init(prsc);
1015
1016 pipe_reference_init(&prsc->reference, 1);
1017
1018 prsc->screen = pscreen;
1019
1020 util_range_init(&rsc->valid_buffer_range);
1021
1022 simple_mtx_init(&rsc->lock, mtx_plain);
1023
1024 rsc->bo = fd_screen_bo_from_handle(pscreen, handle);
1025 if (!rsc->bo)
1026 goto fail;
1027
1028 rsc->internal_format = tmpl->format;
1029 slice->pitch = handle->stride;
1030 slice->offset = handle->offset;
1031 slice->size0 = handle->stride * prsc->height0;
1032
1033 uint32_t pitchalign = fd_screen(pscreen)->gmem_alignw * rsc->layout.cpp;
1034
1035 /* pitchalign is 64-bytes for linear formats on a6xx
1036 * layout_resource_for_modifier will validate tiled pitch
1037 */
1038 if (is_a6xx(screen))
1039 pitchalign = 64;
1040
1041 if ((slice->pitch < align(prsc->width0 * rsc->layout.cpp, pitchalign)) ||
1042 (slice->pitch & (pitchalign - 1)))
1043 goto fail;
1044
1045 assert(rsc->layout.cpp);
1046
1047 if (screen->layout_resource_for_modifier(rsc, handle->modifier) < 0)
1048 goto fail;
1049
1050 if (screen->ro) {
1051 rsc->scanout =
1052 renderonly_create_gpu_import_for_resource(prsc, screen->ro, NULL);
1053 /* failure is expected in some cases.. */
1054 }
1055
1056 rsc->valid = true;
1057
1058 return prsc;
1059
1060 fail:
1061 fd_resource_destroy(pscreen, prsc);
1062 return NULL;
1063 }
1064
1065 bool
1066 fd_render_condition_check(struct pipe_context *pctx)
1067 {
1068 struct fd_context *ctx = fd_context(pctx);
1069
1070 if (!ctx->cond_query)
1071 return true;
1072
1073 union pipe_query_result res = { 0 };
1074 bool wait =
1075 ctx->cond_mode != PIPE_RENDER_COND_NO_WAIT &&
1076 ctx->cond_mode != PIPE_RENDER_COND_BY_REGION_NO_WAIT;
1077
1078 if (pctx->get_query_result(pctx, ctx->cond_query, wait, &res))
1079 return (bool)res.u64 != ctx->cond_cond;
1080
1081 return true;
1082 }
1083
1084 static void
1085 fd_invalidate_resource(struct pipe_context *pctx, struct pipe_resource *prsc)
1086 {
1087 struct fd_context *ctx = fd_context(pctx);
1088 struct fd_resource *rsc = fd_resource(prsc);
1089
1090 /*
1091 * TODO I guess we could track that the resource is invalidated and
1092 * use that as a hint to realloc rather than stall in _transfer_map(),
1093 * even in the non-DISCARD_WHOLE_RESOURCE case?
1094 *
1095 * Note: we set dirty bits to trigger invalidate logic fd_draw_vbo
1096 */
1097
1098 if (rsc->write_batch) {
1099 struct fd_batch *batch = rsc->write_batch;
1100 struct pipe_framebuffer_state *pfb = &batch->framebuffer;
1101
1102 if (pfb->zsbuf && pfb->zsbuf->texture == prsc) {
1103 batch->resolve &= ~(FD_BUFFER_DEPTH | FD_BUFFER_STENCIL);
1104 ctx->dirty |= FD_DIRTY_ZSA;
1105 }
1106
1107 for (unsigned i = 0; i < pfb->nr_cbufs; i++) {
1108 if (pfb->cbufs[i] && pfb->cbufs[i]->texture == prsc) {
1109 batch->resolve &= ~(PIPE_CLEAR_COLOR0 << i);
1110 ctx->dirty |= FD_DIRTY_FRAMEBUFFER;
1111 }
1112 }
1113 }
1114
1115 rsc->valid = false;
1116 }
1117
1118 static enum pipe_format
1119 fd_resource_get_internal_format(struct pipe_resource *prsc)
1120 {
1121 return fd_resource(prsc)->internal_format;
1122 }
1123
1124 static void
1125 fd_resource_set_stencil(struct pipe_resource *prsc,
1126 struct pipe_resource *stencil)
1127 {
1128 fd_resource(prsc)->stencil = fd_resource(stencil);
1129 }
1130
1131 static struct pipe_resource *
1132 fd_resource_get_stencil(struct pipe_resource *prsc)
1133 {
1134 struct fd_resource *rsc = fd_resource(prsc);
1135 if (rsc->stencil)
1136 return &rsc->stencil->base;
1137 return NULL;
1138 }
1139
1140 static const struct u_transfer_vtbl transfer_vtbl = {
1141 .resource_create = fd_resource_create,
1142 .resource_destroy = fd_resource_destroy,
1143 .transfer_map = fd_resource_transfer_map,
1144 .transfer_flush_region = fd_resource_transfer_flush_region,
1145 .transfer_unmap = fd_resource_transfer_unmap,
1146 .get_internal_format = fd_resource_get_internal_format,
1147 .set_stencil = fd_resource_set_stencil,
1148 .get_stencil = fd_resource_get_stencil,
1149 };
1150
1151 static const uint64_t supported_modifiers[] = {
1152 DRM_FORMAT_MOD_LINEAR,
1153 };
1154
1155 static int
1156 fd_layout_resource_for_modifier(struct fd_resource *rsc, uint64_t modifier)
1157 {
1158 switch (modifier) {
1159 case DRM_FORMAT_MOD_LINEAR:
1160 return 0;
1161 default:
1162 return -1;
1163 }
1164 }
1165
1166 void
1167 fd_resource_screen_init(struct pipe_screen *pscreen)
1168 {
1169 struct fd_screen *screen = fd_screen(pscreen);
1170 bool fake_rgtc = screen->gpu_id < 400;
1171
1172 pscreen->resource_create = u_transfer_helper_resource_create;
1173 /* NOTE: u_transfer_helper does not yet support the _with_modifiers()
1174 * variant:
1175 */
1176 pscreen->resource_create_with_modifiers = fd_resource_create_with_modifiers;
1177 pscreen->resource_from_handle = fd_resource_from_handle;
1178 pscreen->resource_get_handle = fd_resource_get_handle;
1179 pscreen->resource_destroy = u_transfer_helper_resource_destroy;
1180
1181 pscreen->transfer_helper = u_transfer_helper_create(&transfer_vtbl,
1182 true, false, fake_rgtc, true);
1183
1184 if (!screen->layout_resource_for_modifier)
1185 screen->layout_resource_for_modifier = fd_layout_resource_for_modifier;
1186 if (!screen->supported_modifiers) {
1187 screen->supported_modifiers = supported_modifiers;
1188 screen->num_supported_modifiers = ARRAY_SIZE(supported_modifiers);
1189 }
1190 }
1191
1192 static void
1193 fd_get_sample_position(struct pipe_context *context,
1194 unsigned sample_count, unsigned sample_index,
1195 float *pos_out)
1196 {
1197 /* The following is copied from nouveau/nv50 except for position
1198 * values, which are taken from blob driver */
1199 static const uint8_t pos1[1][2] = { { 0x8, 0x8 } };
1200 static const uint8_t pos2[2][2] = {
1201 { 0xc, 0xc }, { 0x4, 0x4 } };
1202 static const uint8_t pos4[4][2] = {
1203 { 0x6, 0x2 }, { 0xe, 0x6 },
1204 { 0x2, 0xa }, { 0xa, 0xe } };
1205 /* TODO needs to be verified on supported hw */
1206 static const uint8_t pos8[8][2] = {
1207 { 0x9, 0x5 }, { 0x7, 0xb },
1208 { 0xd, 0x9 }, { 0x5, 0x3 },
1209 { 0x3, 0xd }, { 0x1, 0x7 },
1210 { 0xb, 0xf }, { 0xf, 0x1 } };
1211
1212 const uint8_t (*ptr)[2];
1213
1214 switch (sample_count) {
1215 case 1:
1216 ptr = pos1;
1217 break;
1218 case 2:
1219 ptr = pos2;
1220 break;
1221 case 4:
1222 ptr = pos4;
1223 break;
1224 case 8:
1225 ptr = pos8;
1226 break;
1227 default:
1228 assert(0);
1229 return;
1230 }
1231
1232 pos_out[0] = ptr[sample_index][0] / 16.0f;
1233 pos_out[1] = ptr[sample_index][1] / 16.0f;
1234 }
1235
1236 static void
1237 fd_blit_pipe(struct pipe_context *pctx, const struct pipe_blit_info *blit_info)
1238 {
1239 /* wrap fd_blit to return void */
1240 fd_blit(pctx, blit_info);
1241 }
1242
1243 void
1244 fd_resource_context_init(struct pipe_context *pctx)
1245 {
1246 pctx->transfer_map = u_transfer_helper_transfer_map;
1247 pctx->transfer_flush_region = u_transfer_helper_transfer_flush_region;
1248 pctx->transfer_unmap = u_transfer_helper_transfer_unmap;
1249 pctx->buffer_subdata = u_default_buffer_subdata;
1250 pctx->texture_subdata = u_default_texture_subdata;
1251 pctx->create_surface = fd_create_surface;
1252 pctx->surface_destroy = fd_surface_destroy;
1253 pctx->resource_copy_region = fd_resource_copy_region;
1254 pctx->blit = fd_blit_pipe;
1255 pctx->flush_resource = fd_flush_resource;
1256 pctx->invalidate_resource = fd_invalidate_resource;
1257 pctx->get_sample_position = fd_get_sample_position;
1258 }