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

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

Merge "defconfig: Enable DDRSS command transmission to AOP on SM8150"

parents de69ce9e a70e656d
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line
AOP (Always-On-Processor) DDRSS Commands

The AOP DDRSS commands driver is used to send commands
to the AOP, using the mailbox interface, to affect the
behavior of the DDR.

Required properties

- compatible : "qcom,aop-ddrss-cmds"
- mbox : QMP mailbox phandle and channel identifier

Optional properties:
-mbox-name: name of the mailbox

Example:
	qcom,aop-ddrss-cmds {
		compatible = "qcom,aop-ddrss-cmds";
		mboxes = <&qmp_aop 0>;
	};
+6 −0
Original line number Diff line number Diff line
@@ -1368,6 +1368,12 @@
		mbox-name = "restart-ddr-mbox";
	};

	qcom,aop-ddrss-cmds {
		compatible = "qcom,aop-ddrss-cmds";
		mboxes = <&qmp_aop 0>;
		mbox-name = "ddrss-cmds-mbox";
	};

	qcom,mpm2-sleep-counter@0xc221000 {
		compatible = "qcom,mpm2-sleep-counter";
		reg = <0xc221000 0x1000>;
+1 −0
Original line number Diff line number Diff line
@@ -602,6 +602,7 @@ CONFIG_QMP_DEBUGFS_CLIENT=y
CONFIG_QCOM_SMP2P_SLEEPSTATE=y
CONFIG_QCOM_CDSP_RM=y
CONFIG_QCOM_AOP_DDR_MESSAGING=y
CONFIG_QCOM_AOP_DDRSS_COMMANDS=y
CONFIG_QCOM_HYP_CORE_CTL=y
CONFIG_DEVFREQ_GOV_PASSIVE=y
CONFIG_QCOM_BIMC_BWMON=y
+1 −0
Original line number Diff line number Diff line
@@ -630,6 +630,7 @@ CONFIG_QMP_DEBUGFS_CLIENT=y
CONFIG_QCOM_SMP2P_SLEEPSTATE=y
CONFIG_QCOM_CDSP_RM=y
CONFIG_QCOM_AOP_DDR_MESSAGING=y
CONFIG_QCOM_AOP_DDRSS_COMMANDS=y
CONFIG_QCOM_HYP_CORE_CTL=y
CONFIG_DEVFREQ_GOV_PASSIVE=y
CONFIG_QCOM_BIMC_BWMON=y
+6 −0
Original line number Diff line number Diff line
@@ -888,6 +888,12 @@ config QCOM_AOP_DDR_MESSAGING
	  This driver sends messages to the AOP to adjust the DDR frequency when
	  the device is rebooting, to ensure that the device is powered off
	  cleanly.

config QCOM_AOP_DDRSS_COMMANDS
	bool "Send commands to AOP to affect the behavior of the DDRSS"
	help
	  This driver allows messages to be sent to the AOP to affect the DDRSS
	  behavior.
endmenu

config QCOM_HYP_CORE_CTL
Loading