1# MCUXpresso SDK SPI 2 3# Copyright (c) 2018, NXP 4# SPDX-License-Identifier: Apache-2.0 5 6config SPI_MCUX_LPSPI 7 bool "MCUX SPI driver" 8 default y 9 depends on DT_HAS_NXP_IMX_LPSPI_ENABLED 10 depends on CLOCK_CONTROL 11 select PINCTRL 12 help 13 Enable support for mcux spi driver. 14 15if SPI_MCUX_LPSPI 16config SPI_MCUX_LPSPI_DMA 17 bool "MCUX LPSPI SPI DMA Support" 18 select DMA 19 help 20 Enable the SPI DMA mode for SPI instances 21 that enable dma channels in their device tree node. 22endif # SPI_MCUX_LPSPI 23