mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-11 01:36:59 +02:00
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>
13 lines
142 B
Plaintext
13 lines
142 B
Plaintext
// SPDX-License-Identifier: GPL-2.0+
|
|
/* Copyright 2023 NXP */
|
|
|
|
&serial0 {
|
|
bootph-all;
|
|
};
|
|
|
|
&serial1 {
|
|
bootph-all;
|
|
};
|
|
|
|
#include "u-boot.dtsi"
|