mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
radv/radeonsi: set dcc min uncompressed properly for APUs.
This is ported from amdvlk. Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
cf363e4405
commit
db27907d78
2 changed files with 19 additions and 0 deletions
|
|
@ -3162,6 +3162,15 @@ radv_initialise_color_surface(struct radv_device *device,
|
|||
|
||||
if (device->physical_device->rad_info.chip_class >= VI) {
|
||||
unsigned max_uncompressed_block_size = V_028C78_MAX_BLOCK_SIZE_256B;
|
||||
unsigned min_compressed_block_size = V_028C78_MIN_BLOCK_SIZE_32B;
|
||||
|
||||
/* amdvlk: [min-compressed-block-size] should be set to 32 for dGPU and
|
||||
64 for APU because all of our APUs to date use DIMMs which have
|
||||
a request granularity size of 64B while all other chips have a
|
||||
32B request size */
|
||||
if (!device->physical_device->rad_info.has_dedicated_vram)
|
||||
min_compressed_block_size = V_028C78_MIN_BLOCK_SIZE_64B;
|
||||
|
||||
if (iview->image->info.samples > 1) {
|
||||
if (iview->image->surface.bpe == 1)
|
||||
max_uncompressed_block_size = V_028C78_MAX_BLOCK_SIZE_64B;
|
||||
|
|
@ -3170,6 +3179,7 @@ radv_initialise_color_surface(struct radv_device *device,
|
|||
}
|
||||
|
||||
cb->cb_dcc_control = S_028C78_MAX_UNCOMPRESSED_BLOCK_SIZE(max_uncompressed_block_size) |
|
||||
S_028C78_MIN_COMPRESSED_BLOCK_SIZE(min_compressed_block_size) |
|
||||
S_028C78_INDEPENDENT_64B_BLOCKS(1);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2451,6 +2451,14 @@ static void si_initialize_color_surface(struct si_context *sctx,
|
|||
|
||||
if (sctx->b.chip_class >= VI) {
|
||||
unsigned max_uncompressed_block_size = V_028C78_MAX_BLOCK_SIZE_256B;
|
||||
unsigned min_compressed_block_size = V_028C78_MIN_BLOCK_SIZE_32B;
|
||||
|
||||
/* amdvlk: [min-compressed-block-size] should be set to 32 for dGPU and
|
||||
64 for APU because all of our APUs to date use DIMMs which have
|
||||
a request granularity size of 64B while all other chips have a
|
||||
32B request size */
|
||||
if (!sctx->screen->info.has_dedicated_vram)
|
||||
min_compressed_block_size = V_028C78_MIN_BLOCK_SIZE_64B;
|
||||
|
||||
if (rtex->resource.b.b.nr_samples > 1) {
|
||||
if (rtex->surface.bpe == 1)
|
||||
|
|
@ -2460,6 +2468,7 @@ static void si_initialize_color_surface(struct si_context *sctx,
|
|||
}
|
||||
|
||||
surf->cb_dcc_control = S_028C78_MAX_UNCOMPRESSED_BLOCK_SIZE(max_uncompressed_block_size) |
|
||||
S_028C78_MIN_COMPRESSED_BLOCK_SIZE(min_compressed_block_size) |
|
||||
S_028C78_INDEPENDENT_64B_BLOCKS(1);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue