diff options
author | Jonas Karlman | 2024-04-30 15:30:22 +0000 |
---|---|---|
committer | Kever Yang | 2024-05-07 15:56:08 +0800 |
commit | cc87730e404c7e65ecf19af89a8b80063494a296 (patch) | |
tree | 06fcc2a927f9b0b86be7b4a406ef5646208e77d4 /arch | |
parent | 2e1c0024afa1f5605c028b0d418d2e9206de50db (diff) |
rockchip: rk3399-puma: Move uart0 bootph to board u-boot.dtsi
rk3399-puma is the only supported board that use uart0 for serial
console, other RK3399 boards typically use uart2 for serial console
and may use uart0 for bluetooth.
Move setting bootph prop to board u-boot.dtsi to only include the uart0
node in TPL/SPL control FDT for the rk3399-puma target.
Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/dts/rk3399-puma-haikou-u-boot.dtsi | 4 | ||||
-rw-r--r-- | arch/arm/dts/rk3399-u-boot.dtsi | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/dts/rk3399-puma-haikou-u-boot.dtsi b/arch/arm/dts/rk3399-puma-haikou-u-boot.dtsi index 2b3ea6da88d..390cf24152a 100644 --- a/arch/arm/dts/rk3399-puma-haikou-u-boot.dtsi +++ b/arch/arm/dts/rk3399-puma-haikou-u-boot.dtsi @@ -110,3 +110,7 @@ &sdmmc_cmd { bootph-all; }; + +&uart0 { + bootph-all; +}; diff --git a/arch/arm/dts/rk3399-u-boot.dtsi b/arch/arm/dts/rk3399-u-boot.dtsi index 496f25d9fbf..9815dc53e8e 100644 --- a/arch/arm/dts/rk3399-u-boot.dtsi +++ b/arch/arm/dts/rk3399-u-boot.dtsi @@ -134,10 +134,6 @@ bootph-all; }; -&uart0 { - bootph-all; -}; - &uart2 { bootph-all; }; |