Skip to content

Commit 4781dbb

Browse files
lweiss-fairphoneGeorgi Djakov
authored andcommitted
interconnect: qcom: Add Milos interconnect provider driver
Add driver for the Qualcomm interconnect buses found in Milos 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. Signed-off-by: Luca Weiss <[email protected]> Link: https://lore.kernel.org/r/[email protected] [georgi: remove null termination of nodes and links] Signed-off-by: Georgi Djakov <[email protected]>
1 parent 0f29e33 commit 4781dbb

File tree

3 files changed

+1942
-0
lines changed

3 files changed

+1942
-0
lines changed

drivers/interconnect/qcom/Kconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,15 @@ config INTERCONNECT_QCOM_SM7150
283283
This is a driver for the Qualcomm Network-on-Chip on sm7150-based
284284
platforms.
285285

286+
config INTERCONNECT_QCOM_MILOS
287+
tristate "Qualcomm Milos interconnect driver"
288+
depends on INTERCONNECT_QCOM_RPMH_POSSIBLE
289+
select INTERCONNECT_QCOM_RPMH
290+
select INTERCONNECT_QCOM_BCM_VOTER
291+
help
292+
This is a driver for the Qualcomm Network-on-Chip on Milos-based
293+
platforms.
294+
286295
config INTERCONNECT_QCOM_SM8150
287296
tristate "Qualcomm SM8150 interconnect driver"
288297
depends on INTERCONNECT_QCOM_RPMH_POSSIBLE

drivers/interconnect/qcom/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ obj-$(CONFIG_INTERCONNECT_QCOM) += interconnect_qcom.o
44

55
interconnect_qcom-y := icc-common.o
66
icc-bcm-voter-objs := bcm-voter.o
7+
qnoc-milos-objs := milos.o
78
qnoc-msm8909-objs := msm8909.o
89
qnoc-msm8916-objs := msm8916.o
910
qnoc-msm8937-objs := msm8937.o
@@ -45,6 +46,7 @@ qnoc-x1e80100-objs := x1e80100.o
4546
icc-smd-rpm-objs := smd-rpm.o icc-rpm.o icc-rpm-clocks.o
4647

4748
obj-$(CONFIG_INTERCONNECT_QCOM_BCM_VOTER) += icc-bcm-voter.o
49+
obj-$(CONFIG_INTERCONNECT_QCOM_MILOS) += qnoc-milos.o
4850
obj-$(CONFIG_INTERCONNECT_QCOM_MSM8909) += qnoc-msm8909.o
4951
obj-$(CONFIG_INTERCONNECT_QCOM_MSM8916) += qnoc-msm8916.o
5052
obj-$(CONFIG_INTERCONNECT_QCOM_MSM8937) += qnoc-msm8937.o

0 commit comments

Comments
 (0)