1# Copyright (c) 2022 Renesas Electronics Corporation
2# SPDX-License-Identifier: Apache-2.0
3
4config SPI_SMARTBOND
5	bool "Renesas SmartBond(tm) SPI driver"
6	default y
7	depends on DT_HAS_RENESAS_SMARTBOND_SPI_ENABLED
8	select PINCTRL
9	help
10	  Enables SPI driver for Renesas SmartBond(tm) DA1469x series MCU.
11
12config SPI_SMARTBOND_DMA
13	bool "Renesas Smartbond(tm) SPI with DMA acceleration"
14	depends on SPI_SMARTBOND
15	select DMA
16	help
17	  Enables using the DMA engine instead of interrupt-driven
18	  approach. This acceleration is available only for
19	  synchronous transfers.
20