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

Commit 5e07cd2e authored by Phanindra Babu Pabba's avatar Phanindra Babu Pabba Committed by Gerrit - the friendly Code Review server
Browse files

ARM: dts: msm: Handle v4.32 memory map changes for scuba

Handle TZ Apps region size reductions as per v4.32 memory
mappings for low RAM scuba targets.

Change-Id: I9b69b03669cf3516b458a69d5a5a5b25f2bc89a2
parent 21e07354
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
@@ -2,6 +2,8 @@
/ {
	reserved-memory {
		/delete-node/ removed_region@a0000000;
		/delete-node/ qseecom_region;
		/delete-node/ qseecom_ta_region;

		tz_removed_region: tz_removed_region@a0000000 {
			compatible = "removed-dma-pool";
@@ -14,5 +16,31 @@
			no-map;
			reg = <0x0 0xa0e00000 0x0 0x1100000>;
		};

		qseecom_mem: qseecom_region {
			compatible = "shared-dma-pool";
			alloc-ranges = <0x0 0x00000000 0x0 0xffffffff>;
			reusable;
			alignment = <0x0 0x400000>;
			size = <0x0 0x1000000>;
		};

		qseecom_ta_mem: qseecom_ta_region {
			compatible = "shared-dma-pool";
			alloc-ranges = <0x0 0x00000000 0x0 0xffffffff>;
			reusable;
			alignment = <0x0 0x400000>;
			size = <0x0 0x400000>;
		};
	};
};

&soc {
	qcom_seecom: qseecom@a1800000 {
		reg = <0xa1800000 0x700000>;
	};

	qcom_smcinvoke: smcinvoke@a1800000 {
		reg = <0xa1800000 0x700000>;
	};
};