Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/radeon: properly set vm fragment size for TN/RL

Should be the same as cayman. We don't use VM by default
on NI parts so this isn't critical.

Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org

+4 -2
+4 -2
drivers/gpu/drm/radeon/radeon_vm.c
··· 743 743 */ 744 744 745 745 /* NI is optimized for 256KB fragments, SI and newer for 64KB */ 746 - uint64_t frag_flags = rdev->family == CHIP_CAYMAN ? 746 + uint64_t frag_flags = ((rdev->family == CHIP_CAYMAN) || 747 + (rdev->family == CHIP_ARUBA)) ? 747 748 R600_PTE_FRAG_256KB : R600_PTE_FRAG_64KB; 748 - uint64_t frag_align = rdev->family == CHIP_CAYMAN ? 0x200 : 0x80; 749 + uint64_t frag_align = ((rdev->family == CHIP_CAYMAN) || 750 + (rdev->family == CHIP_ARUBA)) ? 0x200 : 0x80; 749 751 750 752 uint64_t frag_start = ALIGN(pe_start, frag_align); 751 753 uint64_t frag_end = pe_end & ~(frag_align - 1);