diff mbox

[U-Boot,v4,2/3] armv8/ls1043aqds: Spilt off board device tree

Message ID 1453367695-26475-2-git-send-email-wenbin.song@nxp.com
State Accepted
Delegated to: York Sun
Headers show

Commit Message

Wenbin song Jan. 21, 2016, 9:14 a.m. UTC
Move new /chosen node out of the board device tree.

Signed-off-by: Wenbin Song <wenbin.song@nxp.com>
---
Changes in v4:
- No change
---
 arch/arm/dts/Makefile                                    |  2 +-
 arch/arm/dts/fsl-ls1043a-qds-duart.dts                   | 16 ++++++++++++++++
 .../dts/{fsl-ls1043a-qds.dts => fsl-ls1043a-qds.dtsi}    |  1 -
 configs/ls1043aqds_defconfig                             |  2 +-
 4 files changed, 18 insertions(+), 3 deletions(-)
 create mode 100644 arch/arm/dts/fsl-ls1043a-qds-duart.dts
 rename arch/arm/dts/{fsl-ls1043a-qds.dts => fsl-ls1043a-qds.dtsi} (99%)

Comments

Bin Meng Jan. 22, 2016, 1:32 a.m. UTC | #1
On Thu, Jan 21, 2016 at 5:14 PM, Wenbin Song <wenbin.song@nxp.com> wrote:
> Move new /chosen node out of the board device tree.
>
> Signed-off-by: Wenbin Song <wenbin.song@nxp.com>
> ---

Somehow this patch was not caught by patchwork yesterday at first, the
reviewed tag was lost, so here again:

Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
York Sun Jan. 27, 2016, 5:11 p.m. UTC | #2
On 01/21/2016 01:23 AM, Wenbin Song wrote:
> Move new /chosen node out of the board device tree.
> 
> Signed-off-by: Wenbin Song <wenbin.song@nxp.com>
> ---
> Changes in v4:
> - No change
> ---
>  arch/arm/dts/Makefile                                    |  2 +-
>  arch/arm/dts/fsl-ls1043a-qds-duart.dts                   | 16 ++++++++++++++++
>  .../dts/{fsl-ls1043a-qds.dts => fsl-ls1043a-qds.dtsi}    |  1 -
>  configs/ls1043aqds_defconfig                             |  2 +-
>  4 files changed, 18 insertions(+), 3 deletions(-)
>  create mode 100644 arch/arm/dts/fsl-ls1043a-qds-duart.dts
>  rename arch/arm/dts/{fsl-ls1043a-qds.dts => fsl-ls1043a-qds.dtsi} (99%)
> 

Applied to u-boot-fsl-qoriq master. Awaiting upstream.

Thanks.

York
diff mbox

Patch

diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile
index 7706b41..302456c 100644
--- a/arch/arm/dts/Makefile
+++ b/arch/arm/dts/Makefile
@@ -96,7 +96,7 @@  dtb-$(CONFIG_LS102XA) += ls1021a-qds.dtb \
 	ls1021a-twr-duart.dtb ls1021a-twr-lpuart.dtb
 dtb-$(CONFIG_FSL_LSCH3) += fsl-ls2080a-qds.dtb \
 	fsl-ls2080a-rdb.dtb
-dtb-$(CONFIG_FSL_LSCH2) += fsl-ls1043a-qds.dtb \
+dtb-$(CONFIG_FSL_LSCH2) += fsl-ls1043a-qds-duart.dtb \
 	fsl-ls1043a-rdb.dtb
 
 dtb-$(CONFIG_MACH_SUN4I) += \
diff --git a/arch/arm/dts/fsl-ls1043a-qds-duart.dts b/arch/arm/dts/fsl-ls1043a-qds-duart.dts
new file mode 100644
index 0000000..2124e38
--- /dev/null
+++ b/arch/arm/dts/fsl-ls1043a-qds-duart.dts
@@ -0,0 +1,16 @@ 
+/*
+ * Device Tree file for Freescale Layerscape-1043A family SoC.
+ *
+ * Copyright (C) 2015, Freescale Semiconductor
+ *
+ * SPDX-License-Identifier:	GPL-2.0+
+ */
+
+/dts-v1/;
+#include "fsl-ls1043a-qds.dtsi"
+
+/ {
+       chosen {
+               stdout-path = &duart0;
+       };
+};
diff --git a/arch/arm/dts/fsl-ls1043a-qds.dts b/arch/arm/dts/fsl-ls1043a-qds.dtsi
similarity index 99%
rename from arch/arm/dts/fsl-ls1043a-qds.dts
rename to arch/arm/dts/fsl-ls1043a-qds.dtsi
index 7435222..6fa16b8 100644
--- a/arch/arm/dts/fsl-ls1043a-qds.dts
+++ b/arch/arm/dts/fsl-ls1043a-qds.dtsi
@@ -10,7 +10,6 @@ 
  * warranty of any kind, whether express or implied.
  */
 
-/dts-v1/;
 /include/ "fsl-ls1043a.dtsi"
 
 / {
diff --git a/configs/ls1043aqds_defconfig b/configs/ls1043aqds_defconfig
index 60fb0ad..1fd530d 100644
--- a/configs/ls1043aqds_defconfig
+++ b/configs/ls1043aqds_defconfig
@@ -2,5 +2,5 @@  CONFIG_SYS_EXTRA_OPTIONS="SYS_FSL_DDR4"
 CONFIG_ARM=y
 CONFIG_TARGET_LS1043AQDS=y
 CONFIG_SYS_NS16550=y
-CONFIG_DEFAULT_DEVICE_TREE="fsl-ls1043a-qds"
+CONFIG_DEFAULT_DEVICE_TREE="fsl-ls1043a-qds-duart"
 CONFIG_OF_CONTROL=y