2019-11-01 20:45:29 +08:00
|
|
|
# I2S (Inter-IC Sound) driver configuration options
|
|
|
|
|
2017-07-17 21:16:49 +08:00
|
|
|
# Copyright (c) 2017 Piotr Mienkowski
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
#
|
|
|
|
# I2S Drivers
|
|
|
|
#
|
|
|
|
menuconfig I2S
|
2023-03-27 20:55:23 +08:00
|
|
|
bool "Inter-IC Sound (I2S) bus drivers"
|
2017-07-17 21:16:49 +08:00
|
|
|
help
|
|
|
|
Enable support for the I2S (Inter-IC Sound) hardware bus.
|
|
|
|
|
|
|
|
if I2S
|
|
|
|
|
|
|
|
config I2S_INIT_PRIORITY
|
|
|
|
int "Init priority"
|
2022-03-12 05:47:08 +08:00
|
|
|
default KERNEL_INIT_PRIORITY_DEVICE
|
2017-07-17 21:16:49 +08:00
|
|
|
help
|
|
|
|
Device driver initialization priority.
|
|
|
|
|
2018-10-09 06:03:38 +08:00
|
|
|
module = I2S
|
|
|
|
module-str = i2s
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
2017-07-17 21:16:49 +08:00
|
|
|
|
|
|
|
comment "Device Drivers"
|
|
|
|
|
2018-08-14 13:20:30 +08:00
|
|
|
source "drivers/i2s/Kconfig.*"
|
2017-07-17 21:16:49 +08:00
|
|
|
|
|
|
|
endif # I2S
|