1# Copyright (c) 2020 Erwin Rol <erwin@erwinrol.com>
2# SPDX-License-Identifier: Apache-2.0
3
4mainmenu "DMA Loop Transfer Test"
5
6source "Kconfig.zephyr"
7
8config DMA_LOOP_TRANSFER_CHANNEL_NR
9	int "DMA channel to use"
10	default 0
11
12config DMA_LOOP_TRANSFER_SRAM_SECTION
13	string "the section to place the memory buffers."
14	depends on NOCACHE_MEMORY
15	default ".nocache"
16
17config DMA_LOOP_TRANSFER_NUMBER_OF_DMAS
18	int "Number of DMAs to test"
19	default 1
20
21config DMA_LOOP_TRANSFER_SIZE
22	int "Number of bytes to transfer"
23	default 8192
24