1# Audio Codec configuration options
2
3# Copyright (c) 2018 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig AUDIO
7	bool "Audio drivers"
8	help
9	  Enable support for Audio
10
11if AUDIO
12#
13# Audio Codec options
14#
15menuconfig AUDIO_CODEC
16	bool "Audio Codec Drivers"
17	help
18	  Enable Audio Codec Driver Configuration
19
20if AUDIO_CODEC
21
22config AUDIO_CODEC_INIT_PRIORITY
23	int "Init priority"
24	default 60
25	help
26	  Audio codec device driver initialization priority.
27
28config AUDIO_CODEC_SHELL
29	bool "Audio Codec shell"
30	depends on SHELL
31	help
32	  Enable the Audio Codec shell with Audio Codec related commands.
33
34module = AUDIO_CODEC
35module-str = audio codec
36source "subsys/logging/Kconfig.template.log_config"
37
38source "drivers/audio/Kconfig.tas6422dac"
39source "drivers/audio/Kconfig.tlv320dac"
40source "drivers/audio/Kconfig.wm8904"
41
42endif # AUDIO_CODEC
43
44menuconfig AUDIO_DMIC
45	bool "Digital Microphone (Audio) Drivers"
46	help
47	  Enable Digital Microphone Driver Configuration
48
49if AUDIO_DMIC
50
51config AUDIO_DMIC_INIT_PRIORITY
52	int "Init priority"
53	default 80
54	help
55	  Audio Digital Microphone device driver initialization priority.
56
57module = AUDIO_DMIC
58module-str = audio_dmic
59source "subsys/logging/Kconfig.template.log_config"
60
61source "drivers/audio/Kconfig.mpxxdtyy"
62source "drivers/audio/Kconfig.dmic_pdm_nrfx"
63source "drivers/audio/Kconfig.dmic_mcux"
64
65endif # AUDIO_DMIC
66
67endif # AUDIO
68