36 lines
742 B
Plaintext
36 lines
742 B
Plaintext
# Dai driver configuration options
|
|
|
|
# Copyright (c) 2022 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
# DAI Drivers
|
|
#
|
|
menuconfig DAI
|
|
bool "Digital Audio Interface (DAI) drivers"
|
|
help
|
|
Enable support for the DAI interface drivers.
|
|
|
|
if DAI
|
|
|
|
config DAI_INIT_PRIORITY
|
|
int "Init priority"
|
|
default 70
|
|
help
|
|
Device driver initialization priority.
|
|
|
|
module = DAI
|
|
module-str = dai
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
comment "Device Drivers"
|
|
|
|
source "drivers/dai/intel/ssp/Kconfig.ssp"
|
|
source "drivers/dai/intel/alh/Kconfig.alh"
|
|
source "drivers/dai/intel/dmic/Kconfig.dmic"
|
|
source "drivers/dai/intel/hda/Kconfig.hda"
|
|
source "drivers/dai/nxp/sai/Kconfig.sai"
|
|
source "drivers/dai/nxp/esai/Kconfig.esai"
|
|
|
|
endif # DAI
|