Skip to content

Commit 9c8c6ba

Browse files
Georgi DjakovGeorgi Djakov
authored andcommitted
interconnect: qcom: Add SC8180x providers
The SC8180x contains the usual RPMH based interconnect providers, add a driver which defines the various busses and ports. Signed-off-by: Georgi Djakov <[email protected]> Signed-off-by: Bjorn Andersson <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Georgi Djakov <[email protected]>
1 parent d81274f commit 9c8c6ba

File tree

4 files changed

+809
-0
lines changed

4 files changed

+809
-0
lines changed

drivers/interconnect/qcom/Kconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,15 @@ config INTERCONNECT_QCOM_SC7280
8383
This is a driver for the Qualcomm Network-on-Chip on sc7280-based
8484
platforms.
8585

86+
config INTERCONNECT_QCOM_SC8180X
87+
tristate "Qualcomm SC8180X interconnect driver"
88+
depends on INTERCONNECT_QCOM_RPMH_POSSIBLE
89+
select INTERCONNECT_QCOM_RPMH
90+
select INTERCONNECT_QCOM_BCM_VOTER
91+
help
92+
This is a driver for the Qualcomm Network-on-Chip on sc8180x-based
93+
platforms.
94+
8695
config INTERCONNECT_QCOM_SDM660
8796
tristate "Qualcomm SDM660 interconnect driver"
8897
depends on INTERCONNECT_QCOM

drivers/interconnect/qcom/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ qnoc-qcs404-objs := qcs404.o
99
icc-rpmh-obj := icc-rpmh.o
1010
qnoc-sc7180-objs := sc7180.o
1111
qnoc-sc7280-objs := sc7280.o
12+
qnoc-sc8180x-objs := sc8180x.o
1213
qnoc-sdm660-objs := sdm660.o
1314
qnoc-sdm845-objs := sdm845.o
1415
qnoc-sdx55-objs := sdx55.o
@@ -26,6 +27,7 @@ obj-$(CONFIG_INTERCONNECT_QCOM_QCS404) += qnoc-qcs404.o
2627
obj-$(CONFIG_INTERCONNECT_QCOM_RPMH) += icc-rpmh.o
2728
obj-$(CONFIG_INTERCONNECT_QCOM_SC7180) += qnoc-sc7180.o
2829
obj-$(CONFIG_INTERCONNECT_QCOM_SC7280) += qnoc-sc7280.o
30+
obj-$(CONFIG_INTERCONNECT_QCOM_SC8180X) += qnoc-sc8180x.o
2931
obj-$(CONFIG_INTERCONNECT_QCOM_SDM660) += qnoc-sdm660.o
3032
obj-$(CONFIG_INTERCONNECT_QCOM_SDM845) += qnoc-sdm845.o
3133
obj-$(CONFIG_INTERCONNECT_QCOM_SDX55) += qnoc-sdx55.o

0 commit comments

Comments
 (0)