Commit 1688d4b0 authored by Kumar Gala's avatar Kumar Gala Committed by Maureen Helm
Browse files

dts: arm: nxp: nxp_rt: rename nodelabels to match SoC docs



Have nodelabels match the SoC docs so when a nodelabel reference is
made in the code its easier to relate to the SoC.

Signed-off-by: default avatarKumar Gala <kumar.gala@linaro.org>
parent ce4e3b5c
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -18,8 +18,8 @@
	};

	chosen {
		zephyr,console = &uart1;
		zephyr,shell-uart = &uart1;
		zephyr,console = &lpuart1;
		zephyr,shell-uart = &lpuart1;
	};

	leds {
@@ -34,14 +34,14 @@
		compatible = "gpio-keys";
		user_button: button-1 {
			label = "User SW4";
			gpios = <&gpio2_rt1010 5 GPIO_ACTIVE_LOW>;
			gpios = <&gpio2 5 GPIO_ACTIVE_LOW>;
		};
	};
};

arduino_serial: &uart1 {};
arduino_serial: &lpuart1 {};

&flexspi0 {
&flexspi {
	reg = <0x402a8000 0x4000>, <0x60000000 0x1000000>;
	at25sf128a: at25sf128a@0 {
		compatible = "adesto,at25sf128a", "jedec,spi-nor";
@@ -54,15 +54,15 @@ arduino_serial: &uart1 {};
	};
};

&i2c1 {
&lpi2c1 {
	status = "okay";
};

&uart1 {
&lpuart1 {
	status = "okay";
	current-speed = <115200>;
};

&usbd1 {
&usb1 {
	status = "okay";
};
+7 −7
Original line number Diff line number Diff line
@@ -18,8 +18,8 @@
	};

	chosen {
		zephyr,console = &uart1;
		zephyr,shell-uart = &uart1;
		zephyr,console = &lpuart1;
		zephyr,shell-uart = &lpuart1;
	};

	leds {
@@ -68,9 +68,9 @@
	};
};

arduino_serial: &uart4 {};
arduino_serial: &lpuart4 {};

&flexspi0 {
&flexspi {
	reg = <0x402a8000 0x4000>, <0x60000000 0x1000000>;
	at25sf128a: at25sf128a@0 {
		compatible = "adesto,at25sf128a", "jedec,spi-nor";
@@ -83,15 +83,15 @@ arduino_serial: &uart4 {};
	};
};

&i2c1 {
&lpi2c1 {
	status = "okay";
};

&uart1 {
&lpuart1 {
	status = "okay";
	current-speed = <115200>;
};

&usbd1 {
&usb1 {
	status = "okay";
};
+9 −9
Original line number Diff line number Diff line
@@ -18,8 +18,8 @@
	};

	chosen {
		zephyr,console = &uart1;
		zephyr,shell-uart = &uart1;
		zephyr,console = &lpuart1;
		zephyr,shell-uart = &lpuart1;
	};

	sdram0: memory@80000000 {
@@ -75,9 +75,9 @@
	};
};

arduino_serial: &uart2 {};
arduino_serial: &lpuart2 {};

&flexspi0 {
&flexspi {
	reg = <0x402a8000 0x4000>, <0x60000000 0x800000>;
	is25wp064: is25wp064@0 {
		compatible = "issi,is25wp064", "jedec,spi-nor";
@@ -90,26 +90,26 @@ arduino_serial: &uart2 {};
	};
};

&i2c1 {
&lpi2c1 {
	status = "okay";
};

&i2c4 {
&lpi2c4 {
	status = "okay";
};

&uart1 {
&lpuart1 {
	status = "okay";
	current-speed = <115200>;
};

&eth {
&enet {
	status = "okay";
	ptp {
		status = "okay";
	};
};

&usbd1 {
&usb1 {
	status = "okay";
};
+10 −10
Original line number Diff line number Diff line
@@ -18,8 +18,8 @@
	};

	chosen {
		zephyr,console = &uart1;
		zephyr,shell-uart = &uart1;
		zephyr,console = &lpuart1;
		zephyr,shell-uart = &lpuart1;
	};

	sdram0: memory@80000000 {
@@ -84,9 +84,9 @@
	};
};

arduino_serial: &uart3 {};
arduino_serial: &lpuart3 {};

&flexspi0 {
&flexspi {
	reg = <0x402a8000 0x4000>, <0x60000000 0x4000000>;
	hyperflash0: hyperflash@0 {
		compatible = "cypress,s26ks512s";
@@ -95,7 +95,7 @@ arduino_serial: &uart3 {};
	};
};

&lcdif1 {
&lcdif {
	status = "okay";
	port {
		lcd_panel_out: endpoint {
@@ -104,7 +104,7 @@ arduino_serial: &uart3 {};
	};
};

&i2c1 {
&lpi2c1 {
	status = "okay";

	fxos8700@1f {
@@ -129,23 +129,23 @@ arduino_serial: &uart3 {};
	};
};

&uart1 {
&lpuart1 {
	status = "okay";
	current-speed = <115200>;
};

&spi3 {
&lpspi3 {
	status = "okay";
};

&eth {
&enet {
	status = "okay";
	ptp {
		status = "okay";
	};
};

&usbd1 {
&usb1 {
	status = "okay";
};

+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@

/delete-node/ &hyperflash0;

&flexspi0 {
&flexspi {
	reg = <0x402a8000 0x4000>, <0x60000000 0x800000>;
	is25wp064: is25wp064@0 {
		compatible = "issi,is25wp064", "jedec,spi-nor";
Loading