1# Kconfig Andes ATCSPI200 SPI configuration options
2#
3# Copyright (c) 2022 Andes Technology Corporation.
4#
5# SPDX-License-Identifier: Apache-2.0
6#
7
8config SPI_ANDES_ATCSPI200
9	bool "Andes ATCSPI200 SPI driver"
10	default y
11	depends on DT_HAS_ANDESTECH_ATCSPI200_ENABLED
12	help
13	  Enable driver for Andes ATCSPI200 SPI controller
14
15if SPI_ANDES_ATCSPI200
16
17config ANDES_SPI_DMA_MODE
18	bool "Using DMA mode for spi"
19	default y
20	depends on DMA
21
22endif # SPI_ANDES_ATCSPI200
23