zephyr/drivers/audio/Kconfig
Daniel DeGrasse 6fbd76bef3 drivers: audio: dmic: add driver for NXP DMIC peripheral
Add driver for NXP DMIC peripheral. This peripheral is present on the
iMX RT5xx and iMX RT6xx parts, as well as some LPC SOCs. The following
features are supported:
- up to 2 simultaneous channels of L/R PCM data (4 channels are not
  supported due to limitations of the DMA engine)
- individual configuration of gain and filter parameters for each DMIC
  channel input

The driver has been tested with up to 4 PCM data streams (2 L/R channels),
as well as the MEMS microphones present on the RT595 EVK.

Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
Co-authored-by: Yves Vandervennet <yves.vandervennet@nxp.com>
2024-01-17 14:43:52 +01:00

67 lines
1.3 KiB
Plaintext

# Audio Codec configuration options
# Copyright (c) 2018 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
menuconfig AUDIO
bool "Audio drivers"
help
Enable support for Audio
if AUDIO
#
# Audio Codec options
#
menuconfig AUDIO_CODEC
bool "Audio Codec Drivers"
help
Enable Audio Codec Driver Configuration
if AUDIO_CODEC
config AUDIO_CODEC_INIT_PRIORITY
int "Init priority"
default 60
help
Audio codec device driver initialization priority.
config AUDIO_CODEC_SHELL
bool "Audio Codec shell"
depends on SHELL
help
Enable the Audio Codec shell with Audio Codec related commands.
module = AUDIO_CODEC
module-str = audio codec
source "subsys/logging/Kconfig.template.log_config"
source "drivers/audio/Kconfig.tas6422dac"
source "drivers/audio/Kconfig.tlv320dac"
endif # AUDIO_CODEC
menuconfig AUDIO_DMIC
bool "Digital Microphone (Audio) Drivers"
help
Enable Digital Microphone Driver Configuration
if AUDIO_DMIC
config AUDIO_DMIC_INIT_PRIORITY
int "Init priority"
default 80
help
Audio Digital Microphone device driver initialization priority.
module = AUDIO_DMIC
module-str = audio_dmic
source "subsys/logging/Kconfig.template.log_config"
source "drivers/audio/Kconfig.mpxxdtyy"
source "drivers/audio/Kconfig.dmic_pdm_nrfx"
source "drivers/audio/Kconfig.dmic_mcux"
endif # AUDIO_DMIC
endif # AUDIO