2021-07-30 22:10:56 +08:00
|
|
|
# MCUX I2S driver configuration options
|
|
|
|
|
2024-05-31 11:06:33 +08:00
|
|
|
# Copyright 2021,2024 NXP
|
2021-07-30 22:10:56 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
menuconfig I2S_MCUX_SAI
|
|
|
|
bool "NXP MCUX I2S controller driver"
|
2022-08-24 14:12:33 -05:00
|
|
|
default y
|
|
|
|
depends on DT_HAS_NXP_MCUX_I2S_ENABLED
|
2021-07-30 22:10:56 +08:00
|
|
|
select DMA
|
2023-04-19 16:41:53 +02:00
|
|
|
select PINCTRL
|
2021-07-30 22:10:56 +08:00
|
|
|
help
|
|
|
|
Enable I2S support on the I.MX family of processors.
|
|
|
|
|
|
|
|
if I2S_MCUX_SAI
|
|
|
|
|
|
|
|
config I2S_RX_BLOCK_COUNT
|
|
|
|
int "RX queue length"
|
|
|
|
default 4
|
|
|
|
|
|
|
|
config I2S_TX_BLOCK_COUNT
|
|
|
|
int "TX queue length"
|
|
|
|
default 4
|
|
|
|
|
|
|
|
config I2S_EDMA_BURST_SIZE
|
|
|
|
int "I2S EDMA BURST SIZE"
|
|
|
|
default 2
|
|
|
|
help
|
2022-02-24 12:00:55 +00:00
|
|
|
I2S EDMA burst size in bytes.
|
2021-07-30 22:10:56 +08:00
|
|
|
|
2024-05-31 11:06:33 +08:00
|
|
|
config I2S_HAS_PLL_SETTING
|
|
|
|
bool "I2S will setting pll in driver"
|
|
|
|
default y
|
|
|
|
|
2021-07-30 22:10:56 +08:00
|
|
|
endif # I2S_MCUX_SAI
|