mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 08:02:30 +00:00
917809e228
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 <kramasub@codeaurora.org> and Sagar Dharia <sdharia@codeaurora.org> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Tested-by: Craig Tatlor <ctatlor97@gmail.com> Reviewed-by: Vinod Koul <vkoul@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13 lines
358 B
Makefile
13 lines
358 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for kernel SLIMbus framework.
|
|
#
|
|
obj-$(CONFIG_SLIMBUS) += slimbus.o
|
|
slimbus-y := core.o messaging.o sched.o
|
|
|
|
#Controllers
|
|
obj-$(CONFIG_SLIM_QCOM_CTRL) += slim-qcom-ctrl.o
|
|
slim-qcom-ctrl-y := qcom-ctrl.o
|
|
|
|
obj-$(CONFIG_SLIM_QCOM_NGD_CTRL) += slim-qcom-ngd-ctrl.o
|
|
slim-qcom-ngd-ctrl-y := qcom-ngd-ctrl.o
|