Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a1829f0c authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "defconfig: enable LLCC driver on sdxprairie target"

parents 2cd8c381 88e5383c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -98,7 +98,8 @@ compatible devices:
		qcom,sm8150-llcc,
		qcom,sdmshrike-llcc,
		qcom,sm6150-llcc,
		qcom,sdmmagpie-llcc
		qcom,sdmmagpie-llcc,
		qcom,sdxprairie-llcc

Example:

+2 −0
Original line number Diff line number Diff line
@@ -329,6 +329,8 @@ CONFIG_IOMMU_DEBUG_TRACKING=y
CONFIG_IOMMU_TESTS=y
CONFIG_RPMSG_CHAR=y
CONFIG_RPMSG_QCOM_GLINK_SMEM=y
CONFIG_QCOM_LLCC=y
CONFIG_QCOM_SDXPRAIRIE_LLCC=y
CONFIG_QCOM_QMI_HELPERS=y
CONFIG_QCOM_SMEM=y
CONFIG_QCOM_SCM=y
+2 −0
Original line number Diff line number Diff line
@@ -320,6 +320,8 @@ CONFIG_IOMMU_DEBUG_TRACKING=y
CONFIG_IOMMU_TESTS=y
CONFIG_RPMSG_CHAR=y
CONFIG_RPMSG_QCOM_GLINK_SMEM=y
CONFIG_QCOM_LLCC=y
CONFIG_QCOM_SDXPRAIRIE_LLCC=y
CONFIG_QCOM_QMI_HELPERS=y
CONFIG_QCOM_SMEM=y
CONFIG_QCOM_SCM=y
+15 −0
Original line number Diff line number Diff line
@@ -442,6 +442,21 @@
		status = "ok";
	};

	qcom,llcc@9200000 {
		compatible = "qcom,llcc-core", "syscon", "simple-mfd";
		reg = <0x9200000 0x50000>;
		reg-names = "llcc_base";
		qcom,llcc-banks-off = <0x0>;
		qcom,llcc-broadcast-off = <0x0>;

		llcc: qcom,sdxprairie-llcc {
			compatible = "qcom,sdxprairie-llcc";
			#cache-cells = <1>;
			max-slices = <32>;
			cap-based-alloc-and-pwr-collapse;
		};
	};

	qcom,msm_gsi {
		compatible = "qcom,msm_gsi";
	};
+10 −0
Original line number Diff line number Diff line
@@ -102,6 +102,16 @@ config QCOM_SDMMAGPIE_LLCC
	  data required to configure LLCC so that clients can start using the
	  LLCC slices.

config QCOM_SDXPRAIRIE_LLCC
	tristate "Qualcomm Technologies, Inc. SDXPRAIRIE LLCC driver"
	depends on QCOM_LLCC
	help
	  This configuration option enables LLCC driver specific to SDXPRAIRIE.
	  Say 'Y' here to enable the LLCC driver for SDXPRAIRIE which provides
	  data required to configure LLCC so that clients can start using the
	  LLCC slices.


config QCOM_LLCC_AMON
	tristate "Qualcomm Technologies, Inc. LLCC Activity Monitor(AMON) driver"
	depends on QCOM_LLCC
Loading