1# Copyright (c) 2020 STMicroelectronics
2# SPDX-License-Identifier: Apache-2.0
3
4mainmenu "DMA Loop Transfer Test"
5
6source "Kconfig.zephyr"
7
8config DMA_TRANSFER_CHANNEL_NR_0
9	int "first DMA channel to use"
10	default 0
11
12config DMA_TRANSFER_CHANNEL_NR_1
13	int "second DMA channel to use"
14	default 1
15
16config DMA_LOOP_TRANSFER_SRAM_SECTION
17	string "the section to place the memory buffers."
18	depends on NOCACHE_MEMORY
19	default ".nocache"
20
21config DMA_LOOP_TRANSFER_NUMBER_OF_DMAS
22	int "Number of DMAs to test"
23	default 1
24