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

Commit bc46da38 authored by Laura Abbott's avatar Laura Abbott
Browse files

ARM: dts: Add @address property for CMA nodes



Previously, the CMA devicetree bindings were set up in such a way
that having multiple nodes with the same @address property would
merge them all into one node. The CMA bindings have since been
fixed so that is no longer an issue. Add back the @address part
of the bindings to fully match with the devicetree specification.

Change-Id: I8a527c4d94c4830a45384c02f63c8a120c40114b
Signed-off-by: default avatarLaura Abbott <lauraa@codeaurora.org>
parent dc90658c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
	};

	memory {
		fb_mem: fb_region {
		fb_mem: fb_region@0 {
			reg = <0 0 0 0x1d00000>;
		};
	};
+3 −3
Original line number Diff line number Diff line
@@ -30,20 +30,20 @@
		#address-cells = <2>;
		#size-cells = <2>;

		qsecom_mem: qsecom_region {
		qsecom_mem: qsecom_region@0 {
			linux,contiguous-region;
			reg = <0 0 0 0x1100000>;
			label = "qseecom_mem";
                };

		fb_mem: fb_region {
		fb_mem: fb_region@0 {
			linux,contiguous-region;
			reg = <0 0 0 0x1000000>;
			label = "fb_mem";
			linux,memory-limit = <0xffffffff>;
		};

		secure_mem: secure_region {
		secure_mem: secure_region@0 {
			linux,contiguous-region;
			reg = <0 0 0 0xfc00000>;
			label = "secure_mem";
+5 −5
Original line number Diff line number Diff line
@@ -25,31 +25,31 @@
	};

	memory {
		secure_mem: secure_region {
		secure_mem: secure_region@0 {
			linux,contiguous-region;
			reg = <0 0x6D00000>;
			label = "secure_mem";
		};

		adsp_mem: adsp_region {
		adsp_mem: adsp_region@0 {
			linux,contiguous-region;
			reg = <0 0x2a00000>;
			label = "adsp_mem";
		};

		qsecom_mem: qsecom_region {
		qsecom_mem: qsecom_region@0 {
			linux,contiguous-region;
			reg = <0 0xd00000>;
			label = "qsecom_mem";
		};

		fb_mem: fb_region {
		fb_mem: fb_region@0 {
			linux,contiguous-region;
			reg = <0 0x800000>;
			label = "fb_mem";
		};

		audio_mem: audio_region {
		audio_mem: audio_region@0 {
			linux,contiguous-region;
			linux,reserve-region;
			reg = <0 0x314000>;
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@
	interrupt-parent = <&intc>;

	memory {
		qsecom_mem: qsecom_region {
		qsecom_mem: qsecom_region@0 {
			linux,contiguous-region;
			reg = <0 0x100000>;
			label = "qsecom_mem";
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@

	memory {

		fb_mem: fb_region {
		fb_mem: fb_region@0 {
			reg = <0 0x1000000>;
		};
	};
Loading