diff options
author | Camelia Groza | 2023-07-11 15:49:32 +0300 |
---|---|---|
committer | Peng Fan | 2023-07-13 16:54:59 +0800 |
commit | eab4cf5d64d3eec659ce26a153c07a79e9f77794 (patch) | |
tree | 67d73f761af29f192b3a800493edd7d2af057d61 /arch/powerpc | |
parent | 51f976d40d6acbbb54caac3d6f63ebff5b205303 (diff) |
powerpc: dts: t1024rdb: 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/t1024rdb-u-boot.dtsi | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/powerpc/dts/t1024rdb-u-boot.dtsi b/arch/powerpc/dts/t1024rdb-u-boot.dtsi new file mode 100644 index 00000000000..b50b922aeb2 --- /dev/null +++ b/arch/powerpc/dts/t1024rdb-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" |