diff options
author | Jonas Karlman <jonas@kwiboo.se> | 2024-11-05 16:00:25 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-01-10 18:56:15 -0600 |
commit | cabe2ef76669dc2cf4d3bba9cd47d1675d31f0a4 (patch) | |
tree | 6000def6c5f4bba735b0d5e7d5d1664c2d4cfca6 | |
parent | 4d1c5a838a15035089f81fbd0b324ee72a3f03b2 (diff) |
rockchip: rk3288-tinker: Sort u-boot.dtsi nodes alphabetically
Sort the nodes in rk3288-tinker u-boot.dtsi files in alphabetical order.
This has no intended change to board DTs and only rearrange nodes in
preparation for future changes.
Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
-rw-r--r-- | arch/arm/dts/rk3288-tinker-s-u-boot.dtsi | 8 | ||||
-rw-r--r-- | arch/arm/dts/rk3288-tinker-u-boot.dtsi | 44 |
2 files changed, 26 insertions, 26 deletions
diff --git a/arch/arm/dts/rk3288-tinker-s-u-boot.dtsi b/arch/arm/dts/rk3288-tinker-s-u-boot.dtsi index b4c5483146a..a782f2f9804 100644 --- a/arch/arm/dts/rk3288-tinker-s-u-boot.dtsi +++ b/arch/arm/dts/rk3288-tinker-s-u-boot.dtsi @@ -17,18 +17,18 @@ bootph-pre-ram; }; -&emmc_clk { +&emmc_bus8 { bootph-pre-ram; }; -&emmc_cmd { +&emmc_clk { bootph-pre-ram; }; -&emmc_pwr { +&emmc_cmd { bootph-pre-ram; }; -&emmc_bus8 { +&emmc_pwr { bootph-pre-ram; }; diff --git a/arch/arm/dts/rk3288-tinker-u-boot.dtsi b/arch/arm/dts/rk3288-tinker-u-boot.dtsi index 0cf1b696d16..032dac221c2 100644 --- a/arch/arm/dts/rk3288-tinker-u-boot.dtsi +++ b/arch/arm/dts/rk3288-tinker-u-boot.dtsi @@ -17,6 +17,10 @@ rockchip,sdram-params = <0x20d266a4 0x5b6 2 533000000 6 9 0>; }; +&gpio7 { + bootph-pre-ram; +}; + &i2c2 { m24c08@50 { compatible = "at,24c08", "i2c-eeprom"; @@ -24,31 +28,15 @@ }; }; -&pinctrl { - bootph-all; -}; - -&uart2 { - bootph-all; -}; - -&uart2_xfer { - bootph-all; -}; - -&sdmmc { - bootph-pre-ram; -}; - -&gpio7 { +&pcfg_pull_none { bootph-pre-ram; }; -&vcc_sd { +&pcfg_pull_none_drv_8ma { bootph-pre-ram; }; -&pcfg_pull_none_drv_8ma { +&pcfg_pull_up { bootph-pre-ram; }; @@ -56,11 +44,11 @@ bootph-pre-ram; }; -&pcfg_pull_none { - bootph-pre-ram; +&pinctrl { + bootph-all; }; -&pcfg_pull_up { +&sdmmc { bootph-pre-ram; }; @@ -83,3 +71,15 @@ &sdmmc_pwr { bootph-pre-ram; }; + +&uart2 { + bootph-all; +}; + +&uart2_xfer { + bootph-all; +}; + +&vcc_sd { + bootph-pre-ram; +}; |