1# STM32 I2S driver configuration options
2
3# Copyright (c) 2018 STMicroelectronics
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig I2S_STM32
7	bool "STM32 MCU I2S controller driver"
8	default y
9	depends on DT_HAS_ST_STM32_I2S_ENABLED
10	select CACHE_MANAGEMENT if CPU_HAS_DCACHE
11	select DMA
12	select PINCTRL
13	help
14	  Enable I2S support on the STM32 family of processors.
15	  (Tested on the STM32F4 & STM32H7 series)
16
17if I2S_STM32
18
19config I2S_STM32_RX_BLOCK_COUNT
20	int "RX queue length"
21	default 4
22
23config I2S_STM32_TX_BLOCK_COUNT
24	int "TX queue length"
25	default 4
26
27endif # I2S_STM32
28