forked from Minki/linux
5e4e6c4d3a
Add driver for the interconnect buses found in Qualcomm QCS404-based platforms. The topology consists of three NoCs that are controlled by a remote processor. This remote processor collects the aggregated bandwidth for each master-slave pairs. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org>
10 lines
300 B
Makefile
10 lines
300 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
qnoc-qcs404-objs := qcs404.o
|
|
qnoc-sdm845-objs := sdm845.o
|
|
icc-smd-rpm-objs := smd-rpm.o
|
|
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_QCS404) += qnoc-qcs404.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SDM845) += qnoc-sdm845.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SMD_RPM) += icc-smd-rpm.o
|