Skip to content

Commit eed63db

Browse files
committed
interconnect: qcom: Add SM7150 driver support
Add a driver that handles the different NoCs found on SM7150, based on the downstream dtb. Signed-off-by: Danila Tikhonov <danila@jiaxyga.com>
1 parent 92971eb commit eed63db

File tree

4 files changed

+1905
-0
lines changed

4 files changed

+1905
-0
lines changed

drivers/interconnect/qcom/Kconfig

+9
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,15 @@ config INTERCONNECT_QCOM_SM6350
218218
This is a driver for the Qualcomm Network-on-Chip on sm6350-based
219219
platforms.
220220

221+
config INTERCONNECT_QCOM_SM7150
222+
tristate "Qualcomm SM7150 interconnect driver"
223+
depends on INTERCONNECT_QCOM_RPMH_POSSIBLE
224+
select INTERCONNECT_QCOM_RPMH
225+
select INTERCONNECT_QCOM_BCM_VOTER
226+
help
227+
This is a driver for the Qualcomm Network-on-Chip on sm7150-based
228+
platforms.
229+
221230
config INTERCONNECT_QCOM_SM8150
222231
tristate "Qualcomm SM8150 interconnect driver"
223232
depends on INTERCONNECT_QCOM_RPMH_POSSIBLE

drivers/interconnect/qcom/Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ qnoc-sdx65-objs := sdx65.o
2727
qnoc-sdx75-objs := sdx75.o
2828
qnoc-sm6115-objs := sm6115.o
2929
qnoc-sm6350-objs := sm6350.o
30+
qnoc-sm7150-objs := sm7150.o
3031
qnoc-sm8150-objs := sm8150.o
3132
qnoc-sm8250-objs := sm8250.o
3233
qnoc-sm8350-objs := sm8350.o
@@ -60,6 +61,7 @@ obj-$(CONFIG_INTERCONNECT_QCOM_SDX65) += qnoc-sdx65.o
6061
obj-$(CONFIG_INTERCONNECT_QCOM_SDX75) += qnoc-sdx75.o
6162
obj-$(CONFIG_INTERCONNECT_QCOM_SM6115) += qnoc-sm6115.o
6263
obj-$(CONFIG_INTERCONNECT_QCOM_SM6350) += qnoc-sm6350.o
64+
obj-$(CONFIG_INTERCONNECT_QCOM_SM7150) += qnoc-sm7150.o
6365
obj-$(CONFIG_INTERCONNECT_QCOM_SM8150) += qnoc-sm8150.o
6466
obj-$(CONFIG_INTERCONNECT_QCOM_SM8250) += qnoc-sm8250.o
6567
obj-$(CONFIG_INTERCONNECT_QCOM_SM8350) += qnoc-sm8350.o

0 commit comments

Comments
 (0)