From 48425222c4bd4d9eea8acb2e11adaa1624db1110 Mon Sep 17 00:00:00 2001 From: Reto Schneider Date: Fri, 13 Sep 2024 00:51:42 +0200 Subject: [PATCH 01/10] boards: nxp: imx93_evk: Fix unit and first address mismatch This fixes the following warning: > unit address and first address in 'reg' (0x2) don't match for > /enet@42890000/mdio/phy@0 Signed-off-by: Reto Schneider --- boards/nxp/imx93_evk/imx93_evk_mimx9352_a55.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/nxp/imx93_evk/imx93_evk_mimx9352_a55.dts b/boards/nxp/imx93_evk/imx93_evk_mimx9352_a55.dts index 4703e734935ea..21a66834ae2e8 100644 --- a/boards/nxp/imx93_evk/imx93_evk_mimx9352_a55.dts +++ b/boards/nxp/imx93_evk/imx93_evk_mimx9352_a55.dts @@ -89,7 +89,7 @@ pinctrl-0 = <&pinmux_mdio>; pinctrl-names = "default"; status = "okay"; - phy: phy@0 { + phy: phy@2 { compatible = "realtek,rtl8211f"; reg = <2>; status = "okay"; From 355137f99df2791d2397f8043d622931e2ffa8c3 Mon Sep 17 00:00:00 2001 From: Reto Schneider Date: Fri, 13 Sep 2024 00:57:11 +0200 Subject: [PATCH 02/10] boards: nxp: imx8mp_evk: Fix unit and first address mismatch This fixes the following warning: > unit address and first address in 'reg' (0x1) don't match for > /soc/enet@30be0000/mdio/phy@0 Signed-off-by: Reto Schneider --- boards/nxp/imx8mp_evk/imx8mp_evk_mimx8ml8_a53_smp.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/nxp/imx8mp_evk/imx8mp_evk_mimx8ml8_a53_smp.dts b/boards/nxp/imx8mp_evk/imx8mp_evk_mimx8ml8_a53_smp.dts index 5f977acfca5be..3822987d2a443 100644 --- a/boards/nxp/imx8mp_evk/imx8mp_evk_mimx8ml8_a53_smp.dts +++ b/boards/nxp/imx8mp_evk/imx8mp_evk_mimx8ml8_a53_smp.dts @@ -56,7 +56,7 @@ pinctrl-0 = <&pinmux_mdio>; pinctrl-names = "default"; status = "okay"; - phy: phy@0 { + phy: phy@1 { compatible = "realtek,rtl8211f"; reg = <1>; status = "okay"; From 7917d2ffa65e486b6f7ed45e47550a05f799f008 Mon Sep 17 00:00:00 2001 From: Reto Schneider Date: Fri, 13 Sep 2024 01:21:02 +0200 Subject: [PATCH 03/10] boards: nxp: usb_kw24d512: Fix unit and first address mismatch This fixes the following warning: > unit address and first address in 'reg' (0x70000) don't match for > /soc/flash-controller@40020000/flash@0/partitions/partition@700000 Signed-off-by: Reto Schneider --- boards/nxp/usb_kw24d512/usb_kw24d512.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/nxp/usb_kw24d512/usb_kw24d512.dts b/boards/nxp/usb_kw24d512/usb_kw24d512.dts index 6b0dbdb666839..59e616a605e74 100644 --- a/boards/nxp/usb_kw24d512/usb_kw24d512.dts +++ b/boards/nxp/usb_kw24d512/usb_kw24d512.dts @@ -106,7 +106,7 @@ zephyr_udc0: &usbd { label = "image-0"; reg = <0x00000000 0x00070000>; }; - storage_partition: partition@700000 { + storage_partition: partition@70000 { label = "storage"; reg = <0x00070000 0x00010000>; }; From 3da2927739c4e6b2b45db94ea505c41de9a3a979 Mon Sep 17 00:00:00 2001 From: Reto Schneider Date: Fri, 13 Sep 2024 01:25:47 +0200 Subject: [PATCH 04/10] boards: nxp: frdm_mcxn236: Fix unit and first address mismatch This fixes the following warning: > unit address and first address in 'reg' (0x88000) don't match for > /flash-controller@43000/flash@0/partitions/partition@80000 Signed-off-by: Reto Schneider --- boards/nxp/frdm_mcxn236/frdm_mcxn236.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/nxp/frdm_mcxn236/frdm_mcxn236.dtsi b/boards/nxp/frdm_mcxn236/frdm_mcxn236.dtsi index a108bd2158694..b4631c79afad6 100644 --- a/boards/nxp/frdm_mcxn236/frdm_mcxn236.dtsi +++ b/boards/nxp/frdm_mcxn236/frdm_mcxn236.dtsi @@ -107,7 +107,7 @@ label = "image-0"; reg = <0x00010000 DT_SIZE_K(480)>; }; - slot1_partition: partition@80000 { + slot1_partition: partition@88000 { label = "image-1"; reg = <0x0088000 DT_SIZE_K(472)>; }; From 649801a33f1e60e0888ace2751d48fd59a92f19c Mon Sep 17 00:00:00 2001 From: Reto Schneider Date: Fri, 13 Sep 2024 01:59:24 +0200 Subject: [PATCH 05/10] boards: nxp: frdm_kw41z: Fix unit and first address mismatch This fixes the following warnings: > devicetree error: unit address and first address in 'reg' (0x70000) > don't match for > /soc/flash-controller@40020000/flash@0/partitions/partition@700000 Signed-off-by: Reto Schneider --- boards/nxp/frdm_kw41z/frdm_kw41z.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/nxp/frdm_kw41z/frdm_kw41z.dts b/boards/nxp/frdm_kw41z/frdm_kw41z.dts index baea825f872a4..47b44f3e6179a 100644 --- a/boards/nxp/frdm_kw41z/frdm_kw41z.dts +++ b/boards/nxp/frdm_kw41z/frdm_kw41z.dts @@ -184,7 +184,7 @@ label = "image-0"; reg = <0x00000000 0x00070000>; }; - storage_partition: partition@700000 { + storage_partition: partition@70000 { label = "storage"; reg = <0x00070000 0x00010000>; }; From 3c2483a901cbf28ee338b50ace2519f2b672b45e Mon Sep 17 00:00:00 2001 From: Reto Schneider Date: Sat, 14 Sep 2024 16:55:49 +0200 Subject: [PATCH 06/10] boards: nxp: imx8mp: Fix unit and first address mismatch This fixes the following warning: > devicetree error: unit address and first address in 'reg' (0x1) don't > match for /soc/enet@30be0000/mdio/phy@0 Signed-off-by: Reto Schneider --- boards/nxp/imx8mp_evk/imx8mp_evk_mimx8ml8_a53.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/nxp/imx8mp_evk/imx8mp_evk_mimx8ml8_a53.dts b/boards/nxp/imx8mp_evk/imx8mp_evk_mimx8ml8_a53.dts index 634092adbd4e5..692435c87d307 100644 --- a/boards/nxp/imx8mp_evk/imx8mp_evk_mimx8ml8_a53.dts +++ b/boards/nxp/imx8mp_evk/imx8mp_evk_mimx8ml8_a53.dts @@ -54,7 +54,7 @@ pinctrl-0 = <&pinmux_mdio>; pinctrl-names = "default"; status = "okay"; - phy: phy@0 { + phy: phy@1 { compatible = "realtek,rtl8211f"; reg = <1>; status = "okay"; From 7b2389c3c035e5ba926998a7f66ca7ac87aa9725 Mon Sep 17 00:00:00 2001 From: Reto Schneider Date: Fri, 13 Sep 2024 01:32:33 +0200 Subject: [PATCH 07/10] dts: arm: nxp: lpc55S1x: Fix unit and first address mismatch This fixes the following warnings: > unit address and first address in 'reg' (0x40094000) don't match for > /soc/peripheral@40000000/usbhs@144000 Signed-off-by: Reto Schneider --- dts/arm/nxp/nxp_lpc55S1x_common.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dts/arm/nxp/nxp_lpc55S1x_common.dtsi b/dts/arm/nxp/nxp_lpc55S1x_common.dtsi index 2755e7bd86870..671797d07ab6b 100644 --- a/dts/arm/nxp/nxp_lpc55S1x_common.dtsi +++ b/dts/arm/nxp/nxp_lpc55S1x_common.dtsi @@ -319,7 +319,7 @@ status = "okay"; }; - usbhs: usbhs@144000 { + usbhs: usbhs@94000 { compatible = "nxp,lpcip3511"; reg = <0x94000 0x1000>; interrupts = <47 1>; From a32f138089995d5a09bbc22acba993c3b69db9a0 Mon Sep 17 00:00:00 2001 From: Reto Schneider Date: Fri, 13 Sep 2024 01:08:23 +0200 Subject: [PATCH 08/10] dts: arm: nxp: lpc55S1x: Fix unit and first address mismatch This fixes the following warning: > unit address and first address in 'reg' (0x3fc70) don't match for > /soc/peripheral@40000000/flash-controller@34000/flash@9fc70 Signed-off-by: Reto Schneider --- dts/arm/nxp/nxp_lpc55S1x_common.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dts/arm/nxp/nxp_lpc55S1x_common.dtsi b/dts/arm/nxp/nxp_lpc55S1x_common.dtsi index 671797d07ab6b..34a8eec8db2c2 100644 --- a/dts/arm/nxp/nxp_lpc55S1x_common.dtsi +++ b/dts/arm/nxp/nxp_lpc55S1x_common.dtsi @@ -102,7 +102,7 @@ status = "disabled"; }; - uuid: flash@9fc70 { + uuid: flash@3fc70 { compatible = "nxp,lpc-uid"; reg = <0x3fc70 0x10>; }; From d0bcd937d7132fbbe6a1d5ef705103f92f3a2950 Mon Sep 17 00:00:00 2001 From: Reto Schneider Date: Fri, 13 Sep 2024 01:33:03 +0200 Subject: [PATCH 09/10] dts: arm: nxp: lpc55S2x: Fix unit and first address mismatch This fixes the following warnings: > unit address and first address in 'reg' (0x40094000) don't match for > /soc/peripheral@40000000/usbhs@144000 Signed-off-by: Reto Schneider --- dts/arm/nxp/nxp_lpc55S2x_common.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dts/arm/nxp/nxp_lpc55S2x_common.dtsi b/dts/arm/nxp/nxp_lpc55S2x_common.dtsi index 9f659c830d788..184c2feeaddb2 100644 --- a/dts/arm/nxp/nxp_lpc55S2x_common.dtsi +++ b/dts/arm/nxp/nxp_lpc55S2x_common.dtsi @@ -313,7 +313,7 @@ clocks = <&syscon MCUX_LPADC1_CLK>; }; - usbhs: usbhs@144000 { + usbhs: usbhs@94000 { compatible = "nxp,lpcip3511"; reg = <0x94000 0x1000>; interrupts = <47 1>; From 29bb2637c032391d985b38f472603cdf78cb8d27 Mon Sep 17 00:00:00 2001 From: Reto Schneider Date: Fri, 13 Sep 2024 01:10:07 +0200 Subject: [PATCH 10/10] dts: arm: nxp: lpc55S0x: Fix unit and first address mismatch This fixes the following warning: > unit address and first address in 'reg' (0x3fc70) don't match for > /soc/peripheral@40000000/flash-controller@34000/flash@9fc70 Signed-off-by: Reto Schneider --- dts/arm/nxp/nxp_lpc55S0x_common.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dts/arm/nxp/nxp_lpc55S0x_common.dtsi b/dts/arm/nxp/nxp_lpc55S0x_common.dtsi index 60888d4ea0f7b..a478c4a0b5b0d 100644 --- a/dts/arm/nxp/nxp_lpc55S0x_common.dtsi +++ b/dts/arm/nxp/nxp_lpc55S0x_common.dtsi @@ -95,7 +95,7 @@ status = "disabled"; }; - uuid: flash@9fc70 { + uuid: flash@3fc70 { compatible = "nxp,lpc-uid"; reg = <0x3fc70 0x10>; };