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

Commit ab4f730d authored by Prakash Gupta's avatar Prakash Gupta Committed by Vijayanand Jitta
Browse files

ARM: dts: msm: add ion heaps for lagoon

Add ion device tree configuration for generic ion heaps and
template for clients to add target specific heaps.

Change-Id: Id6374ed2ed0afaa6c0afcdd82842bfa70a8d8185
parent 4d9f28f3
Loading
Loading
Loading
Loading

qcom/lagoon-ion.dtsi

0 → 100644
+26 −0
Original line number Diff line number Diff line
&soc {
	qcom,ion {
		compatible = "qcom,msm-ion";
		#address-cells = <1>;
		#size-cells = <0>;

		system_heap: qcom,ion-heap@25 {
			reg = <25>;
			qcom,ion-heap-type = "SYSTEM";
		};

		system_secure_heap: qcom,ion-heap@9 {
			reg = <9>;
			qcom,ion-heap-type = "SYSTEM_SECURE";
		};

		qcom,ion-heap@14 { /* SECURE CARVEOUT HEAP */
			reg = <14>;
			qcom,ion-heap-type = "SECURE_CARVEOUT";
			cdsp {
				memory-region = <&cdsp_sec_mem>;
				token = <0x20000000>;
			};
		};
	};
};
+1 −0
Original line number Diff line number Diff line
@@ -1056,3 +1056,4 @@

#include "lagoon-pinctrl.dtsi"
#include "lagoon-stub-regulator.dtsi"
#include "lagoon-ion.dtsi"