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>
22 lines
587 B
Plaintext
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.
|