1# SPDX-License-Identifier: Apache-2.0
2
3mainmenu "SPI Loopback Test"
4
5source "Kconfig.zephyr"
6
7config SPI_LOOPBACK_MODE_LOOP
8	bool "Configure the SPI in LOOP mode, so that no extra wiring is needed"
9
10if SOC_SERIES_STM32H7X
11
12config SPI_LOOPBACK_16BITS_FRAMES
13	bool "Use 16 bits frames for tests"
14
15config DT_DEFINED_NOCACHE
16	bool "Enable this if nocache regions are defined in devicetree"
17
18if DT_DEFINED_NOCACHE
19
20config DT_DEFINED_NOCACHE_NAME
21	string "Name of the nocache region defined in devicetree (capitals)"
22
23endif # DT_DEFINED_NOCACHE
24
25endif # SOC_SERIES_STM32H7X
26