Skip to content

Commit 5e18d2b

Browse files
committed
Revert "drm/amd/display: enable S/G for RAVEN chip"
This reverts commit 1c42591. S/G display is not stable with the IOMMU enabled on some platforms. Bug: https://bugzilla.kernel.org/show_bug.cgi?id=205523 Acked-by: Christian König <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
1 parent 8fc4134 commit 5e18d2b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

drivers/gpu/drm/amd/amdgpu/amdgpu_display.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ uint32_t amdgpu_display_supported_domains(struct amdgpu_device *adev,
514514
* Also, don't allow GTT domain if the BO doens't have USWC falg set.
515515
*/
516516
if (adev->asic_type >= CHIP_CARRIZO &&
517-
adev->asic_type <= CHIP_RAVEN &&
517+
adev->asic_type < CHIP_RAVEN &&
518518
(adev->flags & AMD_IS_APU) &&
519519
(bo_flags & AMDGPU_GEM_CREATE_CPU_GTT_USWC) &&
520520
amdgpu_bo_support_uswc(bo_flags) &&

drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@ static int amdgpu_dm_init(struct amdgpu_device *adev)
719719
*/
720720
if (adev->flags & AMD_IS_APU &&
721721
adev->asic_type >= CHIP_CARRIZO &&
722-
adev->asic_type <= CHIP_RAVEN)
722+
adev->asic_type < CHIP_RAVEN)
723723
init_data.flags.gpu_vm_support = true;
724724

725725
if (amdgpu_dc_feature_mask & DC_FBC_MASK)

0 commit comments

Comments
 (0)