1#
2# Copyright (c) 2020 Antmicro <www.antmicro.com>
3#
4# SPDX-License-Identifier: Apache-2.0
5#
6
7menuconfig I2S_LITEX
8	bool "Litex I2S driver"
9	default y
10	depends on DT_HAS_LITEX_I2S_ENABLED
11	help
12		Enable Litex Inter Sound (I2S) bus driver.
13
14if I2S_LITEX
15
16config I2S_LITEX_RX_BLOCK_COUNT
17	int "RX queue length"
18	default 500
19
20config I2S_LITEX_TX_BLOCK_COUNT
21	int "TX queue length"
22	default 500
23
24config I2S_LITEX_CHANNELS_CONCATENATED
25	bool "Channels placed without padding in fifo"
26
27config I2S_LITEX_DATA_BIG_ENDIAN
28	bool "Received data will be stored as big endian"
29
30endif
31