diff options
author | Camelia Groza | 2023-07-11 15:49:27 +0300 |
---|---|---|
committer | Peng Fan | 2023-07-13 16:54:44 +0800 |
commit | 8cfb187681a2ea8cafe6995d94b1c45563b3ce51 (patch) | |
tree | 544d5c65e0ace6f59de9e150632a6394ad1c7210 /arch/powerpc | |
parent | 014bad7b6062137eca772c8daabb64b79818ccf2 (diff) |
powerpc: dts: t1042d4rdb: tag serial nodes with bootph-all
Make sure the serial driver is initialized before relocation by tagging
the serial nodes with "bootph-all". Add these u-boot specific properties
to an *-u-boot.dtsi file.
Signed-off-by: Camelia Groza <camelia.groza@nxp.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/dts/t1042d4rdb-u-boot.dtsi | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/powerpc/dts/t1042d4rdb-u-boot.dtsi b/arch/powerpc/dts/t1042d4rdb-u-boot.dtsi new file mode 100644 index 00000000000..b50b922aeb2 --- /dev/null +++ b/arch/powerpc/dts/t1042d4rdb-u-boot.dtsi @@ -0,0 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* Copyright 2023 NXP */ + +&serial0 { + bootph-all; +}; + +&serial1 { + bootph-all; +}; + +#include "u-boot.dtsi" |