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

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

Merge "msm: pil: remove use of MSM_IMEM_BASE"

parents ca161748 b15f5368
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
@@ -7,9 +7,32 @@ Required properties
-compatible: "qti,msm-imem"
-reg: start address and size of imem memory

If any children nodes exist the following properties are required:
-#address-cells: should be 1
-#size-cells: should be 1
-ranges: A triplet that includes the child address, parent address, &
	 length.  The child address is assumed to be 0.

Child nodes:
------------

Peripheral Image Loader (pil):
------------------------------
Required properties:
-compatible: "qti,msm-imem-pil"
-reg: start address and size of PIL region in imem

Example:

	qti,msm-imem {
		compatible = "qti,msm-imem";
		reg = <0xdeadbeef 0x1000>; /* < start_address size > */
		ranges = <0x0 0xdeadbeef 0x1000>;
		#address-cells = <1>;
		#size-cells = <1>;

		pil@94c {
			compatible = "qti,msm-imem-pil";
			reg = <0x94c 200>;
		};
	};
+10 −2
Original line number Diff line number Diff line
@@ -253,6 +253,14 @@
        qti,msm-imem@fe805000 {
		compatible = "qti,msm-imem";
		reg = <0xfe805000 0x1000>; /* Address and size of IMEM */
		ranges = <0x0 0xfe805000 0x1000>;
		#address-cells = <1>;
		#size-cells = <1>;

		pil@94c {
			compatible = "qti,msm-imem-pil";
			reg = <0x94c 200>;
		};
	};

	qcom,msm-rtb {
+8 −0
Original line number Diff line number Diff line
@@ -287,6 +287,14 @@
	qti,msm-imem@fe805000 {
		compatible = "qti,msm-imem";
		reg = <0xfe805000 0x1000>; /* Address and size of IMEM */
		ranges = <0x0 0xfe805000 0x1000>;
		#address-cells = <1>;
		#size-cells = <1>;

		pil@94c {
			compatible = "qti,msm-imem-pil";
			reg = <0x94c 200>;
		};
	};

	qti,cache_erp {
+10 −2
Original line number Diff line number Diff line
@@ -181,6 +181,14 @@
	qti,msm-imem@fe805000 {
		compatible = "qti,msm-imem";
		reg = <0xfe805000 0x1000>; /* Address and size of IMEM */
		ranges = <0x0 0xfe805000 0x1000>;
		#address-cells = <1>;
		#size-cells = <1>;

		pil@94c {
			compatible = "qti,msm-imem-pil";
			reg = <0x94c 200>;
		};
	};

	qcom,usbbam@f9a44000 {
+8 −0
Original line number Diff line number Diff line
@@ -241,6 +241,14 @@
	qti,msm-imem@fe805000 {
		compatible = "qti,msm-imem";
		reg = <0xfe805000 0x1000>; /* Address and size of IMEM */
		ranges = <0x0 0xfe805000 0x1000>;
		#address-cells = <1>;
		#size-cells = <1>;

		pil@94c {
			compatible = "qti,msm-imem-pil";
			reg = <0x94c 200>;
		};
	};

	qcom,sps@f9984000 {
Loading