zephyr/drivers/spi/Kconfig.pl022
TOKITA Hiroshi d4feadc329 drivers: spi: pl022: Add support DMA transfer
Add supporting DMA-based transfer for PL022 SPI.

Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@fujitsu.com>
2023-04-07 13:20:16 +02:00

23 lines
441 B
Plaintext

# Copyright (c) 2022 TOKITA Hiroshi <tokita.hiroshi@fujitsu.com>
# SPDX-License-Identifier: Apache-2.0
config SPI_PL022
default y
depends on DT_HAS_ARM_PL022_ENABLED
bool "ARM PL022 SPI driver"
if SPI_PL022
config SPI_PL022_INTERRUPT
bool "PL022 interrupt mode"
help
Enables interrupt support for PL022 SPI driver.
config SPI_PL022_DMA
bool "PL022 DMA mode"
select DMA
help
Enables DMA support for PL022 SPI driver.
endif