1# Copyright (c) 2021 Nordic Semiconductor ASA 2# SPDX-License-Identifier: Apache-2.0 3 4menuconfig I2S_NRFX 5 bool "nRF I2S nrfx driver" 6 default y 7 depends on DT_HAS_NORDIC_NRF_I2S_ENABLED 8 select NRFX_I2S0 if HAS_HW_NRF_I2S0 9 select NRFX_I2S20 if HAS_HW_NRF_I2S20 10 select PINCTRL 11 help 12 Enable support for nrfx I2S driver for nRF MCU series. 13 14if I2S_NRFX 15 16config I2S_NRFX_RX_BLOCK_COUNT 17 int "RX queue length" 18 default 4 19 20config I2S_NRFX_TX_BLOCK_COUNT 21 int "TX queue length" 22 default 4 23 24endif # I2S_NRFX 25