2013-11-26 23:33:20 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright 2013 Advanced Micro Devices, Inc.
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
|
|
|
|
* Authors:
|
|
|
|
|
* Marek Olšák
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "r600_cs.h"
|
2013-11-29 17:28:23 +01:00
|
|
|
#include "util/u_memory.h"
|
|
|
|
|
#include "util/u_upload_mgr.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
|
|
|
|
2016-06-21 21:29:39 +02:00
|
|
|
bool r600_rings_is_buffer_referenced(struct r600_common_context *ctx,
|
|
|
|
|
struct pb_buffer *buf,
|
|
|
|
|
enum radeon_bo_usage usage)
|
2013-11-26 23:33:20 +01:00
|
|
|
{
|
2015-11-07 14:00:30 +01:00
|
|
|
if (ctx->ws->cs_is_buffer_referenced(ctx->gfx.cs, buf, usage)) {
|
2016-06-21 21:29:39 +02:00
|
|
|
return true;
|
2013-11-26 23:33:20 +01:00
|
|
|
}
|
2016-05-06 17:02:30 -05:00
|
|
|
if (radeon_emitted(ctx->dma.cs, 0) &&
|
2015-11-07 14:00:30 +01:00
|
|
|
ctx->ws->cs_is_buffer_referenced(ctx->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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void *r600_buffer_map_sync_with_rings(struct r600_common_context *ctx,
|
|
|
|
|
struct r600_resource *resource,
|
|
|
|
|
unsigned usage)
|
|
|
|
|
{
|
|
|
|
|
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
|
|
|
|
|
|
|
|
if (usage & PIPE_TRANSFER_UNSYNCHRONIZED) {
|
2015-12-07 00:00:59 +01:00
|
|
|
return ctx->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;
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-06 17:02:30 -05:00
|
|
|
if (radeon_emitted(ctx->gfx.cs, ctx->initial_gfx_cs_size) &&
|
2015-11-07 14:00:30 +01:00
|
|
|
ctx->ws->cs_is_buffer_referenced(ctx->gfx.cs,
|
2015-12-07 00:00:59 +01:00
|
|
|
resource->buf, rusage)) {
|
2013-11-26 23:33:20 +01:00
|
|
|
if (usage & PIPE_TRANSFER_DONTBLOCK) {
|
2015-11-07 14:00:30 +01:00
|
|
|
ctx->gfx.flush(ctx, RADEON_FLUSH_ASYNC, NULL);
|
2013-11-26 23:33:20 +01:00
|
|
|
return NULL;
|
|
|
|
|
} else {
|
2015-11-07 14:00:30 +01:00
|
|
|
ctx->gfx.flush(ctx, 0, NULL);
|
2014-02-01 15:06:39 +01:00
|
|
|
busy = true;
|
2013-11-26 23:33:20 +01:00
|
|
|
}
|
|
|
|
|
}
|
2016-05-06 17:02:30 -05:00
|
|
|
if (radeon_emitted(ctx->dma.cs, 0) &&
|
2015-11-07 14:00:30 +01:00
|
|
|
ctx->ws->cs_is_buffer_referenced(ctx->dma.cs,
|
2015-12-07 00:00:59 +01:00
|
|
|
resource->buf, rusage)) {
|
2013-11-26 23:33:20 +01:00
|
|
|
if (usage & PIPE_TRANSFER_DONTBLOCK) {
|
2015-11-07 14:00:30 +01:00
|
|
|
ctx->dma.flush(ctx, RADEON_FLUSH_ASYNC, NULL);
|
2013-11-26 23:33:20 +01:00
|
|
|
return NULL;
|
|
|
|
|
} else {
|
2015-11-07 14:00:30 +01:00
|
|
|
ctx->dma.flush(ctx, 0, NULL);
|
2014-02-01 15:06:39 +01:00
|
|
|
busy = true;
|
2013-11-26 23:33:20 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-06 23:41:38 +02:00
|
|
|
if (busy || !ctx->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. */
|
2015-11-07 14:00:30 +01:00
|
|
|
ctx->ws->cs_sync_flush(ctx->gfx.cs);
|
|
|
|
|
if (ctx->dma.cs)
|
|
|
|
|
ctx->ws->cs_sync_flush(ctx->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. */
|
2015-12-07 00:00:59 +01:00
|
|
|
return ctx->ws->buffer_map(resource->buf, NULL, usage);
|
2013-11-26 23:33:20 +01:00
|
|
|
}
|
|
|
|
|
|
2016-08-18 16:30:00 +02:00
|
|
|
void r600_init_resource_fields(struct r600_common_screen *rscreen,
|
|
|
|
|
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;
|
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
|
|
|
|
|
*/
|
2015-04-16 20:35:27 +02:00
|
|
|
if (rscreen->info.drm_major == 2 &&
|
|
|
|
|
rscreen->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;
|
|
|
|
|
}
|
2016-08-18 16:30:00 +02:00
|
|
|
res->flags |= RADEON_FLAG_CPU_ACCESS;
|
2014-06-25 18:36:43 +09:00
|
|
|
/* 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
|
|
|
*/
|
2015-04-16 20:35:27 +02:00
|
|
|
if (rscreen->info.drm_major == 2 &&
|
|
|
|
|
rscreen->info.drm_minor < 40)
|
2014-08-26 18:06:49 +09:00
|
|
|
res->domains = RADEON_DOMAIN_GTT;
|
|
|
|
|
else if (res->domains & RADEON_DOMAIN_VRAM)
|
2016-08-18 16:30:00 +02:00
|
|
|
res->flags |= RADEON_FLAG_CPU_ACCESS;
|
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. */
|
|
|
|
|
if (res->b.b.target != PIPE_BUFFER &&
|
2016-10-26 13:42:28 +02:00
|
|
|
!rtex->surface.is_linear) {
|
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_CPU_ACCESS;
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
2016-08-18 16:30:00 +02:00
|
|
|
/* If VRAM is just stolen system memory, allow both VRAM and
|
|
|
|
|
* GTT, whichever has free space. If a buffer is evicted from
|
|
|
|
|
* VRAM to GTT, it will stay there.
|
2016-04-11 19:56:07 +02:00
|
|
|
*/
|
|
|
|
|
if (!rscreen->info.has_dedicated_vram &&
|
|
|
|
|
res->domains == RADEON_DOMAIN_VRAM)
|
|
|
|
|
res->domains = RADEON_DOMAIN_VRAM_GTT;
|
|
|
|
|
|
2015-08-02 16:22:43 +02:00
|
|
|
if (rscreen->debug_flags & DBG_NO_WC)
|
2016-08-18 16:30:00 +02:00
|
|
|
res->flags &= ~RADEON_FLAG_GTT_WC;
|
|
|
|
|
|
|
|
|
|
/* Set expected VRAM and GART usage for the buffer. */
|
|
|
|
|
res->vram_usage = 0;
|
|
|
|
|
res->gart_usage = 0;
|
|
|
|
|
|
|
|
|
|
if (res->domains & RADEON_DOMAIN_VRAM)
|
|
|
|
|
res->vram_usage = size;
|
|
|
|
|
else if (res->domains & RADEON_DOMAIN_GTT)
|
|
|
|
|
res->gart_usage = size;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool r600_alloc_resource(struct r600_common_screen *rscreen,
|
|
|
|
|
struct r600_resource *res)
|
|
|
|
|
{
|
|
|
|
|
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. */
|
2016-08-18 16:30:00 +02:00
|
|
|
new_buf = rscreen->ws->buffer_create(rscreen->ws, res->bo_size,
|
|
|
|
|
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 */
|
2014-08-06 22:27:43 +02:00
|
|
|
|
2016-01-30 01:27:46 +01:00
|
|
|
if (rscreen->info.has_virtual_memory)
|
2015-12-07 00:00:59 +01:00
|
|
|
res->gpu_address = rscreen->ws->buffer_get_virtual_address(res->buf);
|
2014-08-10 12:52:12 +02:00
|
|
|
else
|
|
|
|
|
res->gpu_address = 0;
|
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. */
|
2013-11-26 23:33:20 +01:00
|
|
|
if (rscreen->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
|
|
|
|
|
|
|
|
static void r600_buffer_destroy(struct pipe_screen *screen,
|
|
|
|
|
struct pipe_resource *buf)
|
|
|
|
|
{
|
|
|
|
|
struct r600_resource *rbuffer = r600_resource(buf);
|
|
|
|
|
|
|
|
|
|
util_range_destroy(&rbuffer->valid_buffer_range);
|
|
|
|
|
pb_reference(&rbuffer->buf, NULL);
|
|
|
|
|
FREE(rbuffer);
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-12 09:29:18 -05:00
|
|
|
static bool
|
2016-01-15 16:02:22 +09:00
|
|
|
r600_invalidate_buffer(struct r600_common_context *rctx,
|
|
|
|
|
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. */
|
|
|
|
|
if (rbuffer->is_shared)
|
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
|
if (rctx->ws->buffer_is_user_ptr(rbuffer->buf))
|
|
|
|
|
return false;
|
2016-01-14 09:41:04 -05:00
|
|
|
|
|
|
|
|
/* Check if mapping this buffer would cause waiting for the GPU. */
|
|
|
|
|
if (r600_rings_is_buffer_referenced(rctx, rbuffer->buf, RADEON_USAGE_READWRITE) ||
|
|
|
|
|
!rctx->ws->buffer_wait(rbuffer->buf, 0, RADEON_USAGE_READWRITE)) {
|
|
|
|
|
rctx->invalidate_buffer(&rctx->b, &rbuffer->b.b);
|
|
|
|
|
} else {
|
|
|
|
|
util_range_set_empty(&rbuffer->valid_buffer_range);
|
|
|
|
|
}
|
2016-01-12 09:29:18 -05:00
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void r600_invalidate_resource(struct pipe_context *ctx,
|
|
|
|
|
struct pipe_resource *resource)
|
|
|
|
|
{
|
|
|
|
|
struct r600_common_context *rctx = (struct r600_common_context*)ctx;
|
|
|
|
|
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)
|
|
|
|
|
(void)r600_invalidate_buffer(rctx, rbuffer);
|
2016-01-14 09:41:04 -05:00
|
|
|
}
|
|
|
|
|
|
2013-11-29 17:28:23 +01:00
|
|
|
static void *r600_buffer_get_transfer(struct pipe_context *ctx,
|
|
|
|
|
struct pipe_resource *resource,
|
|
|
|
|
unsigned level,
|
|
|
|
|
unsigned usage,
|
|
|
|
|
const struct pipe_box *box,
|
|
|
|
|
struct pipe_transfer **ptransfer,
|
|
|
|
|
void *data, struct r600_resource *staging,
|
|
|
|
|
unsigned offset)
|
|
|
|
|
{
|
|
|
|
|
struct r600_common_context *rctx = (struct r600_common_context*)ctx;
|
2016-09-27 18:53:45 +02:00
|
|
|
struct r600_transfer *transfer = slab_alloc(&rctx->pool_transfers);
|
2013-11-29 17:28:23 +01:00
|
|
|
|
|
|
|
|
transfer->transfer.resource = resource;
|
|
|
|
|
transfer->transfer.level = level;
|
|
|
|
|
transfer->transfer.usage = usage;
|
|
|
|
|
transfer->transfer.box = *box;
|
|
|
|
|
transfer->transfer.stride = 0;
|
|
|
|
|
transfer->transfer.layer_stride = 0;
|
|
|
|
|
transfer->offset = offset;
|
|
|
|
|
transfer->staging = staging;
|
|
|
|
|
*ptransfer = &transfer->transfer;
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-08 15:15:41 +01:00
|
|
|
static bool r600_can_dma_copy_buffer(struct r600_common_context *rctx,
|
|
|
|
|
unsigned dstx, unsigned srcx, unsigned size)
|
|
|
|
|
{
|
|
|
|
|
bool dword_aligned = !(dstx % 4) && !(srcx % 4) && !(size % 4);
|
|
|
|
|
|
|
|
|
|
return rctx->screen->has_cp_dma ||
|
2015-11-07 14:00:30 +01:00
|
|
|
(dword_aligned && (rctx->dma.cs ||
|
2014-03-08 15:15:41 +01:00
|
|
|
rctx->screen->has_streamout));
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-29 17:28:23 +01:00
|
|
|
static void *r600_buffer_transfer_map(struct pipe_context *ctx,
|
|
|
|
|
struct pipe_resource *resource,
|
|
|
|
|
unsigned level,
|
|
|
|
|
unsigned usage,
|
|
|
|
|
const struct pipe_box *box,
|
|
|
|
|
struct pipe_transfer **ptransfer)
|
|
|
|
|
{
|
|
|
|
|
struct r600_common_context *rctx = (struct r600_common_context*)ctx;
|
|
|
|
|
struct r600_common_screen *rscreen = (struct r600_common_screen*)ctx->screen;
|
|
|
|
|
struct r600_resource *rbuffer = r600_resource(resource);
|
|
|
|
|
uint8_t *data;
|
|
|
|
|
|
|
|
|
|
assert(box->x + box->width <= resource->width0);
|
|
|
|
|
|
|
|
|
|
/* See if the buffer range being mapped has never been initialized,
|
|
|
|
|
* in which case it can be mapped unsynchronized. */
|
|
|
|
|
if (!(usage & PIPE_TRANSFER_UNSYNCHRONIZED) &&
|
|
|
|
|
usage & PIPE_TRANSFER_WRITE &&
|
2016-02-24 17:36:52 +01:00
|
|
|
!rbuffer->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;
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-29 17:28:23 +01:00
|
|
|
if (usage & PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE &&
|
|
|
|
|
!(usage & PIPE_TRANSFER_UNSYNCHRONIZED)) {
|
|
|
|
|
assert(usage & PIPE_TRANSFER_WRITE);
|
|
|
|
|
|
2016-01-15 16:02:22 +09:00
|
|
|
if (r600_invalidate_buffer(rctx, 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) &&
|
|
|
|
|
!(usage & (PIPE_TRANSFER_UNSYNCHRONIZED |
|
|
|
|
|
PIPE_TRANSFER_PERSISTENT)) &&
|
|
|
|
|
!(rscreen->debug_flags & DBG_NO_DISCARD_RANGE) &&
|
|
|
|
|
r600_can_dma_copy_buffer(rctx, box->x, 0, box->width)) {
|
2013-11-29 17:28:23 +01:00
|
|
|
assert(usage & PIPE_TRANSFER_WRITE);
|
|
|
|
|
|
|
|
|
|
/* Check if mapping this buffer would cause waiting for the GPU. */
|
2015-12-07 00:00:59 +01:00
|
|
|
if (r600_rings_is_buffer_referenced(rctx, rbuffer->buf, RADEON_USAGE_READWRITE) ||
|
2015-08-06 23:41:38 +02:00
|
|
|
!rctx->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;
|
|
|
|
|
|
|
|
|
|
u_upload_alloc(rctx->uploader, 0, box->width + (box->x % R600_MAP_BUFFER_ALIGNMENT),
|
2015-12-19 17:15:02 +01:00
|
|
|
256, &offset, (struct pipe_resource**)&staging, (void**)&data);
|
2013-11-29 17:28:23 +01:00
|
|
|
|
|
|
|
|
if (staging) {
|
|
|
|
|
data += box->x % R600_MAP_BUFFER_ALIGNMENT;
|
|
|
|
|
return r600_buffer_get_transfer(ctx, resource, level, usage, box,
|
|
|
|
|
ptransfer, data, staging, offset);
|
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
}
|
2014-03-08 15:15:41 +01:00
|
|
|
/* Using a staging buffer in GTT for larger reads is much faster. */
|
2014-03-05 09:05:36 +01:00
|
|
|
else if ((usage & PIPE_TRANSFER_READ) &&
|
2016-02-25 23:39:42 +01:00
|
|
|
!(usage & (PIPE_TRANSFER_WRITE |
|
|
|
|
|
PIPE_TRANSFER_PERSISTENT)) &&
|
2016-05-12 13:05:19 +02:00
|
|
|
rbuffer->domains & RADEON_DOMAIN_VRAM &&
|
2014-03-08 15:15:41 +01:00
|
|
|
r600_can_dma_copy_buffer(rctx, 0, box->x, box->width)) {
|
2014-08-14 20:22:26 +02:00
|
|
|
struct r600_resource *staging;
|
2014-03-05 09:05:36 +01:00
|
|
|
|
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,
|
2014-08-14 20:22:26 +02:00
|
|
|
box->width + (box->x % R600_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. */
|
2016-05-26 18:20:42 +02:00
|
|
|
ctx->resource_copy_region(ctx, &staging->b.b, 0,
|
|
|
|
|
box->x % R600_MAP_BUFFER_ALIGNMENT,
|
|
|
|
|
0, 0, resource, level, box);
|
2014-03-08 15:15:41 +01:00
|
|
|
|
2014-08-14 20:22:26 +02:00
|
|
|
data = r600_buffer_map_sync_with_rings(rctx, staging, PIPE_TRANSFER_READ);
|
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;
|
|
|
|
|
}
|
2014-08-14 20:22:26 +02:00
|
|
|
data += box->x % R600_MAP_BUFFER_ALIGNMENT;
|
2014-03-08 15:15:41 +01:00
|
|
|
|
|
|
|
|
return r600_buffer_get_transfer(ctx, resource, level, usage, box,
|
2014-08-14 20:22:26 +02:00
|
|
|
ptransfer, data, staging, 0);
|
2014-03-05 09:05:36 +01:00
|
|
|
}
|
|
|
|
|
}
|
2013-11-29 17:28:23 +01:00
|
|
|
|
|
|
|
|
data = r600_buffer_map_sync_with_rings(rctx, rbuffer, usage);
|
|
|
|
|
if (!data) {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
data += box->x;
|
|
|
|
|
|
|
|
|
|
return r600_buffer_get_transfer(ctx, resource, level, usage, box,
|
|
|
|
|
ptransfer, data, NULL, 0);
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-06 15:41:35 +02:00
|
|
|
static void r600_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;
|
|
|
|
|
soffset = rtransfer->offset + box->x % R600_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);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void r600_buffer_flush_region(struct pipe_context *ctx,
|
|
|
|
|
struct pipe_transfer *transfer,
|
|
|
|
|
const struct pipe_box *rel_box)
|
|
|
|
|
{
|
|
|
|
|
if (transfer->usage & (PIPE_TRANSFER_WRITE |
|
|
|
|
|
PIPE_TRANSFER_FLUSH_EXPLICIT)) {
|
|
|
|
|
struct pipe_box box;
|
|
|
|
|
|
|
|
|
|
u_box_1d(transfer->box.x + rel_box->x, rel_box->width, &box);
|
|
|
|
|
r600_buffer_do_flush_region(ctx, transfer, &box);
|
2013-11-29 17:28:23 +01:00
|
|
|
}
|
2015-09-06 15:41:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void r600_buffer_transfer_unmap(struct pipe_context *ctx,
|
|
|
|
|
struct pipe_transfer *transfer)
|
|
|
|
|
{
|
|
|
|
|
struct r600_common_context *rctx = (struct r600_common_context*)ctx;
|
|
|
|
|
struct r600_transfer *rtransfer = (struct r600_transfer*)transfer;
|
|
|
|
|
|
|
|
|
|
if (transfer->usage & PIPE_TRANSFER_WRITE &&
|
|
|
|
|
!(transfer->usage & PIPE_TRANSFER_FLUSH_EXPLICIT))
|
|
|
|
|
r600_buffer_do_flush_region(ctx, transfer, &transfer->box);
|
|
|
|
|
|
|
|
|
|
if (rtransfer->staging)
|
2016-06-21 21:13:00 +02:00
|
|
|
r600_resource_reference(&rtransfer->staging, NULL);
|
2015-09-06 15:41:35 +02:00
|
|
|
|
2016-09-27 18:53:45 +02:00
|
|
|
slab_free(&rctx->pool_transfers, transfer);
|
2013-11-29 17:28:23 +01:00
|
|
|
}
|
|
|
|
|
|
2016-07-16 21:52:20 +02:00
|
|
|
void r600_buffer_subdata(struct pipe_context *ctx,
|
|
|
|
|
struct pipe_resource *buffer,
|
|
|
|
|
unsigned usage, unsigned offset,
|
|
|
|
|
unsigned size, const void *data)
|
|
|
|
|
{
|
|
|
|
|
struct pipe_transfer *transfer = NULL;
|
|
|
|
|
struct pipe_box box;
|
|
|
|
|
uint8_t *map = NULL;
|
|
|
|
|
|
|
|
|
|
u_box_1d(offset, size, &box);
|
|
|
|
|
map = r600_buffer_transfer_map(ctx, buffer, 0,
|
|
|
|
|
PIPE_TRANSFER_WRITE |
|
|
|
|
|
PIPE_TRANSFER_DISCARD_RANGE |
|
|
|
|
|
usage,
|
|
|
|
|
&box, &transfer);
|
|
|
|
|
if (!map)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
memcpy(map, data, size);
|
|
|
|
|
r600_buffer_transfer_unmap(ctx, transfer);
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-29 17:28:23 +01:00
|
|
|
static const struct u_resource_vtbl r600_buffer_vtbl =
|
|
|
|
|
{
|
|
|
|
|
NULL, /* get_handle */
|
|
|
|
|
r600_buffer_destroy, /* resource_destroy */
|
|
|
|
|
r600_buffer_transfer_map, /* transfer_map */
|
2015-09-06 15:41:35 +02:00
|
|
|
r600_buffer_flush_region, /* transfer_flush_region */
|
2013-11-29 17:28:23 +01:00
|
|
|
r600_buffer_transfer_unmap, /* transfer_unmap */
|
|
|
|
|
};
|
|
|
|
|
|
2015-02-10 16:02:54 +01:00
|
|
|
static struct r600_resource *
|
|
|
|
|
r600_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;
|
|
|
|
|
rbuffer->b.vtbl = &r600_buffer_vtbl;
|
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;
|
2016-02-24 17:32:53 +01:00
|
|
|
rbuffer->is_shared = 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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct pipe_resource *r600_buffer_create(struct pipe_screen *screen,
|
|
|
|
|
const struct pipe_resource *templ,
|
|
|
|
|
unsigned alignment)
|
|
|
|
|
{
|
|
|
|
|
struct r600_common_screen *rscreen = (struct r600_common_screen*)screen;
|
|
|
|
|
struct r600_resource *rbuffer = r600_alloc_buffer_struct(screen, templ);
|
2013-11-29 17:28:23 +01:00
|
|
|
|
2016-08-18 16:30:00 +02:00
|
|
|
r600_init_resource_fields(rscreen, rbuffer, templ->width0, alignment);
|
|
|
|
|
|
2016-09-30 11:26:13 +02:00
|
|
|
if (templ->bind & PIPE_BIND_SHARED)
|
|
|
|
|
rbuffer->flags |= RADEON_FLAG_HANDLE;
|
|
|
|
|
|
2016-08-18 16:30:00 +02:00
|
|
|
if (!r600_alloc_resource(rscreen, 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
|
|
|
|
2015-10-21 00:10:36 +02:00
|
|
|
struct pipe_resource *r600_aligned_buffer_create(struct pipe_screen *screen,
|
|
|
|
|
unsigned bind,
|
|
|
|
|
unsigned usage,
|
|
|
|
|
unsigned size,
|
|
|
|
|
unsigned alignment)
|
|
|
|
|
{
|
|
|
|
|
struct pipe_resource buffer;
|
|
|
|
|
|
|
|
|
|
memset(&buffer, 0, sizeof buffer);
|
|
|
|
|
buffer.target = PIPE_BUFFER;
|
|
|
|
|
buffer.format = PIPE_FORMAT_R8_UNORM;
|
|
|
|
|
buffer.bind = bind;
|
|
|
|
|
buffer.usage = usage;
|
|
|
|
|
buffer.flags = 0;
|
|
|
|
|
buffer.width0 = size;
|
|
|
|
|
buffer.height0 = 1;
|
|
|
|
|
buffer.depth0 = 1;
|
|
|
|
|
buffer.array_size = 1;
|
|
|
|
|
return r600_buffer_create(screen, &buffer, alignment);
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-10 16:02:54 +01:00
|
|
|
struct pipe_resource *
|
|
|
|
|
r600_buffer_from_user_memory(struct pipe_screen *screen,
|
|
|
|
|
const struct pipe_resource *templ,
|
|
|
|
|
void *user_memory)
|
|
|
|
|
{
|
|
|
|
|
struct r600_common_screen *rscreen = (struct r600_common_screen*)screen;
|
|
|
|
|
struct radeon_winsys *ws = rscreen->ws;
|
|
|
|
|
struct r600_resource *rbuffer = r600_alloc_buffer_struct(screen, templ);
|
|
|
|
|
|
|
|
|
|
rbuffer->domains = RADEON_DOMAIN_GTT;
|
|
|
|
|
util_range_add(&rbuffer->valid_buffer_range, 0, templ->width0);
|
|
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-30 01:27:46 +01:00
|
|
|
if (rscreen->info.has_virtual_memory)
|
2015-02-10 16:02:54 +01:00
|
|
|
rbuffer->gpu_address =
|
2015-12-07 00:00:59 +01:00
|
|
|
ws->buffer_get_virtual_address(rbuffer->buf);
|
2015-02-10 16:02:54 +01:00
|
|
|
else
|
|
|
|
|
rbuffer->gpu_address = 0;
|
|
|
|
|
|
|
|
|
|
return &rbuffer->b.b;
|
|
|
|
|
}
|