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.0: adjust SDMA limits

SDMA 7.0 has increased transfer limits.

v2: fix harder, use shifts to make it more obvious

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_0.c
··· 1835 1835 } 1836 1836 1837 1837 static const struct amdgpu_buffer_funcs sdma_v7_0_buffer_funcs = { 1838 - .copy_max_bytes = 0x400000, 1838 + .copy_max_bytes = 1 << 30, 1839 1839 .copy_num_dw = 8, 1840 1840 .emit_copy_buffer = sdma_v7_0_emit_copy_buffer, 1841 - .fill_max_bytes = 0x400000, 1841 + .fill_max_bytes = 1 << 30, 1842 1842 .fill_num_dw = 5, 1843 1843 .emit_fill_buffer = sdma_v7_0_emit_fill_buffer, 1844 1844 };