2013-11-26 23:33:20 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright 2013 Advanced Micro Devices, Inc.
|
2018-04-01 16:49:48 -04:00
|
|
|
* All Rights Reserved.
|
2013-11-26 23:33:20 +01:00
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* on the rights to use, copy, modify, merge, publish, distribute, sub
|
|
|
|
|
* license, and/or sell copies of the Software, and to permit persons to whom
|
|
|
|
|
* the Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
|
* Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
|
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
|
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
|
* USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-11-25 23:02:00 +01:00
|
|
|
#include "radeonsi/si_pipe.h"
|
2013-11-29 17:28:23 +01:00
|
|
|
#include "util/u_memory.h"
|
|
|
|
|
#include "util/u_upload_mgr.h"
|
2018-04-08 20:20:39 -04:00
|
|
|
#include "util/u_transfer.h"
|
2013-11-26 23:33:20 +01:00
|
|
|
#include <inttypes.h>
|
2014-01-23 13:23:43 +00:00
|
|
|
#include <stdio.h>
|
2013-11-26 23:33:20 +01:00
|
|
|
|
2018-04-01 15:37:11 -04:00
|
|
|
bool si_rings_is_buffer_referenced(struct si_context *sctx,
|
2017-09-13 02:26:26 +02:00
|
|
|
struct pb_buffer *buf,
|
|
|
|
|
enum radeon_bo_usage usage)
|
2013-11-26 23:33:20 +01:00
|
|
|
{
|
2018-04-01 19:44:25 -04:00
|
|
|
if (sctx->ws->cs_is_buffer_referenced(sctx->gfx_cs, buf, usage)) {
|
2016-06-21 21:29:39 +02:00
|
|
|
return true;
|
2013-11-26 23:33:20 +01:00
|
|
|
}
|
2018-04-01 19:44:25 -04:00
|
|
|
if (radeon_emitted(sctx->dma_cs, 0) &&
|
|
|
|
|
sctx->ws->cs_is_buffer_referenced(sctx->dma_cs, buf, usage)) {
|
2016-06-21 21:29:39 +02:00
|
|
|
return true;
|
2013-11-26 23:33:20 +01:00
|
|
|
}
|
2016-06-21 21:29:39 +02:00
|
|
|
return false;
|
2013-11-26 23:33:20 +01:00
|
|
|
}
|
|
|
|
|
|
2018-04-01 15:37:11 -04:00
|
|
|
void *si_buffer_map_sync_with_rings(struct si_context *sctx,
|
2017-09-13 02:26:26 +02:00
|
|
|
struct r600_resource *resource,
|
|
|
|
|
unsigned usage)
|
2013-11-26 23:33:20 +01:00
|
|
|
{
|
|
|
|
|
enum radeon_bo_usage rusage = RADEON_USAGE_READWRITE;
|
2014-02-01 15:06:39 +01:00
|
|
|
bool busy = false;
|
2013-11-26 23:33:20 +01:00
|
|
|
|
2017-02-07 18:24:59 +01:00
|
|
|
assert(!(resource->flags & RADEON_FLAG_SPARSE));
|
|
|
|
|
|
2013-11-26 23:33:20 +01:00
|
|
|
if (usage & PIPE_TRANSFER_UNSYNCHRONIZED) {
|
2018-04-01 19:44:25 -04:00
|
|
|
return sctx->ws->buffer_map(resource->buf, NULL, usage);
|
2013-11-26 23:33:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!(usage & PIPE_TRANSFER_WRITE)) {
|
|
|
|
|
/* have to wait for the last write */
|
|
|
|
|
rusage = RADEON_USAGE_WRITE;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-01 19:44:25 -04:00
|
|
|
if (radeon_emitted(sctx->gfx_cs, sctx->initial_gfx_cs_size) &&
|
|
|
|
|
sctx->ws->cs_is_buffer_referenced(sctx->gfx_cs,
|
2018-04-01 15:37:11 -04:00
|
|
|
resource->buf, rusage)) {
|
2013-11-26 23:33:20 +01:00
|
|
|
if (usage & PIPE_TRANSFER_DONTBLOCK) {
|
2018-04-06 22:26:49 -04:00
|
|
|
si_flush_gfx_cs(sctx, RADEON_FLUSH_ASYNC_START_NEXT_GFX_IB_NOW, NULL);
|
2013-11-26 23:33:20 +01:00
|
|
|
return NULL;
|
|
|
|
|
} else {
|
2018-04-06 22:26:49 -04:00
|
|
|
si_flush_gfx_cs(sctx, RADEON_FLUSH_ASYNC_START_NEXT_GFX_IB_NOW, NULL);
|
2014-02-01 15:06:39 +01:00
|
|
|
busy = true;
|
2013-11-26 23:33:20 +01:00
|
|
|
}
|
|
|
|
|
}
|
2018-04-01 19:44:25 -04:00
|
|
|
if (radeon_emitted(sctx->dma_cs, 0) &&
|
|
|
|
|
sctx->ws->cs_is_buffer_referenced(sctx->dma_cs,
|
2018-04-01 15:37:11 -04:00
|
|
|
resource->buf, rusage)) {
|
2013-11-26 23:33:20 +01:00
|
|
|
if (usage & PIPE_TRANSFER_DONTBLOCK) {
|
2018-04-01 15:37:11 -04:00
|
|
|
si_flush_dma_cs(sctx, PIPE_FLUSH_ASYNC, NULL);
|
2013-11-26 23:33:20 +01:00
|
|
|
return NULL;
|
|
|
|
|
} else {
|
2018-04-01 15:37:11 -04:00
|
|
|
si_flush_dma_cs(sctx, 0, NULL);
|
2014-02-01 15:06:39 +01:00
|
|
|
busy = true;
|
2013-11-26 23:33:20 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-01 19:44:25 -04:00
|
|
|
if (busy || !sctx->ws->buffer_wait(resource->buf, 0, rusage)) {
|
2013-11-26 23:33:20 +01:00
|
|
|
if (usage & PIPE_TRANSFER_DONTBLOCK) {
|
|
|
|
|
return NULL;
|
|
|
|
|
} else {
|
|
|
|
|
/* We will be wait for the GPU. Wait for any offloaded
|
|
|
|
|
* CS flush to complete to avoid busy-waiting in the winsys. */
|
2018-04-01 19:44:25 -04:00
|
|
|
sctx->ws->cs_sync_flush(sctx->gfx_cs);
|
|
|
|
|
if (sctx->dma_cs)
|
|
|
|
|
sctx->ws->cs_sync_flush(sctx->dma_cs);
|
2013-11-26 23:33:20 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-01 15:06:39 +01:00
|
|
|
/* Setting the CS to NULL will prevent doing checks we have done already. */
|
2018-04-01 19:44:25 -04:00
|
|
|
return sctx->ws->buffer_map(resource->buf, NULL, usage);
|
2013-11-26 23:33:20 +01:00
|
|
|
}
|
|
|
|
|
|
2017-11-26 03:38:44 +01:00
|
|
|
void si_init_resource_fields(struct si_screen *sscreen,
|
2017-09-13 02:26:26 +02:00
|
|
|
struct r600_resource *res,
|
|
|
|
|
uint64_t size, unsigned alignment)
|
2013-11-26 23:33:20 +01:00
|
|
|
{
|
2014-02-04 18:35:40 +01:00
|
|
|
struct r600_texture *rtex = (struct r600_texture*)res;
|
2016-08-18 16:30:00 +02:00
|
|
|
|
|
|
|
|
res->bo_size = size;
|
|
|
|
|
res->bo_alignment = alignment;
|
|
|
|
|
res->flags = 0;
|
2017-06-14 21:11:19 +02:00
|
|
|
res->texture_handle_allocated = false;
|
|
|
|
|
res->image_handle_allocated = false;
|
2013-11-26 23:33:20 +01:00
|
|
|
|
2014-02-04 18:35:40 +01:00
|
|
|
switch (res->b.b.usage) {
|
2014-08-26 18:21:50 +09:00
|
|
|
case PIPE_USAGE_STREAM:
|
2016-08-18 16:30:00 +02:00
|
|
|
res->flags = RADEON_FLAG_GTT_WC;
|
2014-08-26 18:21:50 +09:00
|
|
|
/* fall through */
|
2014-06-19 10:40:38 +09:00
|
|
|
case PIPE_USAGE_STAGING:
|
2016-08-18 16:30:00 +02:00
|
|
|
/* Transfers are likely to occur more often with these
|
|
|
|
|
* resources. */
|
2014-02-04 18:35:40 +01:00
|
|
|
res->domains = RADEON_DOMAIN_GTT;
|
2013-11-26 23:33:20 +01:00
|
|
|
break;
|
2014-06-25 18:36:43 +09:00
|
|
|
case PIPE_USAGE_DYNAMIC:
|
|
|
|
|
/* Older kernels didn't always flush the HDP cache before
|
|
|
|
|
* CS execution
|
|
|
|
|
*/
|
2017-11-26 03:38:44 +01:00
|
|
|
if (sscreen->info.drm_major == 2 &&
|
|
|
|
|
sscreen->info.drm_minor < 40) {
|
2014-06-25 18:36:43 +09:00
|
|
|
res->domains = RADEON_DOMAIN_GTT;
|
2016-08-18 16:30:00 +02:00
|
|
|
res->flags |= RADEON_FLAG_GTT_WC;
|
2014-06-25 18:36:43 +09:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
/* fall through */
|
2013-11-26 23:33:20 +01:00
|
|
|
case PIPE_USAGE_DEFAULT:
|
|
|
|
|
case PIPE_USAGE_IMMUTABLE:
|
|
|
|
|
default:
|
2016-08-18 16:30:00 +02:00
|
|
|
/* Not listing GTT here improves performance in some
|
|
|
|
|
* apps. */
|
2014-02-04 18:35:40 +01:00
|
|
|
res->domains = RADEON_DOMAIN_VRAM;
|
2016-08-18 16:30:00 +02:00
|
|
|
res->flags |= RADEON_FLAG_GTT_WC;
|
2013-11-26 23:33:20 +01:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-26 18:06:49 +09:00
|
|
|
if (res->b.b.target == PIPE_BUFFER &&
|
2014-01-27 21:46:21 +01:00
|
|
|
res->b.b.flags & (PIPE_RESOURCE_FLAG_MAP_PERSISTENT |
|
|
|
|
|
PIPE_RESOURCE_FLAG_MAP_COHERENT)) {
|
2016-08-18 16:30:00 +02:00
|
|
|
/* Use GTT for all persistent mappings with older
|
|
|
|
|
* kernels, because they didn't always flush the HDP
|
|
|
|
|
* cache before CS execution.
|
2014-08-26 18:06:49 +09:00
|
|
|
*
|
2016-08-18 16:30:00 +02:00
|
|
|
* Write-combined CPU mappings are fine, the kernel
|
|
|
|
|
* ensures all CPU writes finish before the GPU
|
|
|
|
|
* executes a command stream.
|
2014-08-26 18:06:49 +09:00
|
|
|
*/
|
2017-11-26 03:38:44 +01:00
|
|
|
if (sscreen->info.drm_major == 2 &&
|
|
|
|
|
sscreen->info.drm_minor < 40)
|
2014-08-26 18:06:49 +09:00
|
|
|
res->domains = RADEON_DOMAIN_GTT;
|
2014-01-27 21:46:21 +01:00
|
|
|
}
|
|
|
|
|
|
2014-02-04 18:35:40 +01:00
|
|
|
/* Tiled textures are unmappable. Always put them in VRAM. */
|
2017-02-15 20:41:01 +01:00
|
|
|
if ((res->b.b.target != PIPE_BUFFER && !rtex->surface.is_linear) ||
|
2018-04-01 18:24:21 -04:00
|
|
|
res->b.b.flags & SI_RESOURCE_FLAG_UNMAPPABLE) {
|
2014-02-04 18:35:40 +01:00
|
|
|
res->domains = RADEON_DOMAIN_VRAM;
|
2016-08-18 16:30:00 +02:00
|
|
|
res->flags |= RADEON_FLAG_NO_CPU_ACCESS |
|
2016-04-11 20:24:34 +02:00
|
|
|
RADEON_FLAG_GTT_WC;
|
2014-02-04 18:35:40 +01:00
|
|
|
}
|
|
|
|
|
|
2017-09-18 18:04:25 +02:00
|
|
|
/* Displayable and shareable surfaces are not suballocated. */
|
|
|
|
|
if (res->b.b.bind & (PIPE_BIND_SHARED | PIPE_BIND_SCANOUT))
|
|
|
|
|
res->flags |= RADEON_FLAG_NO_SUBALLOC; /* shareable */
|
|
|
|
|
else
|
2017-07-18 16:08:44 -04:00
|
|
|
res->flags |= RADEON_FLAG_NO_INTERPROCESS_SHARING;
|
|
|
|
|
|
2017-11-26 03:38:44 +01:00
|
|
|
if (sscreen->debug_flags & DBG(NO_WC))
|
2016-08-18 16:30:00 +02:00
|
|
|
res->flags &= ~RADEON_FLAG_GTT_WC;
|
|
|
|
|
|
2018-04-01 18:24:21 -04:00
|
|
|
if (res->b.b.flags & SI_RESOURCE_FLAG_READ_ONLY)
|
2017-12-05 13:32:47 +01:00
|
|
|
res->flags |= RADEON_FLAG_READ_ONLY;
|
|
|
|
|
|
2018-04-01 18:24:21 -04:00
|
|
|
if (res->b.b.flags & SI_RESOURCE_FLAG_32BIT)
|
2017-12-31 22:51:14 +01:00
|
|
|
res->flags |= RADEON_FLAG_32BIT;
|
|
|
|
|
|
2016-08-18 16:30:00 +02:00
|
|
|
/* Set expected VRAM and GART usage for the buffer. */
|
|
|
|
|
res->vram_usage = 0;
|
|
|
|
|
res->gart_usage = 0;
|
2017-11-24 22:08:03 +01:00
|
|
|
res->max_forced_staging_uploads = 0;
|
|
|
|
|
res->b.max_forced_staging_uploads = 0;
|
2016-08-18 16:30:00 +02:00
|
|
|
|
2017-11-02 00:00:53 +01:00
|
|
|
if (res->domains & RADEON_DOMAIN_VRAM) {
|
2016-08-18 16:30:00 +02:00
|
|
|
res->vram_usage = size;
|
2017-11-02 00:00:53 +01:00
|
|
|
|
2017-11-02 00:05:15 +01:00
|
|
|
res->max_forced_staging_uploads =
|
2017-11-02 00:00:53 +01:00
|
|
|
res->b.max_forced_staging_uploads =
|
2017-11-26 03:38:44 +01:00
|
|
|
sscreen->info.has_dedicated_vram &&
|
|
|
|
|
size >= sscreen->info.vram_vis_size / 4 ? 1 : 0;
|
2017-11-02 00:00:53 +01:00
|
|
|
} else if (res->domains & RADEON_DOMAIN_GTT) {
|
2016-08-18 16:30:00 +02:00
|
|
|
res->gart_usage = size;
|
2017-11-02 00:00:53 +01:00
|
|
|
}
|
2016-08-18 16:30:00 +02:00
|
|
|
}
|
|
|
|
|
|
2017-11-26 03:38:44 +01:00
|
|
|
bool si_alloc_resource(struct si_screen *sscreen,
|
2017-09-13 02:26:26 +02:00
|
|
|
struct r600_resource *res)
|
2016-08-18 16:30:00 +02:00
|
|
|
{
|
|
|
|
|
struct pb_buffer *old_buf, *new_buf;
|
2015-08-02 16:22:43 +02:00
|
|
|
|
2014-03-08 23:34:36 +01:00
|
|
|
/* Allocate a new resource. */
|
2017-11-26 03:38:44 +01:00
|
|
|
new_buf = sscreen->ws->buffer_create(sscreen->ws, res->bo_size,
|
2016-08-18 16:30:00 +02:00
|
|
|
res->bo_alignment,
|
|
|
|
|
res->domains, res->flags);
|
2014-03-08 23:34:36 +01:00
|
|
|
if (!new_buf) {
|
2013-11-26 23:33:20 +01:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-08 23:34:36 +01:00
|
|
|
/* Replace the pointer such that if res->buf wasn't NULL, it won't be
|
|
|
|
|
* NULL. This should prevent crashes with multiple contexts using
|
|
|
|
|
* the same buffer where one of the contexts invalidates it while
|
|
|
|
|
* the others are using it. */
|
|
|
|
|
old_buf = res->buf;
|
|
|
|
|
res->buf = new_buf; /* should be atomic */
|
2018-02-21 23:07:05 +01:00
|
|
|
res->gpu_address = sscreen->ws->buffer_get_virtual_address(res->buf);
|
2014-08-06 22:27:43 +02:00
|
|
|
|
2018-02-21 23:07:05 +01:00
|
|
|
if (res->flags & RADEON_FLAG_32BIT) {
|
|
|
|
|
uint64_t start = res->gpu_address;
|
|
|
|
|
uint64_t last = start + res->bo_size - 1;
|
|
|
|
|
(void)start;
|
|
|
|
|
(void)last;
|
2018-02-22 17:13:51 +01:00
|
|
|
|
2018-02-21 23:07:05 +01:00
|
|
|
assert((start >> 32) == sscreen->info.address32_hi);
|
|
|
|
|
assert((last >> 32) == sscreen->info.address32_hi);
|
2018-02-22 17:13:51 +01:00
|
|
|
}
|
2014-08-06 22:27:43 +02:00
|
|
|
|
2014-03-08 23:34:36 +01:00
|
|
|
pb_reference(&old_buf, NULL);
|
|
|
|
|
|
2013-11-26 23:33:20 +01:00
|
|
|
util_range_set_empty(&res->valid_buffer_range);
|
2015-02-10 14:16:56 +01:00
|
|
|
res->TC_L2_dirty = false;
|
2013-11-26 23:33:20 +01:00
|
|
|
|
2016-07-29 15:48:18 +02:00
|
|
|
/* Print debug information. */
|
2017-11-26 03:38:44 +01:00
|
|
|
if (sscreen->debug_flags & DBG(VM) && res->b.b.target == PIPE_BUFFER) {
|
2016-04-10 16:37:33 +02:00
|
|
|
fprintf(stderr, "VM start=0x%"PRIX64" end=0x%"PRIX64" | Buffer %"PRIu64" bytes\n",
|
2014-08-06 22:27:43 +02:00
|
|
|
res->gpu_address, res->gpu_address + res->buf->size,
|
2013-11-26 23:33:20 +01:00
|
|
|
res->buf->size);
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2013-11-29 17:28:23 +01:00
|
|
|
|
2018-04-01 17:52:55 -04:00
|
|
|
static void si_buffer_destroy(struct pipe_screen *screen,
|
|
|
|
|
struct pipe_resource *buf)
|
2013-11-29 17:28:23 +01:00
|
|
|
{
|
|
|
|
|
struct r600_resource *rbuffer = r600_resource(buf);
|
|
|
|
|
|
2017-03-10 15:48:24 +01:00
|
|
|
threaded_resource_deinit(buf);
|
2013-11-29 17:28:23 +01:00
|
|
|
util_range_destroy(&rbuffer->valid_buffer_range);
|
|
|
|
|
pb_reference(&rbuffer->buf, NULL);
|
|
|
|
|
FREE(rbuffer);
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-01 14:06:06 -04:00
|
|
|
/* Reallocate the buffer a update all resource bindings where the buffer is
|
|
|
|
|
* bound.
|
|
|
|
|
*
|
|
|
|
|
* This is used to avoid CPU-GPU synchronizations, because it makes the buffer
|
|
|
|
|
* idle by discarding its contents.
|
|
|
|
|
*/
|
2016-01-12 09:29:18 -05:00
|
|
|
static bool
|
2018-04-01 15:37:11 -04:00
|
|
|
si_invalidate_buffer(struct si_context *sctx,
|
|
|
|
|
struct r600_resource *rbuffer)
|
2016-01-14 09:41:04 -05:00
|
|
|
{
|
2016-02-24 23:45:33 +01:00
|
|
|
/* Shared buffers can't be reallocated. */
|
2017-03-10 15:48:24 +01:00
|
|
|
if (rbuffer->b.is_shared)
|
2016-02-24 23:45:33 +01:00
|
|
|
return false;
|
|
|
|
|
|
2017-02-07 18:24:59 +01:00
|
|
|
/* Sparse buffers can't be reallocated. */
|
|
|
|
|
if (rbuffer->flags & RADEON_FLAG_SPARSE)
|
|
|
|
|
return false;
|
|
|
|
|
|
2016-01-12 09:29:18 -05:00
|
|
|
/* In AMD_pinned_memory, the user pointer association only gets
|
|
|
|
|
* broken when the buffer is explicitly re-allocated.
|
|
|
|
|
*/
|
2017-03-10 15:48:24 +01:00
|
|
|
if (rbuffer->b.is_user_ptr)
|
2016-01-12 09:29:18 -05:00
|
|
|
return false;
|
2016-01-14 09:41:04 -05:00
|
|
|
|
|
|
|
|
/* Check if mapping this buffer would cause waiting for the GPU. */
|
2018-04-01 15:37:11 -04:00
|
|
|
if (si_rings_is_buffer_referenced(sctx, rbuffer->buf, RADEON_USAGE_READWRITE) ||
|
2018-04-01 19:44:25 -04:00
|
|
|
!sctx->ws->buffer_wait(rbuffer->buf, 0, RADEON_USAGE_READWRITE)) {
|
2018-04-01 14:06:06 -04:00
|
|
|
uint64_t old_va = rbuffer->gpu_address;
|
|
|
|
|
|
|
|
|
|
/* Reallocate the buffer in the same pipe_resource. */
|
2018-04-01 15:37:11 -04:00
|
|
|
si_alloc_resource(sctx->screen, rbuffer);
|
2018-04-01 17:02:01 -04:00
|
|
|
si_rebind_buffer(sctx, &rbuffer->b.b, old_va);
|
2016-01-14 09:41:04 -05:00
|
|
|
} else {
|
|
|
|
|
util_range_set_empty(&rbuffer->valid_buffer_range);
|
|
|
|
|
}
|
2016-01-12 09:29:18 -05:00
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-12 14:19:31 +01:00
|
|
|
/* Replace the storage of dst with src. */
|
2017-09-13 02:26:26 +02:00
|
|
|
void si_replace_buffer_storage(struct pipe_context *ctx,
|
2017-03-12 14:19:31 +01:00
|
|
|
struct pipe_resource *dst,
|
|
|
|
|
struct pipe_resource *src)
|
|
|
|
|
{
|
2018-04-01 17:02:01 -04:00
|
|
|
struct si_context *sctx = (struct si_context*)ctx;
|
2017-03-12 14:19:31 +01:00
|
|
|
struct r600_resource *rdst = r600_resource(dst);
|
|
|
|
|
struct r600_resource *rsrc = r600_resource(src);
|
|
|
|
|
uint64_t old_gpu_address = rdst->gpu_address;
|
|
|
|
|
|
|
|
|
|
pb_reference(&rdst->buf, rsrc->buf);
|
|
|
|
|
rdst->gpu_address = rsrc->gpu_address;
|
2017-07-04 17:29:46 +02:00
|
|
|
rdst->b.b.bind = rsrc->b.b.bind;
|
2017-11-02 00:00:53 +01:00
|
|
|
rdst->b.max_forced_staging_uploads = rsrc->b.max_forced_staging_uploads;
|
2017-11-02 00:05:15 +01:00
|
|
|
rdst->max_forced_staging_uploads = rsrc->max_forced_staging_uploads;
|
2017-07-04 17:29:46 +02:00
|
|
|
rdst->flags = rsrc->flags;
|
2017-03-12 14:19:31 +01:00
|
|
|
|
|
|
|
|
assert(rdst->vram_usage == rsrc->vram_usage);
|
|
|
|
|
assert(rdst->gart_usage == rsrc->gart_usage);
|
|
|
|
|
assert(rdst->bo_size == rsrc->bo_size);
|
|
|
|
|
assert(rdst->bo_alignment == rsrc->bo_alignment);
|
|
|
|
|
assert(rdst->domains == rsrc->domains);
|
|
|
|
|
|
2018-04-01 17:02:01 -04:00
|
|
|
si_rebind_buffer(sctx, dst, old_gpu_address);
|
2017-03-12 14:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
2017-11-25 23:02:00 +01:00
|
|
|
static void si_invalidate_resource(struct pipe_context *ctx,
|
|
|
|
|
struct pipe_resource *resource)
|
2016-01-12 09:29:18 -05:00
|
|
|
{
|
2018-04-01 15:37:11 -04:00
|
|
|
struct si_context *sctx = (struct si_context*)ctx;
|
2016-01-12 09:29:18 -05:00
|
|
|
struct r600_resource *rbuffer = r600_resource(resource);
|
|
|
|
|
|
2016-01-15 16:02:22 +09:00
|
|
|
/* We currently only do anyting here for buffers */
|
|
|
|
|
if (resource->target == PIPE_BUFFER)
|
2018-04-01 15:37:11 -04:00
|
|
|
(void)si_invalidate_buffer(sctx, rbuffer);
|
2016-01-14 09:41:04 -05:00
|
|
|
}
|
|
|
|
|
|
2018-04-01 17:52:55 -04:00
|
|
|
static void *si_buffer_get_transfer(struct pipe_context *ctx,
|
|
|
|
|
struct pipe_resource *resource,
|
|
|
|
|
unsigned usage,
|
|
|
|
|
const struct pipe_box *box,
|
|
|
|
|
struct pipe_transfer **ptransfer,
|
|
|
|
|
void *data, struct r600_resource *staging,
|
|
|
|
|
unsigned offset)
|
2013-11-29 17:28:23 +01:00
|
|
|
{
|
2018-04-01 15:37:11 -04:00
|
|
|
struct si_context *sctx = (struct si_context*)ctx;
|
2017-03-02 01:27:53 +01:00
|
|
|
struct r600_transfer *transfer;
|
|
|
|
|
|
|
|
|
|
if (usage & TC_TRANSFER_MAP_THREADED_UNSYNC)
|
2018-04-01 19:44:25 -04:00
|
|
|
transfer = slab_alloc(&sctx->pool_transfers_unsync);
|
2017-03-02 01:27:53 +01:00
|
|
|
else
|
2018-04-01 19:44:25 -04:00
|
|
|
transfer = slab_alloc(&sctx->pool_transfers);
|
2013-11-29 17:28:23 +01:00
|
|
|
|
2017-05-03 01:51:42 +02:00
|
|
|
transfer->b.b.resource = NULL;
|
|
|
|
|
pipe_resource_reference(&transfer->b.b.resource, resource);
|
|
|
|
|
transfer->b.b.level = 0;
|
|
|
|
|
transfer->b.b.usage = usage;
|
|
|
|
|
transfer->b.b.box = *box;
|
|
|
|
|
transfer->b.b.stride = 0;
|
|
|
|
|
transfer->b.b.layer_stride = 0;
|
|
|
|
|
transfer->b.staging = NULL;
|
2013-11-29 17:28:23 +01:00
|
|
|
transfer->offset = offset;
|
|
|
|
|
transfer->staging = staging;
|
2017-05-03 01:51:42 +02:00
|
|
|
*ptransfer = &transfer->b.b;
|
2013-11-29 17:28:23 +01:00
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-01 17:52:55 -04:00
|
|
|
static void *si_buffer_transfer_map(struct pipe_context *ctx,
|
|
|
|
|
struct pipe_resource *resource,
|
|
|
|
|
unsigned level,
|
|
|
|
|
unsigned usage,
|
|
|
|
|
const struct pipe_box *box,
|
|
|
|
|
struct pipe_transfer **ptransfer)
|
2013-11-29 17:28:23 +01:00
|
|
|
{
|
2018-04-01 15:37:11 -04:00
|
|
|
struct si_context *sctx = (struct si_context*)ctx;
|
2017-04-12 12:41:05 +02:00
|
|
|
struct r600_resource *rbuffer = r600_resource(resource);
|
|
|
|
|
uint8_t *data;
|
2013-11-29 17:28:23 +01:00
|
|
|
|
|
|
|
|
assert(box->x + box->width <= resource->width0);
|
|
|
|
|
|
2017-04-12 12:41:05 +02:00
|
|
|
/* From GL_AMD_pinned_memory issues:
|
|
|
|
|
*
|
|
|
|
|
* 4) Is glMapBuffer on a shared buffer guaranteed to return the
|
|
|
|
|
* same system address which was specified at creation time?
|
|
|
|
|
*
|
|
|
|
|
* RESOLVED: NO. The GL implementation might return a different
|
|
|
|
|
* virtual mapping of that memory, although the same physical
|
|
|
|
|
* page will be used.
|
|
|
|
|
*
|
|
|
|
|
* So don't ever use staging buffers.
|
|
|
|
|
*/
|
2017-03-10 15:48:24 +01:00
|
|
|
if (rbuffer->b.is_user_ptr)
|
2017-04-12 12:41:05 +02:00
|
|
|
usage |= PIPE_TRANSFER_PERSISTENT;
|
|
|
|
|
|
2013-11-29 17:28:23 +01:00
|
|
|
/* See if the buffer range being mapped has never been initialized,
|
|
|
|
|
* in which case it can be mapped unsynchronized. */
|
2017-03-12 14:17:25 +01:00
|
|
|
if (!(usage & (PIPE_TRANSFER_UNSYNCHRONIZED |
|
2017-08-25 15:39:52 +02:00
|
|
|
TC_TRANSFER_MAP_NO_INFER_UNSYNCHRONIZED)) &&
|
2013-11-29 17:28:23 +01:00
|
|
|
usage & PIPE_TRANSFER_WRITE &&
|
2017-03-10 15:48:24 +01:00
|
|
|
!rbuffer->b.is_shared &&
|
2013-11-29 17:28:23 +01:00
|
|
|
!util_ranges_intersect(&rbuffer->valid_buffer_range, box->x, box->x + box->width)) {
|
|
|
|
|
usage |= PIPE_TRANSFER_UNSYNCHRONIZED;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-13 13:10:06 +01:00
|
|
|
/* If discarding the entire range, discard the whole resource instead. */
|
|
|
|
|
if (usage & PIPE_TRANSFER_DISCARD_RANGE &&
|
|
|
|
|
box->x == 0 && box->width == resource->width0) {
|
|
|
|
|
usage |= PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE;
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-02 00:05:15 +01:00
|
|
|
/* If a buffer in VRAM is too large and the range is discarded, don't
|
|
|
|
|
* map it directly. This makes sure that the buffer stays in VRAM.
|
|
|
|
|
*/
|
|
|
|
|
bool force_discard_range = false;
|
|
|
|
|
if (usage & (PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE |
|
|
|
|
|
PIPE_TRANSFER_DISCARD_RANGE) &&
|
|
|
|
|
!(usage & PIPE_TRANSFER_PERSISTENT) &&
|
|
|
|
|
/* Try not to decrement the counter if it's not positive. Still racy,
|
|
|
|
|
* but it makes it harder to wrap the counter from INT_MIN to INT_MAX. */
|
|
|
|
|
rbuffer->max_forced_staging_uploads > 0 &&
|
|
|
|
|
p_atomic_dec_return(&rbuffer->max_forced_staging_uploads) >= 0) {
|
|
|
|
|
usage &= ~(PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE |
|
|
|
|
|
PIPE_TRANSFER_UNSYNCHRONIZED);
|
|
|
|
|
usage |= PIPE_TRANSFER_DISCARD_RANGE;
|
|
|
|
|
force_discard_range = true;
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-29 17:28:23 +01:00
|
|
|
if (usage & PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE &&
|
2017-03-12 14:17:25 +01:00
|
|
|
!(usage & (PIPE_TRANSFER_UNSYNCHRONIZED |
|
|
|
|
|
TC_TRANSFER_MAP_NO_INVALIDATE))) {
|
2013-11-29 17:28:23 +01:00
|
|
|
assert(usage & PIPE_TRANSFER_WRITE);
|
|
|
|
|
|
2018-04-01 15:37:11 -04:00
|
|
|
if (si_invalidate_buffer(sctx, rbuffer)) {
|
2016-01-12 09:29:18 -05:00
|
|
|
/* At this point, the buffer is always idle. */
|
|
|
|
|
usage |= PIPE_TRANSFER_UNSYNCHRONIZED;
|
2016-02-25 23:42:59 +01:00
|
|
|
} else {
|
|
|
|
|
/* Fall back to a temporary buffer. */
|
|
|
|
|
usage |= PIPE_TRANSFER_DISCARD_RANGE;
|
2016-01-12 09:29:18 -05:00
|
|
|
}
|
2013-11-29 17:28:23 +01:00
|
|
|
}
|
2016-02-25 23:42:59 +01:00
|
|
|
|
|
|
|
|
if ((usage & PIPE_TRANSFER_DISCARD_RANGE) &&
|
2017-02-07 18:24:59 +01:00
|
|
|
((!(usage & (PIPE_TRANSFER_UNSYNCHRONIZED |
|
2017-11-07 19:19:07 +01:00
|
|
|
PIPE_TRANSFER_PERSISTENT))) ||
|
2017-02-07 18:24:59 +01:00
|
|
|
(rbuffer->flags & RADEON_FLAG_SPARSE))) {
|
2013-11-29 17:28:23 +01:00
|
|
|
assert(usage & PIPE_TRANSFER_WRITE);
|
|
|
|
|
|
2017-02-07 18:24:59 +01:00
|
|
|
/* Check if mapping this buffer would cause waiting for the GPU.
|
|
|
|
|
*/
|
|
|
|
|
if (rbuffer->flags & RADEON_FLAG_SPARSE ||
|
2017-11-02 00:05:15 +01:00
|
|
|
force_discard_range ||
|
2018-04-01 15:37:11 -04:00
|
|
|
si_rings_is_buffer_referenced(sctx, rbuffer->buf, RADEON_USAGE_READWRITE) ||
|
2018-04-01 19:44:25 -04:00
|
|
|
!sctx->ws->buffer_wait(rbuffer->buf, 0, RADEON_USAGE_READWRITE)) {
|
2013-11-29 17:28:23 +01:00
|
|
|
/* Do a wait-free write-only transfer using a temporary buffer. */
|
|
|
|
|
unsigned offset;
|
|
|
|
|
struct r600_resource *staging = NULL;
|
|
|
|
|
|
2017-01-27 01:42:41 +01:00
|
|
|
u_upload_alloc(ctx->stream_uploader, 0,
|
2018-04-01 18:24:21 -04:00
|
|
|
box->width + (box->x % SI_MAP_BUFFER_ALIGNMENT),
|
2018-04-01 15:37:11 -04:00
|
|
|
sctx->screen->info.tcc_cache_line_size,
|
2017-02-15 18:49:11 +01:00
|
|
|
&offset, (struct pipe_resource**)&staging,
|
2017-01-27 01:42:41 +01:00
|
|
|
(void**)&data);
|
2013-11-29 17:28:23 +01:00
|
|
|
|
|
|
|
|
if (staging) {
|
2018-04-01 18:24:21 -04:00
|
|
|
data += box->x % SI_MAP_BUFFER_ALIGNMENT;
|
2018-04-01 17:52:55 -04:00
|
|
|
return si_buffer_get_transfer(ctx, resource, usage, box,
|
2013-11-29 17:28:23 +01:00
|
|
|
ptransfer, data, staging, offset);
|
2017-02-07 18:24:59 +01:00
|
|
|
} else if (rbuffer->flags & RADEON_FLAG_SPARSE) {
|
|
|
|
|
return NULL;
|
2013-11-29 17:28:23 +01:00
|
|
|
}
|
2015-09-10 17:53:28 +02:00
|
|
|
} else {
|
|
|
|
|
/* At this point, the buffer is always idle (we checked it above). */
|
|
|
|
|
usage |= PIPE_TRANSFER_UNSYNCHRONIZED;
|
2013-11-29 17:28:23 +01:00
|
|
|
}
|
|
|
|
|
}
|
2017-02-09 03:14:22 +01:00
|
|
|
/* Use a staging buffer in cached GTT for reads. */
|
2017-02-07 18:24:59 +01:00
|
|
|
else if (((usage & PIPE_TRANSFER_READ) &&
|
|
|
|
|
!(usage & PIPE_TRANSFER_PERSISTENT) &&
|
|
|
|
|
(rbuffer->domains & RADEON_DOMAIN_VRAM ||
|
2017-11-07 19:19:07 +01:00
|
|
|
rbuffer->flags & RADEON_FLAG_GTT_WC)) ||
|
2017-02-07 18:24:59 +01:00
|
|
|
(rbuffer->flags & RADEON_FLAG_SPARSE)) {
|
2014-08-14 20:22:26 +02:00
|
|
|
struct r600_resource *staging;
|
2014-03-05 09:05:36 +01:00
|
|
|
|
2017-03-02 01:27:53 +01:00
|
|
|
assert(!(usage & TC_TRANSFER_MAP_THREADED_UNSYNC));
|
2014-08-14 20:22:26 +02:00
|
|
|
staging = (struct r600_resource*) pipe_buffer_create(
|
2016-09-07 21:24:08 +02:00
|
|
|
ctx->screen, 0, PIPE_USAGE_STAGING,
|
2018-04-01 18:24:21 -04:00
|
|
|
box->width + (box->x % SI_MAP_BUFFER_ALIGNMENT));
|
2014-03-05 09:05:36 +01:00
|
|
|
if (staging) {
|
2014-03-08 15:15:41 +01:00
|
|
|
/* Copy the VRAM buffer to the staging buffer. */
|
2018-04-01 19:44:25 -04:00
|
|
|
sctx->dma_copy(ctx, &staging->b.b, 0,
|
2018-04-01 18:24:21 -04:00
|
|
|
box->x % SI_MAP_BUFFER_ALIGNMENT,
|
2017-02-09 03:14:22 +01:00
|
|
|
0, 0, resource, 0, box);
|
2014-03-08 15:15:41 +01:00
|
|
|
|
2018-04-01 15:37:11 -04:00
|
|
|
data = si_buffer_map_sync_with_rings(sctx, staging,
|
|
|
|
|
usage & ~PIPE_TRANSFER_UNSYNCHRONIZED);
|
2016-04-13 10:55:29 -05:00
|
|
|
if (!data) {
|
2016-06-21 21:13:00 +02:00
|
|
|
r600_resource_reference(&staging, NULL);
|
2016-04-13 10:55:29 -05:00
|
|
|
return NULL;
|
|
|
|
|
}
|
2018-04-01 18:24:21 -04:00
|
|
|
data += box->x % SI_MAP_BUFFER_ALIGNMENT;
|
2014-03-08 15:15:41 +01:00
|
|
|
|
2018-04-01 17:52:55 -04:00
|
|
|
return si_buffer_get_transfer(ctx, resource, usage, box,
|
2014-08-14 20:22:26 +02:00
|
|
|
ptransfer, data, staging, 0);
|
2017-02-07 18:24:59 +01:00
|
|
|
} else if (rbuffer->flags & RADEON_FLAG_SPARSE) {
|
|
|
|
|
return NULL;
|
2014-03-05 09:05:36 +01:00
|
|
|
}
|
|
|
|
|
}
|
2013-11-29 17:28:23 +01:00
|
|
|
|
2018-04-01 15:37:11 -04:00
|
|
|
data = si_buffer_map_sync_with_rings(sctx, rbuffer, usage);
|
2013-11-29 17:28:23 +01:00
|
|
|
if (!data) {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
data += box->x;
|
|
|
|
|
|
2018-04-01 17:52:55 -04:00
|
|
|
return si_buffer_get_transfer(ctx, resource, usage, box,
|
2013-11-29 17:28:23 +01:00
|
|
|
ptransfer, data, NULL, 0);
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-01 17:52:55 -04:00
|
|
|
static void si_buffer_do_flush_region(struct pipe_context *ctx,
|
|
|
|
|
struct pipe_transfer *transfer,
|
|
|
|
|
const struct pipe_box *box)
|
2013-11-29 17:28:23 +01:00
|
|
|
{
|
|
|
|
|
struct r600_transfer *rtransfer = (struct r600_transfer*)transfer;
|
|
|
|
|
struct r600_resource *rbuffer = r600_resource(transfer->resource);
|
|
|
|
|
|
|
|
|
|
if (rtransfer->staging) {
|
2015-09-06 15:41:35 +02:00
|
|
|
struct pipe_resource *dst, *src;
|
|
|
|
|
unsigned soffset;
|
|
|
|
|
struct pipe_box dma_box;
|
2014-03-05 09:05:36 +01:00
|
|
|
|
2015-09-06 15:41:35 +02:00
|
|
|
dst = transfer->resource;
|
|
|
|
|
src = &rtransfer->staging->b.b;
|
2018-04-01 18:24:21 -04:00
|
|
|
soffset = rtransfer->offset + box->x % SI_MAP_BUFFER_ALIGNMENT;
|
2014-03-05 09:05:36 +01:00
|
|
|
|
2015-09-06 15:41:35 +02:00
|
|
|
u_box_1d(soffset, box->width, &dma_box);
|
2014-03-05 09:05:36 +01:00
|
|
|
|
2015-09-06 15:41:35 +02:00
|
|
|
/* Copy the staging buffer into the original one. */
|
2016-05-26 18:20:42 +02:00
|
|
|
ctx->resource_copy_region(ctx, dst, 0, box->x, 0, 0, src, 0, &dma_box);
|
2013-11-29 17:28:23 +01:00
|
|
|
}
|
|
|
|
|
|
2015-09-06 15:41:35 +02:00
|
|
|
util_range_add(&rbuffer->valid_buffer_range, box->x,
|
|
|
|
|
box->x + box->width);
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-01 17:52:55 -04:00
|
|
|
static void si_buffer_flush_region(struct pipe_context *ctx,
|
|
|
|
|
struct pipe_transfer *transfer,
|
|
|
|
|
const struct pipe_box *rel_box)
|
2015-09-06 15:41:35 +02:00
|
|
|
{
|
2017-05-03 01:23:54 +02:00
|
|
|
unsigned required_usage = PIPE_TRANSFER_WRITE |
|
|
|
|
|
PIPE_TRANSFER_FLUSH_EXPLICIT;
|
|
|
|
|
|
|
|
|
|
if ((transfer->usage & required_usage) == required_usage) {
|
2015-09-06 15:41:35 +02:00
|
|
|
struct pipe_box box;
|
|
|
|
|
|
|
|
|
|
u_box_1d(transfer->box.x + rel_box->x, rel_box->width, &box);
|
2018-04-01 17:52:55 -04:00
|
|
|
si_buffer_do_flush_region(ctx, transfer, &box);
|
2013-11-29 17:28:23 +01:00
|
|
|
}
|
2015-09-06 15:41:35 +02:00
|
|
|
}
|
|
|
|
|
|
2018-04-01 17:52:55 -04:00
|
|
|
static void si_buffer_transfer_unmap(struct pipe_context *ctx,
|
|
|
|
|
struct pipe_transfer *transfer)
|
2015-09-06 15:41:35 +02:00
|
|
|
{
|
2018-04-01 15:37:11 -04:00
|
|
|
struct si_context *sctx = (struct si_context*)ctx;
|
2015-09-06 15:41:35 +02:00
|
|
|
struct r600_transfer *rtransfer = (struct r600_transfer*)transfer;
|
|
|
|
|
|
|
|
|
|
if (transfer->usage & PIPE_TRANSFER_WRITE &&
|
|
|
|
|
!(transfer->usage & PIPE_TRANSFER_FLUSH_EXPLICIT))
|
2018-04-01 17:52:55 -04:00
|
|
|
si_buffer_do_flush_region(ctx, transfer, &transfer->box);
|
2015-09-06 15:41:35 +02:00
|
|
|
|
2017-05-03 01:51:42 +02:00
|
|
|
r600_resource_reference(&rtransfer->staging, NULL);
|
|
|
|
|
assert(rtransfer->b.staging == NULL); /* for threaded context only */
|
2017-03-02 01:06:19 +01:00
|
|
|
pipe_resource_reference(&transfer->resource, NULL);
|
2017-03-02 01:27:53 +01:00
|
|
|
|
|
|
|
|
/* Don't use pool_transfers_unsync. We are always in the driver
|
|
|
|
|
* thread. */
|
2018-04-01 19:44:25 -04:00
|
|
|
slab_free(&sctx->pool_transfers, transfer);
|
2013-11-29 17:28:23 +01:00
|
|
|
}
|
|
|
|
|
|
2017-11-25 23:02:00 +01:00
|
|
|
static void si_buffer_subdata(struct pipe_context *ctx,
|
|
|
|
|
struct pipe_resource *buffer,
|
|
|
|
|
unsigned usage, unsigned offset,
|
|
|
|
|
unsigned size, const void *data)
|
2016-07-16 21:52:20 +02:00
|
|
|
{
|
|
|
|
|
struct pipe_transfer *transfer = NULL;
|
|
|
|
|
struct pipe_box box;
|
|
|
|
|
uint8_t *map = NULL;
|
|
|
|
|
|
|
|
|
|
u_box_1d(offset, size, &box);
|
2018-04-01 17:52:55 -04:00
|
|
|
map = si_buffer_transfer_map(ctx, buffer, 0,
|
2016-07-16 21:52:20 +02:00
|
|
|
PIPE_TRANSFER_WRITE |
|
|
|
|
|
PIPE_TRANSFER_DISCARD_RANGE |
|
|
|
|
|
usage,
|
|
|
|
|
&box, &transfer);
|
|
|
|
|
if (!map)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
memcpy(map, data, size);
|
2018-04-01 17:52:55 -04:00
|
|
|
si_buffer_transfer_unmap(ctx, transfer);
|
2016-07-16 21:52:20 +02:00
|
|
|
}
|
|
|
|
|
|
2018-04-01 17:52:55 -04:00
|
|
|
static const struct u_resource_vtbl si_buffer_vtbl =
|
2013-11-29 17:28:23 +01:00
|
|
|
{
|
|
|
|
|
NULL, /* get_handle */
|
2018-04-01 17:52:55 -04:00
|
|
|
si_buffer_destroy, /* resource_destroy */
|
|
|
|
|
si_buffer_transfer_map, /* transfer_map */
|
|
|
|
|
si_buffer_flush_region, /* transfer_flush_region */
|
|
|
|
|
si_buffer_transfer_unmap, /* transfer_unmap */
|
2013-11-29 17:28:23 +01:00
|
|
|
};
|
|
|
|
|
|
2015-02-10 16:02:54 +01:00
|
|
|
static struct r600_resource *
|
2018-04-01 17:52:55 -04:00
|
|
|
si_alloc_buffer_struct(struct pipe_screen *screen,
|
|
|
|
|
const struct pipe_resource *templ)
|
2013-11-29 17:28:23 +01:00
|
|
|
{
|
|
|
|
|
struct r600_resource *rbuffer;
|
|
|
|
|
|
|
|
|
|
rbuffer = MALLOC_STRUCT(r600_resource);
|
|
|
|
|
|
|
|
|
|
rbuffer->b.b = *templ;
|
2016-09-27 18:17:12 +09:00
|
|
|
rbuffer->b.b.next = NULL;
|
2013-11-29 17:28:23 +01:00
|
|
|
pipe_reference_init(&rbuffer->b.b.reference, 1);
|
|
|
|
|
rbuffer->b.b.screen = screen;
|
2017-03-10 15:48:24 +01:00
|
|
|
|
2018-04-01 17:52:55 -04:00
|
|
|
rbuffer->b.vtbl = &si_buffer_vtbl;
|
2017-03-10 15:48:24 +01:00
|
|
|
threaded_resource_init(&rbuffer->b.b);
|
|
|
|
|
|
2014-03-08 23:34:36 +01:00
|
|
|
rbuffer->buf = NULL;
|
2016-10-02 15:45:15 +02:00
|
|
|
rbuffer->bind_history = 0;
|
2015-02-10 16:02:54 +01:00
|
|
|
rbuffer->TC_L2_dirty = false;
|
2013-11-29 17:28:23 +01:00
|
|
|
util_range_init(&rbuffer->valid_buffer_range);
|
2015-02-10 16:02:54 +01:00
|
|
|
return rbuffer;
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-25 23:02:00 +01:00
|
|
|
static struct pipe_resource *si_buffer_create(struct pipe_screen *screen,
|
|
|
|
|
const struct pipe_resource *templ,
|
|
|
|
|
unsigned alignment)
|
2015-02-10 16:02:54 +01:00
|
|
|
{
|
2017-11-26 03:38:44 +01:00
|
|
|
struct si_screen *sscreen = (struct si_screen*)screen;
|
2018-04-01 17:52:55 -04:00
|
|
|
struct r600_resource *rbuffer = si_alloc_buffer_struct(screen, templ);
|
2013-11-29 17:28:23 +01:00
|
|
|
|
2017-11-23 10:29:49 +01:00
|
|
|
if (templ->flags & PIPE_RESOURCE_FLAG_SPARSE)
|
2018-04-01 18:24:21 -04:00
|
|
|
rbuffer->b.b.flags |= SI_RESOURCE_FLAG_UNMAPPABLE;
|
2017-11-23 10:29:49 +01:00
|
|
|
|
2017-11-26 03:38:44 +01:00
|
|
|
si_init_resource_fields(sscreen, rbuffer, templ->width0, alignment);
|
2016-08-18 16:30:00 +02:00
|
|
|
|
2017-02-07 18:03:55 +01:00
|
|
|
if (templ->flags & PIPE_RESOURCE_FLAG_SPARSE)
|
|
|
|
|
rbuffer->flags |= RADEON_FLAG_SPARSE;
|
2016-09-30 11:26:13 +02:00
|
|
|
|
2017-11-26 03:38:44 +01:00
|
|
|
if (!si_alloc_resource(sscreen, rbuffer)) {
|
2013-11-29 17:28:23 +01:00
|
|
|
FREE(rbuffer);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
return &rbuffer->b.b;
|
|
|
|
|
}
|
2015-02-10 16:02:54 +01:00
|
|
|
|
2017-09-13 02:26:26 +02:00
|
|
|
struct pipe_resource *si_aligned_buffer_create(struct pipe_screen *screen,
|
|
|
|
|
unsigned flags,
|
|
|
|
|
unsigned usage,
|
|
|
|
|
unsigned size,
|
|
|
|
|
unsigned alignment)
|
2015-10-21 00:10:36 +02:00
|
|
|
{
|
|
|
|
|
struct pipe_resource buffer;
|
|
|
|
|
|
|
|
|
|
memset(&buffer, 0, sizeof buffer);
|
|
|
|
|
buffer.target = PIPE_BUFFER;
|
|
|
|
|
buffer.format = PIPE_FORMAT_R8_UNORM;
|
2017-02-15 20:07:53 +01:00
|
|
|
buffer.bind = 0;
|
2015-10-21 00:10:36 +02:00
|
|
|
buffer.usage = usage;
|
2017-02-15 20:07:53 +01:00
|
|
|
buffer.flags = flags;
|
2015-10-21 00:10:36 +02:00
|
|
|
buffer.width0 = size;
|
|
|
|
|
buffer.height0 = 1;
|
|
|
|
|
buffer.depth0 = 1;
|
|
|
|
|
buffer.array_size = 1;
|
2017-09-13 02:26:26 +02:00
|
|
|
return si_buffer_create(screen, &buffer, alignment);
|
2015-10-21 00:10:36 +02:00
|
|
|
}
|
|
|
|
|
|
2017-11-25 23:02:00 +01:00
|
|
|
static struct pipe_resource *
|
2017-09-13 02:26:26 +02:00
|
|
|
si_buffer_from_user_memory(struct pipe_screen *screen,
|
|
|
|
|
const struct pipe_resource *templ,
|
|
|
|
|
void *user_memory)
|
2015-02-10 16:02:54 +01:00
|
|
|
{
|
2017-11-26 03:38:44 +01:00
|
|
|
struct si_screen *sscreen = (struct si_screen*)screen;
|
|
|
|
|
struct radeon_winsys *ws = sscreen->ws;
|
2018-04-01 17:52:55 -04:00
|
|
|
struct r600_resource *rbuffer = si_alloc_buffer_struct(screen, templ);
|
2015-02-10 16:02:54 +01:00
|
|
|
|
|
|
|
|
rbuffer->domains = RADEON_DOMAIN_GTT;
|
2017-04-12 17:05:56 +02:00
|
|
|
rbuffer->flags = 0;
|
2017-03-10 15:48:24 +01:00
|
|
|
rbuffer->b.is_user_ptr = true;
|
2015-02-10 16:02:54 +01:00
|
|
|
util_range_add(&rbuffer->valid_buffer_range, 0, templ->width0);
|
2017-03-10 15:48:24 +01:00
|
|
|
util_range_add(&rbuffer->b.valid_buffer_range, 0, templ->width0);
|
2015-02-10 16:02:54 +01:00
|
|
|
|
|
|
|
|
/* Convert a user pointer to a buffer. */
|
|
|
|
|
rbuffer->buf = ws->buffer_from_ptr(ws, user_memory, templ->width0);
|
|
|
|
|
if (!rbuffer->buf) {
|
|
|
|
|
FREE(rbuffer);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-21 23:07:05 +01:00
|
|
|
rbuffer->gpu_address = ws->buffer_get_virtual_address(rbuffer->buf);
|
2017-04-12 17:05:56 +02:00
|
|
|
rbuffer->vram_usage = 0;
|
|
|
|
|
rbuffer->gart_usage = templ->width0;
|
|
|
|
|
|
2015-02-10 16:02:54 +01:00
|
|
|
return &rbuffer->b.b;
|
|
|
|
|
}
|
2017-11-25 23:02:00 +01:00
|
|
|
|
|
|
|
|
static struct pipe_resource *si_resource_create(struct pipe_screen *screen,
|
|
|
|
|
const struct pipe_resource *templ)
|
|
|
|
|
{
|
|
|
|
|
if (templ->target == PIPE_BUFFER) {
|
|
|
|
|
return si_buffer_create(screen, templ, 256);
|
|
|
|
|
} else {
|
|
|
|
|
return si_texture_create(screen, templ);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-01 18:12:34 -04:00
|
|
|
static bool si_resource_commit(struct pipe_context *pctx,
|
|
|
|
|
struct pipe_resource *resource,
|
|
|
|
|
unsigned level, struct pipe_box *box,
|
|
|
|
|
bool commit)
|
|
|
|
|
{
|
|
|
|
|
struct si_context *ctx = (struct si_context *)pctx;
|
|
|
|
|
struct r600_resource *res = r600_resource(resource);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Since buffer commitment changes cannot be pipelined, we need to
|
|
|
|
|
* (a) flush any pending commands that refer to the buffer we're about
|
|
|
|
|
* to change, and
|
|
|
|
|
* (b) wait for threaded submit to finish, including those that were
|
|
|
|
|
* triggered by some other, earlier operation.
|
|
|
|
|
*/
|
2018-04-01 19:44:25 -04:00
|
|
|
if (radeon_emitted(ctx->gfx_cs, ctx->initial_gfx_cs_size) &&
|
|
|
|
|
ctx->ws->cs_is_buffer_referenced(ctx->gfx_cs,
|
2018-04-01 18:12:34 -04:00
|
|
|
res->buf, RADEON_USAGE_READWRITE)) {
|
2018-04-06 22:26:49 -04:00
|
|
|
si_flush_gfx_cs(ctx, RADEON_FLUSH_ASYNC_START_NEXT_GFX_IB_NOW, NULL);
|
2018-04-01 18:12:34 -04:00
|
|
|
}
|
2018-04-01 19:44:25 -04:00
|
|
|
if (radeon_emitted(ctx->dma_cs, 0) &&
|
|
|
|
|
ctx->ws->cs_is_buffer_referenced(ctx->dma_cs,
|
2018-04-01 18:12:34 -04:00
|
|
|
res->buf, RADEON_USAGE_READWRITE)) {
|
|
|
|
|
si_flush_dma_cs(ctx, PIPE_FLUSH_ASYNC, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-01 19:44:25 -04:00
|
|
|
ctx->ws->cs_sync_flush(ctx->dma_cs);
|
|
|
|
|
ctx->ws->cs_sync_flush(ctx->gfx_cs);
|
2018-04-01 18:12:34 -04:00
|
|
|
|
|
|
|
|
assert(resource->target == PIPE_BUFFER);
|
|
|
|
|
|
2018-04-01 19:44:25 -04:00
|
|
|
return ctx->ws->buffer_commit(res->buf, box->x, box->width, commit);
|
2018-04-01 18:12:34 -04:00
|
|
|
}
|
|
|
|
|
|
2017-11-25 23:02:00 +01:00
|
|
|
void si_init_screen_buffer_functions(struct si_screen *sscreen)
|
|
|
|
|
{
|
2017-11-26 03:38:44 +01:00
|
|
|
sscreen->b.resource_create = si_resource_create;
|
|
|
|
|
sscreen->b.resource_destroy = u_resource_destroy_vtbl;
|
|
|
|
|
sscreen->b.resource_from_user_memory = si_buffer_from_user_memory;
|
2017-11-25 23:02:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void si_init_buffer_functions(struct si_context *sctx)
|
|
|
|
|
{
|
2018-04-01 19:44:25 -04:00
|
|
|
sctx->b.invalidate_resource = si_invalidate_resource;
|
|
|
|
|
sctx->b.transfer_map = u_transfer_map_vtbl;
|
|
|
|
|
sctx->b.transfer_flush_region = u_transfer_flush_region_vtbl;
|
|
|
|
|
sctx->b.transfer_unmap = u_transfer_unmap_vtbl;
|
|
|
|
|
sctx->b.texture_subdata = u_default_texture_subdata;
|
|
|
|
|
sctx->b.buffer_subdata = si_buffer_subdata;
|
|
|
|
|
sctx->b.resource_commit = si_resource_commit;
|
2017-11-25 23:02:00 +01:00
|
|
|
}
|