Skip to content

Commit 917809e

Browse files
Srinivas-Kandagatlagregkh
authored andcommitted
slimbus: ngd: Add qcom SLIMBus NGD driver
This patch adds suppor to Qualcomm SLIMBus Non-Generic Device (NGD) controller driver. 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 Based on intial work from Karthikeyan Ramasubramanian <[email protected]> and Sagar Dharia <[email protected]> Signed-off-by: Srinivas Kandagatla <[email protected]> Tested-by: Craig Tatlor <[email protected]> Reviewed-by: Vinod Koul <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 992d361 commit 917809e

File tree

4 files changed

+1403
-0
lines changed

4 files changed

+1403
-0
lines changed

drivers/slimbus/Kconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,15 @@ config SLIM_QCOM_CTRL
2020
Select driver if Qualcomm's SLIMbus Manager Component is
2121
programmed using Linux kernel.
2222

23+
config SLIM_QCOM_NGD_CTRL
24+
tristate "Qualcomm SLIMbus Satellite Non-Generic Device Component"
25+
depends on QCOM_QMI_HELPERS
26+
depends on HAS_IOMEM && DMA_ENGINE
27+
help
28+
Select driver if Qualcomm's SLIMbus Satellite Non-Generic Device
29+
Component is programmed using Linux kernel.
30+
This is light-weight slimbus controller driver responsible for
31+
communicating with slave HW directly over the bus using messaging
32+
interface, and communicating with master component residing on ADSP
33+
for bandwidth and data-channel management.
2334
endif

drivers/slimbus/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@ slimbus-y := core.o messaging.o sched.o
88
#Controllers
99
obj-$(CONFIG_SLIM_QCOM_CTRL) += slim-qcom-ctrl.o
1010
slim-qcom-ctrl-y := qcom-ctrl.o
11+
12+
obj-$(CONFIG_SLIM_QCOM_NGD_CTRL) += slim-qcom-ngd-ctrl.o
13+
slim-qcom-ngd-ctrl-y := qcom-ngd-ctrl.o

0 commit comments

Comments
 (0)