2019-11-01 20:45:29 +08:00
|
|
|
# Audio Codec configuration options
|
2018-07-27 00:22:10 +08:00
|
|
|
|
|
|
|
# Copyright (c) 2018 Intel Corporation
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
menuconfig AUDIO
|
|
|
|
bool "Support for Audio"
|
|
|
|
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.
|
|
|
|
|
2018-09-18 01:06:26 +08:00
|
|
|
module = AUDIO_CODEC
|
|
|
|
module-str = audio codec
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
2018-07-27 00:22:10 +08:00
|
|
|
|
|
|
|
source "drivers/audio/Kconfig.tlv320dac"
|
|
|
|
|
|
|
|
endif # AUDIO_CODEC
|
2018-05-27 12:49:15 +08:00
|
|
|
|
|
|
|
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"
|
2021-04-27 22:26:07 +08:00
|
|
|
default 80
|
2018-05-27 12:49:15 +08:00
|
|
|
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.intel_dmic"
|
2018-11-13 17:13:19 +08:00
|
|
|
source "drivers/audio/Kconfig.mpxxdtyy"
|
2021-08-19 23:11:46 +08:00
|
|
|
source "drivers/audio/Kconfig.dmic_pdm_nrfx"
|
2018-05-27 12:49:15 +08:00
|
|
|
|
|
|
|
endif # AUDIO_DMIC
|
|
|
|
|
2018-07-27 00:22:10 +08:00
|
|
|
endif # AUDIO
|