blob: 8cd595148d178a4dcca7a29d565b0dd36e3c480e [file] [log] [blame]
Sagar Dharia3648e782017-12-11 23:42:57 +00001# SPDX-License-Identifier: GPL-2.0
2#
3# SLIMbus driver configuration
4#
5menuconfig SLIMBUS
6 tristate "SLIMbus support"
7 help
8 SLIMbus is standard interface between System-on-Chip and audio codec,
9 and other peripheral components in typical embedded systems.
10
11 If unsure, choose N.
12
13if SLIMBUS
14
15# SLIMbus controllers
Sagar Dhariaad7fcbc2017-12-11 23:43:05 +000016config SLIM_QCOM_CTRL
17 tristate "Qualcomm SLIMbus Manager Component"
Srinivas Kandagatlafc6b1f32018-01-03 09:32:04 +000018 depends on HAS_IOMEM
Sagar Dhariaad7fcbc2017-12-11 23:43:05 +000019 help
20 Select driver if Qualcomm's SLIMbus Manager Component is
21 programmed using Linux kernel.
Sagar Dharia3648e782017-12-11 23:42:57 +000022
Srinivas Kandagatla917809e2018-06-19 17:13:01 +010023config SLIM_QCOM_NGD_CTRL
24 tristate "Qualcomm SLIMbus Satellite Non-Generic Device Component"
Niklas Cassel5323ac52018-11-12 12:25:26 +000025 depends on HAS_IOMEM && DMA_ENGINE && NET
26 depends on ARCH_QCOM || COMPILE_TEST
27 select QCOM_QMI_HELPERS
Srinivas Kandagatla917809e2018-06-19 17:13:01 +010028 help
29 Select driver if Qualcomm's SLIMbus Satellite Non-Generic Device
30 Component is programmed using Linux kernel.
31 This is light-weight slimbus controller driver responsible for
32 communicating with slave HW directly over the bus using messaging
33 interface, and communicating with master component residing on ADSP
34 for bandwidth and data-channel management.
Sagar Dharia3648e782017-12-11 23:42:57 +000035endif