2010-05-08 21:09:24 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright 2010 Jerome Glisse <glisse@freedesktop.org>
|
2018-04-01 16:49:48 -04:00
|
|
|
* Copyright 2018 Advanced Micro Devices, Inc.
|
2010-05-08 21:09:24 +01:00
|
|
|
*
|
2023-05-18 17:22:27 -04:00
|
|
|
* SPDX-License-Identifier: MIT
|
2010-05-08 21:09:24 +01:00
|
|
|
*/
|
2017-11-26 03:15:09 +01:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
#include "drm-uapi/drm_fourcc.h"
|
2018-11-30 11:50:07 +01:00
|
|
|
#include "si_pipe.h"
|
|
|
|
|
#include "si_query.h"
|
2020-03-27 19:32:38 +01:00
|
|
|
#include "sid.h"
|
2019-12-03 18:01:31 -05:00
|
|
|
#include "frontend/drm_driver.h"
|
2019-06-27 15:05:31 -07:00
|
|
|
#include "util/format/u_format.h"
|
2020-03-27 19:32:38 +01:00
|
|
|
#include "util/os_time.h"
|
2017-08-04 16:50:05 +02:00
|
|
|
#include "util/u_log.h"
|
2011-08-27 17:51:51 +02:00
|
|
|
#include "util/u_memory.h"
|
2014-03-06 02:38:57 +01:00
|
|
|
#include "util/u_pack_color.h"
|
2017-11-26 03:15:09 +01:00
|
|
|
#include "util/u_resource.h"
|
2016-08-04 19:04:02 +02:00
|
|
|
#include "util/u_surface.h"
|
2018-04-08 20:20:39 -04:00
|
|
|
#include "util/u_transfer.h"
|
2020-03-27 19:32:38 +01:00
|
|
|
|
2013-09-22 13:06:27 +02:00
|
|
|
#include <errno.h>
|
2013-11-30 19:53:53 +00:00
|
|
|
#include <inttypes.h>
|
2012-12-03 22:21:39 +01:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
#include "amd/addrlib/inc/addrinterface.h"
|
2024-05-21 15:30:43 +02:00
|
|
|
#include "ac_formats.h"
|
2016-04-28 19:22:28 +02:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
static enum radeon_surf_mode si_choose_tiling(struct si_screen *sscreen,
|
|
|
|
|
const struct pipe_resource *templ,
|
|
|
|
|
bool tc_compatible_htile);
|
2016-04-28 19:22:28 +02:00
|
|
|
|
2020-03-15 14:47:25 +01:00
|
|
|
static bool si_texture_is_aux_plane(const struct pipe_resource *resource);
|
|
|
|
|
|
2013-05-29 20:12:27 +02:00
|
|
|
/* Same as resource_copy_region, except that both upsampling and downsampling are allowed. */
|
2020-03-27 19:32:38 +01:00
|
|
|
static void si_copy_region_with_blit(struct pipe_context *pipe, struct pipe_resource *dst,
|
2022-07-19 00:20:36 -04:00
|
|
|
unsigned dst_level, unsigned dst_sample, unsigned dstx, unsigned dsty,
|
2020-03-27 19:32:38 +01:00
|
|
|
unsigned dstz, struct pipe_resource *src, unsigned src_level,
|
|
|
|
|
const struct pipe_box *src_box)
|
2013-05-29 20:12:27 +02:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct pipe_blit_info blit;
|
|
|
|
|
|
|
|
|
|
memset(&blit, 0, sizeof(blit));
|
|
|
|
|
blit.src.resource = src;
|
|
|
|
|
blit.src.format = src->format;
|
|
|
|
|
blit.src.level = src_level;
|
|
|
|
|
blit.src.box = *src_box;
|
|
|
|
|
blit.dst.resource = dst;
|
|
|
|
|
blit.dst.format = dst->format;
|
|
|
|
|
blit.dst.level = dst_level;
|
|
|
|
|
blit.dst.box.x = dstx;
|
|
|
|
|
blit.dst.box.y = dsty;
|
|
|
|
|
blit.dst.box.z = dstz;
|
|
|
|
|
blit.dst.box.width = src_box->width;
|
|
|
|
|
blit.dst.box.height = src_box->height;
|
|
|
|
|
blit.dst.box.depth = src_box->depth;
|
|
|
|
|
blit.mask = util_format_get_mask(dst->format);
|
|
|
|
|
blit.filter = PIPE_TEX_FILTER_NEAREST;
|
2022-07-19 00:20:36 -04:00
|
|
|
blit.dst_sample = dst_sample;
|
2020-03-27 19:32:38 +01:00
|
|
|
|
|
|
|
|
if (blit.mask) {
|
2022-07-19 00:20:36 -04:00
|
|
|
/* Only the gfx blit handles dst_sample. */
|
|
|
|
|
if (dst_sample)
|
|
|
|
|
si_gfx_blit(pipe, &blit);
|
|
|
|
|
else
|
|
|
|
|
pipe->blit(pipe, &blit);
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
2013-05-29 20:12:27 +02:00
|
|
|
}
|
|
|
|
|
|
2023-07-30 12:39:15 +02:00
|
|
|
/* Copy all planes of multi-plane texture */
|
|
|
|
|
static bool si_copy_multi_plane_texture(struct pipe_context *ctx, struct pipe_resource *dst,
|
|
|
|
|
unsigned dst_level, unsigned dstx, unsigned dsty, unsigned dstz,
|
|
|
|
|
struct pipe_resource *src, unsigned src_level,
|
|
|
|
|
const struct pipe_box *src_box)
|
|
|
|
|
{
|
2023-08-30 14:17:21 +02:00
|
|
|
unsigned i, dx, dy;
|
2023-07-30 12:39:15 +02:00
|
|
|
struct si_texture *src_tex = (struct si_texture *)src;
|
|
|
|
|
struct si_texture *dst_tex = (struct si_texture *)dst;
|
|
|
|
|
struct pipe_box sbox;
|
|
|
|
|
|
|
|
|
|
if (src_tex->multi_plane_format == PIPE_FORMAT_NONE || src_tex->plane_index != 0)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
assert(src_tex->multi_plane_format == dst_tex->multi_plane_format);
|
|
|
|
|
assert(dst_tex->plane_index == 0 && src_tex->num_planes == dst_tex->num_planes);
|
|
|
|
|
|
|
|
|
|
sbox = *src_box;
|
|
|
|
|
|
2023-08-30 14:17:21 +02:00
|
|
|
for (i = 0; i < src_tex->num_planes && src && dst; ++i) {
|
|
|
|
|
dx = util_format_get_plane_width(src_tex->multi_plane_format, i, dstx);
|
|
|
|
|
dy = util_format_get_plane_height(src_tex->multi_plane_format, i, dsty);
|
|
|
|
|
sbox.x = util_format_get_plane_width(src_tex->multi_plane_format, i, src_box->x);
|
|
|
|
|
sbox.y = util_format_get_plane_height(src_tex->multi_plane_format, i, src_box->y);
|
|
|
|
|
sbox.width = util_format_get_plane_width(src_tex->multi_plane_format, i, src_box->width);
|
|
|
|
|
sbox.height = util_format_get_plane_height(src_tex->multi_plane_format, i, src_box->height);
|
|
|
|
|
|
|
|
|
|
si_resource_copy_region(ctx, dst, dst_level, dx, dy, dstz, src, src_level, &sbox);
|
|
|
|
|
|
2023-07-30 12:39:15 +02:00
|
|
|
src = src->next;
|
|
|
|
|
dst = dst->next;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-02 17:51:34 +00:00
|
|
|
/* Copy from a full GPU texture to a transfer's staging one. */
|
2018-06-22 00:02:47 -04:00
|
|
|
static void si_copy_to_staging_texture(struct pipe_context *ctx, struct si_transfer *stransfer)
|
2010-08-21 22:49:22 -04:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct pipe_transfer *transfer = (struct pipe_transfer *)stransfer;
|
|
|
|
|
struct pipe_resource *dst = &stransfer->staging->b.b;
|
|
|
|
|
struct pipe_resource *src = transfer->resource;
|
2022-07-19 00:20:36 -04:00
|
|
|
/* level means sample_index - 1 with MSAA. Used by texture uploads. */
|
|
|
|
|
unsigned src_level = src->nr_samples > 1 ? 0 : transfer->level;
|
2020-03-27 19:32:38 +01:00
|
|
|
|
|
|
|
|
if (src->nr_samples > 1 || ((struct si_texture *)src)->is_depth) {
|
2022-07-19 00:20:36 -04:00
|
|
|
si_copy_region_with_blit(ctx, dst, 0, 0, 0, 0, 0, src, src_level, &transfer->box);
|
2020-03-27 19:32:38 +01:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-30 12:39:15 +02:00
|
|
|
if (si_copy_multi_plane_texture(ctx, dst, 0, 0, 0, 0, src, src_level, &transfer->box))
|
|
|
|
|
return;
|
|
|
|
|
|
2022-07-19 00:20:36 -04:00
|
|
|
si_resource_copy_region(ctx, dst, 0, 0, 0, 0, src, src_level, &transfer->box);
|
2010-08-21 22:49:22 -04:00
|
|
|
}
|
|
|
|
|
|
2010-11-02 17:51:34 +00:00
|
|
|
/* Copy from a transfer's staging texture to a full GPU one. */
|
2018-06-22 00:02:47 -04:00
|
|
|
static void si_copy_from_staging_texture(struct pipe_context *ctx, struct si_transfer *stransfer)
|
2010-10-12 11:54:16 +10:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct pipe_transfer *transfer = (struct pipe_transfer *)stransfer;
|
|
|
|
|
struct pipe_resource *dst = transfer->resource;
|
|
|
|
|
struct pipe_resource *src = &stransfer->staging->b.b;
|
|
|
|
|
struct pipe_box sbox;
|
|
|
|
|
|
|
|
|
|
u_box_3d(0, 0, 0, transfer->box.width, transfer->box.height, transfer->box.depth, &sbox);
|
|
|
|
|
|
|
|
|
|
if (dst->nr_samples > 1 || ((struct si_texture *)dst)->is_depth) {
|
2022-07-19 00:20:36 -04:00
|
|
|
unsigned dst_level = dst->nr_samples > 1 ? 0 : transfer->level;
|
|
|
|
|
unsigned dst_sample = dst->nr_samples > 1 ? transfer->level : 0;
|
|
|
|
|
|
|
|
|
|
si_copy_region_with_blit(ctx, dst, dst_level, dst_sample, transfer->box.x, transfer->box.y,
|
2020-03-27 19:32:38 +01:00
|
|
|
transfer->box.z, src, 0, &sbox);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-30 12:39:15 +02:00
|
|
|
if (si_copy_multi_plane_texture(ctx, dst, transfer->level, transfer->box.x, transfer->box.y,
|
|
|
|
|
transfer->box.z, src, 0, &sbox))
|
|
|
|
|
return;
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
if (util_format_is_compressed(dst->format)) {
|
|
|
|
|
sbox.width = util_format_get_nblocksx(dst->format, sbox.width);
|
|
|
|
|
sbox.height = util_format_get_nblocksx(dst->format, sbox.height);
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-03 17:57:45 -05:00
|
|
|
si_resource_copy_region(ctx, dst, transfer->level, transfer->box.x, transfer->box.y,
|
|
|
|
|
transfer->box.z, src, 0, &sbox);
|
2010-10-12 11:54:16 +10:00
|
|
|
}
|
|
|
|
|
|
2023-06-02 04:01:40 -04:00
|
|
|
static uint64_t si_texture_get_offset(struct si_screen *sscreen, struct si_texture *tex,
|
2020-03-27 19:32:38 +01:00
|
|
|
unsigned level, const struct pipe_box *box, unsigned *stride,
|
2023-06-02 04:01:40 -04:00
|
|
|
uintptr_t *layer_stride)
|
2010-05-08 21:09:24 +01:00
|
|
|
{
|
2022-05-12 02:50:17 -04:00
|
|
|
if (sscreen->info.gfx_level >= GFX9) {
|
2022-01-06 14:07:18 +01:00
|
|
|
unsigned pitch;
|
|
|
|
|
if (tex->surface.is_linear) {
|
|
|
|
|
pitch = tex->surface.u.gfx9.pitch[level];
|
|
|
|
|
} else {
|
|
|
|
|
pitch = tex->surface.u.gfx9.surf_pitch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*stride = pitch * tex->surface.bpe;
|
2020-03-27 19:32:38 +01:00
|
|
|
*layer_stride = tex->surface.u.gfx9.surf_slice_size;
|
|
|
|
|
|
|
|
|
|
if (!box)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
/* Each texture is an array of slices. Each slice is an array
|
|
|
|
|
* of mipmap levels. */
|
|
|
|
|
return tex->surface.u.gfx9.surf_offset + box->z * tex->surface.u.gfx9.surf_slice_size +
|
|
|
|
|
tex->surface.u.gfx9.offset[level] +
|
2023-05-15 12:02:38 -04:00
|
|
|
(box->y / tex->surface.blk_h * (uint64_t)pitch + box->x / tex->surface.blk_w) *
|
2022-01-06 14:07:18 +01:00
|
|
|
tex->surface.bpe;
|
2020-03-27 19:32:38 +01:00
|
|
|
} else {
|
|
|
|
|
*stride = tex->surface.u.legacy.level[level].nblk_x * tex->surface.bpe;
|
|
|
|
|
assert((uint64_t)tex->surface.u.legacy.level[level].slice_size_dw * 4 <= UINT_MAX);
|
|
|
|
|
*layer_stride = (uint64_t)tex->surface.u.legacy.level[level].slice_size_dw * 4;
|
|
|
|
|
|
|
|
|
|
if (!box)
|
2021-04-02 13:33:38 -04:00
|
|
|
return (uint64_t)tex->surface.u.legacy.level[level].offset_256B * 256;
|
2020-03-27 19:32:38 +01:00
|
|
|
|
|
|
|
|
/* Each texture is an array of mipmap levels. Each level is
|
|
|
|
|
* an array of slices. */
|
2021-04-02 13:33:38 -04:00
|
|
|
return (uint64_t)tex->surface.u.legacy.level[level].offset_256B * 256 +
|
2020-03-27 19:32:38 +01:00
|
|
|
box->z * (uint64_t)tex->surface.u.legacy.level[level].slice_size_dw * 4 +
|
|
|
|
|
(box->y / tex->surface.blk_h * tex->surface.u.legacy.level[level].nblk_x +
|
|
|
|
|
box->x / tex->surface.blk_w) *
|
|
|
|
|
tex->surface.bpe;
|
|
|
|
|
}
|
2010-11-17 21:30:09 -05:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
static int si_init_surface(struct si_screen *sscreen, struct radeon_surf *surface,
|
|
|
|
|
const struct pipe_resource *ptex, enum radeon_surf_mode array_mode,
|
2019-12-17 14:15:56 +01:00
|
|
|
uint64_t modifier, bool is_imported, bool is_scanout,
|
|
|
|
|
bool is_flushed_depth, bool tc_compatible_htile)
|
2012-01-30 17:22:13 -05:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
const struct util_format_description *desc = util_format_description(ptex->format);
|
2023-10-24 07:52:28 -04:00
|
|
|
bool is_depth = util_format_has_depth(desc);
|
|
|
|
|
bool is_stencil = util_format_has_stencil(desc);
|
2020-03-27 19:32:38 +01:00
|
|
|
int r;
|
2020-11-28 02:46:29 +01:00
|
|
|
unsigned bpe;
|
|
|
|
|
uint64_t flags = 0;
|
2020-03-27 19:32:38 +01:00
|
|
|
|
|
|
|
|
if (!is_flushed_depth && ptex->format == PIPE_FORMAT_Z32_FLOAT_S8X24_UINT) {
|
|
|
|
|
bpe = 4; /* stencil is allocated separately */
|
|
|
|
|
} else {
|
|
|
|
|
bpe = util_format_get_blocksize(ptex->format);
|
|
|
|
|
assert(util_is_power_of_two_or_zero(bpe));
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-04 05:16:49 -05:00
|
|
|
if (sscreen->info.gfx_level >= GFX12) {
|
|
|
|
|
if (!is_flushed_depth && is_depth) {
|
|
|
|
|
flags |= RADEON_SURF_ZBUFFER;
|
|
|
|
|
if (is_stencil)
|
|
|
|
|
flags |= RADEON_SURF_SBUFFER;
|
|
|
|
|
|
|
|
|
|
if (sscreen->debug_flags & DBG(NO_HYPERZ) ||
|
2025-07-18 16:12:33 +02:00
|
|
|
(ptex->flags & PIPE_RESOURCE_FLAG_SPARSE) ||
|
|
|
|
|
(ptex->bind & PIPE_BIND_SHARED) ||
|
|
|
|
|
is_imported)
|
2024-03-04 05:16:49 -05:00
|
|
|
flags |= RADEON_SURF_NO_HTILE;
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
2024-05-31 22:36:03 -04:00
|
|
|
|
2025-01-24 08:51:31 -08:00
|
|
|
if (!is_imported && (!(ptex->bind & PIPE_BIND_SCANOUT) ||
|
|
|
|
|
sscreen->info.gfx12_supports_display_dcc)) {
|
2024-05-31 22:36:03 -04:00
|
|
|
enum pipe_format format = util_format_get_depth_only(ptex->format);
|
|
|
|
|
|
|
|
|
|
/* These should be set for both color and Z/S. */
|
2025-06-13 15:55:03 +02:00
|
|
|
surface->u.gfx9.dcc_number_type = ac_get_cb_number_type(format);
|
|
|
|
|
surface->u.gfx9.dcc_data_format = ac_get_cb_format(sscreen->info.gfx_level, format);
|
|
|
|
|
surface->u.gfx9.dcc_write_compress_disable = false;
|
2024-05-31 22:36:03 -04:00
|
|
|
}
|
|
|
|
|
|
2024-10-30 13:43:13 -04:00
|
|
|
if (modifier == DRM_FORMAT_MOD_INVALID &&
|
2024-05-31 22:36:03 -04:00
|
|
|
(ptex->bind & PIPE_BIND_CONST_BW ||
|
2024-08-22 07:25:19 -04:00
|
|
|
ptex->bind & PIPE_BIND_PROTECTED ||
|
2024-11-21 13:32:55 +01:00
|
|
|
ptex->bind & PIPE_BIND_USE_FRONT_RENDERING ||
|
2024-05-31 22:36:03 -04:00
|
|
|
sscreen->debug_flags & DBG(NO_DCC) ||
|
|
|
|
|
(ptex->bind & PIPE_BIND_SCANOUT && sscreen->debug_flags & DBG(NO_DISPLAY_DCC))))
|
|
|
|
|
flags |= RADEON_SURF_DISABLE_DCC;
|
2024-03-04 05:16:49 -05:00
|
|
|
} else {
|
|
|
|
|
/* Gfx6-11 */
|
|
|
|
|
if (!is_flushed_depth && is_depth) {
|
|
|
|
|
flags |= RADEON_SURF_ZBUFFER;
|
|
|
|
|
|
|
|
|
|
if ((sscreen->debug_flags & DBG(NO_HYPERZ)) ||
|
|
|
|
|
(ptex->bind & PIPE_BIND_SHARED) || is_imported) {
|
|
|
|
|
flags |= RADEON_SURF_NO_HTILE;
|
|
|
|
|
} else if (tc_compatible_htile &&
|
|
|
|
|
(sscreen->info.gfx_level >= GFX9 || array_mode == RADEON_SURF_MODE_2D)) {
|
|
|
|
|
/* TC-compatible HTILE only supports Z32_FLOAT.
|
|
|
|
|
* GFX9 also supports Z16_UNORM.
|
|
|
|
|
* On GFX8, promote Z16 to Z32. DB->CB copies will convert
|
|
|
|
|
* the format for transfers.
|
|
|
|
|
*/
|
|
|
|
|
if (sscreen->info.gfx_level == GFX8)
|
|
|
|
|
bpe = 4;
|
|
|
|
|
|
|
|
|
|
flags |= RADEON_SURF_TC_COMPATIBLE_HTILE;
|
|
|
|
|
}
|
2020-03-27 19:32:38 +01:00
|
|
|
|
2024-03-04 05:16:49 -05:00
|
|
|
if (is_stencil)
|
|
|
|
|
flags |= RADEON_SURF_SBUFFER;
|
|
|
|
|
}
|
2021-03-17 22:11:19 -04:00
|
|
|
|
2024-03-04 05:16:49 -05:00
|
|
|
/* Disable DCC? (it can't be disabled if modifiers are used) */
|
|
|
|
|
if (sscreen->info.gfx_level >= GFX8 && modifier == DRM_FORMAT_MOD_INVALID && !is_imported) {
|
|
|
|
|
/* Global options that disable DCC. */
|
|
|
|
|
if (ptex->nr_samples >= 2 && sscreen->debug_flags & DBG(NO_DCC_MSAA))
|
2021-03-17 22:11:19 -04:00
|
|
|
flags |= RADEON_SURF_DISABLE_DCC;
|
|
|
|
|
|
2024-03-04 05:16:49 -05:00
|
|
|
/* Shared textures must always set up DCC. If it's not present, it will be disabled by
|
|
|
|
|
* si_get_opaque_metadata later.
|
2021-10-07 17:21:28 -04:00
|
|
|
*/
|
2024-03-04 05:16:49 -05:00
|
|
|
if (!is_imported && sscreen->debug_flags & DBG(NO_DCC))
|
2021-10-07 17:21:28 -04:00
|
|
|
flags |= RADEON_SURF_DISABLE_DCC;
|
2024-04-16 15:12:36 -04:00
|
|
|
|
2024-03-04 05:16:49 -05:00
|
|
|
/* R9G9B9E5 isn't supported for rendering by older generations. */
|
|
|
|
|
if (sscreen->info.gfx_level < GFX10_3 &&
|
|
|
|
|
ptex->format == PIPE_FORMAT_R9G9B9E5_FLOAT)
|
2024-04-16 15:12:36 -04:00
|
|
|
flags |= RADEON_SURF_DISABLE_DCC;
|
|
|
|
|
|
2024-03-04 05:16:49 -05:00
|
|
|
/* If constant (non-data-dependent) format is requested, disable DCC: */
|
|
|
|
|
if (ptex->bind & PIPE_BIND_CONST_BW)
|
2024-04-16 15:12:36 -04:00
|
|
|
flags |= RADEON_SURF_DISABLE_DCC;
|
|
|
|
|
|
2024-11-21 13:32:55 +01:00
|
|
|
if (ptex->bind & PIPE_BIND_USE_FRONT_RENDERING)
|
|
|
|
|
flags |= RADEON_SURF_DISABLE_DCC;
|
|
|
|
|
|
2024-03-04 05:16:49 -05:00
|
|
|
switch (sscreen->info.gfx_level) {
|
|
|
|
|
case GFX8:
|
|
|
|
|
/* Stoney: 128bpp MSAA textures randomly fail piglit tests with DCC. */
|
|
|
|
|
if (sscreen->info.family == CHIP_STONEY && bpe == 16 && ptex->nr_samples >= 2)
|
|
|
|
|
flags |= RADEON_SURF_DISABLE_DCC;
|
|
|
|
|
|
|
|
|
|
/* DCC clear for 4x and 8x MSAA array textures unimplemented. */
|
|
|
|
|
if (ptex->nr_storage_samples >= 4 && ptex->array_size > 1)
|
|
|
|
|
flags |= RADEON_SURF_DISABLE_DCC;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GFX9:
|
|
|
|
|
/* DCC MSAA fails this on Raven:
|
|
|
|
|
* https://www.khronos.org/registry/webgl/sdk/tests/deqp/functional/gles3/fbomultisample.2_samples.html
|
|
|
|
|
* and this on Picasso:
|
|
|
|
|
* https://www.khronos.org/registry/webgl/sdk/tests/deqp/functional/gles3/fbomultisample.4_samples.html
|
|
|
|
|
*/
|
|
|
|
|
if (sscreen->info.family == CHIP_RAVEN && ptex->nr_storage_samples >= 2 && bpe < 4)
|
|
|
|
|
flags |= RADEON_SURF_DISABLE_DCC;
|
|
|
|
|
|
|
|
|
|
/* Vega10 fails these 2x and 4x MSAA tests with DCC:
|
|
|
|
|
* piglit/bin/ext_framebuffer_multisample-formats 2 GL_EXT_texture_snorm
|
|
|
|
|
* piglit/bin/ext_framebuffer_multisample-formats 4 GL_EXT_texture_snorm
|
|
|
|
|
*/
|
|
|
|
|
if ((ptex->nr_storage_samples == 2 || ptex->nr_storage_samples == 4) && bpe <= 2 &&
|
|
|
|
|
util_format_is_snorm(ptex->format))
|
|
|
|
|
flags |= RADEON_SURF_DISABLE_DCC;
|
|
|
|
|
|
|
|
|
|
/* Vega10 fails these MSAA tests with DCC:
|
|
|
|
|
* piglit/bin/ext_framebuffer_multisample-formats 2 GL_ARB_texture_float
|
|
|
|
|
* piglit/bin/ext_framebuffer_multisample-formats 2 GL_ARB_texture_rg-float
|
|
|
|
|
*/
|
|
|
|
|
if (ptex->nr_storage_samples == 2 && bpe == 2 && util_format_is_float(ptex->format))
|
|
|
|
|
flags |= RADEON_SURF_DISABLE_DCC;
|
|
|
|
|
|
|
|
|
|
/* We allow S8_UINT as a color format, and piglit/draw-pixels fails if we enable DCC. */
|
|
|
|
|
if (ptex->format == PIPE_FORMAT_S8_UINT)
|
|
|
|
|
flags |= RADEON_SURF_DISABLE_DCC;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GFX10:
|
|
|
|
|
case GFX10_3:
|
|
|
|
|
if (ptex->nr_storage_samples >= 2 && !sscreen->options.dcc_msaa)
|
|
|
|
|
flags |= RADEON_SURF_DISABLE_DCC;
|
|
|
|
|
|
|
|
|
|
/* Navi10 fails these MSAA tests with DCC:
|
|
|
|
|
* piglit/bin/arb_sample_shading-samplemask 2 all all
|
|
|
|
|
* piglit/bin/arb_sample_shading-samplemask 4 all all
|
|
|
|
|
* piglit/bin/ext_framebuffer_multisample-formats 2 GL_ARB_texture_float
|
|
|
|
|
* piglit/bin/ext_framebuffer_multisample-formats 2 GL_EXT_texture_integer
|
|
|
|
|
*/
|
|
|
|
|
if (sscreen->info.gfx_level == GFX10 &&
|
|
|
|
|
(ptex->nr_storage_samples == 2 || ptex->nr_storage_samples == 4))
|
|
|
|
|
flags |= RADEON_SURF_DISABLE_DCC;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GFX11:
|
|
|
|
|
case GFX11_5:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
assert(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-03-17 22:11:19 -04:00
|
|
|
|
2024-03-04 05:16:49 -05:00
|
|
|
if (sscreen->debug_flags & DBG(NO_FMASK))
|
|
|
|
|
flags |= RADEON_SURF_NO_FMASK;
|
2024-04-16 15:12:36 -04:00
|
|
|
|
2024-03-04 05:16:49 -05:00
|
|
|
if (ptex->flags & PIPE_RESOURCE_FLAG_SPARSE) {
|
|
|
|
|
flags |= RADEON_SURF_NO_FMASK |
|
|
|
|
|
RADEON_SURF_NO_HTILE |
|
|
|
|
|
RADEON_SURF_DISABLE_DCC;
|
2021-03-17 22:11:19 -04:00
|
|
|
}
|
|
|
|
|
}
|
2020-03-27 19:32:38 +01:00
|
|
|
|
|
|
|
|
if (is_scanout) {
|
|
|
|
|
/* This should catch bugs in gallium users setting incorrect flags. */
|
2023-09-26 22:21:36 +02:00
|
|
|
assert(ptex->nr_samples <= 1 && ptex->depth0 == 1 &&
|
2020-03-27 19:32:38 +01:00
|
|
|
ptex->last_level == 0 && !(flags & RADEON_SURF_Z_OR_SBUFFER));
|
|
|
|
|
|
|
|
|
|
flags |= RADEON_SURF_SCANOUT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ptex->bind & PIPE_BIND_SHARED)
|
|
|
|
|
flags |= RADEON_SURF_SHAREABLE;
|
2024-03-04 05:16:49 -05:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
if (is_imported)
|
|
|
|
|
flags |= RADEON_SURF_IMPORTED | RADEON_SURF_SHAREABLE;
|
2020-04-23 01:00:24 -04:00
|
|
|
|
2024-03-04 05:16:49 -05:00
|
|
|
if (ptex->flags & PIPE_RESOURCE_FLAG_SPARSE)
|
|
|
|
|
flags |= RADEON_SURF_PRT;
|
2021-12-10 10:48:47 +08:00
|
|
|
|
2024-11-22 12:45:16 +01:00
|
|
|
if (ptex->bind & (PIPE_BIND_VIDEO_DECODE_DPB | PIPE_BIND_VIDEO_ENCODE_DPB))
|
|
|
|
|
flags |= RADEON_SURF_VIDEO_REFERENCE;
|
|
|
|
|
|
2019-12-17 14:15:56 +01:00
|
|
|
surface->modifier = modifier;
|
2019-10-08 10:21:30 +02:00
|
|
|
|
2023-04-29 04:50:31 -04:00
|
|
|
r = sscreen->ws->surface_init(sscreen->ws, &sscreen->info, ptex, flags, bpe, array_mode,
|
|
|
|
|
surface);
|
2020-03-27 19:32:38 +01:00
|
|
|
if (r) {
|
|
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
2012-01-30 17:22:13 -05:00
|
|
|
}
|
|
|
|
|
|
2020-05-06 21:34:10 +02:00
|
|
|
void si_eliminate_fast_color_clear(struct si_context *sctx, struct si_texture *tex,
|
|
|
|
|
bool *ctx_flushed)
|
2016-03-01 21:50:25 +01:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct pipe_context *ctx = &sctx->b;
|
2016-08-21 12:30:21 +02:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
unsigned n = sctx->num_decompress_calls;
|
|
|
|
|
ctx->flush_resource(ctx, &tex->buffer.b.b);
|
2018-01-30 02:51:47 +01:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Flush only if any fast clear elimination took place. */
|
2020-05-06 21:34:10 +02:00
|
|
|
bool flushed = false;
|
2020-03-27 19:32:38 +01:00
|
|
|
if (n != sctx->num_decompress_calls)
|
2020-05-06 21:34:10 +02:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
ctx->flush(ctx, NULL, 0);
|
2020-05-06 21:34:10 +02:00
|
|
|
flushed = true;
|
|
|
|
|
}
|
|
|
|
|
if (ctx_flushed)
|
|
|
|
|
*ctx_flushed = flushed;
|
2016-03-01 21:50:25 +01:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
void si_texture_discard_cmask(struct si_screen *sscreen, struct si_texture *tex)
|
2016-02-24 22:04:47 +01:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
if (!tex->cmask_buffer)
|
|
|
|
|
return;
|
2016-02-24 22:04:47 +01:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
assert(tex->buffer.b.b.nr_samples <= 1);
|
2016-02-24 22:04:47 +01:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Disable CMASK. */
|
|
|
|
|
tex->cmask_base_address_reg = tex->buffer.gpu_address >> 8;
|
|
|
|
|
tex->dirty_level_mask = 0;
|
2016-02-24 22:04:47 +01:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
tex->cb_color_info &= ~S_028C70_FAST_CLEAR(1);
|
2016-02-24 22:04:47 +01:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
if (tex->cmask_buffer != &tex->buffer)
|
|
|
|
|
si_resource_reference(&tex->cmask_buffer, NULL);
|
2016-02-24 22:04:47 +01:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
tex->cmask_buffer = NULL;
|
2018-06-21 23:54:20 -04:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Notify all contexts about the change. */
|
|
|
|
|
p_atomic_inc(&sscreen->dirty_tex_counter);
|
|
|
|
|
p_atomic_inc(&sscreen->compressed_colortex_counter);
|
2016-02-24 22:04:47 +01:00
|
|
|
}
|
|
|
|
|
|
2018-06-18 21:34:57 -04:00
|
|
|
static bool si_can_disable_dcc(struct si_texture *tex)
|
2016-06-02 23:30:01 +02:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
/* We can't disable DCC if it can be written by another process. */
|
2021-04-12 01:48:02 -04:00
|
|
|
return !tex->is_depth &&
|
|
|
|
|
tex->surface.meta_offset &&
|
2020-03-27 19:32:38 +01:00
|
|
|
(!tex->buffer.b.is_shared ||
|
2020-02-10 19:00:33 +01:00
|
|
|
!(tex->buffer.external_usage & PIPE_HANDLE_USAGE_FRAMEBUFFER_WRITE)) &&
|
|
|
|
|
!ac_modifier_has_dcc(tex->surface.modifier);
|
2016-06-02 23:30:01 +02:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
static bool si_texture_discard_dcc(struct si_screen *sscreen, struct si_texture *tex)
|
2016-04-28 19:45:22 +02:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
if (!si_can_disable_dcc(tex))
|
|
|
|
|
return false;
|
2016-06-02 23:30:01 +02:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Disable DCC. */
|
2020-05-02 12:23:51 -04:00
|
|
|
ac_surface_zero_dcc_fields(&tex->surface);
|
2016-04-28 19:45:22 +02:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Notify all contexts about the change. */
|
|
|
|
|
p_atomic_inc(&sscreen->dirty_tex_counter);
|
|
|
|
|
return true;
|
2016-04-28 19:45:22 +02:00
|
|
|
}
|
|
|
|
|
|
2016-08-11 17:56:44 +02:00
|
|
|
/**
|
|
|
|
|
* Disable DCC for the texture. (first decompress, then discard metadata).
|
|
|
|
|
*
|
|
|
|
|
* There is unresolved multi-context synchronization issue between
|
|
|
|
|
* screen::aux_context and the current context. If applications do this with
|
|
|
|
|
* multiple contexts, it's already undefined behavior for them and we don't
|
|
|
|
|
* have to worry about that. The scenario is:
|
|
|
|
|
*
|
|
|
|
|
* If context 1 disables DCC and context 2 has queued commands that write
|
|
|
|
|
* to the texture via CB with DCC enabled, and the order of operations is
|
|
|
|
|
* as follows:
|
|
|
|
|
* context 2 queues draw calls rendering to the texture, but doesn't flush
|
|
|
|
|
* context 1 disables DCC and flushes
|
|
|
|
|
* context 1 & 2 reset descriptors and FB state
|
|
|
|
|
* context 2 flushes (new compressed tiles written by the draw calls)
|
|
|
|
|
* context 1 & 2 read garbage, because DCC is disabled, yet there are
|
|
|
|
|
* compressed tiled
|
|
|
|
|
*
|
2019-01-18 19:19:23 -05:00
|
|
|
* \param sctx the current context if you have one, or sscreen->aux_context
|
2016-08-11 17:56:44 +02:00
|
|
|
* if you don't.
|
|
|
|
|
*/
|
2020-03-27 19:32:38 +01:00
|
|
|
bool si_texture_disable_dcc(struct si_context *sctx, struct si_texture *tex)
|
2016-02-24 22:04:47 +01:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct si_screen *sscreen = sctx->screen;
|
2016-02-24 22:04:47 +01:00
|
|
|
|
2025-07-02 12:13:41 +05:30
|
|
|
if (!sctx->is_gfx_queue)
|
2020-03-27 19:32:38 +01:00
|
|
|
return si_texture_discard_dcc(sscreen, tex);
|
2019-02-07 00:01:13 -05:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
if (!si_can_disable_dcc(tex))
|
|
|
|
|
return false;
|
2016-02-24 22:04:47 +01:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Decompress DCC. */
|
|
|
|
|
si_decompress_dcc(sctx, tex);
|
|
|
|
|
sctx->b.flush(&sctx->b, NULL, 0);
|
2016-08-11 17:56:44 +02:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
return si_texture_discard_dcc(sscreen, tex);
|
2016-02-24 22:04:47 +01:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
static void si_reallocate_texture_inplace(struct si_context *sctx, struct si_texture *tex,
|
|
|
|
|
unsigned new_bind_flag, bool invalidate_storage)
|
2016-05-12 13:33:06 +02:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct pipe_screen *screen = sctx->b.screen;
|
|
|
|
|
struct si_texture *new_tex;
|
|
|
|
|
struct pipe_resource templ = tex->buffer.b.b;
|
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
|
|
templ.bind |= new_bind_flag;
|
|
|
|
|
|
|
|
|
|
if (tex->buffer.b.is_shared || tex->num_planes > 1)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (new_bind_flag == PIPE_BIND_LINEAR) {
|
|
|
|
|
if (tex->surface.is_linear)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* This fails with MSAA, depth, and compressed textures. */
|
|
|
|
|
if (si_choose_tiling(sctx->screen, &templ, false) != RADEON_SURF_MODE_LINEAR_ALIGNED)
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-17 22:51:37 +08:00
|
|
|
/* Inherit the modifier from the old texture. */
|
|
|
|
|
if (tex->surface.modifier != DRM_FORMAT_MOD_INVALID && screen->resource_create_with_modifiers)
|
|
|
|
|
new_tex = (struct si_texture *)screen->resource_create_with_modifiers(screen, &templ,
|
|
|
|
|
&tex->surface.modifier, 1);
|
|
|
|
|
else
|
|
|
|
|
new_tex = (struct si_texture *)screen->resource_create(screen, &templ);
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
if (!new_tex)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* Copy the pixels to the new texture. */
|
|
|
|
|
if (!invalidate_storage) {
|
|
|
|
|
for (i = 0; i <= templ.last_level; i++) {
|
|
|
|
|
struct pipe_box box;
|
|
|
|
|
|
|
|
|
|
u_box_3d(0, 0, 0, u_minify(templ.width0, i), u_minify(templ.height0, i),
|
|
|
|
|
util_num_layers(&templ, i), &box);
|
|
|
|
|
|
2020-12-03 17:57:45 -05:00
|
|
|
si_resource_copy_region(&sctx->b, &new_tex->buffer.b.b,
|
|
|
|
|
i, 0, 0, 0, &tex->buffer.b.b, i, &box);
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (new_bind_flag == PIPE_BIND_LINEAR) {
|
|
|
|
|
si_texture_discard_cmask(sctx->screen, tex);
|
|
|
|
|
si_texture_discard_dcc(sctx->screen, tex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Replace the structure fields of tex. */
|
|
|
|
|
tex->buffer.b.b.bind = templ.bind;
|
2021-03-23 01:41:57 -04:00
|
|
|
radeon_bo_reference(sctx->screen->ws, &tex->buffer.buf, new_tex->buffer.buf);
|
2020-03-27 19:32:38 +01:00
|
|
|
tex->buffer.gpu_address = new_tex->buffer.gpu_address;
|
|
|
|
|
tex->buffer.bo_size = new_tex->buffer.bo_size;
|
2021-04-22 00:31:28 -04:00
|
|
|
tex->buffer.bo_alignment_log2 = new_tex->buffer.bo_alignment_log2;
|
2020-03-27 19:32:38 +01:00
|
|
|
tex->buffer.domains = new_tex->buffer.domains;
|
|
|
|
|
tex->buffer.flags = new_tex->buffer.flags;
|
|
|
|
|
|
|
|
|
|
tex->surface = new_tex->surface;
|
|
|
|
|
si_texture_reference(&tex->flushed_depth_texture, new_tex->flushed_depth_texture);
|
|
|
|
|
|
|
|
|
|
tex->surface.fmask_offset = new_tex->surface.fmask_offset;
|
|
|
|
|
tex->surface.cmask_offset = new_tex->surface.cmask_offset;
|
|
|
|
|
tex->cmask_base_address_reg = new_tex->cmask_base_address_reg;
|
|
|
|
|
|
|
|
|
|
if (tex->cmask_buffer == &tex->buffer)
|
|
|
|
|
tex->cmask_buffer = NULL;
|
|
|
|
|
else
|
|
|
|
|
si_resource_reference(&tex->cmask_buffer, NULL);
|
|
|
|
|
|
|
|
|
|
if (new_tex->cmask_buffer == &new_tex->buffer)
|
|
|
|
|
tex->cmask_buffer = &tex->buffer;
|
|
|
|
|
else
|
|
|
|
|
si_resource_reference(&tex->cmask_buffer, new_tex->cmask_buffer);
|
|
|
|
|
|
2021-04-12 01:48:02 -04:00
|
|
|
tex->surface.meta_offset = new_tex->surface.meta_offset;
|
2020-03-27 19:32:38 +01:00
|
|
|
tex->cb_color_info = new_tex->cb_color_info;
|
|
|
|
|
memcpy(tex->color_clear_value, new_tex->color_clear_value, sizeof(tex->color_clear_value));
|
|
|
|
|
tex->last_msaa_resolve_target_micro_mode = new_tex->last_msaa_resolve_target_micro_mode;
|
|
|
|
|
|
2021-03-20 19:59:06 -04:00
|
|
|
memcpy(tex->depth_clear_value, new_tex->depth_clear_value, sizeof(tex->depth_clear_value));
|
2020-03-27 19:32:38 +01:00
|
|
|
tex->dirty_level_mask = new_tex->dirty_level_mask;
|
|
|
|
|
tex->stencil_dirty_level_mask = new_tex->stencil_dirty_level_mask;
|
|
|
|
|
tex->db_render_format = new_tex->db_render_format;
|
2021-03-20 19:59:06 -04:00
|
|
|
memcpy(tex->stencil_clear_value, new_tex->stencil_clear_value, sizeof(tex->stencil_clear_value));
|
2020-03-27 19:32:38 +01:00
|
|
|
tex->tc_compatible_htile = new_tex->tc_compatible_htile;
|
2021-05-07 11:48:34 +02:00
|
|
|
tex->depth_cleared_level_mask_once = new_tex->depth_cleared_level_mask_once;
|
2021-10-29 13:22:43 -04:00
|
|
|
tex->stencil_cleared_level_mask_once = new_tex->stencil_cleared_level_mask_once;
|
2020-03-27 19:32:38 +01:00
|
|
|
tex->upgraded_depth = new_tex->upgraded_depth;
|
|
|
|
|
tex->db_compatible = new_tex->db_compatible;
|
|
|
|
|
tex->can_sample_z = new_tex->can_sample_z;
|
|
|
|
|
tex->can_sample_s = new_tex->can_sample_s;
|
|
|
|
|
|
|
|
|
|
tex->displayable_dcc_dirty = new_tex->displayable_dcc_dirty;
|
|
|
|
|
|
|
|
|
|
if (new_bind_flag == PIPE_BIND_LINEAR) {
|
2021-04-12 01:48:02 -04:00
|
|
|
assert(!tex->surface.meta_offset);
|
2020-03-27 19:32:38 +01:00
|
|
|
assert(!tex->cmask_buffer);
|
|
|
|
|
assert(!tex->surface.fmask_size);
|
|
|
|
|
assert(!tex->is_depth);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
si_texture_reference(&new_tex, NULL);
|
|
|
|
|
|
|
|
|
|
p_atomic_inc(&sctx->screen->dirty_tex_counter);
|
2016-05-12 13:33:06 +02:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
static void si_set_tex_bo_metadata(struct si_screen *sscreen, struct si_texture *tex)
|
2017-11-26 03:15:09 +01:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct pipe_resource *res = &tex->buffer.b.b;
|
|
|
|
|
struct radeon_bo_metadata md;
|
|
|
|
|
|
|
|
|
|
memset(&md, 0, sizeof(md));
|
|
|
|
|
|
|
|
|
|
assert(tex->surface.fmask_size == 0);
|
|
|
|
|
|
|
|
|
|
static const unsigned char swizzle[] = {PIPE_SWIZZLE_X, PIPE_SWIZZLE_Y, PIPE_SWIZZLE_Z,
|
|
|
|
|
PIPE_SWIZZLE_W};
|
|
|
|
|
bool is_array = util_texture_is_array(res->target);
|
|
|
|
|
uint32_t desc[8];
|
|
|
|
|
|
2024-09-19 12:09:00 -04:00
|
|
|
si_make_texture_descriptor(sscreen, tex, true, res->target,
|
|
|
|
|
tex->is_depth ? tex->db_render_format : res->format, swizzle, 0,
|
|
|
|
|
res->last_level, 0, is_array ? res->array_size - 1 : 0, res->width0,
|
|
|
|
|
res->height0, res->depth0, true, desc, NULL);
|
2020-03-27 19:32:38 +01:00
|
|
|
si_set_mutable_tex_desc_fields(sscreen, tex, &tex->surface.u.legacy.level[0], 0, 0,
|
2021-01-21 14:23:40 +01:00
|
|
|
tex->surface.blk_w, false, 0, desc);
|
2020-03-27 19:32:38 +01:00
|
|
|
|
2023-03-21 10:54:16 +01:00
|
|
|
ac_surface_compute_umd_metadata(&sscreen->info, &tex->surface,
|
|
|
|
|
tex->buffer.b.b.last_level + 1,
|
2023-03-21 10:46:39 +01:00
|
|
|
desc, &md.size_metadata, md.metadata,
|
2023-03-21 10:46:53 +01:00
|
|
|
sscreen->debug_flags & DBG(EXTRA_METADATA));
|
2021-03-23 18:33:41 -04:00
|
|
|
sscreen->ws->buffer_set_metadata(sscreen->ws, tex->buffer.buf, &md, &tex->surface);
|
2017-11-26 03:15:09 +01:00
|
|
|
}
|
|
|
|
|
|
2020-08-03 03:55:48 +02:00
|
|
|
static bool si_displayable_dcc_needs_explicit_flush(struct si_texture *tex)
|
2019-01-04 19:19:54 -05:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct si_screen *sscreen = (struct si_screen *)tex->buffer.b.b.screen;
|
|
|
|
|
|
2022-05-12 02:50:17 -04:00
|
|
|
if (sscreen->info.gfx_level <= GFX8)
|
2020-03-27 19:32:38 +01:00
|
|
|
return false;
|
|
|
|
|
|
2020-08-03 03:55:48 +02:00
|
|
|
/* With modifiers and > 1 planes any applications will know that they
|
|
|
|
|
* cannot do frontbuffer rendering with the texture. */
|
|
|
|
|
if (ac_surface_get_nplanes(&tex->surface) > 1)
|
|
|
|
|
return false;
|
|
|
|
|
|
2021-04-12 01:48:02 -04:00
|
|
|
return tex->surface.is_displayable && tex->surface.meta_offset;
|
2019-01-04 19:19:54 -05:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
static bool si_resource_get_param(struct pipe_screen *screen, struct pipe_context *context,
|
|
|
|
|
struct pipe_resource *resource, unsigned plane, unsigned layer,
|
2020-09-08 09:00:07 +10:00
|
|
|
unsigned level,
|
2020-03-27 19:32:38 +01:00
|
|
|
enum pipe_resource_param param, unsigned handle_usage,
|
|
|
|
|
uint64_t *value)
|
2019-04-23 14:28:48 -07:00
|
|
|
{
|
2020-03-15 14:47:25 +01:00
|
|
|
while (plane && resource->next && !si_texture_is_aux_plane(resource->next)) {
|
|
|
|
|
--plane;
|
2020-03-27 19:32:38 +01:00
|
|
|
resource = resource->next;
|
2020-03-15 14:47:25 +01:00
|
|
|
}
|
2020-03-27 19:32:38 +01:00
|
|
|
|
|
|
|
|
struct si_screen *sscreen = (struct si_screen *)screen;
|
|
|
|
|
struct si_texture *tex = (struct si_texture *)resource;
|
|
|
|
|
struct winsys_handle whandle;
|
|
|
|
|
|
|
|
|
|
switch (param) {
|
|
|
|
|
case PIPE_RESOURCE_PARAM_NPLANES:
|
2020-03-15 14:47:25 +01:00
|
|
|
if (resource->target == PIPE_BUFFER)
|
|
|
|
|
*value = 1;
|
|
|
|
|
else if (tex->num_planes > 1)
|
|
|
|
|
*value = tex->num_planes;
|
|
|
|
|
else
|
|
|
|
|
*value = ac_surface_get_nplanes(&tex->surface);
|
2020-03-27 19:32:38 +01:00
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case PIPE_RESOURCE_PARAM_STRIDE:
|
|
|
|
|
if (resource->target == PIPE_BUFFER)
|
|
|
|
|
*value = 0;
|
|
|
|
|
else
|
2022-05-12 02:50:17 -04:00
|
|
|
*value = ac_surface_get_plane_stride(sscreen->info.gfx_level,
|
2022-01-07 09:01:27 +01:00
|
|
|
&tex->surface, plane, level);
|
2020-03-27 19:32:38 +01:00
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case PIPE_RESOURCE_PARAM_OFFSET:
|
2022-01-07 09:01:27 +01:00
|
|
|
if (resource->target == PIPE_BUFFER) {
|
2020-03-27 19:32:38 +01:00
|
|
|
*value = 0;
|
2022-01-07 09:01:27 +01:00
|
|
|
} else {
|
2023-10-31 10:13:52 +01:00
|
|
|
uint64_t level_offset = 0;
|
|
|
|
|
if (sscreen->info.gfx_level >= GFX9 && tex->surface.is_linear)
|
|
|
|
|
level_offset = tex->surface.u.gfx9.offset[level];
|
2022-05-12 02:50:17 -04:00
|
|
|
*value = ac_surface_get_plane_offset(sscreen->info.gfx_level,
|
2022-01-07 09:01:27 +01:00
|
|
|
&tex->surface, plane, layer) + level_offset;
|
|
|
|
|
}
|
2020-03-27 19:32:38 +01:00
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case PIPE_RESOURCE_PARAM_MODIFIER:
|
2019-12-17 14:15:56 +01:00
|
|
|
*value = tex->surface.modifier;
|
2020-03-27 19:32:38 +01:00
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case PIPE_RESOURCE_PARAM_HANDLE_TYPE_SHARED:
|
|
|
|
|
case PIPE_RESOURCE_PARAM_HANDLE_TYPE_KMS:
|
|
|
|
|
case PIPE_RESOURCE_PARAM_HANDLE_TYPE_FD:
|
|
|
|
|
memset(&whandle, 0, sizeof(whandle));
|
|
|
|
|
|
|
|
|
|
if (param == PIPE_RESOURCE_PARAM_HANDLE_TYPE_SHARED)
|
|
|
|
|
whandle.type = WINSYS_HANDLE_TYPE_SHARED;
|
|
|
|
|
else if (param == PIPE_RESOURCE_PARAM_HANDLE_TYPE_KMS)
|
|
|
|
|
whandle.type = WINSYS_HANDLE_TYPE_KMS;
|
|
|
|
|
else if (param == PIPE_RESOURCE_PARAM_HANDLE_TYPE_FD)
|
|
|
|
|
whandle.type = WINSYS_HANDLE_TYPE_FD;
|
|
|
|
|
|
|
|
|
|
if (!screen->resource_get_handle(screen, context, resource, &whandle, handle_usage))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
*value = whandle.handle;
|
|
|
|
|
return true;
|
2020-09-08 09:01:19 +10:00
|
|
|
case PIPE_RESOURCE_PARAM_LAYER_STRIDE:
|
|
|
|
|
break;
|
2024-09-14 15:07:15 +08:00
|
|
|
case PIPE_RESOURCE_PARAM_DISJOINT_PLANES:
|
|
|
|
|
if (resource->target == PIPE_BUFFER)
|
|
|
|
|
*value = false;
|
|
|
|
|
else
|
|
|
|
|
*value = tex->num_planes > 1;
|
|
|
|
|
return true;
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
|
|
|
|
return false;
|
2019-08-29 20:45:29 -04:00
|
|
|
}
|
2019-04-23 14:28:48 -07:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
static void si_texture_get_info(struct pipe_screen *screen, struct pipe_resource *resource,
|
|
|
|
|
unsigned *pstride, unsigned *poffset)
|
2019-08-29 20:45:29 -04:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
uint64_t value;
|
|
|
|
|
|
|
|
|
|
if (pstride) {
|
2020-09-08 09:00:07 +10:00
|
|
|
si_resource_get_param(screen, NULL, resource, 0, 0, 0, PIPE_RESOURCE_PARAM_STRIDE, 0, &value);
|
2020-03-27 19:32:38 +01:00
|
|
|
*pstride = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (poffset) {
|
2020-09-08 09:00:07 +10:00
|
|
|
si_resource_get_param(screen, NULL, resource, 0, 0, 0, PIPE_RESOURCE_PARAM_OFFSET, 0, &value);
|
2020-03-27 19:32:38 +01:00
|
|
|
*poffset = value;
|
|
|
|
|
}
|
2019-04-23 14:28:48 -07:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
static bool si_texture_get_handle(struct pipe_screen *screen, struct pipe_context *ctx,
|
|
|
|
|
struct pipe_resource *resource, struct winsys_handle *whandle,
|
|
|
|
|
unsigned usage)
|
2011-02-03 21:10:50 +01:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct si_screen *sscreen = (struct si_screen *)screen;
|
|
|
|
|
struct si_context *sctx;
|
|
|
|
|
struct si_resource *res = si_resource(resource);
|
|
|
|
|
struct si_texture *tex = (struct si_texture *)resource;
|
|
|
|
|
bool update_metadata = false;
|
|
|
|
|
unsigned stride, offset, slice_size;
|
2019-12-17 14:15:56 +01:00
|
|
|
uint64_t modifier = DRM_FORMAT_MOD_INVALID;
|
2020-03-27 19:32:38 +01:00
|
|
|
bool flush = false;
|
|
|
|
|
|
|
|
|
|
ctx = threaded_context_unwrap_sync(ctx);
|
2023-09-30 20:08:23 -04:00
|
|
|
sctx = ctx ? (struct si_context *)ctx : si_get_aux_context(&sscreen->aux_context.general);
|
2020-03-27 19:32:38 +01:00
|
|
|
|
|
|
|
|
if (resource->target != PIPE_BUFFER) {
|
2020-03-15 14:47:25 +01:00
|
|
|
unsigned plane = whandle->plane;
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Individual planes are chained pipe_resource instances. */
|
2020-03-15 14:47:25 +01:00
|
|
|
while (plane && resource->next && !si_texture_is_aux_plane(resource->next)) {
|
2020-03-27 19:32:38 +01:00
|
|
|
resource = resource->next;
|
2020-03-15 14:47:25 +01:00
|
|
|
--plane;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-21 14:23:12 +01:00
|
|
|
res = si_resource(resource);
|
|
|
|
|
tex = (struct si_texture *)resource;
|
2020-03-27 19:32:38 +01:00
|
|
|
|
|
|
|
|
/* This is not supported now, but it might be required for OpenCL
|
|
|
|
|
* interop in the future.
|
|
|
|
|
*/
|
2022-06-14 16:37:20 +02:00
|
|
|
if (resource->nr_samples > 1 || tex->is_depth) {
|
|
|
|
|
if (!ctx)
|
2023-09-30 20:08:23 -04:00
|
|
|
si_put_aux_context_flush(&sscreen->aux_context.general);
|
2020-03-27 19:32:38 +01:00
|
|
|
return false;
|
2022-06-14 16:37:20 +02:00
|
|
|
}
|
2020-03-27 19:32:38 +01:00
|
|
|
|
2022-06-01 10:48:58 +02:00
|
|
|
whandle->size = tex->buffer.bo_size;
|
|
|
|
|
|
2020-03-15 14:47:25 +01:00
|
|
|
if (plane) {
|
2022-06-14 16:37:20 +02:00
|
|
|
if (!ctx)
|
2023-09-30 20:08:23 -04:00
|
|
|
si_put_aux_context_flush(&sscreen->aux_context.general);
|
2022-05-12 02:50:17 -04:00
|
|
|
whandle->offset = ac_surface_get_plane_offset(sscreen->info.gfx_level,
|
2020-03-15 14:47:25 +01:00
|
|
|
&tex->surface, plane, 0);
|
2022-05-12 02:50:17 -04:00
|
|
|
whandle->stride = ac_surface_get_plane_stride(sscreen->info.gfx_level,
|
2022-01-07 09:01:27 +01:00
|
|
|
&tex->surface, plane, 0);
|
2020-03-15 14:47:25 +01:00
|
|
|
whandle->modifier = tex->surface.modifier;
|
|
|
|
|
return sscreen->ws->buffer_get_handle(sscreen->ws, res->buf, whandle);
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Move a suballocated texture into a non-suballocated allocation. */
|
2025-04-10 12:13:31 -04:00
|
|
|
if (sscreen->ws->buffer_is_suballocated(res->buf) ||
|
|
|
|
|
sscreen->ws->buffer_has_vm_always_valid(res->buf) ||
|
|
|
|
|
tex->surface.tile_swizzle) {
|
2020-03-27 19:32:38 +01:00
|
|
|
assert(!res->b.is_shared);
|
|
|
|
|
si_reallocate_texture_inplace(sctx, tex, PIPE_BIND_SHARED, false);
|
|
|
|
|
flush = true;
|
|
|
|
|
assert(res->b.b.bind & PIPE_BIND_SHARED);
|
|
|
|
|
assert(res->flags & RADEON_FLAG_NO_SUBALLOC);
|
|
|
|
|
assert(!(res->flags & RADEON_FLAG_NO_INTERPROCESS_SHARING));
|
|
|
|
|
assert(tex->surface.tile_swizzle == 0);
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-21 11:46:02 +01:00
|
|
|
const bool debug_disable_dcc = sscreen->debug_flags & DBG(NO_EXPORTED_DCC);
|
2025-02-10 12:27:48 +01:00
|
|
|
/* Disable DCC for external clients that might use shader image stores.
|
|
|
|
|
* They don't support DCC on GFX9 and older. GFX10/10.3 is also problematic
|
|
|
|
|
* if the view formats between clients are incompatible or if DCC clear is
|
|
|
|
|
* used.
|
2020-03-27 19:32:38 +01:00
|
|
|
*/
|
2025-02-10 12:27:48 +01:00
|
|
|
const bool shader_write = sscreen->info.gfx_level < GFX11 &&
|
2024-11-21 11:46:02 +01:00
|
|
|
usage & PIPE_HANDLE_USAGE_SHADER_WRITE &&
|
|
|
|
|
!tex->is_depth &&
|
|
|
|
|
tex->surface.meta_offset;
|
|
|
|
|
/* Another reason to disable display dcc is front buffer rendering.
|
|
|
|
|
* This can happens with Xorg. If the ddx driver uses GBM_BO_USE_FRONT_RENDERING,
|
|
|
|
|
* there's nothing to do because the texture is not using DCC.
|
|
|
|
|
* If the flag isn't set, we have to infer it to get correct rendering.
|
|
|
|
|
*/
|
|
|
|
|
const bool front_buffer_rendering = !(usage & PIPE_HANDLE_USAGE_EXPLICIT_FLUSH) &&
|
|
|
|
|
tex->buffer.b.b.bind & PIPE_BIND_SCANOUT;
|
|
|
|
|
|
|
|
|
|
/* If display dcc requires a retiling step, drop dcc. */
|
|
|
|
|
const bool explicit_flush = !(usage & PIPE_HANDLE_USAGE_EXPLICIT_FLUSH) &&
|
|
|
|
|
si_displayable_dcc_needs_explicit_flush(tex);
|
|
|
|
|
|
|
|
|
|
if (debug_disable_dcc || shader_write || front_buffer_rendering || explicit_flush) {
|
|
|
|
|
if (sscreen->info.gfx_level >= GFX12) {
|
|
|
|
|
si_reallocate_texture_inplace(sctx, tex, PIPE_BIND_CONST_BW, false);
|
|
|
|
|
update_metadata = true;
|
|
|
|
|
} else if (si_texture_disable_dcc(sctx, tex)) {
|
2020-03-27 19:32:38 +01:00
|
|
|
update_metadata = true;
|
|
|
|
|
/* si_texture_disable_dcc flushes the context */
|
|
|
|
|
flush = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!(usage & PIPE_HANDLE_USAGE_EXPLICIT_FLUSH) &&
|
2021-04-12 01:48:02 -04:00
|
|
|
(tex->cmask_buffer || (!tex->is_depth && tex->surface.meta_offset))) {
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Eliminate fast clear (both CMASK and DCC) */
|
2020-05-06 21:34:10 +02:00
|
|
|
bool flushed;
|
|
|
|
|
si_eliminate_fast_color_clear(sctx, tex, &flushed);
|
|
|
|
|
/* eliminate_fast_color_clear sometimes flushes the context */
|
2022-06-14 16:37:20 +02:00
|
|
|
flush = !flushed;
|
2020-03-27 19:32:38 +01:00
|
|
|
|
|
|
|
|
/* Disable CMASK if flush_resource isn't going
|
|
|
|
|
* to be called.
|
|
|
|
|
*/
|
|
|
|
|
if (tex->cmask_buffer)
|
|
|
|
|
si_texture_discard_cmask(sscreen, tex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set metadata. */
|
|
|
|
|
if ((!res->b.is_shared || update_metadata) && whandle->offset == 0)
|
|
|
|
|
si_set_tex_bo_metadata(sscreen, tex);
|
|
|
|
|
|
2022-05-12 02:50:17 -04:00
|
|
|
if (sscreen->info.gfx_level >= GFX9) {
|
2020-03-27 19:32:38 +01:00
|
|
|
slice_size = tex->surface.u.gfx9.surf_slice_size;
|
|
|
|
|
} else {
|
|
|
|
|
slice_size = (uint64_t)tex->surface.u.legacy.level[0].slice_size_dw * 4;
|
|
|
|
|
}
|
2019-12-17 14:15:56 +01:00
|
|
|
|
|
|
|
|
modifier = tex->surface.modifier;
|
2020-03-27 19:32:38 +01:00
|
|
|
} else {
|
2021-10-17 17:17:14 -04:00
|
|
|
tc_buffer_disable_cpu_storage(&res->b.b);
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Buffer exports are for the OpenCL interop. */
|
|
|
|
|
/* Move a suballocated buffer into a non-suballocated allocation. */
|
|
|
|
|
if (sscreen->ws->buffer_is_suballocated(res->buf) ||
|
2025-04-10 12:13:31 -04:00
|
|
|
sscreen->ws->buffer_has_vm_always_valid(res->buf)) {
|
2020-03-27 19:32:38 +01:00
|
|
|
assert(!res->b.is_shared);
|
|
|
|
|
|
|
|
|
|
/* Allocate a new buffer with PIPE_BIND_SHARED. */
|
2025-01-07 20:59:35 -05:00
|
|
|
if (!si_reallocate_buffer_change_flags(sctx, &res->b.b, res->b.b.usage,
|
|
|
|
|
res->b.b.bind | PIPE_BIND_SHARED)) {
|
2022-06-14 16:37:20 +02:00
|
|
|
if (!ctx)
|
2023-09-30 20:08:23 -04:00
|
|
|
si_put_aux_context_flush(&sscreen->aux_context.general);
|
2020-03-27 19:32:38 +01:00
|
|
|
return false;
|
2022-06-14 16:37:20 +02:00
|
|
|
}
|
2020-03-27 19:32:38 +01:00
|
|
|
|
|
|
|
|
flush = true;
|
|
|
|
|
assert(res->b.b.bind & PIPE_BIND_SHARED);
|
|
|
|
|
assert(res->flags & RADEON_FLAG_NO_SUBALLOC);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Buffers */
|
|
|
|
|
slice_size = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
si_texture_get_info(screen, resource, &stride, &offset);
|
|
|
|
|
|
|
|
|
|
if (res->b.is_shared) {
|
|
|
|
|
/* USAGE_EXPLICIT_FLUSH must be cleared if at least one user
|
|
|
|
|
* doesn't set it.
|
|
|
|
|
*/
|
|
|
|
|
res->external_usage |= usage & ~PIPE_HANDLE_USAGE_EXPLICIT_FLUSH;
|
|
|
|
|
if (!(usage & PIPE_HANDLE_USAGE_EXPLICIT_FLUSH))
|
|
|
|
|
res->external_usage &= ~PIPE_HANDLE_USAGE_EXPLICIT_FLUSH;
|
|
|
|
|
} else {
|
|
|
|
|
res->b.is_shared = true;
|
|
|
|
|
res->external_usage = usage;
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-14 16:37:20 +02:00
|
|
|
if (flush && ctx)
|
2020-07-10 22:27:12 +02:00
|
|
|
sctx->b.flush(&sctx->b, NULL, 0);
|
2022-06-14 16:37:20 +02:00
|
|
|
if (!ctx)
|
2023-09-30 20:08:23 -04:00
|
|
|
si_put_aux_context_flush(&sscreen->aux_context.general);
|
2020-07-10 22:27:12 +02:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
whandle->stride = stride;
|
|
|
|
|
whandle->offset = offset + slice_size * whandle->layer;
|
2019-12-17 14:15:56 +01:00
|
|
|
whandle->modifier = modifier;
|
2020-03-27 19:32:38 +01:00
|
|
|
|
|
|
|
|
return sscreen->ws->buffer_get_handle(sscreen->ws, res->buf, whandle);
|
2011-02-03 21:10:50 +01:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
void si_print_texture_info(struct si_screen *sscreen, struct si_texture *tex,
|
|
|
|
|
struct u_log_context *log)
|
2015-12-02 20:20:57 +01:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
int i;
|
2020-07-21 18:56:16 +02:00
|
|
|
FILE *f;
|
|
|
|
|
char *surf_info = NULL;
|
|
|
|
|
size_t surf_info_size;
|
2020-03-27 19:32:38 +01:00
|
|
|
|
|
|
|
|
/* Common parameters. */
|
|
|
|
|
u_log_printf(log,
|
2020-07-21 18:56:16 +02:00
|
|
|
" Info: npix_x=%u, npix_y=%u, npix_z=%u, "
|
|
|
|
|
"array_size=%u, last_level=%u, nsamples=%u",
|
|
|
|
|
tex->buffer.b.b.width0, tex->buffer.b.b.height0,
|
|
|
|
|
tex->buffer.b.b.depth0, tex->buffer.b.b.array_size,
|
|
|
|
|
tex->buffer.b.b.last_level, tex->buffer.b.b.nr_samples);
|
2020-03-27 19:32:38 +01:00
|
|
|
|
2021-04-12 01:48:02 -04:00
|
|
|
if (tex->is_depth && tex->surface.meta_offset)
|
2020-07-21 18:56:16 +02:00
|
|
|
u_log_printf(log, ", tc_compatible_htile=%u", tex->tc_compatible_htile);
|
2020-03-27 19:32:38 +01:00
|
|
|
|
2020-07-21 18:56:16 +02:00
|
|
|
u_log_printf(log, ", %s\n",
|
|
|
|
|
util_format_short_name(tex->buffer.b.b.format));
|
2020-03-27 19:32:38 +01:00
|
|
|
|
2020-07-21 18:56:16 +02:00
|
|
|
f = open_memstream(&surf_info, &surf_info_size);
|
|
|
|
|
if (!f)
|
|
|
|
|
return;
|
|
|
|
|
ac_surface_print_info(f, &sscreen->info, &tex->surface);
|
|
|
|
|
fclose(f);
|
|
|
|
|
u_log_printf(log, "%s", surf_info);
|
|
|
|
|
free(surf_info);
|
2020-03-27 19:32:38 +01:00
|
|
|
|
2022-05-12 02:50:17 -04:00
|
|
|
if (sscreen->info.gfx_level >= GFX9) {
|
2020-03-27 19:32:38 +01:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-12 01:48:02 -04:00
|
|
|
if (!tex->is_depth && tex->surface.meta_offset) {
|
2020-03-27 19:32:38 +01:00
|
|
|
for (i = 0; i <= tex->buffer.b.b.last_level; i++)
|
|
|
|
|
u_log_printf(log,
|
2020-07-21 18:56:16 +02:00
|
|
|
" DCCLevel[%i]: enabled=%u, offset=%u, "
|
2020-03-27 19:32:38 +01:00
|
|
|
"fast_clear_size=%u\n",
|
2021-04-12 01:54:07 -04:00
|
|
|
i, i < tex->surface.num_meta_levels, tex->surface.u.legacy.color.dcc_level[i].dcc_offset,
|
|
|
|
|
tex->surface.u.legacy.color.dcc_level[i].dcc_fast_clear_size);
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; i <= tex->buffer.b.b.last_level; i++)
|
|
|
|
|
u_log_printf(log,
|
2020-07-21 18:56:16 +02:00
|
|
|
" Level[%i]: offset=%" PRIu64 ", slice_size=%" PRIu64 ", "
|
2020-03-27 19:32:38 +01:00
|
|
|
"npix_x=%u, npix_y=%u, npix_z=%u, nblk_x=%u, nblk_y=%u, "
|
|
|
|
|
"mode=%u, tiling_index = %u\n",
|
2021-04-02 13:33:38 -04:00
|
|
|
i, (uint64_t)tex->surface.u.legacy.level[i].offset_256B * 256,
|
2020-03-27 19:32:38 +01:00
|
|
|
(uint64_t)tex->surface.u.legacy.level[i].slice_size_dw * 4,
|
|
|
|
|
u_minify(tex->buffer.b.b.width0, i), u_minify(tex->buffer.b.b.height0, i),
|
|
|
|
|
u_minify(tex->buffer.b.b.depth0, i), tex->surface.u.legacy.level[i].nblk_x,
|
|
|
|
|
tex->surface.u.legacy.level[i].nblk_y, tex->surface.u.legacy.level[i].mode,
|
|
|
|
|
tex->surface.u.legacy.tiling_index[i]);
|
|
|
|
|
|
|
|
|
|
if (tex->surface.has_stencil) {
|
|
|
|
|
for (i = 0; i <= tex->buffer.b.b.last_level; i++) {
|
|
|
|
|
u_log_printf(log,
|
2020-07-21 18:56:16 +02:00
|
|
|
" StencilLevel[%i]: offset=%" PRIu64 ", "
|
2020-03-27 19:32:38 +01:00
|
|
|
"slice_size=%" PRIu64 ", npix_x=%u, "
|
|
|
|
|
"npix_y=%u, npix_z=%u, nblk_x=%u, nblk_y=%u, "
|
|
|
|
|
"mode=%u, tiling_index = %u\n",
|
2021-04-12 01:54:07 -04:00
|
|
|
i, (uint64_t)tex->surface.u.legacy.zs.stencil_level[i].offset_256B * 256,
|
|
|
|
|
(uint64_t)tex->surface.u.legacy.zs.stencil_level[i].slice_size_dw * 4,
|
2020-03-27 19:32:38 +01:00
|
|
|
u_minify(tex->buffer.b.b.width0, i), u_minify(tex->buffer.b.b.height0, i),
|
|
|
|
|
u_minify(tex->buffer.b.b.depth0, i),
|
2021-04-12 01:54:07 -04:00
|
|
|
tex->surface.u.legacy.zs.stencil_level[i].nblk_x,
|
|
|
|
|
tex->surface.u.legacy.zs.stencil_level[i].nblk_y,
|
|
|
|
|
tex->surface.u.legacy.zs.stencil_level[i].mode,
|
|
|
|
|
tex->surface.u.legacy.zs.stencil_tiling_index[i]);
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
|
|
|
|
}
|
2015-12-02 20:20:57 +01:00
|
|
|
}
|
|
|
|
|
|
2024-06-17 13:04:53 +02:00
|
|
|
static void print_debug_tex(struct si_screen *sscreen, struct si_texture *tex)
|
|
|
|
|
{
|
|
|
|
|
if (sscreen->debug_flags & DBG(TEX)) {
|
|
|
|
|
puts("Texture:");
|
|
|
|
|
struct u_log_context log;
|
|
|
|
|
u_log_context_init(&log);
|
|
|
|
|
si_print_texture_info(sscreen, tex, &log);
|
|
|
|
|
u_log_new_page_print(&log, stdout);
|
|
|
|
|
fflush(stdout);
|
|
|
|
|
u_log_context_destroy(&log);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-27 21:18:57 -04:00
|
|
|
/**
|
|
|
|
|
* Common function for si_texture_create and si_texture_from_handle.
|
|
|
|
|
*
|
2022-07-13 08:49:52 +05:30
|
|
|
* \param screen screen
|
|
|
|
|
* \param base resource template
|
|
|
|
|
* \param surface radeon_surf
|
|
|
|
|
* \param plane0 if a non-zero plane is being created, this is the first plane
|
|
|
|
|
* \param imported_buf from si_texture_from_handle
|
|
|
|
|
* \param offset offset for non-zero planes or imported buffers
|
|
|
|
|
* \param alloc_size the size to allocate if plane0 != NULL
|
|
|
|
|
* \param alignment alignment for the allocation
|
2019-08-27 21:18:57 -04:00
|
|
|
*/
|
2020-03-27 19:32:38 +01:00
|
|
|
static struct si_texture *si_texture_create_object(struct pipe_screen *screen,
|
|
|
|
|
const struct pipe_resource *base,
|
|
|
|
|
const struct radeon_surf *surface,
|
|
|
|
|
const struct si_texture *plane0,
|
2023-12-09 17:07:14 -05:00
|
|
|
struct pb_buffer_lean *imported_buf,
|
2020-05-04 07:43:44 -04:00
|
|
|
uint64_t offset, unsigned pitch_in_bytes,
|
2020-05-02 16:01:44 -04:00
|
|
|
uint64_t alloc_size, unsigned alignment)
|
2010-05-08 21:09:24 +01:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct si_texture *tex;
|
|
|
|
|
struct si_resource *resource;
|
|
|
|
|
struct si_screen *sscreen = (struct si_screen *)screen;
|
|
|
|
|
|
2021-03-02 23:36:20 -05:00
|
|
|
if (!sscreen->info.has_3d_cube_border_color_mipmap &&
|
|
|
|
|
(base->last_level > 0 ||
|
|
|
|
|
base->target == PIPE_TEXTURE_3D ||
|
|
|
|
|
base->target == PIPE_TEXTURE_CUBE)) {
|
|
|
|
|
assert(0);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-27 17:57:56 -04:00
|
|
|
tex = CALLOC_STRUCT_CL(si_texture);
|
2020-03-27 19:32:38 +01:00
|
|
|
if (!tex)
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
resource = &tex->buffer;
|
|
|
|
|
resource->b.b = *base;
|
|
|
|
|
pipe_reference_init(&resource->b.b.reference, 1);
|
|
|
|
|
resource->b.b.screen = screen;
|
|
|
|
|
|
|
|
|
|
/* don't include stencil-only formats which we don't support for rendering */
|
|
|
|
|
tex->is_depth = util_format_has_depth(util_format_description(tex->buffer.b.b.format));
|
|
|
|
|
tex->surface = *surface;
|
2020-05-19 19:30:54 -04:00
|
|
|
|
2023-04-30 00:53:33 -04:00
|
|
|
if (!ac_surface_override_offset_stride(&sscreen->info, &tex->surface,
|
2023-05-15 01:29:44 -04:00
|
|
|
tex->buffer.b.b.array_size,
|
2023-04-30 00:53:33 -04:00
|
|
|
tex->buffer.b.b.last_level + 1,
|
|
|
|
|
offset, pitch_in_bytes / tex->surface.bpe))
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
if (plane0) {
|
|
|
|
|
/* The buffer is shared with the first plane. */
|
|
|
|
|
resource->bo_size = plane0->buffer.bo_size;
|
|
|
|
|
resource->bo_alignment_log2 = plane0->buffer.bo_alignment_log2;
|
|
|
|
|
resource->flags = plane0->buffer.flags;
|
|
|
|
|
resource->domains = plane0->buffer.domains;
|
|
|
|
|
|
|
|
|
|
radeon_bo_reference(sscreen->ws, &resource->buf, plane0->buffer.buf);
|
|
|
|
|
resource->gpu_address = plane0->buffer.gpu_address;
|
|
|
|
|
} else if (!(surface->flags & RADEON_SURF_IMPORTED)) {
|
|
|
|
|
if (base->flags & PIPE_RESOURCE_FLAG_SPARSE)
|
|
|
|
|
resource->b.b.flags |= PIPE_RESOURCE_FLAG_UNMAPPABLE;
|
|
|
|
|
if (base->bind & PIPE_BIND_PRIME_BLIT_DST)
|
|
|
|
|
resource->b.b.flags |= SI_RESOURCE_FLAG_GL2_BYPASS;
|
|
|
|
|
|
|
|
|
|
/* Create the backing buffer. */
|
|
|
|
|
si_init_resource_fields(sscreen, resource, alloc_size, alignment);
|
|
|
|
|
|
2024-05-31 22:36:03 -04:00
|
|
|
/* GFX12: Image descriptors always set COMPRESSION_EN=1, so this is the only thing that
|
|
|
|
|
* disables DCC in the driver.
|
|
|
|
|
*/
|
|
|
|
|
if (sscreen->info.gfx_level >= GFX12 &&
|
|
|
|
|
resource->domains & RADEON_DOMAIN_VRAM &&
|
|
|
|
|
surface->u.gfx9.gfx12_enable_dcc)
|
|
|
|
|
resource->flags |= RADEON_FLAG_GFX12_ALLOW_DCC;
|
|
|
|
|
|
2023-04-30 00:53:33 -04:00
|
|
|
if (!si_alloc_resource(sscreen, resource))
|
|
|
|
|
goto error;
|
|
|
|
|
} else {
|
|
|
|
|
resource->buf = imported_buf;
|
|
|
|
|
resource->gpu_address = sscreen->ws->buffer_get_virtual_address(resource->buf);
|
2023-12-09 17:07:14 -05:00
|
|
|
resource->bo_size = imported_buf->size;
|
|
|
|
|
resource->bo_alignment_log2 = imported_buf->alignment_log2;
|
2023-04-30 00:53:33 -04:00
|
|
|
resource->domains = sscreen->ws->buffer_get_initial_domain(resource->buf);
|
|
|
|
|
if (sscreen->ws->buffer_get_flags)
|
|
|
|
|
resource->flags = sscreen->ws->buffer_get_flags(resource->buf);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sscreen->debug_flags & DBG(VM)) {
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"VM start=0x%" PRIX64 " end=0x%" PRIX64
|
|
|
|
|
" | Texture %ix%ix%i, %i levels, %i samples, %s | Flags: ",
|
2023-12-09 17:07:14 -05:00
|
|
|
tex->buffer.gpu_address, tex->buffer.gpu_address + tex->buffer.buf->size,
|
2023-04-30 00:53:33 -04:00
|
|
|
base->width0, base->height0, util_num_layers(base, 0), base->last_level + 1,
|
|
|
|
|
base->nr_samples ? base->nr_samples : 1, util_format_short_name(base->format));
|
|
|
|
|
si_res_print_flags(tex->buffer.flags);
|
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-04 05:16:49 -05:00
|
|
|
if (sscreen->info.gfx_level >= GFX12) {
|
2024-06-17 13:04:53 +02:00
|
|
|
print_debug_tex(sscreen, tex);
|
2024-03-04 05:16:49 -05:00
|
|
|
if (tex->is_depth) {
|
|
|
|
|
/* Z24 is no longer supported. We should use Z32_FLOAT instead. */
|
|
|
|
|
if (base->format == PIPE_FORMAT_Z16_UNORM) {
|
|
|
|
|
tex->db_render_format = base->format;
|
|
|
|
|
} else {
|
|
|
|
|
tex->db_render_format = PIPE_FORMAT_Z32_FLOAT;
|
|
|
|
|
tex->upgraded_depth = base->format != PIPE_FORMAT_Z32_FLOAT &&
|
|
|
|
|
base->format != PIPE_FORMAT_Z32_FLOAT_S8X24_UINT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tex->db_compatible = true;
|
|
|
|
|
tex->can_sample_z = true;
|
|
|
|
|
tex->can_sample_s = true;
|
|
|
|
|
}
|
2024-07-02 09:42:11 -04:00
|
|
|
|
|
|
|
|
/* Always set BO metadata - required for programming DCC fields for GFX12 SDMA in the kernel.
|
|
|
|
|
* If the texture is suballocated, this will overwrite the metadata for all suballocations,
|
|
|
|
|
* but there is nothing we can do about that.
|
2025-07-04 18:57:44 -04:00
|
|
|
*
|
|
|
|
|
* Sparse textures don't have any backing storage at this point.
|
2024-07-02 09:42:11 -04:00
|
|
|
*/
|
2025-07-04 18:57:44 -04:00
|
|
|
if (!(base->flags & PIPE_RESOURCE_FLAG_SPARSE))
|
|
|
|
|
si_set_tex_bo_metadata(sscreen, tex);
|
2024-03-04 05:16:49 -05:00
|
|
|
return tex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Everything below is for GFX6-11. */
|
|
|
|
|
|
2021-03-20 00:59:50 -04:00
|
|
|
/* Use 1.0 as the default clear value to get optimal ZRANGE_PRECISION if we don't
|
|
|
|
|
* get a fast clear.
|
|
|
|
|
*/
|
2021-03-20 19:59:06 -04:00
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(tex->depth_clear_value); i++)
|
|
|
|
|
tex->depth_clear_value[i] = 1.0;
|
2021-03-20 00:59:50 -04:00
|
|
|
|
2024-10-30 10:41:47 -04:00
|
|
|
if (tex->surface.flags & RADEON_SURF_TC_COMPATIBLE_HTILE) {
|
2025-01-03 23:48:45 -05:00
|
|
|
assert(sscreen->info.gfx_level < GFX12);
|
|
|
|
|
|
2024-10-30 10:41:47 -04:00
|
|
|
/* On GFX8, HTILE uses different tiling depending on the TC_COMPATIBLE_HTILE
|
|
|
|
|
* setting, so we have to enable it if we enabled it at allocation.
|
|
|
|
|
*
|
2025-01-03 23:48:45 -05:00
|
|
|
* GFX9+ and later use the same tiling for both, so TC-compatible HTILE can be
|
2024-10-30 10:41:47 -04:00
|
|
|
* enabled on demand.
|
|
|
|
|
*/
|
|
|
|
|
tex->tc_compatible_htile = sscreen->info.gfx_level == GFX8 ||
|
|
|
|
|
/* Mipmapping always starts TC-compatible. */
|
|
|
|
|
(sscreen->info.gfx_level >= GFX9 &&
|
|
|
|
|
tex->buffer.b.b.last_level > 0);
|
|
|
|
|
}
|
2020-03-27 19:32:38 +01:00
|
|
|
|
2024-06-17 13:04:53 +02:00
|
|
|
print_debug_tex(sscreen, tex);
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* TC-compatible HTILE:
|
|
|
|
|
* - GFX8 only supports Z32_FLOAT.
|
|
|
|
|
* - GFX9 only supports Z32_FLOAT and Z16_UNORM. */
|
2020-05-02 17:58:15 -04:00
|
|
|
if (tex->surface.flags & RADEON_SURF_TC_COMPATIBLE_HTILE) {
|
2022-05-12 02:50:17 -04:00
|
|
|
if (sscreen->info.gfx_level >= GFX9 && base->format == PIPE_FORMAT_Z16_UNORM)
|
2020-03-27 19:32:38 +01:00
|
|
|
tex->db_render_format = base->format;
|
|
|
|
|
else {
|
|
|
|
|
tex->db_render_format = PIPE_FORMAT_Z32_FLOAT;
|
|
|
|
|
tex->upgraded_depth = base->format != PIPE_FORMAT_Z32_FLOAT &&
|
|
|
|
|
base->format != PIPE_FORMAT_Z32_FLOAT_S8X24_UINT;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
tex->db_render_format = base->format;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Applies to GCN. */
|
|
|
|
|
tex->last_msaa_resolve_target_micro_mode = tex->surface.micro_tile_mode;
|
|
|
|
|
|
|
|
|
|
if (tex->is_depth) {
|
2021-03-21 00:17:44 -04:00
|
|
|
tex->htile_stencil_disabled = !tex->surface.has_stencil;
|
|
|
|
|
|
2022-05-12 02:50:17 -04:00
|
|
|
if (sscreen->info.gfx_level >= GFX9) {
|
2020-03-27 19:32:38 +01:00
|
|
|
tex->can_sample_z = true;
|
|
|
|
|
tex->can_sample_s = true;
|
|
|
|
|
|
|
|
|
|
/* Stencil texturing with HTILE doesn't work
|
|
|
|
|
* with mipmapping on Navi10-14. */
|
2022-05-12 02:50:17 -04:00
|
|
|
if (sscreen->info.gfx_level == GFX10 && base->last_level > 0)
|
2020-03-27 19:32:38 +01:00
|
|
|
tex->htile_stencil_disabled = true;
|
|
|
|
|
} else {
|
|
|
|
|
tex->can_sample_z = !tex->surface.u.legacy.depth_adjusted;
|
|
|
|
|
tex->can_sample_s = !tex->surface.u.legacy.stencil_adjusted;
|
2021-03-21 00:17:44 -04:00
|
|
|
|
|
|
|
|
/* GFX8 must keep stencil enabled because it can't use Z-only TC-compatible
|
|
|
|
|
* HTILE because of a hw bug. This has only a small effect on performance
|
|
|
|
|
* because we lose a little bit of Z precision in order to make space for
|
|
|
|
|
* stencil in HTILE.
|
|
|
|
|
*/
|
2022-05-12 02:50:17 -04:00
|
|
|
if (sscreen->info.gfx_level == GFX8 &&
|
2021-03-21 00:17:44 -04:00
|
|
|
tex->surface.flags & RADEON_SURF_TC_COMPATIBLE_HTILE)
|
|
|
|
|
tex->htile_stencil_disabled = false;
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tex->db_compatible = surface->flags & RADEON_SURF_ZBUFFER;
|
|
|
|
|
} else {
|
|
|
|
|
if (tex->surface.cmask_offset) {
|
2022-05-12 02:50:17 -04:00
|
|
|
assert(sscreen->info.gfx_level < GFX11);
|
2020-03-27 19:32:38 +01:00
|
|
|
tex->cb_color_info |= S_028C70_FAST_CLEAR(1);
|
|
|
|
|
tex->cmask_buffer = &tex->buffer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-20 00:10:57 -04:00
|
|
|
/* Prepare metadata clears. */
|
|
|
|
|
struct si_clear_info clears[4];
|
|
|
|
|
unsigned num_clears = 0;
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
if (tex->cmask_buffer) {
|
|
|
|
|
/* Initialize the cmask to 0xCC (= compressed state). */
|
2021-03-20 00:10:57 -04:00
|
|
|
assert(num_clears < ARRAY_SIZE(clears));
|
|
|
|
|
si_init_buffer_clear(&clears[num_clears++], &tex->cmask_buffer->b.b,
|
|
|
|
|
tex->surface.cmask_offset, tex->surface.cmask_size,
|
|
|
|
|
0xCCCCCCCC);
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
2021-04-12 01:48:02 -04:00
|
|
|
if (tex->is_depth && tex->surface.meta_offset) {
|
2020-03-27 19:32:38 +01:00
|
|
|
uint32_t clear_value = 0;
|
|
|
|
|
|
2022-05-12 02:50:17 -04:00
|
|
|
if (sscreen->info.gfx_level >= GFX9 || tex->tc_compatible_htile)
|
2020-03-27 19:32:38 +01:00
|
|
|
clear_value = 0x0000030F;
|
|
|
|
|
|
2021-03-20 00:10:57 -04:00
|
|
|
assert(num_clears < ARRAY_SIZE(clears));
|
2021-04-12 01:48:02 -04:00
|
|
|
si_init_buffer_clear(&clears[num_clears++], &tex->buffer.b.b, tex->surface.meta_offset,
|
|
|
|
|
tex->surface.meta_size, clear_value);
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Initialize DCC only if the texture is not being imported. */
|
2021-04-12 01:48:02 -04:00
|
|
|
if (!(surface->flags & RADEON_SURF_IMPORTED) && !tex->is_depth && tex->surface.meta_offset) {
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Clear DCC to black for all tiles with DCC enabled.
|
|
|
|
|
*
|
|
|
|
|
* This fixes corruption in 3DMark Slingshot Extreme, which
|
|
|
|
|
* uses uninitialized textures, causing corruption.
|
|
|
|
|
*/
|
2021-04-12 01:48:02 -04:00
|
|
|
if (tex->surface.num_meta_levels == tex->buffer.b.b.last_level + 1 &&
|
2020-03-27 19:32:38 +01:00
|
|
|
tex->buffer.b.b.nr_samples <= 2) {
|
|
|
|
|
/* Simple case - all tiles have DCC enabled. */
|
2021-03-20 00:10:57 -04:00
|
|
|
assert(num_clears < ARRAY_SIZE(clears));
|
2021-04-12 01:48:02 -04:00
|
|
|
si_init_buffer_clear(&clears[num_clears++], &tex->buffer.b.b, tex->surface.meta_offset,
|
2021-05-06 21:03:54 -04:00
|
|
|
tex->surface.meta_size, DCC_CLEAR_0000);
|
2022-05-12 02:50:17 -04:00
|
|
|
} else if (sscreen->info.gfx_level >= GFX9) {
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Clear to uncompressed. Clearing this to black is complicated. */
|
2021-03-20 00:10:57 -04:00
|
|
|
assert(num_clears < ARRAY_SIZE(clears));
|
2021-04-12 01:48:02 -04:00
|
|
|
si_init_buffer_clear(&clears[num_clears++], &tex->buffer.b.b, tex->surface.meta_offset,
|
|
|
|
|
tex->surface.meta_size, DCC_UNCOMPRESSED);
|
2020-03-27 19:32:38 +01:00
|
|
|
} else {
|
|
|
|
|
/* GFX8: Initialize mipmap levels and multisamples separately. */
|
|
|
|
|
if (tex->buffer.b.b.nr_samples >= 2) {
|
|
|
|
|
/* Clearing this to black is complicated. */
|
2021-03-20 00:10:57 -04:00
|
|
|
assert(num_clears < ARRAY_SIZE(clears));
|
2021-04-12 01:48:02 -04:00
|
|
|
si_init_buffer_clear(&clears[num_clears++], &tex->buffer.b.b, tex->surface.meta_offset,
|
|
|
|
|
tex->surface.meta_size, DCC_UNCOMPRESSED);
|
2020-03-27 19:32:38 +01:00
|
|
|
} else {
|
|
|
|
|
/* Clear the enabled mipmap levels to black. */
|
|
|
|
|
unsigned size = 0;
|
|
|
|
|
|
2021-04-12 01:48:02 -04:00
|
|
|
for (unsigned i = 0; i < tex->surface.num_meta_levels; i++) {
|
2021-04-12 01:54:07 -04:00
|
|
|
if (!tex->surface.u.legacy.color.dcc_level[i].dcc_fast_clear_size)
|
2020-03-27 19:32:38 +01:00
|
|
|
break;
|
|
|
|
|
|
2021-04-12 01:54:07 -04:00
|
|
|
size = tex->surface.u.legacy.color.dcc_level[i].dcc_offset +
|
|
|
|
|
tex->surface.u.legacy.color.dcc_level[i].dcc_fast_clear_size;
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Mipmap levels with DCC. */
|
|
|
|
|
if (size) {
|
2021-03-20 00:10:57 -04:00
|
|
|
assert(num_clears < ARRAY_SIZE(clears));
|
2021-04-12 01:48:02 -04:00
|
|
|
si_init_buffer_clear(&clears[num_clears++], &tex->buffer.b.b, tex->surface.meta_offset, size,
|
2021-05-06 21:03:54 -04:00
|
|
|
DCC_CLEAR_0000);
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
|
|
|
|
/* Mipmap levels without DCC. */
|
2021-04-12 01:48:02 -04:00
|
|
|
if (size != tex->surface.meta_size) {
|
2021-03-20 00:10:57 -04:00
|
|
|
assert(num_clears < ARRAY_SIZE(clears));
|
2021-04-12 01:48:02 -04:00
|
|
|
si_init_buffer_clear(&clears[num_clears++], &tex->buffer.b.b, tex->surface.meta_offset + size,
|
|
|
|
|
tex->surface.meta_size - size, DCC_UNCOMPRESSED);
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-07-30 17:14:38 +02:00
|
|
|
}
|
2020-03-27 19:32:38 +01:00
|
|
|
|
2020-07-30 17:14:38 +02:00
|
|
|
/* Initialize displayable DCC that requires the retile blit. */
|
2021-03-22 19:43:53 -04:00
|
|
|
if (tex->surface.display_dcc_offset && !(surface->flags & RADEON_SURF_IMPORTED)) {
|
|
|
|
|
/* Uninitialized DCC can hang the display hw.
|
|
|
|
|
* Clear to white to indicate that. */
|
|
|
|
|
assert(num_clears < ARRAY_SIZE(clears));
|
|
|
|
|
si_init_buffer_clear(&clears[num_clears++], &tex->buffer.b.b, tex->surface.display_dcc_offset,
|
2021-05-06 21:03:54 -04:00
|
|
|
tex->surface.u.gfx9.color.display_dcc_size,
|
2022-05-12 02:50:17 -04:00
|
|
|
sscreen->info.gfx_level >= GFX11 ? GFX11_DCC_CLEAR_1111_UNORM
|
2021-05-06 21:03:54 -04:00
|
|
|
: GFX8_DCC_CLEAR_1111);
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
|
|
|
|
|
2021-03-20 00:10:57 -04:00
|
|
|
/* Execute the clears. */
|
|
|
|
|
if (num_clears) {
|
2025-02-18 14:45:04 +01:00
|
|
|
struct si_aux_context *auxctx = tex->buffer.flags & RADEON_FLAG_ENCRYPTED ?
|
|
|
|
|
&sscreen->aux_context.general : &sscreen->aux_context.compute_resource_init;
|
|
|
|
|
struct si_context *sctx = si_get_aux_context(auxctx);
|
2024-09-15 10:22:29 -04:00
|
|
|
|
|
|
|
|
si_execute_clears(sctx, clears, num_clears, false);
|
2025-02-18 14:45:04 +01:00
|
|
|
si_put_aux_context_flush(auxctx);
|
2021-03-20 00:10:57 -04:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Initialize the CMASK base register value. */
|
|
|
|
|
tex->cmask_base_address_reg = (tex->buffer.gpu_address + tex->surface.cmask_offset) >> 8;
|
|
|
|
|
|
|
|
|
|
return tex;
|
2019-01-04 19:30:48 -05:00
|
|
|
|
|
|
|
|
error:
|
2021-06-27 17:57:56 -04:00
|
|
|
FREE_CL(tex);
|
2020-03-27 19:32:38 +01:00
|
|
|
return NULL;
|
2010-10-12 10:51:03 +10:00
|
|
|
}
|
|
|
|
|
|
2025-07-28 14:16:02 +02:00
|
|
|
static enum pipe_format
|
|
|
|
|
si_get_plane_format(enum pipe_format format, unsigned plane)
|
|
|
|
|
{
|
|
|
|
|
enum pipe_format fmt = util_format_get_plane_format(format, plane);
|
|
|
|
|
|
|
|
|
|
switch (fmt) {
|
|
|
|
|
case PIPE_FORMAT_X6R10_UNORM:
|
|
|
|
|
case PIPE_FORMAT_X4R12_UNORM:
|
|
|
|
|
return PIPE_FORMAT_R16_UNORM;
|
|
|
|
|
case PIPE_FORMAT_X6R10X6G10_UNORM:
|
|
|
|
|
case PIPE_FORMAT_X4R12X4G12_UNORM:
|
|
|
|
|
return PIPE_FORMAT_R16G16_UNORM;
|
|
|
|
|
default:
|
|
|
|
|
return fmt;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
static enum radeon_surf_mode si_choose_tiling(struct si_screen *sscreen,
|
|
|
|
|
const struct pipe_resource *templ,
|
|
|
|
|
bool tc_compatible_htile)
|
2010-10-12 10:51:03 +10:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
const struct util_format_description *desc = util_format_description(templ->format);
|
|
|
|
|
bool is_depth_stencil = util_format_is_depth_or_stencil(templ->format) &&
|
|
|
|
|
!(templ->flags & SI_RESOURCE_FLAG_FLUSHED_DEPTH);
|
|
|
|
|
|
|
|
|
|
/* MSAA resources must be 2D tiled. */
|
|
|
|
|
if (templ->nr_samples > 1)
|
|
|
|
|
return RADEON_SURF_MODE_2D;
|
|
|
|
|
|
|
|
|
|
/* Transfer resources should be linear. */
|
2020-05-07 13:18:25 -04:00
|
|
|
if (templ->flags & SI_RESOURCE_FLAG_FORCE_LINEAR)
|
2020-03-27 19:32:38 +01:00
|
|
|
return RADEON_SURF_MODE_LINEAR_ALIGNED;
|
|
|
|
|
|
|
|
|
|
/* Avoid Z/S decompress blits by forcing TC-compatible HTILE on GFX8,
|
|
|
|
|
* which requires 2D tiling.
|
|
|
|
|
*/
|
2022-05-12 02:50:17 -04:00
|
|
|
if (sscreen->info.gfx_level == GFX8 && tc_compatible_htile)
|
2020-03-27 19:32:38 +01:00
|
|
|
return RADEON_SURF_MODE_2D;
|
|
|
|
|
|
|
|
|
|
/* Handle common candidates for the linear mode.
|
|
|
|
|
* Compressed textures and DB surfaces must always be tiled.
|
|
|
|
|
*/
|
2024-04-14 18:54:59 -04:00
|
|
|
if (!is_depth_stencil && !util_format_is_compressed(templ->format)) {
|
2020-10-19 20:21:58 -04:00
|
|
|
if (sscreen->debug_flags & DBG(NO_TILING) ||
|
2022-07-13 08:49:52 +05:30
|
|
|
(templ->bind & PIPE_BIND_SCANOUT && sscreen->debug_flags & DBG(NO_DISPLAY_TILING)))
|
2020-03-27 19:32:38 +01:00
|
|
|
return RADEON_SURF_MODE_LINEAR_ALIGNED;
|
|
|
|
|
|
|
|
|
|
/* Tiling doesn't work with the 422 (SUBSAMPLED) formats. */
|
|
|
|
|
if (desc->layout == UTIL_FORMAT_LAYOUT_SUBSAMPLED)
|
|
|
|
|
return RADEON_SURF_MODE_LINEAR_ALIGNED;
|
|
|
|
|
|
|
|
|
|
/* Cursors are linear on AMD GCN.
|
|
|
|
|
* (XXX double-check, maybe also use RADEON_SURF_SCANOUT) */
|
|
|
|
|
if (templ->bind & PIPE_BIND_CURSOR)
|
|
|
|
|
return RADEON_SURF_MODE_LINEAR_ALIGNED;
|
|
|
|
|
|
|
|
|
|
if (templ->bind & PIPE_BIND_LINEAR)
|
|
|
|
|
return RADEON_SURF_MODE_LINEAR_ALIGNED;
|
|
|
|
|
|
|
|
|
|
/* Textures with a very small height are recommended to be linear. */
|
|
|
|
|
if (templ->target == PIPE_TEXTURE_1D || templ->target == PIPE_TEXTURE_1D_ARRAY ||
|
|
|
|
|
/* Only very thin and long 2D textures should benefit from
|
|
|
|
|
* linear_aligned. */
|
2020-09-18 12:25:16 +02:00
|
|
|
templ->height0 <= 2)
|
2020-03-27 19:32:38 +01:00
|
|
|
return RADEON_SURF_MODE_LINEAR_ALIGNED;
|
|
|
|
|
|
|
|
|
|
/* Textures likely to be mapped often. */
|
|
|
|
|
if (templ->usage == PIPE_USAGE_STAGING || templ->usage == PIPE_USAGE_STREAM)
|
|
|
|
|
return RADEON_SURF_MODE_LINEAR_ALIGNED;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Make small textures 1D tiled. */
|
|
|
|
|
if (templ->width0 <= 16 || templ->height0 <= 16 || (sscreen->debug_flags & DBG(NO_2D_TILING)))
|
|
|
|
|
return RADEON_SURF_MODE_1D;
|
|
|
|
|
|
|
|
|
|
/* The allocator will switch to 1D if needed. */
|
|
|
|
|
return RADEON_SURF_MODE_2D;
|
2013-09-22 13:06:27 +02:00
|
|
|
}
|
|
|
|
|
|
2019-12-17 14:15:56 +01:00
|
|
|
static struct pipe_resource *
|
|
|
|
|
si_texture_create_with_modifier(struct pipe_screen *screen,
|
|
|
|
|
const struct pipe_resource *templ,
|
|
|
|
|
uint64_t modifier)
|
2013-09-22 13:06:27 +02:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct si_screen *sscreen = (struct si_screen *)screen;
|
|
|
|
|
bool is_zs = util_format_is_depth_or_stencil(templ->format);
|
|
|
|
|
|
|
|
|
|
if (templ->nr_samples >= 2) {
|
|
|
|
|
/* This is hackish (overwriting the const pipe_resource template),
|
2020-06-19 23:00:15 -04:00
|
|
|
* but should be harmless and gallium frontends can also see
|
2023-04-11 23:37:34 +03:00
|
|
|
* the overridden number of samples in the created pipe_resource.
|
2020-03-27 19:32:38 +01:00
|
|
|
*/
|
|
|
|
|
if (is_zs && sscreen->eqaa_force_z_samples) {
|
|
|
|
|
((struct pipe_resource *)templ)->nr_samples =
|
|
|
|
|
((struct pipe_resource *)templ)->nr_storage_samples = sscreen->eqaa_force_z_samples;
|
|
|
|
|
} else if (!is_zs && sscreen->eqaa_force_color_samples) {
|
|
|
|
|
((struct pipe_resource *)templ)->nr_samples = sscreen->eqaa_force_coverage_samples;
|
|
|
|
|
((struct pipe_resource *)templ)->nr_storage_samples = sscreen->eqaa_force_color_samples;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-07 13:18:25 -04:00
|
|
|
bool is_flushed_depth = templ->flags & SI_RESOURCE_FLAG_FLUSHED_DEPTH ||
|
|
|
|
|
templ->flags & SI_RESOURCE_FLAG_FORCE_LINEAR;
|
2024-10-30 10:41:47 -04:00
|
|
|
bool tc_compatible_htile = is_zs && !is_flushed_depth &&
|
|
|
|
|
!(sscreen->debug_flags & DBG(NO_HYPERZ)) &&
|
2025-01-03 23:41:54 -05:00
|
|
|
sscreen->info.has_tc_compatible_htile;
|
2024-10-30 10:41:47 -04:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
enum radeon_surf_mode tile_mode = si_choose_tiling(sscreen, templ, tc_compatible_htile);
|
|
|
|
|
|
|
|
|
|
/* This allocates textures with multiple planes like NV12 in 1 buffer. */
|
|
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
SI_TEXTURE_MAX_PLANES = 3
|
|
|
|
|
};
|
|
|
|
|
struct radeon_surf surface[SI_TEXTURE_MAX_PLANES] = {};
|
|
|
|
|
struct pipe_resource plane_templ[SI_TEXTURE_MAX_PLANES];
|
|
|
|
|
uint64_t plane_offset[SI_TEXTURE_MAX_PLANES] = {};
|
|
|
|
|
uint64_t total_size = 0;
|
|
|
|
|
unsigned max_alignment = 0;
|
|
|
|
|
unsigned num_planes = util_format_get_num_planes(templ->format);
|
|
|
|
|
assert(num_planes <= SI_TEXTURE_MAX_PLANES);
|
|
|
|
|
|
|
|
|
|
/* Compute texture or plane layouts and offsets. */
|
|
|
|
|
for (unsigned i = 0; i < num_planes; i++) {
|
|
|
|
|
plane_templ[i] = *templ;
|
2025-07-28 14:16:02 +02:00
|
|
|
plane_templ[i].format = si_get_plane_format(templ->format, i);
|
2020-03-27 19:32:38 +01:00
|
|
|
plane_templ[i].width0 = util_format_get_plane_width(templ->format, i, templ->width0);
|
|
|
|
|
plane_templ[i].height0 = util_format_get_plane_height(templ->format, i, templ->height0);
|
|
|
|
|
|
|
|
|
|
/* Multi-plane allocations need PIPE_BIND_SHARED, because we can't
|
|
|
|
|
* reallocate the storage to add PIPE_BIND_SHARED, because it's
|
|
|
|
|
* shared by 3 pipe_resources.
|
|
|
|
|
*/
|
|
|
|
|
if (num_planes > 1)
|
|
|
|
|
plane_templ[i].bind |= PIPE_BIND_SHARED;
|
2023-03-21 10:46:53 +01:00
|
|
|
/* Setting metadata on suballocated buffers is impossible. So use PIPE_BIND_CUSTOM to
|
|
|
|
|
* request a non-suballocated buffer.
|
|
|
|
|
*/
|
|
|
|
|
if (!is_zs && sscreen->debug_flags & DBG(EXTRA_METADATA))
|
|
|
|
|
plane_templ[i].bind |= PIPE_BIND_CUSTOM;
|
2020-03-27 19:32:38 +01:00
|
|
|
|
2019-12-17 14:15:56 +01:00
|
|
|
if (si_init_surface(sscreen, &surface[i], &plane_templ[i], tile_mode, modifier,
|
|
|
|
|
false, plane_templ[i].bind & PIPE_BIND_SCANOUT,
|
|
|
|
|
is_flushed_depth, tc_compatible_htile))
|
2020-03-27 19:32:38 +01:00
|
|
|
return NULL;
|
|
|
|
|
|
2021-12-10 10:48:47 +08:00
|
|
|
plane_templ[i].nr_sparse_levels = surface[i].first_mip_tail_level;
|
|
|
|
|
|
2021-04-02 14:59:54 -04:00
|
|
|
plane_offset[i] = align64(total_size, 1 << surface[i].surf_alignment_log2);
|
2020-03-27 19:32:38 +01:00
|
|
|
total_size = plane_offset[i] + surface[i].total_size;
|
2021-04-02 14:59:54 -04:00
|
|
|
max_alignment = MAX2(max_alignment, 1 << surface[i].surf_alignment_log2);
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct si_texture *plane0 = NULL, *last_plane = NULL;
|
|
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < num_planes; i++) {
|
|
|
|
|
struct si_texture *tex =
|
|
|
|
|
si_texture_create_object(screen, &plane_templ[i], &surface[i], plane0, NULL,
|
2020-05-04 07:43:44 -04:00
|
|
|
plane_offset[i], 0, total_size, max_alignment);
|
2020-03-27 19:32:38 +01:00
|
|
|
if (!tex) {
|
|
|
|
|
si_texture_reference(&plane0, NULL);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tex->plane_index = i;
|
|
|
|
|
tex->num_planes = num_planes;
|
|
|
|
|
|
|
|
|
|
if (!plane0) {
|
|
|
|
|
plane0 = last_plane = tex;
|
|
|
|
|
} else {
|
|
|
|
|
last_plane->buffer.b.b.next = &tex->buffer.b.b;
|
|
|
|
|
last_plane = tex;
|
|
|
|
|
}
|
2023-11-20 09:17:01 +01:00
|
|
|
if (i == 0 && !is_zs && tex->surface.fmask_size == 0 &&
|
|
|
|
|
sscreen->debug_flags & DBG(EXTRA_METADATA))
|
2023-03-21 10:46:53 +01:00
|
|
|
si_set_tex_bo_metadata(sscreen, tex);
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
|
|
|
|
|
2023-07-30 12:39:15 +02:00
|
|
|
if (num_planes >= 2)
|
|
|
|
|
plane0->multi_plane_format = templ->format;
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
return (struct pipe_resource *)plane0;
|
2010-05-08 21:09:24 +01:00
|
|
|
}
|
|
|
|
|
|
2019-12-17 14:15:56 +01:00
|
|
|
struct pipe_resource *si_texture_create(struct pipe_screen *screen,
|
|
|
|
|
const struct pipe_resource *templ)
|
|
|
|
|
{
|
|
|
|
|
return si_texture_create_with_modifier(screen, templ, DRM_FORMAT_MOD_INVALID);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-10 18:33:38 +08:00
|
|
|
bool si_texture_commit(struct si_context *ctx, struct si_resource *res, unsigned level,
|
|
|
|
|
struct pipe_box *box, bool commit)
|
|
|
|
|
{
|
|
|
|
|
struct si_texture *tex = (struct si_texture *)res;
|
|
|
|
|
struct radeon_surf *surface = &tex->surface;
|
|
|
|
|
enum pipe_format format = res->b.b.format;
|
|
|
|
|
unsigned blks = util_format_get_blocksize(format);
|
2021-12-30 15:09:04 +08:00
|
|
|
unsigned samples = MAX2(1, res->b.b.nr_samples);
|
2021-12-10 18:33:38 +08:00
|
|
|
|
2022-05-12 02:50:17 -04:00
|
|
|
assert(ctx->gfx_level >= GFX9);
|
2021-12-10 18:33:38 +08:00
|
|
|
|
2025-05-22 18:01:25 +02:00
|
|
|
if ((ctx->gfx_level >= GFX10 && samples > 1) || (surface->flags & RADEON_SURF_Z_OR_SBUFFER)) {
|
2025-05-21 18:30:30 +02:00
|
|
|
uint64_t prev_offset = res->bo_size;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < box->depth; i++) {
|
|
|
|
|
for (int j = 0; j < box->height; j++) {
|
|
|
|
|
for (int k = 0; k < box->width; k++) {
|
|
|
|
|
|
|
|
|
|
uint64_t offset = ctx->ws->surface_offset_from_coord(
|
|
|
|
|
ctx->ws,
|
|
|
|
|
&ctx->screen->info, surface, &res->b.b,
|
|
|
|
|
level, box->x + k, box->y + j, i);
|
|
|
|
|
|
|
|
|
|
offset = ROUND_DOWN_TO(offset, RADEON_SPARSE_PAGE_SIZE);
|
|
|
|
|
|
|
|
|
|
if (offset != prev_offset) {
|
|
|
|
|
if (!ctx->ws->buffer_commit(ctx->ws, res->buf, offset, RADEON_SPARSE_PAGE_SIZE,
|
|
|
|
|
commit)) {
|
|
|
|
|
assert(false);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
prev_offset = offset;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-10 18:33:38 +08:00
|
|
|
unsigned row_pitch = surface->u.gfx9.prt_level_pitch[level] *
|
2021-12-30 15:09:04 +08:00
|
|
|
surface->prt_tile_height * surface->prt_tile_depth * blks * samples;
|
2023-05-15 12:02:38 -04:00
|
|
|
uint64_t depth_pitch = surface->u.gfx9.surf_slice_size * surface->prt_tile_depth;
|
2021-12-10 18:33:38 +08:00
|
|
|
|
|
|
|
|
unsigned x = box->x / surface->prt_tile_width;
|
|
|
|
|
unsigned y = box->y / surface->prt_tile_height;
|
|
|
|
|
unsigned z = box->z / surface->prt_tile_depth;
|
|
|
|
|
|
|
|
|
|
unsigned w = DIV_ROUND_UP(box->width, surface->prt_tile_width);
|
|
|
|
|
unsigned h = DIV_ROUND_UP(box->height, surface->prt_tile_height);
|
|
|
|
|
unsigned d = DIV_ROUND_UP(box->depth, surface->prt_tile_depth);
|
|
|
|
|
|
|
|
|
|
/* Align to tile block base, for levels in mip tail whose offset is inside
|
|
|
|
|
* a tile block.
|
|
|
|
|
*/
|
2023-05-15 12:02:38 -04:00
|
|
|
uint64_t level_base = ROUND_DOWN_TO(surface->u.gfx9.prt_level_offset[level],
|
2021-12-10 18:33:38 +08:00
|
|
|
RADEON_SPARSE_PAGE_SIZE);
|
2023-05-15 12:02:38 -04:00
|
|
|
uint64_t commit_base = level_base +
|
|
|
|
|
x * RADEON_SPARSE_PAGE_SIZE + y * (uint64_t)row_pitch + z * depth_pitch;
|
2021-12-10 18:33:38 +08:00
|
|
|
|
2023-05-15 12:02:38 -04:00
|
|
|
uint64_t size = (uint64_t)w * RADEON_SPARSE_PAGE_SIZE;
|
2021-12-10 18:33:38 +08:00
|
|
|
for (int i = 0; i < d; i++) {
|
2023-05-15 12:02:38 -04:00
|
|
|
uint64_t base = commit_base + i * depth_pitch;
|
2021-12-10 18:33:38 +08:00
|
|
|
for (int j = 0; j < h; j++) {
|
2025-06-19 10:17:15 +02:00
|
|
|
uint64_t offset = base + j * (uint64_t)row_pitch;
|
2021-12-10 18:33:38 +08:00
|
|
|
if (!ctx->ws->buffer_commit(ctx->ws, res->buf, offset, size, commit))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-17 14:15:56 +01:00
|
|
|
static void si_query_dmabuf_modifiers(struct pipe_screen *screen,
|
|
|
|
|
enum pipe_format format,
|
|
|
|
|
int max,
|
|
|
|
|
uint64_t *modifiers,
|
|
|
|
|
unsigned int *external_only,
|
|
|
|
|
int *count)
|
|
|
|
|
{
|
|
|
|
|
struct si_screen *sscreen = (struct si_screen *)screen;
|
|
|
|
|
|
|
|
|
|
unsigned ac_mod_count = max;
|
|
|
|
|
ac_get_supported_modifiers(&sscreen->info, &(struct ac_modifier_options) {
|
2024-07-19 08:42:32 +02:00
|
|
|
.dcc = !(sscreen->debug_flags & (DBG(NO_DCC) | DBG(NO_EXPORTED_DCC))),
|
2019-12-17 14:15:56 +01:00
|
|
|
/* Do not support DCC with retiling yet. This needs explicit
|
|
|
|
|
* resource flushes, but the app has no way to promise doing
|
|
|
|
|
* flushes with modifiers. */
|
2020-03-15 14:47:25 +01:00
|
|
|
.dcc_retile = !(sscreen->debug_flags & DBG(NO_DCC)),
|
2019-12-17 14:15:56 +01:00
|
|
|
}, format, &ac_mod_count, max ? modifiers : NULL);
|
|
|
|
|
if (max && external_only) {
|
|
|
|
|
for (unsigned i = 0; i < ac_mod_count; ++i)
|
2021-04-09 14:03:53 +02:00
|
|
|
external_only[i] = util_format_is_yuv(format);
|
2019-12-17 14:15:56 +01:00
|
|
|
}
|
|
|
|
|
*count = ac_mod_count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool
|
|
|
|
|
si_is_dmabuf_modifier_supported(struct pipe_screen *screen,
|
|
|
|
|
uint64_t modifier,
|
|
|
|
|
enum pipe_format format,
|
|
|
|
|
bool *external_only)
|
|
|
|
|
{
|
|
|
|
|
int allowed_mod_count;
|
|
|
|
|
si_query_dmabuf_modifiers(screen, format, 0, NULL, NULL, &allowed_mod_count);
|
|
|
|
|
|
|
|
|
|
uint64_t *allowed_modifiers = (uint64_t *)calloc(allowed_mod_count, sizeof(uint64_t));
|
|
|
|
|
if (!allowed_modifiers)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
unsigned *external_array = NULL;
|
|
|
|
|
if (external_only) {
|
|
|
|
|
external_array = (unsigned *)calloc(allowed_mod_count, sizeof(unsigned));
|
|
|
|
|
if (!external_array) {
|
|
|
|
|
free(allowed_modifiers);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
si_query_dmabuf_modifiers(screen, format, allowed_mod_count, allowed_modifiers,
|
|
|
|
|
external_array, &allowed_mod_count);
|
|
|
|
|
|
|
|
|
|
bool supported = false;
|
|
|
|
|
for (int i = 0; i < allowed_mod_count && !supported; ++i) {
|
|
|
|
|
if (allowed_modifiers[i] != modifier)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
supported = true;
|
|
|
|
|
if (external_only)
|
|
|
|
|
*external_only = external_array[i];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
free(allowed_modifiers);
|
|
|
|
|
free(external_array);
|
|
|
|
|
return supported;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-15 14:47:25 +01:00
|
|
|
static unsigned
|
|
|
|
|
si_get_dmabuf_modifier_planes(struct pipe_screen *pscreen, uint64_t modifier,
|
|
|
|
|
enum pipe_format format)
|
|
|
|
|
{
|
|
|
|
|
unsigned planes = util_format_get_num_planes(format);
|
|
|
|
|
|
2024-07-12 20:11:09 +02:00
|
|
|
if (AMD_FMT_MOD_GET(TILE_VERSION, modifier) < AMD_FMT_MOD_TILE_VER_GFX12) {
|
|
|
|
|
if (IS_AMD_FMT_MOD(modifier) && planes == 1) {
|
|
|
|
|
if (AMD_FMT_MOD_GET(DCC_RETILE, modifier))
|
|
|
|
|
return 3;
|
|
|
|
|
else if (AMD_FMT_MOD_GET(DCC, modifier))
|
|
|
|
|
return 2;
|
|
|
|
|
else
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2020-03-15 14:47:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return planes;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-26 20:14:34 +01:00
|
|
|
static bool
|
|
|
|
|
si_modifier_supports_resource(struct pipe_screen *screen,
|
|
|
|
|
uint64_t modifier,
|
|
|
|
|
const struct pipe_resource *templ)
|
|
|
|
|
{
|
|
|
|
|
struct si_screen *sscreen = (struct si_screen *)screen;
|
|
|
|
|
uint32_t max_width, max_height;
|
|
|
|
|
|
2024-07-19 09:11:05 +02:00
|
|
|
if (((templ->bind & PIPE_BIND_LINEAR) || sscreen->debug_flags & DBG(NO_TILING)) &&
|
|
|
|
|
modifier != DRM_FORMAT_MOD_LINEAR)
|
2024-07-19 08:45:04 +02:00
|
|
|
return false;
|
|
|
|
|
|
2024-11-21 13:32:55 +01:00
|
|
|
if ((templ->bind & PIPE_BIND_USE_FRONT_RENDERING) && ac_modifier_has_dcc(modifier))
|
|
|
|
|
return false;
|
|
|
|
|
|
2024-08-22 07:25:19 -04:00
|
|
|
/* Protected content doesn't support DCC on GFX12. */
|
|
|
|
|
if (sscreen->info.gfx_level >= GFX12 && templ->bind & PIPE_BIND_PROTECTED &&
|
|
|
|
|
IS_AMD_FMT_MOD(modifier) &&
|
|
|
|
|
AMD_FMT_MOD_GET(TILE_VERSION, modifier) >= AMD_FMT_MOD_TILE_VER_GFX12 &&
|
|
|
|
|
AMD_FMT_MOD_GET(DCC, modifier))
|
|
|
|
|
return false;
|
|
|
|
|
|
2021-09-26 20:14:34 +01:00
|
|
|
ac_modifier_max_extent(&sscreen->info, modifier, &max_width, &max_height);
|
|
|
|
|
return templ->width0 <= max_width && templ->height0 <= max_height;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-17 14:15:56 +01:00
|
|
|
static struct pipe_resource *
|
|
|
|
|
si_texture_create_with_modifiers(struct pipe_screen *screen,
|
|
|
|
|
const struct pipe_resource *templ,
|
|
|
|
|
const uint64_t *modifiers,
|
|
|
|
|
int modifier_count)
|
|
|
|
|
{
|
|
|
|
|
/* Buffers with modifiers make zero sense. */
|
|
|
|
|
assert(templ->target != PIPE_BUFFER);
|
|
|
|
|
|
|
|
|
|
/* Select modifier. */
|
|
|
|
|
int allowed_mod_count;
|
|
|
|
|
si_query_dmabuf_modifiers(screen, templ->format, 0, NULL, NULL, &allowed_mod_count);
|
|
|
|
|
|
|
|
|
|
uint64_t *allowed_modifiers = (uint64_t *)calloc(allowed_mod_count, sizeof(uint64_t));
|
|
|
|
|
if (!allowed_modifiers) {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This does not take external_only into account. We assume it is the same for all modifiers. */
|
|
|
|
|
si_query_dmabuf_modifiers(screen, templ->format, allowed_mod_count, allowed_modifiers, NULL, &allowed_mod_count);
|
|
|
|
|
|
|
|
|
|
uint64_t modifier = DRM_FORMAT_MOD_INVALID;
|
|
|
|
|
|
|
|
|
|
/* Try to find the first allowed modifier that is in the application provided
|
|
|
|
|
* list. We assume that the allowed modifiers are ordered in descending
|
|
|
|
|
* preference in the list provided by si_query_dmabuf_modifiers. */
|
|
|
|
|
for (int i = 0; i < allowed_mod_count; ++i) {
|
|
|
|
|
bool found = false;
|
|
|
|
|
for (int j = 0; j < modifier_count && !found; ++j)
|
2021-09-26 20:14:34 +01:00
|
|
|
if (modifiers[j] == allowed_modifiers[i] && si_modifier_supports_resource(screen, modifiers[j], templ))
|
2019-12-17 14:15:56 +01:00
|
|
|
found = true;
|
|
|
|
|
|
|
|
|
|
if (found) {
|
|
|
|
|
modifier = allowed_modifiers[i];
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
free(allowed_modifiers);
|
|
|
|
|
|
|
|
|
|
if (modifier == DRM_FORMAT_MOD_INVALID) {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
return si_texture_create_with_modifier(screen, templ, modifier);
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-15 14:47:25 +01:00
|
|
|
static bool si_texture_is_aux_plane(const struct pipe_resource *resource)
|
|
|
|
|
{
|
2021-05-05 16:14:34 -04:00
|
|
|
return resource->flags & SI_RESOURCE_AUX_PLANE;
|
2020-03-15 14:47:25 +01:00
|
|
|
}
|
|
|
|
|
|
2018-06-21 20:41:06 -04:00
|
|
|
static struct pipe_resource *si_texture_from_winsys_buffer(struct si_screen *sscreen,
|
2020-03-27 19:32:38 +01:00
|
|
|
const struct pipe_resource *templ,
|
2023-12-09 17:07:14 -05:00
|
|
|
struct pb_buffer_lean *buf, unsigned stride,
|
2019-12-17 14:15:56 +01:00
|
|
|
uint64_t offset, uint64_t modifier,
|
2025-07-18 16:36:11 +02:00
|
|
|
unsigned usage, bool dedicated,
|
|
|
|
|
bool take_ownership)
|
2010-05-08 21:09:24 +01:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct radeon_surf surface = {};
|
|
|
|
|
struct radeon_bo_metadata metadata = {};
|
2024-10-16 10:54:32 +02:00
|
|
|
uint32_t md_version, md_flags;
|
2020-03-27 19:32:38 +01:00
|
|
|
struct si_texture *tex;
|
|
|
|
|
int r;
|
|
|
|
|
|
|
|
|
|
/* Ignore metadata for non-zero planes. */
|
|
|
|
|
if (offset != 0)
|
|
|
|
|
dedicated = false;
|
|
|
|
|
|
|
|
|
|
if (dedicated) {
|
2021-03-23 18:33:41 -04:00
|
|
|
sscreen->ws->buffer_get_metadata(sscreen->ws, buf, &metadata, &surface);
|
2024-10-16 10:54:32 +02:00
|
|
|
|
|
|
|
|
/* Refuse to import texture allocated with a overriden gfx family since
|
|
|
|
|
* the data will be garbage.
|
|
|
|
|
*/
|
|
|
|
|
md_version = metadata.metadata[0] & 0xffff;
|
|
|
|
|
md_flags = metadata.metadata[0] >> 16;
|
|
|
|
|
|
|
|
|
|
if (metadata.mode != RADEON_SURF_MODE_LINEAR_ALIGNED &&
|
|
|
|
|
modifier == DRM_FORMAT_MOD_INVALID &&
|
|
|
|
|
md_version >= 3 &&
|
|
|
|
|
md_flags & (1u << AC_SURF_METADATA_FLAG_FAMILY_OVERRIDEN_BIT)) {
|
2025-07-01 09:49:11 +05:30
|
|
|
mesa_loge("si_texture_from_winsys_buffer: fail texture import due to "
|
|
|
|
|
"AC_SURF_METADATA_FLAG_FAMILY_OVERRIDEN_BIT being set.");
|
2024-10-16 10:54:32 +02:00
|
|
|
return NULL;
|
|
|
|
|
}
|
2020-03-27 19:32:38 +01:00
|
|
|
} else {
|
|
|
|
|
/**
|
|
|
|
|
* The bo metadata is unset for un-dedicated images. So we fall
|
|
|
|
|
* back to linear. See answer to question 5 of the
|
|
|
|
|
* VK_KHX_external_memory spec for some details.
|
|
|
|
|
*
|
|
|
|
|
* It is possible that this case isn't going to work if the
|
|
|
|
|
* surface pitch isn't correctly aligned by default.
|
|
|
|
|
*
|
|
|
|
|
* In order to support it correctly we require multi-image
|
2020-12-31 18:01:10 -08:00
|
|
|
* metadata to be synchronized between radv and radeonsi. The
|
2020-03-27 19:32:38 +01:00
|
|
|
* semantics of associating multiple image metadata to a memory
|
|
|
|
|
* object on the vulkan export side are not concretely defined
|
|
|
|
|
* either.
|
|
|
|
|
*
|
|
|
|
|
* All the use cases we are aware of at the moment for memory
|
|
|
|
|
* objects use dedicated allocations. So lets keep the initial
|
|
|
|
|
* implementation simple.
|
|
|
|
|
*
|
|
|
|
|
* A possible alternative is to attempt to reconstruct the
|
|
|
|
|
* tiling information when the TexParameter TEXTURE_TILING_EXT
|
|
|
|
|
* is set.
|
|
|
|
|
*/
|
2020-05-02 10:58:46 -04:00
|
|
|
metadata.mode = RADEON_SURF_MODE_LINEAR_ALIGNED;
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
|
|
|
|
|
2019-12-17 14:15:56 +01:00
|
|
|
r = si_init_surface(sscreen, &surface, templ, metadata.mode, modifier, true,
|
2020-05-02 10:58:46 -04:00
|
|
|
surface.flags & RADEON_SURF_SCANOUT, false, false);
|
2020-03-27 19:32:38 +01:00
|
|
|
if (r)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2023-09-26 22:55:27 +02:00
|
|
|
/* This is a hack to skip alignment checking for 3D textures */
|
|
|
|
|
if (templ->target == PIPE_TEXTURE_3D)
|
|
|
|
|
stride = 0;
|
|
|
|
|
|
2020-05-04 07:43:44 -04:00
|
|
|
tex = si_texture_create_object(&sscreen->b, templ, &surface, NULL, buf,
|
|
|
|
|
offset, stride, 0, 0);
|
2020-03-27 19:32:38 +01:00
|
|
|
if (!tex)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2025-07-18 16:36:11 +02:00
|
|
|
if (!take_ownership) {
|
|
|
|
|
struct pb_buffer_lean *tmp = NULL;
|
|
|
|
|
radeon_bo_reference(sscreen->ws, &tmp, buf);
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
tex->buffer.b.is_shared = true;
|
|
|
|
|
tex->buffer.external_usage = usage;
|
|
|
|
|
tex->num_planes = 1;
|
2020-10-06 16:21:53 +02:00
|
|
|
if (tex->buffer.flags & RADEON_FLAG_ENCRYPTED)
|
|
|
|
|
tex->buffer.b.b.bind |= PIPE_BIND_PROTECTED;
|
2020-03-27 19:32:38 +01:00
|
|
|
|
2020-04-28 00:40:12 +02:00
|
|
|
/* Account for multiple planes with lowered yuv import. */
|
|
|
|
|
struct pipe_resource *next_plane = tex->buffer.b.b.next;
|
2020-03-15 14:47:25 +01:00
|
|
|
while (next_plane && !si_texture_is_aux_plane(next_plane)) {
|
2020-04-28 00:40:12 +02:00
|
|
|
struct si_texture *next_tex = (struct si_texture *)next_plane;
|
|
|
|
|
++next_tex->num_planes;
|
|
|
|
|
++tex->num_planes;
|
|
|
|
|
next_plane = next_plane->next;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-15 14:47:25 +01:00
|
|
|
unsigned nplanes = ac_surface_get_nplanes(&tex->surface);
|
|
|
|
|
unsigned plane = 1;
|
|
|
|
|
while (next_plane) {
|
|
|
|
|
struct si_auxiliary_texture *ptex = (struct si_auxiliary_texture *)next_plane;
|
|
|
|
|
if (plane >= nplanes || ptex->buffer != tex->buffer.buf ||
|
2022-05-12 02:50:17 -04:00
|
|
|
ptex->offset != ac_surface_get_plane_offset(sscreen->info.gfx_level,
|
2020-03-15 14:47:25 +01:00
|
|
|
&tex->surface, plane, 0) ||
|
2022-05-12 02:50:17 -04:00
|
|
|
ptex->stride != ac_surface_get_plane_stride(sscreen->info.gfx_level,
|
2022-01-07 09:01:27 +01:00
|
|
|
&tex->surface, plane, 0)) {
|
2020-03-15 14:47:25 +01:00
|
|
|
si_texture_reference(&tex, NULL);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
++plane;
|
|
|
|
|
next_plane = next_plane->next;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (plane != nplanes && tex->num_planes == 1) {
|
|
|
|
|
si_texture_reference(&tex, NULL);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-21 10:54:16 +01:00
|
|
|
if (!ac_surface_apply_umd_metadata(&sscreen->info, &tex->surface,
|
|
|
|
|
tex->buffer.b.b.nr_storage_samples,
|
|
|
|
|
tex->buffer.b.b.last_level + 1,
|
|
|
|
|
metadata.size_metadata,
|
|
|
|
|
metadata.metadata)) {
|
2020-03-27 19:32:38 +01:00
|
|
|
si_texture_reference(&tex, NULL);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-12 02:50:17 -04:00
|
|
|
if (ac_surface_get_plane_offset(sscreen->info.gfx_level, &tex->surface, 0, 0) +
|
2023-12-09 17:07:14 -05:00
|
|
|
tex->surface.total_size > buf->size) {
|
2020-05-30 03:42:39 +02:00
|
|
|
si_texture_reference(&tex, NULL);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Displayable DCC requires an explicit flush. */
|
|
|
|
|
if (dedicated && offset == 0 && !(usage & PIPE_HANDLE_USAGE_EXPLICIT_FLUSH) &&
|
2020-08-03 03:55:48 +02:00
|
|
|
si_displayable_dcc_needs_explicit_flush(tex)) {
|
2020-03-27 19:32:38 +01:00
|
|
|
/* TODO: do we need to decompress DCC? */
|
|
|
|
|
if (si_texture_discard_dcc(sscreen, tex)) {
|
|
|
|
|
/* Update BO metadata after disabling DCC. */
|
|
|
|
|
si_set_tex_bo_metadata(sscreen, tex);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert(tex->surface.tile_swizzle == 0);
|
|
|
|
|
return &tex->buffer.b.b;
|
2010-05-08 21:09:24 +01:00
|
|
|
}
|
|
|
|
|
|
2018-06-21 20:41:06 -04:00
|
|
|
static struct pipe_resource *si_texture_from_handle(struct pipe_screen *screen,
|
2020-03-27 19:32:38 +01:00
|
|
|
const struct pipe_resource *templ,
|
|
|
|
|
struct winsys_handle *whandle, unsigned usage)
|
2018-06-21 20:41:06 -04:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct si_screen *sscreen = (struct si_screen *)screen;
|
2023-12-09 17:07:14 -05:00
|
|
|
struct pb_buffer_lean *buf = NULL;
|
2020-03-27 19:32:38 +01:00
|
|
|
|
2021-10-14 15:15:20 +02:00
|
|
|
buf = sscreen->ws->buffer_from_handle(sscreen->ws, whandle,
|
|
|
|
|
sscreen->info.max_alignment,
|
2022-02-01 17:40:55 +01:00
|
|
|
templ->bind & PIPE_BIND_PRIME_BLIT_DST);
|
2020-03-27 19:32:38 +01:00
|
|
|
if (!buf)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2023-09-26 22:21:36 +02:00
|
|
|
if (templ->target == PIPE_BUFFER)
|
2025-07-18 16:36:11 +02:00
|
|
|
return si_buffer_from_winsys_buffer(screen, templ, buf, 0, true);
|
2023-09-26 22:21:36 +02:00
|
|
|
|
2020-03-15 14:47:25 +01:00
|
|
|
if (whandle->plane >= util_format_get_num_planes(whandle->format)) {
|
2021-06-27 17:57:56 -04:00
|
|
|
struct si_auxiliary_texture *tex = CALLOC_STRUCT_CL(si_auxiliary_texture);
|
2020-03-15 14:47:25 +01:00
|
|
|
if (!tex)
|
|
|
|
|
return NULL;
|
|
|
|
|
tex->b.b = *templ;
|
2021-05-05 13:11:27 -04:00
|
|
|
tex->b.b.flags |= SI_RESOURCE_AUX_PLANE;
|
2020-03-15 14:47:25 +01:00
|
|
|
tex->stride = whandle->stride;
|
|
|
|
|
tex->offset = whandle->offset;
|
|
|
|
|
tex->buffer = buf;
|
|
|
|
|
pipe_reference_init(&tex->b.b.reference, 1);
|
|
|
|
|
tex->b.b.screen = screen;
|
|
|
|
|
|
|
|
|
|
return &tex->b.b;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
return si_texture_from_winsys_buffer(sscreen, templ, buf, whandle->stride, whandle->offset,
|
2025-07-18 16:36:11 +02:00
|
|
|
whandle->modifier, usage, true, true);
|
2018-06-21 20:41:06 -04:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
bool si_init_flushed_depth_texture(struct pipe_context *ctx, struct pipe_resource *texture)
|
2010-09-23 13:34:36 +10:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct si_texture *tex = (struct si_texture *)texture;
|
|
|
|
|
struct pipe_resource resource;
|
|
|
|
|
enum pipe_format pipe_format = texture->format;
|
|
|
|
|
|
|
|
|
|
assert(!tex->flushed_depth_texture);
|
|
|
|
|
|
|
|
|
|
if (!tex->can_sample_z && tex->can_sample_s) {
|
|
|
|
|
switch (pipe_format) {
|
|
|
|
|
case PIPE_FORMAT_Z32_FLOAT_S8X24_UINT:
|
|
|
|
|
/* Save memory by not allocating the S plane. */
|
|
|
|
|
pipe_format = PIPE_FORMAT_Z32_FLOAT;
|
|
|
|
|
break;
|
|
|
|
|
case PIPE_FORMAT_Z24_UNORM_S8_UINT:
|
|
|
|
|
case PIPE_FORMAT_S8_UINT_Z24_UNORM:
|
|
|
|
|
/* Save memory bandwidth by not copying the
|
|
|
|
|
* stencil part during flush.
|
|
|
|
|
*
|
|
|
|
|
* This potentially increases memory bandwidth
|
|
|
|
|
* if an application uses both Z and S texturing
|
|
|
|
|
* simultaneously (a flushed Z24S8 texture
|
|
|
|
|
* would be stored compactly), but how often
|
|
|
|
|
* does that really happen?
|
|
|
|
|
*/
|
|
|
|
|
pipe_format = PIPE_FORMAT_Z24X8_UNORM;
|
|
|
|
|
break;
|
|
|
|
|
default:;
|
|
|
|
|
}
|
|
|
|
|
} else if (!tex->can_sample_s && tex->can_sample_z) {
|
|
|
|
|
assert(util_format_has_stencil(util_format_description(pipe_format)));
|
|
|
|
|
|
|
|
|
|
/* DB->CB copies to an 8bpp surface don't work. */
|
|
|
|
|
pipe_format = PIPE_FORMAT_X24S8_UINT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
memset(&resource, 0, sizeof(resource));
|
|
|
|
|
resource.target = texture->target;
|
|
|
|
|
resource.format = pipe_format;
|
|
|
|
|
resource.width0 = texture->width0;
|
|
|
|
|
resource.height0 = texture->height0;
|
|
|
|
|
resource.depth0 = texture->depth0;
|
|
|
|
|
resource.array_size = texture->array_size;
|
|
|
|
|
resource.last_level = texture->last_level;
|
|
|
|
|
resource.nr_samples = texture->nr_samples;
|
2022-02-11 15:01:25 +08:00
|
|
|
resource.nr_storage_samples = texture->nr_storage_samples;
|
2020-03-27 19:32:38 +01:00
|
|
|
resource.usage = PIPE_USAGE_DEFAULT;
|
|
|
|
|
resource.bind = texture->bind & ~PIPE_BIND_DEPTH_STENCIL;
|
|
|
|
|
resource.flags = texture->flags | SI_RESOURCE_FLAG_FLUSHED_DEPTH;
|
|
|
|
|
|
|
|
|
|
tex->flushed_depth_texture =
|
|
|
|
|
(struct si_texture *)ctx->screen->resource_create(ctx->screen, &resource);
|
|
|
|
|
if (!tex->flushed_depth_texture) {
|
|
|
|
|
PRINT_ERR("failed to create temporary texture to hold flushed depth\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
2012-06-25 12:45:32 +02:00
|
|
|
}
|
|
|
|
|
|
2013-05-29 20:12:27 +02:00
|
|
|
/**
|
|
|
|
|
* Initialize the pipe_resource descriptor to be of the same size as the box,
|
|
|
|
|
* which is supposed to hold a subregion of the texture "orig" at the given
|
|
|
|
|
* mipmap level.
|
|
|
|
|
*/
|
2020-03-27 19:32:38 +01:00
|
|
|
static void si_init_temp_resource_from_box(struct pipe_resource *res, struct pipe_resource *orig,
|
|
|
|
|
const struct pipe_box *box, unsigned level,
|
2020-05-06 20:56:52 -04:00
|
|
|
unsigned usage, unsigned flags)
|
2013-05-29 20:12:27 +02:00
|
|
|
{
|
2023-07-30 12:39:15 +02:00
|
|
|
struct si_texture *tex = (struct si_texture *)orig;
|
|
|
|
|
enum pipe_format orig_format = tex->multi_plane_format != PIPE_FORMAT_NONE ?
|
|
|
|
|
tex->multi_plane_format : orig->format;
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
memset(res, 0, sizeof(*res));
|
2023-07-30 12:39:15 +02:00
|
|
|
res->format = orig_format;
|
2020-03-27 19:32:38 +01:00
|
|
|
res->width0 = box->width;
|
|
|
|
|
res->height0 = box->height;
|
|
|
|
|
res->depth0 = 1;
|
|
|
|
|
res->array_size = 1;
|
2020-05-06 20:56:52 -04:00
|
|
|
res->usage = usage;
|
2020-03-27 19:32:38 +01:00
|
|
|
res->flags = flags;
|
|
|
|
|
|
2023-07-30 12:39:15 +02:00
|
|
|
if (flags & SI_RESOURCE_FLAG_FORCE_LINEAR && util_format_is_compressed(orig_format)) {
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Transfer resources are allocated with linear tiling, which is
|
|
|
|
|
* not supported for compressed formats.
|
|
|
|
|
*/
|
2023-07-30 12:39:15 +02:00
|
|
|
unsigned blocksize = util_format_get_blocksize(orig_format);
|
2020-03-27 19:32:38 +01:00
|
|
|
|
|
|
|
|
if (blocksize == 8) {
|
|
|
|
|
res->format = PIPE_FORMAT_R16G16B16A16_UINT;
|
|
|
|
|
} else {
|
|
|
|
|
assert(blocksize == 16);
|
|
|
|
|
res->format = PIPE_FORMAT_R32G32B32A32_UINT;
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-30 12:39:15 +02:00
|
|
|
res->width0 = util_format_get_nblocksx(orig_format, box->width);
|
|
|
|
|
res->height0 = util_format_get_nblocksy(orig_format, box->height);
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We must set the correct texture target and dimensions for a 3D box. */
|
|
|
|
|
if (box->depth > 1 && util_max_layer(orig, level) > 0) {
|
|
|
|
|
res->target = PIPE_TEXTURE_2D_ARRAY;
|
|
|
|
|
res->array_size = box->depth;
|
|
|
|
|
} else {
|
|
|
|
|
res->target = PIPE_TEXTURE_2D;
|
|
|
|
|
}
|
2013-05-29 20:12:27 +02:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
static bool si_can_invalidate_texture(struct si_screen *sscreen, struct si_texture *tex,
|
|
|
|
|
unsigned transfer_usage, const struct pipe_box *box)
|
2016-05-12 13:33:06 +02:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
return !tex->buffer.b.is_shared && !(tex->surface.flags & RADEON_SURF_IMPORTED) &&
|
2020-07-01 08:16:12 -04:00
|
|
|
!(transfer_usage & PIPE_MAP_READ) && tex->buffer.b.b.last_level == 0 &&
|
2020-03-27 19:32:38 +01:00
|
|
|
util_texrange_covers_whole_level(&tex->buffer.b.b, 0, box->x, box->y, box->z, box->width,
|
|
|
|
|
box->height, box->depth);
|
2016-05-12 13:33:06 +02:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
static void si_texture_invalidate_storage(struct si_context *sctx, struct si_texture *tex)
|
2016-05-18 03:25:04 +02:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct si_screen *sscreen = sctx->screen;
|
2016-05-18 14:31:36 +02:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* There is no point in discarding depth and tiled buffers. */
|
|
|
|
|
assert(!tex->is_depth);
|
|
|
|
|
assert(tex->surface.is_linear);
|
2016-05-18 03:25:04 +02:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Reallocate the buffer in the same pipe_resource. */
|
|
|
|
|
si_alloc_resource(sscreen, &tex->buffer);
|
2016-05-18 03:25:04 +02:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Initialize the CMASK base address (needed even without CMASK). */
|
|
|
|
|
tex->cmask_base_address_reg = (tex->buffer.gpu_address + tex->surface.cmask_offset) >> 8;
|
2016-05-18 03:25:04 +02:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
p_atomic_inc(&sscreen->dirty_tex_counter);
|
2016-05-18 14:31:36 +02:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
sctx->num_alloc_tex_transfer_bytes += tex->surface.total_size;
|
2016-05-18 03:25:04 +02:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
static void *si_texture_transfer_map(struct pipe_context *ctx, struct pipe_resource *texture,
|
|
|
|
|
unsigned level, unsigned usage, const struct pipe_box *box,
|
|
|
|
|
struct pipe_transfer **ptransfer)
|
2010-07-28 12:18:19 -04:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct si_context *sctx = (struct si_context *)ctx;
|
|
|
|
|
struct si_texture *tex = (struct si_texture *)texture;
|
|
|
|
|
struct si_transfer *trans;
|
|
|
|
|
struct si_resource *buf;
|
2023-06-02 04:01:40 -04:00
|
|
|
uint64_t offset = 0;
|
2020-03-27 19:32:38 +01:00
|
|
|
char *map;
|
2021-06-01 14:03:37 +02:00
|
|
|
bool use_staging_texture = tex->buffer.flags & RADEON_FLAG_ENCRYPTED;
|
2022-07-19 00:20:36 -04:00
|
|
|
unsigned real_level = texture->nr_samples > 1 ? 0 : level;
|
2020-03-27 19:32:38 +01:00
|
|
|
|
2022-01-21 04:03:09 -05:00
|
|
|
assert(texture->target != PIPE_BUFFER);
|
2020-05-07 13:18:25 -04:00
|
|
|
assert(!(texture->flags & SI_RESOURCE_FLAG_FORCE_LINEAR));
|
2020-03-27 19:32:38 +01:00
|
|
|
assert(box->width && box->height && box->depth);
|
|
|
|
|
|
2021-05-05 16:06:28 -04:00
|
|
|
if (tex->buffer.b.b.flags & SI_RESOURCE_AUX_PLANE)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2021-06-01 14:03:37 +02:00
|
|
|
if ((tex->buffer.flags & RADEON_FLAG_ENCRYPTED) && usage & PIPE_MAP_READ)
|
2020-07-23 16:46:40 +02:00
|
|
|
return NULL;
|
|
|
|
|
|
2021-12-14 14:14:24 +08:00
|
|
|
if (tex->is_depth || tex->buffer.flags & RADEON_FLAG_SPARSE) {
|
|
|
|
|
/* Depth and sparse textures use staging unconditionally. */
|
2020-03-27 19:32:38 +01:00
|
|
|
use_staging_texture = true;
|
|
|
|
|
} else {
|
|
|
|
|
/* Degrade the tile mode if we get too many transfers on APUs.
|
|
|
|
|
* On dGPUs, the staging texture is always faster.
|
|
|
|
|
* Only count uploads that are at least 4x4 pixels large.
|
|
|
|
|
*/
|
2022-07-19 00:20:36 -04:00
|
|
|
if (!sctx->screen->info.has_dedicated_vram && real_level == 0 && box->width >= 4 &&
|
2020-03-27 19:32:38 +01:00
|
|
|
box->height >= 4 && p_atomic_inc_return(&tex->num_level0_transfers) == 10) {
|
|
|
|
|
bool can_invalidate = si_can_invalidate_texture(sctx->screen, tex, usage, box);
|
|
|
|
|
|
|
|
|
|
si_reallocate_texture_inplace(sctx, tex, PIPE_BIND_LINEAR, can_invalidate);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Tiled textures need to be converted into a linear texture for CPU
|
|
|
|
|
* access. The staging texture is always linear and is placed in GART.
|
|
|
|
|
*
|
2021-10-12 16:37:24 +08:00
|
|
|
* dGPU use a staging texture for VRAM, so that we don't map it and
|
2020-10-11 21:23:40 -04:00
|
|
|
* don't relocate it to GTT.
|
|
|
|
|
*
|
2020-03-27 19:32:38 +01:00
|
|
|
* Reading from VRAM or GTT WC is slow, always use the staging
|
|
|
|
|
* texture in this case.
|
|
|
|
|
*
|
|
|
|
|
* Use the staging texture for uploads if the underlying BO
|
|
|
|
|
* is busy.
|
|
|
|
|
*/
|
2020-10-11 21:23:40 -04:00
|
|
|
if (!tex->surface.is_linear || (tex->buffer.flags & RADEON_FLAG_ENCRYPTED) ||
|
2023-02-18 04:50:18 -05:00
|
|
|
(tex->buffer.domains & RADEON_DOMAIN_VRAM && sctx->screen->info.has_dedicated_vram))
|
2020-03-27 19:32:38 +01:00
|
|
|
use_staging_texture = true;
|
2020-07-01 08:16:12 -04:00
|
|
|
else if (usage & PIPE_MAP_READ)
|
2020-03-27 19:32:38 +01:00
|
|
|
use_staging_texture =
|
|
|
|
|
tex->buffer.domains & RADEON_DOMAIN_VRAM || tex->buffer.flags & RADEON_FLAG_GTT_WC;
|
|
|
|
|
/* Write & linear only: */
|
2025-01-07 19:43:31 -05:00
|
|
|
else if (!si_is_buffer_idle(sctx, &tex->buffer, RADEON_USAGE_READWRITE)) {
|
2020-03-27 19:32:38 +01:00
|
|
|
/* It's busy. */
|
|
|
|
|
if (si_can_invalidate_texture(sctx->screen, tex, usage, box))
|
|
|
|
|
si_texture_invalidate_storage(sctx, tex);
|
|
|
|
|
else
|
|
|
|
|
use_staging_texture = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
trans = CALLOC_STRUCT(si_transfer);
|
|
|
|
|
if (!trans)
|
|
|
|
|
return NULL;
|
|
|
|
|
pipe_resource_reference(&trans->b.b.resource, texture);
|
|
|
|
|
trans->b.b.level = level;
|
|
|
|
|
trans->b.b.usage = usage;
|
|
|
|
|
trans->b.b.box = *box;
|
|
|
|
|
|
|
|
|
|
if (use_staging_texture) {
|
|
|
|
|
struct pipe_resource resource;
|
|
|
|
|
struct si_texture *staging;
|
2020-07-01 08:16:12 -04:00
|
|
|
unsigned bo_usage = usage & PIPE_MAP_READ ? PIPE_USAGE_STAGING : PIPE_USAGE_STREAM;
|
2020-07-23 10:29:14 +02:00
|
|
|
unsigned bo_flags = SI_RESOURCE_FLAG_FORCE_LINEAR | SI_RESOURCE_FLAG_DRIVER_INTERNAL;
|
2020-05-06 14:51:50 -04:00
|
|
|
|
2022-07-19 00:20:36 -04:00
|
|
|
si_init_temp_resource_from_box(&resource, texture, box, real_level, bo_usage,
|
2020-05-06 14:51:50 -04:00
|
|
|
bo_flags);
|
2020-03-27 19:32:38 +01:00
|
|
|
|
|
|
|
|
/* Since depth-stencil textures don't support linear tiling,
|
|
|
|
|
* blit from ZS to color and vice versa. u_blitter will do
|
|
|
|
|
* the packing for these formats.
|
|
|
|
|
*/
|
|
|
|
|
if (tex->is_depth)
|
|
|
|
|
resource.format = util_blitter_get_color_format_for_zs(resource.format);
|
|
|
|
|
|
|
|
|
|
/* Create the temporary texture. */
|
|
|
|
|
staging = (struct si_texture *)ctx->screen->resource_create(ctx->screen, &resource);
|
|
|
|
|
if (!staging) {
|
|
|
|
|
PRINT_ERR("failed to create temporary texture to hold untiled copy\n");
|
|
|
|
|
goto fail_trans;
|
|
|
|
|
}
|
|
|
|
|
trans->staging = &staging->buffer;
|
|
|
|
|
|
|
|
|
|
/* Just get the strides. */
|
|
|
|
|
si_texture_get_offset(sctx->screen, staging, 0, NULL, &trans->b.b.stride,
|
|
|
|
|
&trans->b.b.layer_stride);
|
|
|
|
|
|
2020-07-01 08:16:12 -04:00
|
|
|
if (usage & PIPE_MAP_READ)
|
2020-03-27 19:32:38 +01:00
|
|
|
si_copy_to_staging_texture(ctx, trans);
|
|
|
|
|
else
|
2020-07-01 08:16:12 -04:00
|
|
|
usage |= PIPE_MAP_UNSYNCHRONIZED;
|
2020-03-27 19:32:38 +01:00
|
|
|
|
|
|
|
|
buf = trans->staging;
|
|
|
|
|
} else {
|
|
|
|
|
/* the resource is mapped directly */
|
2022-07-19 00:20:36 -04:00
|
|
|
offset = si_texture_get_offset(sctx->screen, tex, real_level, box, &trans->b.b.stride,
|
2020-03-27 19:32:38 +01:00
|
|
|
&trans->b.b.layer_stride);
|
|
|
|
|
buf = &tex->buffer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Always unmap texture CPU mappings on 32-bit architectures, so that
|
|
|
|
|
* we don't run out of the CPU address space.
|
|
|
|
|
*/
|
|
|
|
|
if (sizeof(void *) == 4)
|
2020-08-06 12:47:01 -04:00
|
|
|
usage |= RADEON_MAP_TEMPORARY;
|
2020-03-27 19:32:38 +01:00
|
|
|
|
2020-12-03 18:01:11 -05:00
|
|
|
if (!(map = si_buffer_map(sctx, buf, usage)))
|
2020-03-27 19:32:38 +01:00
|
|
|
goto fail_trans;
|
|
|
|
|
|
|
|
|
|
*ptransfer = &trans->b.b;
|
|
|
|
|
return map + offset;
|
2018-01-16 14:38:00 +01:00
|
|
|
|
|
|
|
|
fail_trans:
|
2020-03-27 19:32:38 +01:00
|
|
|
si_resource_reference(&trans->staging, NULL);
|
|
|
|
|
pipe_resource_reference(&trans->b.b.resource, NULL);
|
|
|
|
|
FREE(trans);
|
|
|
|
|
return NULL;
|
2010-05-08 21:09:24 +01:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
static void si_texture_transfer_unmap(struct pipe_context *ctx, struct pipe_transfer *transfer)
|
2010-05-08 21:09:24 +01:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct si_context *sctx = (struct si_context *)ctx;
|
|
|
|
|
struct si_transfer *stransfer = (struct si_transfer *)transfer;
|
|
|
|
|
struct pipe_resource *texture = transfer->resource;
|
|
|
|
|
struct si_texture *tex = (struct si_texture *)texture;
|
|
|
|
|
|
|
|
|
|
/* Always unmap texture CPU mappings on 32-bit architectures, so that
|
|
|
|
|
* we don't run out of the CPU address space.
|
|
|
|
|
*/
|
|
|
|
|
if (sizeof(void *) == 4) {
|
|
|
|
|
struct si_resource *buf = stransfer->staging ? stransfer->staging : &tex->buffer;
|
|
|
|
|
|
2021-03-23 18:33:41 -04:00
|
|
|
sctx->ws->buffer_unmap(sctx->ws, buf->buf);
|
2020-03-27 19:32:38 +01:00
|
|
|
}
|
|
|
|
|
|
2020-07-01 08:16:12 -04:00
|
|
|
if ((transfer->usage & PIPE_MAP_WRITE) && stransfer->staging)
|
2020-03-27 19:32:38 +01:00
|
|
|
si_copy_from_staging_texture(ctx, stransfer);
|
|
|
|
|
|
|
|
|
|
if (stransfer->staging) {
|
2023-12-09 17:07:14 -05:00
|
|
|
sctx->num_alloc_tex_transfer_bytes += stransfer->staging->buf->size;
|
2020-03-27 19:32:38 +01:00
|
|
|
si_resource_reference(&stransfer->staging, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Heuristic for {upload, draw, upload, draw, ..}:
|
|
|
|
|
*
|
|
|
|
|
* Flush the gfx IB if we've allocated too much texture storage.
|
|
|
|
|
*
|
|
|
|
|
* The idea is that we don't want to build IBs that use too much
|
|
|
|
|
* memory and put pressure on the kernel memory manager and we also
|
|
|
|
|
* want to make temporary and invalidated buffers go idle ASAP to
|
|
|
|
|
* decrease the total memory usage or make them reusable. The memory
|
|
|
|
|
* usage will be slightly higher than given here because of the buffer
|
|
|
|
|
* cache in the winsys.
|
|
|
|
|
*
|
|
|
|
|
* The result is that the kernel memory manager is never a bottleneck.
|
|
|
|
|
*/
|
2022-07-07 19:22:31 -04:00
|
|
|
if (sctx->num_alloc_tex_transfer_bytes > (uint64_t)sctx->screen->info.gart_size_kb * 1024 / 4) {
|
2020-03-27 19:32:38 +01:00
|
|
|
si_flush_gfx_cs(sctx, RADEON_FLUSH_ASYNC_START_NEXT_GFX_IB_NOW, NULL);
|
|
|
|
|
sctx->num_alloc_tex_transfer_bytes = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pipe_resource_reference(&transfer->resource, NULL);
|
|
|
|
|
FREE(transfer);
|
2010-05-08 21:09:24 +01:00
|
|
|
}
|
|
|
|
|
|
2018-04-11 21:21:28 -04:00
|
|
|
/* Return if it's allowed to reinterpret one format as another with DCC enabled.
|
|
|
|
|
*/
|
2020-03-27 19:32:38 +01:00
|
|
|
bool vi_dcc_formats_compatible(struct si_screen *sscreen, enum pipe_format format1,
|
|
|
|
|
enum pipe_format format2)
|
2016-08-22 13:45:05 +02:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
const struct util_format_description *desc1, *desc2;
|
|
|
|
|
|
2021-05-06 21:04:19 -04:00
|
|
|
/* All formats are compatible on GFX11. */
|
2022-05-12 02:50:17 -04:00
|
|
|
if (sscreen->info.gfx_level >= GFX11)
|
2021-05-06 21:04:19 -04:00
|
|
|
return true;
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* No format change - exit early. */
|
|
|
|
|
if (format1 == format2)
|
|
|
|
|
return true;
|
|
|
|
|
|
2024-05-21 15:30:43 +02:00
|
|
|
format1 = ac_simplify_cb_format(format1);
|
|
|
|
|
format2 = ac_simplify_cb_format(format2);
|
2020-03-27 19:32:38 +01:00
|
|
|
|
|
|
|
|
/* Check again after format adjustments. */
|
|
|
|
|
if (format1 == format2)
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
desc1 = util_format_description(format1);
|
|
|
|
|
desc2 = util_format_description(format2);
|
|
|
|
|
|
|
|
|
|
if (desc1->layout != UTIL_FORMAT_LAYOUT_PLAIN || desc2->layout != UTIL_FORMAT_LAYOUT_PLAIN)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
/* Float and non-float are totally incompatible. */
|
|
|
|
|
if ((desc1->channel[0].type == UTIL_FORMAT_TYPE_FLOAT) !=
|
|
|
|
|
(desc2->channel[0].type == UTIL_FORMAT_TYPE_FLOAT))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
/* Channel sizes must match across DCC formats.
|
|
|
|
|
* Comparing just the first 2 channels should be enough.
|
|
|
|
|
*/
|
|
|
|
|
if (desc1->channel[0].size != desc2->channel[0].size ||
|
|
|
|
|
(desc1->nr_channels >= 2 && desc1->channel[1].size != desc2->channel[1].size))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
/* Everything below is not needed if the driver never uses the DCC
|
|
|
|
|
* clear code with the value of 1.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* If the clear values are all 1 or all 0, this constraint can be
|
|
|
|
|
* ignored. */
|
2024-05-21 15:30:43 +02:00
|
|
|
if (ac_alpha_is_on_msb(&sscreen->info, format1) != ac_alpha_is_on_msb(&sscreen->info, format2))
|
2020-03-27 19:32:38 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
/* Channel types must match if the clear value of 1 is used.
|
|
|
|
|
* The type categories are only float, signed, unsigned.
|
|
|
|
|
* NORM and INT are always compatible.
|
|
|
|
|
*/
|
|
|
|
|
if (desc1->channel[0].type != desc2->channel[0].type ||
|
|
|
|
|
(desc1->nr_channels >= 2 && desc1->channel[1].type != desc2->channel[1].type))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return true;
|
2016-08-22 13:45:05 +02:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
bool vi_dcc_formats_are_incompatible(struct pipe_resource *tex, unsigned level,
|
|
|
|
|
enum pipe_format view_format)
|
2017-03-24 03:02:53 +01:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct si_texture *stex = (struct si_texture *)tex;
|
2017-03-24 03:02:53 +01:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
return vi_dcc_enabled(stex, level) &&
|
2024-08-06 10:15:00 +02:00
|
|
|
!vi_dcc_formats_compatible(si_screen(tex->screen), tex->format, view_format);
|
2017-03-24 03:02:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This can't be merged with the above function, because
|
|
|
|
|
* vi_dcc_formats_compatible should be called only when DCC is enabled. */
|
2020-03-27 19:32:38 +01:00
|
|
|
void vi_disable_dcc_if_incompatible_format(struct si_context *sctx, struct pipe_resource *tex,
|
|
|
|
|
unsigned level, enum pipe_format view_format)
|
2016-08-22 13:45:05 +02:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct si_texture *stex = (struct si_texture *)tex;
|
2016-08-22 13:45:05 +02:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
if (vi_dcc_formats_are_incompatible(tex, level, view_format))
|
|
|
|
|
if (!si_texture_disable_dcc(sctx, stex))
|
|
|
|
|
si_decompress_dcc(sctx, stex);
|
2016-08-22 13:45:05 +02:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
static struct pipe_surface *si_create_surface(struct pipe_context *pipe, struct pipe_resource *tex,
|
|
|
|
|
const struct pipe_surface *templ)
|
2014-02-09 23:25:06 +01:00
|
|
|
{
|
2025-05-26 10:29:54 -04:00
|
|
|
unsigned level = templ->level;
|
2020-03-27 19:32:38 +01:00
|
|
|
unsigned width = u_minify(tex->width0, level);
|
|
|
|
|
unsigned height = u_minify(tex->height0, level);
|
|
|
|
|
unsigned width0 = tex->width0;
|
|
|
|
|
unsigned height0 = tex->height0;
|
|
|
|
|
|
|
|
|
|
if (tex->target != PIPE_BUFFER && templ->format != tex->format) {
|
|
|
|
|
const struct util_format_description *tex_desc = util_format_description(tex->format);
|
|
|
|
|
const struct util_format_description *templ_desc = util_format_description(templ->format);
|
|
|
|
|
|
|
|
|
|
assert(tex_desc->block.bits == templ_desc->block.bits);
|
|
|
|
|
|
|
|
|
|
/* Adjust size of surface if and only if the block width or
|
|
|
|
|
* height is changed. */
|
|
|
|
|
if (tex_desc->block.width != templ_desc->block.width ||
|
|
|
|
|
tex_desc->block.height != templ_desc->block.height) {
|
|
|
|
|
unsigned nblks_x = util_format_get_nblocksx(tex->format, width);
|
|
|
|
|
unsigned nblks_y = util_format_get_nblocksy(tex->format, height);
|
|
|
|
|
|
|
|
|
|
width = nblks_x * templ_desc->block.width;
|
|
|
|
|
height = nblks_y * templ_desc->block.height;
|
|
|
|
|
|
|
|
|
|
width0 = util_format_get_nblocksx(tex->format, width0);
|
|
|
|
|
height0 = util_format_get_nblocksy(tex->format, height0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-25 03:54:49 -04:00
|
|
|
struct si_surface *surface = CALLOC_STRUCT(si_surface);
|
|
|
|
|
|
|
|
|
|
if (!surface)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2025-05-26 10:29:54 -04:00
|
|
|
assert(templ->first_layer <= util_max_layer(tex, templ->level));
|
|
|
|
|
assert(templ->last_layer <= util_max_layer(tex, templ->level));
|
2022-04-25 03:54:49 -04:00
|
|
|
|
|
|
|
|
pipe_reference_init(&surface->base.reference, 1);
|
|
|
|
|
pipe_resource_reference(&surface->base.texture, tex);
|
|
|
|
|
surface->base.context = pipe;
|
|
|
|
|
surface->base.format = templ->format;
|
2025-05-26 10:29:54 -04:00
|
|
|
surface->base.level = templ->level;
|
|
|
|
|
surface->base.first_layer = templ->first_layer;
|
|
|
|
|
surface->base.last_layer = templ->last_layer;
|
2022-04-25 03:54:49 -04:00
|
|
|
|
|
|
|
|
surface->width0 = width0;
|
|
|
|
|
surface->height0 = height0;
|
|
|
|
|
|
|
|
|
|
surface->dcc_incompatible =
|
|
|
|
|
tex->target != PIPE_BUFFER &&
|
2025-05-26 10:29:54 -04:00
|
|
|
vi_dcc_formats_are_incompatible(tex, templ->level, templ->format);
|
2022-04-25 03:54:49 -04:00
|
|
|
return &surface->base;
|
2014-02-09 23:25:06 +01:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
static void si_surface_destroy(struct pipe_context *pipe, struct pipe_surface *surface)
|
2014-02-09 23:25:06 +01:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
pipe_resource_reference(&surface->texture, NULL);
|
|
|
|
|
FREE(surface);
|
2014-02-09 23:25:06 +01:00
|
|
|
}
|
|
|
|
|
|
2017-07-17 23:06:18 -04:00
|
|
|
static struct pipe_memory_object *
|
2020-03-27 19:32:38 +01:00
|
|
|
si_memobj_from_handle(struct pipe_screen *screen, struct winsys_handle *whandle, bool dedicated)
|
2017-07-17 23:06:18 -04:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct si_screen *sscreen = (struct si_screen *)screen;
|
|
|
|
|
struct si_memory_object *memobj = CALLOC_STRUCT(si_memory_object);
|
2023-12-09 17:07:14 -05:00
|
|
|
struct pb_buffer_lean *buf = NULL;
|
2017-07-17 23:06:18 -04:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
if (!memobj)
|
|
|
|
|
return NULL;
|
2017-07-17 23:06:18 -04:00
|
|
|
|
2021-10-14 15:15:20 +02:00
|
|
|
buf = sscreen->ws->buffer_from_handle(sscreen->ws, whandle, sscreen->info.max_alignment, false);
|
2020-03-27 19:32:38 +01:00
|
|
|
if (!buf) {
|
|
|
|
|
free(memobj);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2017-07-17 23:06:18 -04:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
memobj->b.dedicated = dedicated;
|
|
|
|
|
memobj->buf = buf;
|
|
|
|
|
memobj->stride = whandle->stride;
|
2017-07-17 23:06:18 -04:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
return (struct pipe_memory_object *)memobj;
|
2017-07-17 23:06:18 -04:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
static void si_memobj_destroy(struct pipe_screen *screen, struct pipe_memory_object *_memobj)
|
2017-07-17 23:06:18 -04:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct si_memory_object *memobj = (struct si_memory_object *)_memobj;
|
2017-07-17 23:06:18 -04:00
|
|
|
|
2021-03-23 01:41:57 -04:00
|
|
|
radeon_bo_reference(((struct si_screen*)screen)->ws, &memobj->buf, NULL);
|
2020-03-27 19:32:38 +01:00
|
|
|
free(memobj);
|
2017-07-17 23:06:18 -04:00
|
|
|
}
|
|
|
|
|
|
2020-09-22 14:23:22 +03:00
|
|
|
static struct pipe_resource *si_resource_from_memobj(struct pipe_screen *screen,
|
2020-03-27 19:32:38 +01:00
|
|
|
const struct pipe_resource *templ,
|
|
|
|
|
struct pipe_memory_object *_memobj,
|
|
|
|
|
uint64_t offset)
|
2017-07-17 23:06:18 -04:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct si_screen *sscreen = (struct si_screen *)screen;
|
|
|
|
|
struct si_memory_object *memobj = (struct si_memory_object *)_memobj;
|
2020-09-22 14:23:22 +03:00
|
|
|
struct pipe_resource *res;
|
|
|
|
|
|
|
|
|
|
if (templ->target == PIPE_BUFFER)
|
2025-07-18 16:36:11 +02:00
|
|
|
res = si_buffer_from_winsys_buffer(screen, templ, memobj->buf, offset, false);
|
2020-09-22 14:23:22 +03:00
|
|
|
else
|
|
|
|
|
res = si_texture_from_winsys_buffer(sscreen, templ, memobj->buf,
|
|
|
|
|
memobj->stride,
|
2019-12-17 14:15:56 +01:00
|
|
|
offset, DRM_FORMAT_MOD_INVALID,
|
2020-09-22 14:23:22 +03:00
|
|
|
PIPE_HANDLE_USAGE_FRAMEBUFFER_WRITE | PIPE_HANDLE_USAGE_SHADER_WRITE,
|
2025-07-18 16:36:11 +02:00
|
|
|
memobj->b.dedicated, false);
|
2020-09-22 14:23:22 +03:00
|
|
|
|
|
|
|
|
if (!res)
|
2020-03-27 19:32:38 +01:00
|
|
|
return NULL;
|
|
|
|
|
|
2020-09-22 14:23:22 +03:00
|
|
|
return res;
|
2017-07-17 23:06:18 -04:00
|
|
|
}
|
|
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
static bool si_check_resource_capability(struct pipe_screen *screen, struct pipe_resource *resource,
|
|
|
|
|
unsigned bind)
|
2017-10-09 18:44:50 +02:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
struct si_texture *tex = (struct si_texture *)resource;
|
2017-10-09 18:44:50 +02:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* Buffers only support the linear flag. */
|
|
|
|
|
if (resource->target == PIPE_BUFFER)
|
|
|
|
|
return (bind & ~PIPE_BIND_LINEAR) == 0;
|
2017-10-09 18:44:50 +02:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
if (bind & PIPE_BIND_LINEAR && !tex->surface.is_linear)
|
|
|
|
|
return false;
|
2017-10-09 18:44:50 +02:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
if (bind & PIPE_BIND_SCANOUT && !tex->surface.is_displayable)
|
|
|
|
|
return false;
|
2017-10-09 18:44:50 +02:00
|
|
|
|
2020-03-27 19:32:38 +01:00
|
|
|
/* TODO: PIPE_BIND_CURSOR - do we care? */
|
|
|
|
|
return true;
|
2017-10-09 18:44:50 +02:00
|
|
|
}
|
|
|
|
|
|
2021-12-10 11:26:16 +08:00
|
|
|
static int si_get_sparse_texture_virtual_page_size(struct pipe_screen *screen,
|
|
|
|
|
enum pipe_texture_target target,
|
2021-12-30 15:03:57 +08:00
|
|
|
bool multi_sample,
|
2021-12-10 11:26:16 +08:00
|
|
|
enum pipe_format format,
|
|
|
|
|
unsigned offset, unsigned size,
|
|
|
|
|
int *x, int *y, int *z)
|
|
|
|
|
{
|
2021-12-30 15:09:04 +08:00
|
|
|
struct si_screen *sscreen = (struct si_screen *)screen;
|
|
|
|
|
|
2021-12-10 11:26:16 +08:00
|
|
|
/* Only support one type of page size. */
|
|
|
|
|
if (offset != 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
static const int page_size_2d[][3] = {
|
|
|
|
|
{ 256, 256, 1 }, /* 8bpp */
|
|
|
|
|
{ 256, 128, 1 }, /* 16bpp */
|
|
|
|
|
{ 128, 128, 1 }, /* 32bpp */
|
|
|
|
|
{ 128, 64, 1 }, /* 64bpp */
|
|
|
|
|
{ 64, 64, 1 }, /* 128bpp */
|
|
|
|
|
};
|
|
|
|
|
static const int page_size_3d[][3] = {
|
|
|
|
|
{ 64, 32, 32 }, /* 8bpp */
|
|
|
|
|
{ 32, 32, 32 }, /* 16bpp */
|
|
|
|
|
{ 32, 32, 16 }, /* 32bpp */
|
|
|
|
|
{ 32, 16, 16 }, /* 64bpp */
|
|
|
|
|
{ 16, 16, 16 }, /* 128bpp */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const int (*page_sizes)[3];
|
|
|
|
|
|
|
|
|
|
/* Supported targets. */
|
|
|
|
|
switch (target) {
|
|
|
|
|
case PIPE_TEXTURE_2D:
|
|
|
|
|
case PIPE_TEXTURE_CUBE:
|
|
|
|
|
case PIPE_TEXTURE_RECT:
|
|
|
|
|
case PIPE_TEXTURE_2D_ARRAY:
|
|
|
|
|
case PIPE_TEXTURE_CUBE_ARRAY:
|
|
|
|
|
page_sizes = page_size_2d;
|
|
|
|
|
break;
|
|
|
|
|
case PIPE_TEXTURE_3D:
|
|
|
|
|
page_sizes = page_size_3d;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-30 15:09:04 +08:00
|
|
|
/* ARB_sparse_texture2 need to query supported virtual page x/y/z without
|
|
|
|
|
* knowing the actual sample count. So we need to return a fixed virtual page
|
|
|
|
|
* x/y/z for all sample count which means the virtual page size can not be fixed
|
|
|
|
|
* to 64KB.
|
|
|
|
|
*
|
2025-05-21 18:30:30 +02:00
|
|
|
* Only enabled for GFX9+. GFX10+ removed MS texture support but
|
|
|
|
|
* surface_offset_from_coord can be used to determine the pages to commit.
|
2021-12-30 15:09:04 +08:00
|
|
|
*/
|
2025-05-21 18:30:30 +02:00
|
|
|
if (multi_sample && sscreen->info.gfx_level < GFX9)
|
2021-12-30 15:09:04 +08:00
|
|
|
return 0;
|
|
|
|
|
|
2023-04-11 23:37:34 +03:00
|
|
|
/* Unsupported formats. */
|
2025-05-22 18:01:25 +02:00
|
|
|
if (util_format_get_num_planes(format) > 1 ||
|
2021-12-10 11:26:16 +08:00
|
|
|
util_format_is_compressed(format))
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
int blk_size = util_format_get_blocksize(format);
|
|
|
|
|
/* We don't support any non-power-of-two bpp formats, so
|
|
|
|
|
* pipe_screen->is_format_supported() should already filter out these formats.
|
|
|
|
|
*/
|
|
|
|
|
assert(util_is_power_of_two_nonzero(blk_size));
|
|
|
|
|
|
|
|
|
|
if (size) {
|
|
|
|
|
unsigned index = util_logbase2(blk_size);
|
|
|
|
|
if (x) *x = page_sizes[index][0];
|
|
|
|
|
if (y) *y = page_sizes[index][1];
|
|
|
|
|
if (z) *z = page_sizes[index][2];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-26 03:38:44 +01:00
|
|
|
void si_init_screen_texture_functions(struct si_screen *sscreen)
|
2014-01-22 00:58:12 +01:00
|
|
|
{
|
2020-03-27 19:32:38 +01:00
|
|
|
sscreen->b.resource_from_handle = si_texture_from_handle;
|
|
|
|
|
sscreen->b.resource_get_handle = si_texture_get_handle;
|
|
|
|
|
sscreen->b.resource_get_param = si_resource_get_param;
|
|
|
|
|
sscreen->b.resource_get_info = si_texture_get_info;
|
2020-09-22 14:23:22 +03:00
|
|
|
sscreen->b.resource_from_memobj = si_resource_from_memobj;
|
2020-03-27 19:32:38 +01:00
|
|
|
sscreen->b.memobj_create_from_handle = si_memobj_from_handle;
|
|
|
|
|
sscreen->b.memobj_destroy = si_memobj_destroy;
|
|
|
|
|
sscreen->b.check_resource_capability = si_check_resource_capability;
|
2021-12-10 11:26:16 +08:00
|
|
|
sscreen->b.get_sparse_texture_virtual_page_size =
|
|
|
|
|
si_get_sparse_texture_virtual_page_size;
|
2021-01-11 00:40:53 +01:00
|
|
|
|
|
|
|
|
/* By not setting it the frontend will fall back to non-modifier create,
|
|
|
|
|
* which works around some applications using modifiers that are not
|
|
|
|
|
* allowed in combination with lack of error reporting in
|
|
|
|
|
* gbm_dri_surface_create */
|
2022-05-12 02:50:17 -04:00
|
|
|
if (sscreen->info.gfx_level >= GFX9 && sscreen->info.kernel_has_modifiers) {
|
2021-01-11 00:40:53 +01:00
|
|
|
sscreen->b.resource_create_with_modifiers = si_texture_create_with_modifiers;
|
|
|
|
|
sscreen->b.query_dmabuf_modifiers = si_query_dmabuf_modifiers;
|
|
|
|
|
sscreen->b.is_dmabuf_modifier_supported = si_is_dmabuf_modifier_supported;
|
|
|
|
|
sscreen->b.get_dmabuf_modifier_planes = si_get_dmabuf_modifier_planes;
|
|
|
|
|
}
|
2014-01-22 00:58:12 +01:00
|
|
|
}
|
2014-02-09 23:25:06 +01:00
|
|
|
|
2018-04-01 15:37:11 -04:00
|
|
|
void si_init_context_texture_functions(struct si_context *sctx)
|
2014-02-09 23:25:06 +01:00
|
|
|
{
|
2021-05-05 16:06:28 -04:00
|
|
|
sctx->b.texture_map = si_texture_transfer_map;
|
|
|
|
|
sctx->b.texture_unmap = si_texture_transfer_unmap;
|
2020-03-27 19:32:38 +01:00
|
|
|
sctx->b.create_surface = si_create_surface;
|
|
|
|
|
sctx->b.surface_destroy = si_surface_destroy;
|
2014-02-09 23:25:06 +01:00
|
|
|
}
|