[Mesa-dev] [PATCH 2/3] radv/radeonsi: set dcc min uncompressed properly for APUs.

Marek Olšák maraeo at gmail.com
Thu Dec 28 15:07:53 UTC 2017


Reviewed-by: Marek Olšák <marek.olsak at amd.com>

Marek

On Tue, Dec 26, 2017 at 11:19 PM, Dave Airlie <airlied at gmail.com> wrote:
> From: Dave Airlie <airlied at redhat.com>
>
> This is ported from amdvlk.
>
> Signed-off-by: Dave Airlie <airlied at redhat.com>
> ---
>  src/amd/vulkan/radv_device.c            | 10 ++++++++++
>  src/gallium/drivers/radeonsi/si_state.c |  9 +++++++++
>  2 files changed, 19 insertions(+)
>
> diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c
> index 63be8c53a9..c87d858a17 100644
> --- a/src/amd/vulkan/radv_device.c
> +++ b/src/amd/vulkan/radv_device.c
> @@ -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);
>         }
>
> diff --git a/src/gallium/drivers/radeonsi/si_state.c b/src/gallium/drivers/radeonsi/si_state.c
> index 544bf6aa2f..db31fae60f 100644
> --- a/src/gallium/drivers/radeonsi/si_state.c
> +++ b/src/gallium/drivers/radeonsi/si_state.c
> @@ -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);
>         }
>
> --
> 2.14.3
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev


More information about the mesa-dev mailing list