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

Configure Feed

Select the types of activity you want to include in your feed.

drm/amdgpu/sdma7.1: adjust SDMA limits

SDMA 7.1 has increased transfer limits.

Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>
Reviewed-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

+2 -2
+2 -2
drivers/gpu/drm/amd/amdgpu/sdma_v7_1.c
··· 1745 1745 } 1746 1746 1747 1747 static const struct amdgpu_buffer_funcs sdma_v7_1_buffer_funcs = { 1748 - .copy_max_bytes = 0x400000, 1748 + .copy_max_bytes = 1 << 30, 1749 1749 .copy_num_dw = 8, 1750 1750 .emit_copy_buffer = sdma_v7_1_emit_copy_buffer, 1751 - .fill_max_bytes = 0x400000, 1751 + .fill_max_bytes = 1 << 30, 1752 1752 .fill_num_dw = 5, 1753 1753 .emit_fill_buffer = sdma_v7_1_emit_fill_buffer, 1754 1754 };