diff options
| author | Quentin Schulz <[email protected]> | 2024-05-24 11:23:30 +0200 |
|---|---|---|
| committer | Kever Yang <[email protected]> | 2024-06-14 17:10:42 +0800 |
| commit | 7fca4d8914318f6f937f745a1c6ab5bbdd85cc36 (patch) | |
| tree | e618382c6053787826d5f1dda2588cdeba3f02b5 | |
| parent | 94537d2f3322c188b847c6d7516a0a40f5459435 (diff) | |
rockchip: px30: make UART pinmux accessible to TPL/SPL DTB
This adds the default pinmux for UART2 and UART5 to the TPL/SPL DTB (if
not removed through the CONFIG_OF_SPL_REMOVE_PROPS symbol) as those two
controllers are always made available to all boards.
Reviewed-by: Kever Yang <[email protected]>
Signed-off-by: Quentin Schulz <[email protected]>
| -rw-r--r-- | arch/arm/dts/px30-u-boot.dtsi | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/dts/px30-u-boot.dtsi b/arch/arm/dts/px30-u-boot.dtsi index 046da022ffe..59fa9f43a97 100644 --- a/arch/arm/dts/px30-u-boot.dtsi +++ b/arch/arm/dts/px30-u-boot.dtsi @@ -33,11 +33,27 @@ bootph-all; }; +&uart2m0_xfer { + bootph-all; +}; + &uart5 { clock-frequency = <24000000>; bootph-all; }; +&uart5_cts { + bootph-all; +}; + +&uart5_rts { + bootph-all; +}; + +&uart5_xfer { + bootph-all; +}; + &sdmmc { bootph-all; |
