mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 22:51:35 +00:00
30c8fa3ec6
Add driver for the Qualcomm interconnect buses found in MSM8916 based platforms. The topology consists of three NoCs that are controlled by a remote processor that collects the aggregated bandwidth for each master-slave pairs. Reviewed-by: Evan Green <evgreen@chromium.org> Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org>
14 lines
482 B
Makefile
14 lines
482 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
qnoc-msm8916-objs := msm8916.o
|
|
qnoc-msm8974-objs := msm8974.o
|
|
qnoc-qcs404-objs := qcs404.o
|
|
qnoc-sdm845-objs := sdm845.o
|
|
icc-smd-rpm-objs := smd-rpm.o
|
|
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_MSM8916) += qnoc-msm8916.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_MSM8974) += qnoc-msm8974.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
|