zephyr/drivers/spi/Kconfig.cc23x0
Julien Panis 11cbfeafe6 drivers: spi: cc23x0: Add support for DMA mode
Two DMA channels are assigned to TX and RX respectively:
- A TX DMA single request is asserted when there is space in the FIFO.
- A RX DMA single request is asserted when data is in the FIFO.

Signed-off-by: Julien Panis <jpanis@baylibre.com>
2025-06-27 10:56:54 +02:00

22 lines
587 B
Plaintext

# TI CC23x0 SPI configuration options
# Copyright (c) 2024 BayLibre, SAS
# SPDX-License-Identifier: Apache-2.0
config SPI_CC23X0
bool "TI SimpleLink CC23x0 SPI driver"
default y
depends on DT_HAS_TI_CC23X0_SPI_ENABLED
select PINCTRL
help
Enable support for the TI SimpleLink CC23x0 SPI peripheral
config SPI_CC23X0_DMA_DRIVEN
bool "DMA support for TI CC23X0 SPI devices"
depends on SPI_CC23X0
select DMA
help
DMA driven transactions for the SPI.
DMA driven mode offloads data transfer tasks from the CPU
and requires fewer interrupts to handle the SPI transfers.