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

SDMA 6.x 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_v6_0.c
··· 1884 1884 } 1885 1885 1886 1886 static const struct amdgpu_buffer_funcs sdma_v6_0_buffer_funcs = { 1887 - .copy_max_bytes = 0x400000, 1887 + .copy_max_bytes = 1 << 30, 1888 1888 .copy_num_dw = 7, 1889 1889 .emit_copy_buffer = sdma_v6_0_emit_copy_buffer, 1890 1890 1891 - .fill_max_bytes = 0x400000, 1891 + .fill_max_bytes = 1 << 30, 1892 1892 .fill_num_dw = 5, 1893 1893 .emit_fill_buffer = sdma_v6_0_emit_fill_buffer, 1894 1894 };