ad7fcbc308
This controller driver programs manager, interface, and framer devices for Qualcomm's slimbus HW block. Manager component currently implements logical address setting, and messaging interface. Interface device reports bus synchronization information, and framer device clocks the bus from the time it's woken up, until clock-pause is executed by the manager device. Signed-off-by: Sagar Dharia <sdharia@codeaurora.org> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Reviwed-by: Mark Brown <broonie@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11 lines
258 B
Makefile
11 lines
258 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
|