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

Commit aac0501d authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: restart: remove {emergency_}download_mode use of MSM_IMEM_BASE"

parents 8840b4bf 6b6cc078
Loading
Loading
Loading
Loading
+21 −0
Original line number Diff line number Diff line
@@ -46,6 +46,17 @@ Required properties:
-compatible: "qti,msm-imem-restart_reason
-reg: start address and size of restart_reason region in imem

Download Mode:
--------------
Required properties:
-compatible: "qti,msm-imem-download_mode"
-reg: start address and size of download_mode region in imem

Emergency Download Mode:
------------------------
-compatible: "qti,msm-imem-emergency_download_mode"
-reg: start address and size of emergency_download_mode region in imem

Example:

	qti,msm-imem {
@@ -55,6 +66,11 @@ Example:
		#address-cells = <1>;
		#size-cells = <1>;

		download_mode@0 {
			compatible = "qti,msm-imem-download_mode";
			reg = <0x0 8>;
		};

		restart_reason@65c {
			compatible = "qti,msm-imem-restart_reason";
			reg = <0x65c 4>;
@@ -74,4 +90,9 @@ Example:
			compatible = "qti,msm-imem-pil";
			reg = <0x94c 200>;
		};

		emergency_download_mode@fe0 {
			compatible = "qti,msm-imem-emergency_download_mode";
			reg = <0xfe0 12>;
		};
	};
+10 −0
Original line number Diff line number Diff line
@@ -258,6 +258,11 @@
		#address-cells = <1>;
		#size-cells = <1>;

		download_mode@0 {
			compatible = "qti,msm-imem-download_mode";
			reg = <0x0 8>;
		};

		mem_dump_table@14 {
			compatible = "qti,msm-imem-mem_dump_table";
			reg = <0x14 4>;
@@ -282,6 +287,11 @@
			compatible = "qti,msm-imem-pil";
			reg = <0x94c 200>;
		};

		emergency_download_mode@fe0 {
			compatible = "qti,msm-imem-emergency_download_mode";
			reg = <0xfe0 12>;
		};
	};

	qcom,msm-rtb {
+10 −0
Original line number Diff line number Diff line
@@ -291,6 +291,11 @@
		#address-cells = <1>;
		#size-cells = <1>;

		download_mode@0 {
			compatible = "qti,msm-imem-download_mode";
			reg = <0x0 8>;
		};

		mem_dump_table@14 {
			compatible = "qti,msm-imem-mem_dump_table";
			reg = <0x14 4>;
@@ -315,6 +320,11 @@
			compatible = "qti,msm-imem-pil";
			reg = <0x94c 200>;
		};

		emergency_download_mode@fe0 {
			compatible = "qti,msm-imem-emergency_download_mode";
			reg = <0xfe0 12>;
		};
	};

	qti,cache_erp {
+10 −0
Original line number Diff line number Diff line
@@ -162,6 +162,11 @@
		#address-cells = <1>;
		#size-cells = <1>;

		download_mode@0 {
			compatible = "qti,msm-imem-download_mode";
			reg = <0x0 8>;
		};

		mem_dump_table@14 {
			compatible = "qti,msm-imem-mem_dump_table";
			reg = <0x14 4>;
@@ -181,6 +186,11 @@
			compatible = "qti,msm-imem-pil";
			reg = <0x94c 200>;
		};

		emergency_download_mode@fe0 {
			compatible = "qti,msm-imem-emergency_download_mode";
			reg = <0xfe0 12>;
		};
	};

	qti,usbbam@f9a44000 {
+10 −0
Original line number Diff line number Diff line
@@ -245,6 +245,11 @@
		#address-cells = <1>;
		#size-cells = <1>;

		download_mode@0 {
			compatible = "qti,msm-imem-download_mode";
			reg = <0x0 8>;
		};

		mem_dump_table@14 {
			compatible = "qti,msm-imem-mem_dump_table";
			reg = <0x14 4>;
@@ -264,6 +269,11 @@
			compatible = "qti,msm-imem-pil";
			reg = <0x94c 200>;
		};

		emergency_download_mode@fe0 {
			compatible = "qti,msm-imem-emergency_download_mode";
			reg = <0xfe0 12>;
		};
	};

	qcom,sps@f9984000 {
Loading