]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
rockchip: rk356x-u-boot: Add bootph-all to i2c0_xfer pinctrl node
authorJonas Karlman <jonas@kwiboo.se>
Thu, 3 Aug 2023 21:11:54 +0000 (21:11 +0000)
committerKever Yang <kever.yang@rock-chips.com>
Sat, 7 Oct 2023 08:52:48 +0000 (16:52 +0800)
A RK8XX PMIC is typically using i2c0 on RK356x devices. Add bootph-all
to required pinctrl nodes to simplify use of the prevent booting on
power plug-in option in SPL.

With the following Kconfig options and nodes in u-boot.dtsi the prevent
booting on power plug-in option can work in SPL.

  CONFIG_ROCKCHIP_RK8XX_DISABLE_BOOT_ON_POWERON=y
  CONFIG_SPL_I2C=y
  CONFIG_SPL_POWER=y
  CONFIG_SPL_PINCTRL=y
  CONFIG_SPL_PMIC_RK8XX=y

  &i2c0 {
   bootph-pre-ram;
  };

  &rk817 {
   bootph-pre-ram;

   regulators {
   bootph-pre-ram;
   };
  };

Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
arch/arm/dts/rk356x-u-boot.dtsi

index 32f687f2924bc241a05e2ca5dd5a0d7e416cb1ec..354b6958e5721f107f9e74997c1efe0318f3d797 100644 (file)
        bootph-all;
 };
 
+&pcfg_pull_none_smt {
+       bootph-all;
+};
+
 &pcfg_pull_none {
        bootph-all;
 };
        bootph-all;
 };
 
+&i2c0_xfer {
+       bootph-all;
+};
+
 &sdmmc0_bus4 {
        bootph-all;
 };