mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 09:30:52 +07:00
6df5b34949
Add driver for the Qualcomm interconnect buses found in SM8250 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 SC7180 driver and generated from downstream dts. Signed-off-by: Jonathan Marek <jonathan@marek.ca> Reviewed-by: Sibi Sankar <sibis@codeaurora.org> Link: https://lore.kernel.org/r/20200728023811.5607-6-jonathan@marek.ca Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org>
26 lines
1007 B
Makefile
26 lines
1007 B
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-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_SM8150) += qnoc-sm8150.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SM8250) += qnoc-sm8250.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SMD_RPM) += icc-smd-rpm.o
|