1# MCUX I2S driver configuration options
2
3# Copyright (c) 2021, NXP
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig I2S_MCUX_SAI
7	bool "NXP MCUX I2S controller driver"
8	default y
9	depends on DT_HAS_NXP_MCUX_I2S_ENABLED
10	select DMA
11	select PINCTRL
12	help
13	  Enable I2S support on the I.MX family of processors.
14
15if I2S_MCUX_SAI
16
17config I2S_RX_BLOCK_COUNT
18	int "RX queue length"
19	default 4
20
21config I2S_TX_BLOCK_COUNT
22	int "TX queue length"
23	default 4
24
25config I2S_EDMA_BURST_SIZE
26	int "I2S EDMA BURST SIZE"
27	default 2
28	help
29	  I2S EDMA burst size in bytes.
30
31endif # I2S_MCUX_SAI
32