i2s driver have not suooprt frdm_mcxn947 pll clk set. so add macro CONFIG_I2S_HAS_PLL_SETTING to control pll init. Signed-off-by: Qiang Zhang <qiang.zhang_6@nxp.com>
35 lines
654 B
Text
35 lines
654 B
Text
# MCUX I2S driver configuration options
|
|
|
|
# Copyright 2021,2024 NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig I2S_MCUX_SAI
|
|
bool "NXP MCUX I2S controller driver"
|
|
default y
|
|
depends on DT_HAS_NXP_MCUX_I2S_ENABLED
|
|
select DMA
|
|
select PINCTRL
|
|
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
|
|
I2S EDMA burst size in bytes.
|
|
|
|
config I2S_HAS_PLL_SETTING
|
|
bool "I2S will setting pll in driver"
|
|
default y
|
|
|
|
endif # I2S_MCUX_SAI
|