[PATCH v5 4/4] drm/amd/display: enable S/G for RAVEN chip
Christian König
ckoenig.leichtzumerken at gmail.com
Fri Jul 26 07:14:53 UTC 2019
Am 25.07.19 um 16:24 schrieb Andrey Grodzovsky:
> From: Shirish S <shirish.s at amd.com>
>
> enables gpu_vm_support in dm and adds
> AMDGPU_GEM_DOMAIN_GTT as supported domain
>
> v2:
> Move BO placement logic into amdgpu_display_supported_domains
>
> v3:
> Use amdgpu_bo_validate_uswc in amdgpu_display_supported_domains.
>
> v4:
> amdgpu_bo_validate_uswc moved to sepperate patch.
>
> Change-Id: If34300beaa60be2d36170b7b5b096ec644502b20
> Signed-off-by: Shirish S <shirish.s at amd.com>
> Signed-off-by: Andrey Grodzovsky <andrey.grodzovsky at amd.com>
> ---
> drivers/gpu/drm/amd/amdgpu/amdgpu_display.c | 2 +-
> drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
> index cac9975..73045a3 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
> @@ -505,7 +505,7 @@ uint32_t amdgpu_display_supported_domains(struct amdgpu_device *adev)
> * APUs. So force the BO placement to VRAM in case this architecture
> * will not allow USWC mappings.
> */
> - if (adev->asic_type >= CHIP_CARRIZO && adev->asic_type < CHIP_RAVEN &&
> + if (adev->asic_type >= CHIP_CARRIZO && adev->asic_type <= CHIP_RAVEN &&
This whole approach is incorrect since we don't check the flags of the
actually BO used for scanout any more.
As I wrote before it is still perfectly possible and valid that
userspace never sets this flag.
Regards,
Christian.
> adev->flags & AMD_IS_APU && amdgpu_bo_support_uswc(0) &&
> amdgpu_device_asic_has_dc_support(adev->asic_type))
> domain |= AMDGPU_GEM_DOMAIN_GTT;
> diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
> index 4922589..f0387ce1 100644
> --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
> +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
> @@ -686,7 +686,7 @@ static int amdgpu_dm_init(struct amdgpu_device *adev)
> */
> if (adev->flags & AMD_IS_APU &&
> adev->asic_type >= CHIP_CARRIZO &&
> - adev->asic_type < CHIP_RAVEN)
> + adev->asic_type <= CHIP_RAVEN)
> init_data.flags.gpu_vm_support = true;
>
> if (amdgpu_dc_feature_mask & DC_FBC_MASK)
More information about the amd-gfx
mailing list