diff options
author | Amelie Delaunay <amelie.delaunay@foss.st.com> | 2024-10-16 15:39:55 +0300 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2024-10-21 20:21:45 +0300 |
commit | cb467c451163bacad4cbb7540ce7d731946f13f9 (patch) | |
tree | 7c37341db29512e88f389034cd9b381e097a3280 /tools/perf/scripts/python/syscall-counts-by-pid.py | |
parent | 12eb621e1abff65d89aeb4c92a4f3436225971d0 (diff) | |
download | linux-cb467c451163bacad4cbb7540ce7d731946f13f9.tar.xz |
dmaengine: stm32-dma3: refactor HW linked-list to optimize memory accesses
Current behavior splits the buffer/sg in n * STM32_DMA3_MAX_BLOCK_SIZE + 1
for the remainder without optimization.
New behavior splits the buffer/sg in n * STM32_DMA3_MAX_BLOCK_SIZE + 1 for
(x * chan->max_burst) + 1 for the remainder.
Depending on channel FIFO size, optimal double-word (word if only 8-byte
FIFO size) bursts can be programmed before managing the very last remainder
with lower data width.
In case of _prep_slave_sg, and depending on the channel Transfer Complete
event configuration, the user is warned about the refactored linked-list,
not having the same items count than the initial sg_list. This warning is
shown only if the configuration is successful.
Signed-off-by: Amelie Delaunay <amelie.delaunay@foss.st.com>
Link: https://lore.kernel.org/r/20241016-dma3-mp25-updates-v3-3-8311fe6f228d@foss.st.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'tools/perf/scripts/python/syscall-counts-by-pid.py')
0 files changed, 0 insertions, 0 deletions