Merge "defconfig: Enable interconnect driver for CLIFFS"

This commit is contained in:
qctecmdr 2023-07-17 09:00:40 -07:00 committed by Gerrit - the friendly Code Review server
commit 00de222769
5 changed files with 2865 additions and 0 deletions

View File

@ -56,6 +56,7 @@ CONFIG_I3C_MASTER_MSM_GENI=m
CONFIG_INPUT_PM8941_PWRKEY=m
# CONFIG_INPUT_PM8XXX_VIBRATOR is not set
CONFIG_INPUT_QCOM_HV_HAPTICS=m
CONFIG_INTERCONNECT_QCOM_CLIFFS=m
CONFIG_INTERCONNECT_QCOM_DEBUG=m
CONFIG_INTERCONNECT_QCOM_PINEAPPLE=m
CONFIG_INTERCONNECT_TEST=m

View File

@ -220,6 +220,19 @@ config INTERCONNECT_QCOM_SM8450
This is a driver for the Qualcomm Network-on-Chip on SM8450-based
platforms.
config INTERCONNECT_QCOM_CLIFFS
tristate "CLIFFS interconnect driver"
depends on INTERCONNECT_QCOM
depends on OF
select INTERCONNECT_QCOM_BCM_VOTER
select INTERCONNECT_QCOM_RPMH
select INTERCONNECT_QCOM_QOS
help
This is a driver for the Qualcomm Technologies, Inc. Network-on-Chip
on Cliffs-based platforms. Interconnect driver provides interfaces
for setting bandwidth between two endpoints (path). It also used to
configure NOC QoS settings (Quality of Service).
config INTERCONNECT_QCOM_PINEAPPLE
tristate "PINEAPPLE interconnect driver"
depends on INTERCONNECT_QCOM

View File

@ -28,6 +28,7 @@ qnoc-sm8150-objs := sm8150.o
qnoc-sm8250-objs := sm8250.o
qnoc-sm8350-objs := sm8350.o
qnoc-sm8450-objs := sm8450.o
qnoc-cliffs-objs := cliffs.o
qnoc-pineapple-objs := pineapple.o
qnoc-qos-rpm-obj := qnoc-qos-rpm.o
qnoc-kalama-objs := kalama.o
@ -59,6 +60,7 @@ obj-$(CONFIG_INTERCONNECT_QCOM_SM8150) += qnoc-sm8150.o
obj-$(CONFIG_INTERCONNECT_QCOM_SM8250) += qnoc-sm8250.o
obj-$(CONFIG_INTERCONNECT_QCOM_SM8350) += qnoc-sm8350.o
obj-$(CONFIG_INTERCONNECT_QCOM_SM8450) += qnoc-sm8450.o
obj-$(CONFIG_INTERCONNECT_QCOM_CLIFFS) += qnoc-cliffs.o
obj-$(CONFIG_INTERCONNECT_QCOM_PINEAPPLE) += qnoc-pineapple.o
obj-$(CONFIG_INTERCONNECT_QCOM_KALAMA) += qnoc-kalama.o
obj-$(CONFIG_INTERCONNECT_QCOM_BLAIR) += qnoc-blair.o

File diff suppressed because it is too large Load Diff

View File

@ -69,6 +69,7 @@ def define_pineapple():
"drivers/interconnect/qcom/icc-bcm-voter.ko",
"drivers/interconnect/qcom/icc-debug.ko",
"drivers/interconnect/qcom/icc-rpmh.ko",
"drivers/interconnect/qcom/qnoc-cliffs.ko",
"drivers/interconnect/qcom/qnoc-pineapple.ko",
"drivers/interconnect/qcom/qnoc-qos.ko",
"drivers/iommu/arm/arm-smmu/arm_smmu.ko",