mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
5323ac5177
QCOM_QMI_HELPERS is a hidden kconfig, so the proper usage is to select it, not depend upon it. Because of this change, we now also need to depend on the same Kconfigs as QCOM_QMI_HELPERS depends on. Signed-off-by: Niklas Cassel <niklas.cassel@linaro.org> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
35 lines
1.1 KiB
Text
35 lines
1.1 KiB
Text
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# SLIMbus driver configuration
|
|
#
|
|
menuconfig SLIMBUS
|
|
tristate "SLIMbus support"
|
|
help
|
|
SLIMbus is standard interface between System-on-Chip and audio codec,
|
|
and other peripheral components in typical embedded systems.
|
|
|
|
If unsure, choose N.
|
|
|
|
if SLIMBUS
|
|
|
|
# SLIMbus controllers
|
|
config SLIM_QCOM_CTRL
|
|
tristate "Qualcomm SLIMbus Manager Component"
|
|
depends on HAS_IOMEM
|
|
help
|
|
Select driver if Qualcomm's SLIMbus Manager Component is
|
|
programmed using Linux kernel.
|
|
|
|
config SLIM_QCOM_NGD_CTRL
|
|
tristate "Qualcomm SLIMbus Satellite Non-Generic Device Component"
|
|
depends on HAS_IOMEM && DMA_ENGINE && NET
|
|
depends on ARCH_QCOM || COMPILE_TEST
|
|
select QCOM_QMI_HELPERS
|
|
help
|
|
Select driver if Qualcomm's SLIMbus Satellite Non-Generic Device
|
|
Component is programmed using Linux kernel.
|
|
This is light-weight slimbus controller driver responsible for
|
|
communicating with slave HW directly over the bus using messaging
|
|
interface, and communicating with master component residing on ADSP
|
|
for bandwidth and data-channel management.
|
|
endif
|