Commit e56d3274 authored by Fabio Estevam's avatar Fabio Estevam Committed by Shawn Guo
Browse files

ARM: dts: imx: Pass a label to the AIPS nodes



Pass a label to the AIPS nodes to make it easier to reference
it from other devicetree files.

Some i.MX dtsi files already describe labels for the AIPS nodes.

Make it available for all SoCs for consistency.

U-Boot, for example usually needs to access the AIPS node to
pass U-Boot-specific properties.

Signed-off-by: default avatarFabio Estevam <festevam@denx.de>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent 8e82a523
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@ soc: soc {
		interrupt-parent = <&aitc>;
		ranges;

		aipi@10000000 { /* AIPI1 */
		aipi1: aipi@10000000 { /* AIPI1 */
			compatible = "fsl,aipi-bus", "simple-bus";
			#address-cells = <1>;
			#size-cells = <1>;
@@ -453,7 +453,7 @@ gpt6: timer@1001f000 {
			};
		};

		aipi@10020000 { /* AIPI2 */
		aipi2: aipi@10020000 { /* AIPI2 */
			compatible = "fsl,aipi-bus", "simple-bus";
			#address-cells = <1>;
			#size-cells = <1>;
+1 −1
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ iram: sram@1fffc000 {
			ranges = <0 0x1fffc000 0x4000>;
		};

		bus@43f00000 { /* AIPS1 */
		aips1: bus@43f00000 { /* AIPS1 */
			compatible = "fsl,aips-bus", "simple-bus";
			#address-cells = <1>;
			#size-cells = <1>;
+2 −2
Original line number Diff line number Diff line
@@ -101,7 +101,7 @@ soc: soc {
		interrupt-parent = <&tzic>;
		ranges;

		bus@50000000 { /* AIPS1 */
		aips1: bus@50000000 { /* AIPS1 */
			compatible = "fsl,aips-bus", "simple-bus";
			#address-cells = <1>;
			#size-cells = <1>;
@@ -385,7 +385,7 @@ uart4: serial@53ff0000 {
			};
		};

		bus@60000000 {	/* AIPS2 */
		aips2: bus@60000000 {	/* AIPS2 */
			compatible = "fsl,aips-bus", "simple-bus";
			#address-cells = <1>;
			#size-cells = <1>;
+2 −2
Original line number Diff line number Diff line
@@ -171,7 +171,7 @@ ipu_di1_disp2: endpoint {
			};
		};

		bus@70000000 { /* AIPS1 */
		aips1: bus@70000000 { /* AIPS1 */
			compatible = "fsl,aips-bus", "simple-bus";
			#address-cells = <1>;
			#size-cells = <1>;
@@ -460,7 +460,7 @@ clks: ccm@73fd4000{
			};
		};

		bus@80000000 {	/* AIPS2 */
		aips2: bus@80000000 {	/* AIPS2 */
			compatible = "fsl,aips-bus", "simple-bus";
			#address-cells = <1>;
			#size-cells = <1>;
+2 −2
Original line number Diff line number Diff line
@@ -222,7 +222,7 @@ gpu: gpu@30000000 {
			clock-names = "core_clk", "mem_iface_clk";
		};

		bus@50000000 { /* AIPS1 */
		aips1: bus@50000000 { /* AIPS1 */
			compatible = "fsl,aips-bus", "simple-bus";
			#address-cells = <1>;
			#size-cells = <1>;
@@ -655,7 +655,7 @@ uart4: serial@53ff0000 {
			};
		};

		bus@60000000 {	/* AIPS2 */
		aips2: bus@60000000 {	/* AIPS2 */
			compatible = "fsl,aips-bus", "simple-bus";
			#address-cells = <1>;
			#size-cells = <1>;
Loading