2017-05-10 14:56:22 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2017 Advanced Micro Devices, Inc.
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
|
* distribute, sub license, and/or sell copies of the Software, and to
|
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
|
* the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
|
|
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
|
* NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
|
|
|
|
|
* AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
|
* USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
|
* of the Software.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef AC_SURFACE_H
|
|
|
|
|
#define AC_SURFACE_H
|
|
|
|
|
|
2017-05-10 17:35:25 +02:00
|
|
|
#include "amd_family.h"
|
2019-10-08 10:21:30 +02:00
|
|
|
#include "util/format/u_format.h"
|
2017-05-10 17:35:25 +02:00
|
|
|
|
2021-03-22 19:43:53 -04:00
|
|
|
/* NIR is optional. Some components don't want to include NIR with ac_surface.h. */
|
|
|
|
|
#ifdef AC_SURFACE_INCLUDE_NIR
|
|
|
|
|
#include "compiler/nir/nir_builder.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-09-07 09:58:36 +02:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
#include <stdint.h>
|
2020-07-21 18:54:28 +02:00
|
|
|
#include <stdio.h>
|
2020-09-07 09:58:36 +02:00
|
|
|
|
2017-05-13 22:59:19 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-05-10 17:35:25 +02:00
|
|
|
/* Forward declarations. */
|
2020-06-09 03:19:04 -04:00
|
|
|
struct ac_addrlib;
|
2017-05-10 17:35:25 +02:00
|
|
|
|
|
|
|
|
struct amdgpu_gpu_info;
|
2017-05-12 01:24:48 +02:00
|
|
|
struct radeon_info;
|
2017-05-10 17:35:25 +02:00
|
|
|
|
2020-09-07 09:58:36 +02:00
|
|
|
#define RADEON_SURF_MAX_LEVELS 15
|
2017-05-10 14:56:22 +02:00
|
|
|
|
2020-09-07 09:58:36 +02:00
|
|
|
enum radeon_surf_mode
|
|
|
|
|
{
|
|
|
|
|
RADEON_SURF_MODE_LINEAR_ALIGNED = 1,
|
|
|
|
|
RADEON_SURF_MODE_1D = 2,
|
|
|
|
|
RADEON_SURF_MODE_2D = 3,
|
2017-05-10 14:56:22 +02:00
|
|
|
};
|
|
|
|
|
|
2020-04-23 00:31:36 -04:00
|
|
|
/* This describes D/S/Z/R swizzle modes.
|
|
|
|
|
* Defined in the GB_TILE_MODEn.MICRO_TILE_MODE_NEW order.
|
|
|
|
|
*/
|
2020-09-07 09:58:36 +02:00
|
|
|
enum radeon_micro_mode
|
|
|
|
|
{
|
|
|
|
|
RADEON_MICRO_MODE_DISPLAY = 0,
|
|
|
|
|
RADEON_MICRO_MODE_STANDARD = 1,
|
|
|
|
|
RADEON_MICRO_MODE_DEPTH = 2,
|
|
|
|
|
RADEON_MICRO_MODE_RENDER = 3, /* gfx9 and older: rotated */
|
2017-05-10 14:56:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* the first 16 bits are reserved for libdrm_radeon, don't use them */
|
2020-09-07 09:58:36 +02:00
|
|
|
#define RADEON_SURF_SCANOUT (1 << 16)
|
|
|
|
|
#define RADEON_SURF_ZBUFFER (1 << 17)
|
|
|
|
|
#define RADEON_SURF_SBUFFER (1 << 18)
|
|
|
|
|
#define RADEON_SURF_Z_OR_SBUFFER (RADEON_SURF_ZBUFFER | RADEON_SURF_SBUFFER)
|
2017-05-10 14:56:22 +02:00
|
|
|
/* bits 19 and 20 are reserved for libdrm_radeon, don't use them */
|
2020-09-07 09:58:36 +02:00
|
|
|
#define RADEON_SURF_FMASK (1 << 21)
|
2020-11-28 02:46:29 +01:00
|
|
|
#define RADEON_SURF_DISABLE_DCC (1ull << 22)
|
|
|
|
|
#define RADEON_SURF_TC_COMPATIBLE_HTILE (1ull << 23)
|
|
|
|
|
#define RADEON_SURF_IMPORTED (1ull << 24)
|
|
|
|
|
#define RADEON_SURF_CONTIGUOUS_DCC_LAYERS (1ull << 25)
|
|
|
|
|
#define RADEON_SURF_SHAREABLE (1ull << 26)
|
|
|
|
|
#define RADEON_SURF_NO_RENDER_TARGET (1ull << 27)
|
2020-04-23 01:00:24 -04:00
|
|
|
/* Force a swizzle mode (gfx9+) or tile mode (gfx6-8).
|
|
|
|
|
* If this is not set, optimize for space. */
|
2020-11-28 02:46:29 +01:00
|
|
|
#define RADEON_SURF_FORCE_SWIZZLE_MODE (1ull << 28)
|
|
|
|
|
#define RADEON_SURF_NO_FMASK (1ull << 29)
|
|
|
|
|
#define RADEON_SURF_NO_HTILE (1ull << 30)
|
|
|
|
|
#define RADEON_SURF_FORCE_MICRO_TILE_MODE (1ull << 31)
|
2020-11-28 02:51:05 +01:00
|
|
|
#define RADEON_SURF_PRT (1ull << 32)
|
2017-05-10 14:56:22 +02:00
|
|
|
|
|
|
|
|
struct legacy_surf_level {
|
2021-04-02 13:33:38 -04:00
|
|
|
uint32_t offset_256B; /* divided by 256, the hw can only do 40-bit addresses */
|
2020-09-07 09:58:36 +02:00
|
|
|
uint32_t slice_size_dw; /* in dwords; max = 4GB / 4. */
|
|
|
|
|
unsigned nblk_x : 15;
|
|
|
|
|
unsigned nblk_y : 15;
|
|
|
|
|
enum radeon_surf_mode mode : 2;
|
2017-05-10 14:56:22 +02:00
|
|
|
};
|
|
|
|
|
|
2021-04-02 12:37:42 -04:00
|
|
|
struct legacy_surf_dcc_level {
|
|
|
|
|
uint32_t dcc_offset; /* relative offset within DCC mip tree */
|
|
|
|
|
uint32_t dcc_fast_clear_size;
|
|
|
|
|
uint32_t dcc_slice_fast_clear_size;
|
|
|
|
|
};
|
|
|
|
|
|
2018-04-30 20:54:06 -04:00
|
|
|
struct legacy_surf_fmask {
|
2020-09-07 09:58:36 +02:00
|
|
|
unsigned slice_tile_max; /* max 4M */
|
|
|
|
|
uint8_t tiling_index; /* max 31 */
|
|
|
|
|
uint8_t bankh; /* max 8 */
|
|
|
|
|
uint16_t pitch_in_pixels;
|
2018-04-30 20:54:06 -04:00
|
|
|
};
|
|
|
|
|
|
2017-05-10 14:56:22 +02:00
|
|
|
struct legacy_surf_layout {
|
2020-09-07 09:58:36 +02:00
|
|
|
unsigned bankw : 4; /* max 8 */
|
|
|
|
|
unsigned bankh : 4; /* max 8 */
|
|
|
|
|
unsigned mtilea : 4; /* max 8 */
|
|
|
|
|
unsigned tile_split : 13; /* max 4K */
|
|
|
|
|
unsigned stencil_tile_split : 13; /* max 4K */
|
|
|
|
|
unsigned pipe_config : 5; /* max 17 */
|
|
|
|
|
unsigned num_banks : 5; /* max 16 */
|
|
|
|
|
unsigned macro_tile_index : 4; /* max 15 */
|
|
|
|
|
|
|
|
|
|
/* Whether the depth miptree or stencil miptree as used by the DB are
|
|
|
|
|
* adjusted from their TC compatible form to ensure depth/stencil
|
|
|
|
|
* compatibility. If either is true, the corresponding plane cannot be
|
|
|
|
|
* sampled from.
|
|
|
|
|
*/
|
|
|
|
|
unsigned depth_adjusted : 1;
|
|
|
|
|
unsigned stencil_adjusted : 1;
|
|
|
|
|
|
|
|
|
|
struct legacy_surf_level level[RADEON_SURF_MAX_LEVELS];
|
|
|
|
|
uint8_t tiling_index[RADEON_SURF_MAX_LEVELS];
|
2021-04-02 12:54:09 -04:00
|
|
|
|
|
|
|
|
union {
|
|
|
|
|
/* Color layout */
|
|
|
|
|
struct {
|
|
|
|
|
struct legacy_surf_dcc_level dcc_level[RADEON_SURF_MAX_LEVELS];
|
|
|
|
|
struct legacy_surf_fmask fmask;
|
|
|
|
|
unsigned cmask_slice_tile_max;
|
2021-04-12 01:54:07 -04:00
|
|
|
} color;
|
2021-04-02 12:54:09 -04:00
|
|
|
|
|
|
|
|
/* Z/S layout */
|
|
|
|
|
struct {
|
|
|
|
|
struct legacy_surf_level stencil_level[RADEON_SURF_MAX_LEVELS];
|
|
|
|
|
uint8_t stencil_tiling_index[RADEON_SURF_MAX_LEVELS];
|
2021-04-12 01:54:07 -04:00
|
|
|
} zs;
|
2021-04-02 12:54:09 -04:00
|
|
|
};
|
2017-05-10 14:56:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Same as addrlib - AddrResourceType. */
|
2020-09-07 09:58:36 +02:00
|
|
|
enum gfx9_resource_type
|
|
|
|
|
{
|
|
|
|
|
RADEON_RESOURCE_1D = 0,
|
|
|
|
|
RADEON_RESOURCE_2D,
|
|
|
|
|
RADEON_RESOURCE_3D,
|
2017-05-10 14:56:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct gfx9_surf_meta_flags {
|
2021-04-02 14:04:16 -04:00
|
|
|
uint8_t rb_aligned : 1; /* optimal for RBs */
|
|
|
|
|
uint8_t pipe_aligned : 1; /* optimal for TC */
|
|
|
|
|
uint8_t independent_64B_blocks : 1;
|
|
|
|
|
uint8_t independent_128B_blocks : 1;
|
|
|
|
|
uint8_t max_compressed_block_size : 2;
|
2021-03-22 19:43:53 -04:00
|
|
|
uint8_t display_equation_valid : 1;
|
2017-05-10 14:56:22 +02:00
|
|
|
};
|
|
|
|
|
|
2021-01-13 10:32:15 +01:00
|
|
|
struct gfx9_surf_level {
|
|
|
|
|
unsigned offset;
|
2021-03-19 20:42:14 -04:00
|
|
|
unsigned size; /* the size of one level in one layer (the image is an array of layers
|
|
|
|
|
* where each layer has an array of levels) */
|
2021-01-13 10:32:15 +01:00
|
|
|
};
|
|
|
|
|
|
2021-03-22 19:43:53 -04:00
|
|
|
/**
|
2021-04-13 13:32:44 +02:00
|
|
|
* Meta address equation.
|
|
|
|
|
*
|
2021-04-07 15:59:24 +02:00
|
|
|
* DCC/HTILE address equation for doing DCC/HTILE address computations in shaders.
|
2021-03-22 19:43:53 -04:00
|
|
|
*
|
2021-04-07 15:59:24 +02:00
|
|
|
* ac_surface_meta_address_test.c contains the reference implementation.
|
|
|
|
|
* ac_nir_{dcc,htile}_addr_from_coord is the NIR implementation.
|
2021-03-22 19:43:53 -04:00
|
|
|
*
|
2021-04-07 15:59:24 +02:00
|
|
|
* For DCC:
|
2021-03-22 19:43:53 -04:00
|
|
|
* The gfx9 equation doesn't support mipmapping.
|
|
|
|
|
* The gfx10 equation doesn't support mipmapping and MSAA.
|
|
|
|
|
* (those are also limitations of Addr2ComputeDccAddrFromCoord)
|
2021-04-07 15:59:24 +02:00
|
|
|
*
|
|
|
|
|
* For HTILE:
|
|
|
|
|
* The gfx9 equation isn't implemented.
|
|
|
|
|
* The gfx10 equation doesn't support mipmapping.
|
2021-03-22 19:43:53 -04:00
|
|
|
*/
|
2021-04-13 13:32:44 +02:00
|
|
|
struct gfx9_meta_equation {
|
2021-03-22 19:43:53 -04:00
|
|
|
uint16_t meta_block_width;
|
|
|
|
|
uint16_t meta_block_height;
|
|
|
|
|
uint16_t meta_block_depth;
|
|
|
|
|
|
|
|
|
|
union {
|
|
|
|
|
/* The gfx9 DCC equation is chip-specific, and it varies with:
|
|
|
|
|
* - resource type
|
|
|
|
|
* - swizzle_mode
|
|
|
|
|
* - bpp
|
2021-04-20 05:39:30 -04:00
|
|
|
* - number of samples
|
2021-03-22 19:43:53 -04:00
|
|
|
* - number of fragments
|
|
|
|
|
* - pipe_aligned
|
|
|
|
|
* - rb_aligned
|
|
|
|
|
*/
|
|
|
|
|
struct {
|
|
|
|
|
uint8_t num_bits;
|
|
|
|
|
uint8_t num_pipe_bits;
|
|
|
|
|
|
|
|
|
|
struct {
|
|
|
|
|
struct {
|
|
|
|
|
uint8_t dim:3; /* 0..4 */
|
|
|
|
|
uint8_t ord:5; /* 0..31 */
|
|
|
|
|
} coord[5]; /* 0..num_coords-1 */
|
|
|
|
|
} bit[20]; /* 0..num_bits-1 */
|
|
|
|
|
} gfx9;
|
|
|
|
|
|
|
|
|
|
/* The gfx10 DCC equation is chip-specific, it requires 64KB_R_X, and it varies with:
|
|
|
|
|
* - bpp
|
2021-04-20 05:39:30 -04:00
|
|
|
* - number of samples
|
|
|
|
|
* - number of fragments
|
2021-03-22 19:43:53 -04:00
|
|
|
* - pipe_aligned
|
2021-04-07 15:59:24 +02:00
|
|
|
*
|
2021-04-20 05:39:30 -04:00
|
|
|
* The gfx10 HTILE equation is chip-specific, it requires 64KB_Z_X, and it varies with:
|
|
|
|
|
* - number of samples
|
2021-03-22 19:43:53 -04:00
|
|
|
*/
|
2021-04-13 13:38:08 +02:00
|
|
|
uint16_t gfx10_bits[60];
|
2021-03-22 19:43:53 -04:00
|
|
|
} u;
|
|
|
|
|
};
|
|
|
|
|
|
2017-05-10 14:56:22 +02:00
|
|
|
struct gfx9_surf_layout {
|
2021-04-02 14:00:57 -04:00
|
|
|
uint16_t epitch; /* gfx9 only, not on gfx10 */
|
2021-04-02 16:12:43 -04:00
|
|
|
uint8_t swizzle_mode; /* color or depth */
|
2020-09-07 09:58:36 +02:00
|
|
|
|
2021-04-02 14:11:26 -04:00
|
|
|
enum gfx9_resource_type resource_type:8; /* 1D, 2D or 3D */
|
2020-09-07 09:58:36 +02:00
|
|
|
uint16_t surf_pitch; /* in blocks */
|
|
|
|
|
uint16_t surf_height;
|
|
|
|
|
|
|
|
|
|
uint64_t surf_offset; /* 0 unless imported with an offset */
|
|
|
|
|
/* The size of the 2D plane containing all mipmap levels. */
|
|
|
|
|
uint64_t surf_slice_size;
|
|
|
|
|
/* Mipmap level offset within the slice in bytes. Only valid for LINEAR. */
|
|
|
|
|
uint32_t offset[RADEON_SURF_MAX_LEVELS];
|
|
|
|
|
/* Mipmap level pitch in elements. Only valid for LINEAR. */
|
|
|
|
|
uint16_t pitch[RADEON_SURF_MAX_LEVELS];
|
|
|
|
|
|
2020-10-09 03:12:55 +02:00
|
|
|
uint16_t base_mip_width;
|
|
|
|
|
uint16_t base_mip_height;
|
|
|
|
|
|
2020-12-06 19:13:53 +01:00
|
|
|
/* Pitch of level in blocks, only valid for prt images. */
|
|
|
|
|
uint16_t prt_level_pitch[RADEON_SURF_MAX_LEVELS];
|
2021-04-02 16:12:43 -04:00
|
|
|
/* Offset within slice in bytes, only valid for prt images. */
|
|
|
|
|
uint32_t prt_level_offset[RADEON_SURF_MAX_LEVELS];
|
2021-01-13 10:32:15 +01:00
|
|
|
|
2021-04-12 00:54:37 -04:00
|
|
|
/* DCC or HTILE level info */
|
|
|
|
|
struct gfx9_surf_level meta_levels[RADEON_SURF_MAX_LEVELS];
|
|
|
|
|
|
2021-04-02 16:12:43 -04:00
|
|
|
union {
|
|
|
|
|
/* Color */
|
|
|
|
|
struct {
|
|
|
|
|
struct gfx9_surf_meta_flags dcc; /* metadata of color */
|
|
|
|
|
uint8_t fmask_swizzle_mode;
|
|
|
|
|
uint16_t fmask_epitch; /* gfx9 only, not on gfx10 */
|
|
|
|
|
|
|
|
|
|
uint16_t dcc_pitch_max;
|
|
|
|
|
uint16_t dcc_height;
|
|
|
|
|
|
|
|
|
|
uint8_t dcc_block_width;
|
|
|
|
|
uint8_t dcc_block_height;
|
|
|
|
|
uint8_t dcc_block_depth;
|
|
|
|
|
|
|
|
|
|
/* Displayable DCC. This is always rb_aligned=0 and pipe_aligned=0.
|
|
|
|
|
* The 3D engine doesn't support that layout except for chips with 1 RB.
|
|
|
|
|
* All other chips must set rb_aligned=1.
|
|
|
|
|
* A compute shader needs to convert from aligned DCC to unaligned.
|
|
|
|
|
*/
|
|
|
|
|
uint8_t display_dcc_alignment_log2;
|
|
|
|
|
uint32_t display_dcc_size;
|
|
|
|
|
uint16_t display_dcc_pitch_max; /* (mip chain pitch - 1) */
|
|
|
|
|
uint16_t display_dcc_height;
|
|
|
|
|
bool dcc_retile_use_uint16; /* if all values fit into uint16_t */
|
|
|
|
|
uint32_t dcc_retile_num_elements;
|
|
|
|
|
void *dcc_retile_map;
|
|
|
|
|
|
|
|
|
|
/* CMASK level info (only level 0) */
|
|
|
|
|
struct gfx9_surf_level cmask_level0;
|
2021-03-22 19:43:53 -04:00
|
|
|
|
|
|
|
|
/* For DCC retiling. */
|
2021-04-13 13:32:44 +02:00
|
|
|
struct gfx9_meta_equation dcc_equation; /* 2D only */
|
|
|
|
|
struct gfx9_meta_equation display_dcc_equation;
|
2021-07-29 09:09:57 +02:00
|
|
|
|
|
|
|
|
/* For FCE compute. */
|
|
|
|
|
struct gfx9_meta_equation cmask_equation; /* 2D only */
|
2021-04-12 01:54:07 -04:00
|
|
|
} color;
|
2020-12-15 18:59:18 +01:00
|
|
|
|
2021-04-02 16:12:43 -04:00
|
|
|
/* Z/S */
|
|
|
|
|
struct {
|
|
|
|
|
uint64_t stencil_offset; /* separate stencil */
|
|
|
|
|
uint16_t stencil_epitch; /* gfx9 only, not on gfx10 */
|
|
|
|
|
uint8_t stencil_swizzle_mode;
|
2021-04-07 15:59:24 +02:00
|
|
|
|
|
|
|
|
/* For HTILE VRS. */
|
|
|
|
|
struct gfx9_meta_equation htile_equation;
|
2021-04-12 01:54:07 -04:00
|
|
|
} zs;
|
2021-04-02 16:12:43 -04:00
|
|
|
};
|
2017-05-10 14:56:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct radeon_surf {
|
2020-09-07 09:58:36 +02:00
|
|
|
/* Format properties. */
|
2021-04-02 14:31:02 -04:00
|
|
|
uint8_t blk_w : 4;
|
|
|
|
|
uint8_t blk_h : 4;
|
|
|
|
|
uint8_t bpe : 5;
|
2021-04-02 17:08:23 -04:00
|
|
|
/* Display, standard(thin), depth, render(rotated). AKA D,S,Z,R swizzle modes. */
|
|
|
|
|
uint8_t micro_tile_mode : 3;
|
2021-04-12 01:48:02 -04:00
|
|
|
/* Number of mipmap levels where DCC or HTILE is enabled starting from level 0.
|
2020-09-07 09:58:36 +02:00
|
|
|
* Non-zero levels may be disabled due to alignment constraints, but not
|
|
|
|
|
* the first level.
|
|
|
|
|
*/
|
2021-04-12 01:48:02 -04:00
|
|
|
uint8_t num_meta_levels : 4;
|
2021-04-02 14:31:02 -04:00
|
|
|
uint8_t is_linear : 1;
|
|
|
|
|
uint8_t has_stencil : 1;
|
2020-09-07 09:58:36 +02:00
|
|
|
/* This might be true even if micro_tile_mode isn't displayable or rotated. */
|
2021-04-02 14:31:02 -04:00
|
|
|
uint8_t is_displayable : 1;
|
2021-04-02 17:08:23 -04:00
|
|
|
uint8_t first_mip_tail_level : 4;
|
2019-10-08 10:21:30 +02:00
|
|
|
|
2020-09-07 09:58:36 +02:00
|
|
|
/* These are return values. Some of them can be set by the caller, but
|
|
|
|
|
* they will be treated as hints (e.g. bankw, bankh) and might be
|
|
|
|
|
* changed by the calculator.
|
|
|
|
|
*/
|
|
|
|
|
|
2020-12-06 19:13:53 +01:00
|
|
|
/* Not supported yet for depth + stencil. */
|
|
|
|
|
uint16_t prt_tile_width;
|
|
|
|
|
uint16_t prt_tile_height;
|
2021-12-15 11:22:17 +08:00
|
|
|
uint16_t prt_tile_depth;
|
2020-12-06 19:13:53 +01:00
|
|
|
|
2020-09-07 09:58:36 +02:00
|
|
|
/* Tile swizzle can be OR'd with low bits of the BASE_256B address.
|
|
|
|
|
* The value is the same for all mipmap levels. Supported tile modes:
|
|
|
|
|
* - GFX6: Only macro tiling.
|
|
|
|
|
* - GFX9: Only *_X and *_T swizzle modes. Level 0 must not be in the mip
|
|
|
|
|
* tail.
|
|
|
|
|
*
|
|
|
|
|
* Only these surfaces are allowed to set it:
|
|
|
|
|
* - color (if it doesn't have to be displayable)
|
|
|
|
|
* - DCC (same tile swizzle as color)
|
|
|
|
|
* - FMASK
|
|
|
|
|
* - CMASK if it's TC-compatible or if the gen is GFX9
|
|
|
|
|
* - depth/stencil if HTILE is not TC-compatible and if the gen is not GFX9
|
|
|
|
|
*/
|
|
|
|
|
uint8_t tile_swizzle;
|
|
|
|
|
uint8_t fmask_tile_swizzle;
|
|
|
|
|
|
2021-04-02 14:59:54 -04:00
|
|
|
/* Use (1 << log2) to compute the alignment. */
|
|
|
|
|
uint8_t surf_alignment_log2;
|
|
|
|
|
uint8_t fmask_alignment_log2;
|
2021-04-12 01:48:02 -04:00
|
|
|
uint8_t meta_alignment_log2; /* DCC or HTILE */
|
2021-04-02 14:59:54 -04:00
|
|
|
uint8_t cmask_alignment_log2;
|
|
|
|
|
uint8_t alignment_log2;
|
|
|
|
|
|
2021-04-02 17:08:23 -04:00
|
|
|
/* DRM format modifier. Set to DRM_FORMAT_MOD_INVALID to have addrlib
|
|
|
|
|
* select tiling parameters instead.
|
|
|
|
|
*/
|
|
|
|
|
uint64_t modifier;
|
|
|
|
|
uint64_t flags;
|
|
|
|
|
|
2020-09-07 09:58:36 +02:00
|
|
|
uint64_t surf_size;
|
|
|
|
|
uint64_t fmask_size;
|
2021-04-02 17:08:23 -04:00
|
|
|
uint32_t fmask_slice_size; /* max 2^31 (16K * 16K * 8) */
|
2020-09-07 09:58:36 +02:00
|
|
|
|
2021-04-12 01:48:02 -04:00
|
|
|
/* DCC and HTILE (they are very small) */
|
|
|
|
|
uint32_t meta_size;
|
|
|
|
|
uint32_t meta_slice_size;
|
2021-04-07 15:41:05 +02:00
|
|
|
uint32_t meta_pitch;
|
2020-09-07 09:58:36 +02:00
|
|
|
|
|
|
|
|
uint32_t cmask_size;
|
|
|
|
|
uint32_t cmask_slice_size;
|
2021-07-29 09:04:45 +02:00
|
|
|
uint16_t cmask_pitch; /* GFX9+ */
|
|
|
|
|
uint16_t cmask_height; /* GFX9+ */
|
2020-09-07 09:58:36 +02:00
|
|
|
|
|
|
|
|
/* All buffers combined. */
|
2021-04-12 01:48:02 -04:00
|
|
|
uint64_t meta_offset; /* DCC or HTILE */
|
2020-09-07 09:58:36 +02:00
|
|
|
uint64_t fmask_offset;
|
|
|
|
|
uint64_t cmask_offset;
|
|
|
|
|
uint64_t display_dcc_offset;
|
|
|
|
|
uint64_t total_size;
|
|
|
|
|
|
|
|
|
|
union {
|
|
|
|
|
/* Return values for GFX8 and older.
|
|
|
|
|
*
|
|
|
|
|
* Some of them can be set by the caller if certain parameters are
|
|
|
|
|
* desirable. The allocator will try to obey them.
|
|
|
|
|
*/
|
|
|
|
|
struct legacy_surf_layout legacy;
|
|
|
|
|
|
|
|
|
|
/* GFX9+ return values. */
|
|
|
|
|
struct gfx9_surf_layout gfx9;
|
|
|
|
|
} u;
|
2017-05-10 14:56:22 +02:00
|
|
|
};
|
|
|
|
|
|
2017-05-10 20:21:36 +02:00
|
|
|
struct ac_surf_info {
|
2020-09-07 09:58:36 +02:00
|
|
|
uint32_t width;
|
|
|
|
|
uint32_t height;
|
|
|
|
|
uint32_t depth;
|
|
|
|
|
uint8_t samples; /* For Z/S: samples; For color: FMASK coverage samples */
|
|
|
|
|
uint8_t storage_samples; /* For color: allocated samples */
|
|
|
|
|
uint8_t levels;
|
|
|
|
|
uint8_t num_channels; /* heuristic for displayability */
|
|
|
|
|
uint16_t array_size;
|
|
|
|
|
uint32_t *surf_index; /* Set a monotonic counter for tile swizzling. */
|
|
|
|
|
uint32_t *fmask_surf_index;
|
2017-05-10 20:21:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct ac_surf_config {
|
2020-09-07 09:58:36 +02:00
|
|
|
struct ac_surf_info info;
|
|
|
|
|
unsigned is_1d : 1;
|
|
|
|
|
unsigned is_3d : 1;
|
|
|
|
|
unsigned is_cube : 1;
|
2017-05-10 20:21:36 +02:00
|
|
|
};
|
|
|
|
|
|
2020-11-27 04:14:19 -08:00
|
|
|
struct ac_addrlib *ac_addrlib_create(const struct radeon_info *info, uint64_t *max_alignment);
|
2020-06-09 03:19:04 -04:00
|
|
|
void ac_addrlib_destroy(struct ac_addrlib *addrlib);
|
2019-10-15 00:09:08 +02:00
|
|
|
void *ac_addrlib_get_handle(struct ac_addrlib *addrlib);
|
2017-05-10 17:35:25 +02:00
|
|
|
|
2020-06-09 03:19:04 -04:00
|
|
|
int ac_compute_surface(struct ac_addrlib *addrlib, const struct radeon_info *info,
|
2020-09-07 09:58:36 +02:00
|
|
|
const struct ac_surf_config *config, enum radeon_surf_mode mode,
|
|
|
|
|
struct radeon_surf *surf);
|
2020-05-02 12:23:51 -04:00
|
|
|
void ac_surface_zero_dcc_fields(struct radeon_surf *surf);
|
2017-05-10 20:21:36 +02:00
|
|
|
|
2020-09-07 09:58:36 +02:00
|
|
|
void ac_surface_set_bo_metadata(const struct radeon_info *info, struct radeon_surf *surf,
|
|
|
|
|
uint64_t tiling_flags, enum radeon_surf_mode *mode);
|
|
|
|
|
void ac_surface_get_bo_metadata(const struct radeon_info *info, struct radeon_surf *surf,
|
|
|
|
|
uint64_t *tiling_flags);
|
|
|
|
|
|
|
|
|
|
bool ac_surface_set_umd_metadata(const struct radeon_info *info, struct radeon_surf *surf,
|
|
|
|
|
unsigned num_storage_samples, unsigned num_mipmap_levels,
|
2020-08-05 02:20:18 +02:00
|
|
|
unsigned size_metadata, const uint32_t metadata[64]);
|
2020-09-07 09:58:36 +02:00
|
|
|
void ac_surface_get_umd_metadata(const struct radeon_info *info, struct radeon_surf *surf,
|
|
|
|
|
unsigned num_mipmap_levels, uint32_t desc[8],
|
2020-05-02 12:23:51 -04:00
|
|
|
unsigned *size_metadata, uint32_t metadata[64]);
|
|
|
|
|
|
2020-05-30 03:42:39 +02:00
|
|
|
bool ac_surface_override_offset_stride(const struct radeon_info *info, struct radeon_surf *surf,
|
2020-09-07 09:58:36 +02:00
|
|
|
unsigned num_mipmap_levels, uint64_t offset, unsigned pitch);
|
2020-05-04 07:43:44 -04:00
|
|
|
|
2019-10-08 10:21:30 +02:00
|
|
|
struct ac_modifier_options {
|
|
|
|
|
bool dcc; /* Whether to allow DCC. */
|
|
|
|
|
bool dcc_retile; /* Whether to allow use of a DCC retile map. */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
bool ac_is_modifier_supported(const struct radeon_info *info,
|
|
|
|
|
const struct ac_modifier_options *options,
|
|
|
|
|
enum pipe_format format,
|
|
|
|
|
uint64_t modifier);
|
|
|
|
|
bool ac_get_supported_modifiers(const struct radeon_info *info,
|
|
|
|
|
const struct ac_modifier_options *options,
|
|
|
|
|
enum pipe_format format,
|
|
|
|
|
unsigned *mod_count,
|
|
|
|
|
uint64_t *mods);
|
|
|
|
|
bool ac_modifier_has_dcc(uint64_t modifier);
|
|
|
|
|
bool ac_modifier_has_dcc_retile(uint64_t modifier);
|
2021-09-14 04:00:34 +01:00
|
|
|
bool ac_modifier_supports_dcc_image_stores(uint64_t modifier);
|
2021-09-26 18:44:07 +01:00
|
|
|
void ac_modifier_max_extent(const struct radeon_info *info,
|
|
|
|
|
uint64_t modifier, uint32_t *width, uint32_t *height);
|
2019-10-08 10:21:30 +02:00
|
|
|
|
|
|
|
|
unsigned ac_surface_get_nplanes(const struct radeon_surf *surf);
|
|
|
|
|
uint64_t ac_surface_get_plane_offset(enum chip_class chip_class,
|
|
|
|
|
const struct radeon_surf *surf,
|
|
|
|
|
unsigned plane, unsigned layer);
|
|
|
|
|
uint64_t ac_surface_get_plane_stride(enum chip_class chip_class,
|
|
|
|
|
const struct radeon_surf *surf,
|
2022-01-07 09:01:27 +01:00
|
|
|
unsigned plane, unsigned level);
|
2020-11-16 12:28:13 +01:00
|
|
|
/* Of the whole miplevel, not an individual layer */
|
|
|
|
|
uint64_t ac_surface_get_plane_size(const struct radeon_surf *surf,
|
|
|
|
|
unsigned plane);
|
2019-10-08 10:21:30 +02:00
|
|
|
|
2020-07-21 18:54:28 +02:00
|
|
|
void ac_surface_print_info(FILE *out, const struct radeon_info *info,
|
|
|
|
|
const struct radeon_surf *surf);
|
|
|
|
|
|
2021-10-01 22:52:03 +01:00
|
|
|
bool ac_surface_supports_dcc_image_stores(enum chip_class chip_class,
|
|
|
|
|
const struct radeon_surf *surf);
|
|
|
|
|
|
2021-03-22 19:43:53 -04:00
|
|
|
#ifdef AC_SURFACE_INCLUDE_NIR
|
|
|
|
|
nir_ssa_def *ac_nir_dcc_addr_from_coord(nir_builder *b, const struct radeon_info *info,
|
2021-04-13 13:32:44 +02:00
|
|
|
unsigned bpe, struct gfx9_meta_equation *equation,
|
2021-03-22 19:43:53 -04:00
|
|
|
nir_ssa_def *dcc_pitch, nir_ssa_def *dcc_height,
|
|
|
|
|
nir_ssa_def *dcc_slice_size,
|
|
|
|
|
nir_ssa_def *x, nir_ssa_def *y, nir_ssa_def *z,
|
|
|
|
|
nir_ssa_def *sample, nir_ssa_def *pipe_xor);
|
2021-04-07 13:34:51 +02:00
|
|
|
|
2021-07-30 14:19:26 +02:00
|
|
|
nir_ssa_def *ac_nir_cmask_addr_from_coord(nir_builder *b, const struct radeon_info *info,
|
|
|
|
|
struct gfx9_meta_equation *equation,
|
|
|
|
|
nir_ssa_def *cmask_pitch, nir_ssa_def *cmask_height,
|
2021-08-03 13:35:25 +02:00
|
|
|
nir_ssa_def *cmask_slice_size,
|
2021-07-30 14:19:26 +02:00
|
|
|
nir_ssa_def *x, nir_ssa_def *y, nir_ssa_def *z,
|
|
|
|
|
nir_ssa_def *pipe_xor,
|
|
|
|
|
nir_ssa_def **bit_position);
|
|
|
|
|
|
2021-04-07 13:34:51 +02:00
|
|
|
nir_ssa_def *ac_nir_htile_addr_from_coord(nir_builder *b, const struct radeon_info *info,
|
|
|
|
|
struct gfx9_meta_equation *equation,
|
|
|
|
|
nir_ssa_def *htile_pitch,
|
|
|
|
|
nir_ssa_def *htile_slice_size,
|
|
|
|
|
nir_ssa_def *x, nir_ssa_def *y, nir_ssa_def *z,
|
|
|
|
|
nir_ssa_def *pipe_xor);
|
2021-03-22 19:43:53 -04:00
|
|
|
#endif
|
|
|
|
|
|
2017-05-13 22:59:19 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-05-10 14:56:22 +02:00
|
|
|
#endif /* AC_SURFACE_H */
|