]> git.baikalelectronics.ru Git - uboot.git/commitdiff
rockchip: Fix early use of bootph props
authorJonas Karlman <jonas@kwiboo.se>
Tue, 14 Mar 2023 00:38:21 +0000 (00:38 +0000)
committerKever Yang <kever.yang@rock-chips.com>
Sun, 19 Mar 2023 05:17:28 +0000 (13:17 +0800)
Running U-Boot on a ROCK 3 Model A result in the following:

  No serial driver found
  resetting ...
  no sysreset
  ### ERROR ### Please RESET the board ###

Replace bootph- props with u-boot,dm- props to fix this.

Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
arch/arm/dts/rk3308-rock-pi-s-u-boot.dtsi
arch/arm/dts/rk3566-radxa-cm3-io-u-boot.dtsi
arch/arm/dts/rk3568-rock-3a-u-boot.dtsi
arch/arm/dts/rk3588-edgeble-neu6a-io-u-boot.dtsi
arch/arm/dts/rk3588s-u-boot.dtsi

index a27a3adc082b9d32e650ea0fb14d785b0a651a49..27735c49ddc0f65a64d870cec993acce058bf59f 100644 (file)
@@ -11,7 +11,7 @@
 };
 
 &uart0 {
-       bootph-all;
+       u-boot,dm-pre-reloc;
        clock-frequency = <24000000>;
        status = "okay";
 };
index 4e791738335f672710a0c4a5161858ffea1af389..589332503e728d85cfdc5941764b86a927755bed 100644 (file)
@@ -13,6 +13,6 @@
 
 &uart2 {
        clock-frequency = <24000000>;
-       bootph-all;
+       u-boot,dm-pre-reloc;
        status = "okay";
 };
index ed47efa44bf9ced00b878e62cc308a0cf9166048..b5ca23a82a205d95b9632e4f61acc256a4dcb2ba 100644 (file)
@@ -19,6 +19,6 @@
 
 &uart2 {
        clock-frequency = <24000000>;
-       bootph-all;
+       u-boot,dm-pre-reloc;
        status = "okay";
 };
index 3235bd36e4c866eb43ce17a0f05cd111671f3209..612966492b02a3ddeee650ec5056647d99dc1a0d 100644 (file)
@@ -18,7 +18,7 @@
 
 &sdmmc {
        bus-width = <4>;
-       bootph-all;
+       u-boot,dm-pre-reloc;
        u-boot,spl-fifo-mode;
        status = "okay";
 };
index 1e225d71efc2378b7ffce8f6ba34ab34cad0e504..f880f4a167414a38161a380c62e2080257b408dd 100644 (file)
@@ -8,12 +8,12 @@
 / {
        dmc {
                compatible = "rockchip,rk3588-dmc";
-               bootph-all;
+               u-boot,dm-pre-reloc;
                status = "okay";
        };
 
        pmu1_grf: syscon@fd58a000 {
-               bootph-all;
+               u-boot,dm-pre-reloc;
                compatible = "rockchip,rk3588-pmu1-grf", "syscon";
                reg = <0x0 0xfd58a000 0x0 0x2000>;
        };
 };
 
 &xin24m {
-       bootph-all;
+       u-boot,dm-pre-reloc;
        status = "okay";
 };
 
 &cru {
-       bootph-pre-ram;
+       u-boot,dm-spl;
        status = "okay";
 };
 
 &sys_grf {
-       bootph-pre-ram;
+       u-boot,dm-spl;
        status = "okay";
 };
 
 &uart2 {
        clock-frequency = <24000000>;
-       bootph-pre-ram;
+       u-boot,dm-spl;
        status = "okay";
 };
 
 &ioc {
-       bootph-pre-ram;
+       u-boot,dm-spl;
 };