Add driver for the Qualcomm interconnect buses found in SDX55 based platforms. The topology consists of several NoCs that are controlled by a remote processor that collects the aggregated bandwidth for each master-slave pairs. Based on SM8250 driver and generated from downstream dts. Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Link: https://lore.kernel.org/r/20210121053254.8355-3-manivannan.sadhasivam@linaro.org Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org>
27 lines
1.1 KiB
Makefile
27 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
icc-bcm-voter-objs := bcm-voter.o
|
|
qnoc-msm8916-objs := msm8916.o
|
|
qnoc-msm8974-objs := msm8974.o
|
|
icc-osm-l3-objs := osm-l3.o
|
|
qnoc-qcs404-objs := qcs404.o
|
|
icc-rpmh-obj := icc-rpmh.o
|
|
qnoc-sc7180-objs := sc7180.o
|
|
qnoc-sdm845-objs := sdm845.o
|
|
qnoc-sdx55-objs := sdx55.o
|
|
qnoc-sm8150-objs := sm8150.o
|
|
qnoc-sm8250-objs := sm8250.o
|
|
icc-smd-rpm-objs := smd-rpm.o
|
|
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_BCM_VOTER) += icc-bcm-voter.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_MSM8916) += qnoc-msm8916.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_MSM8974) += qnoc-msm8974.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_OSM_L3) += icc-osm-l3.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_QCS404) += qnoc-qcs404.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_RPMH) += icc-rpmh.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SC7180) += qnoc-sc7180.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SDM845) += qnoc-sdm845.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SDX55) += qnoc-sdx55.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SM8150) += qnoc-sm8150.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SM8250) += qnoc-sm8250.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SMD_RPM) += icc-smd-rpm.o
|