rockchip: rk3288: move board_early_init_f() back to veyron
authorKever Yang <kever.yang@rock-chips.com>
Mon, 22 Jul 2019 12:02:11 +0000 (20:02 +0800)
committerKever Yang <kever.yang@rock-chips.com>
Mon, 29 Jul 2019 02:26:41 +0000 (10:26 +0800)
The board_early_init_f() is only used by veyron board now,
move it into the board file veyron.c

Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
arch/arm/mach-rockchip/rk3288-board.c
board/google/veyron/veyron.c

index 9d88365fff50e3e0b37a0bb895bd7d6a3c1ff1ad..e629df3abbde0d425f0a4c33801dbf99bd56980c 100644 (file)
@@ -243,22 +243,3 @@ U_BOOT_CMD(
        "display information about clocks",
        ""
 );
-
-int board_early_init_f(void)
-{
-       struct udevice *dev;
-       int ret;
-
-       /*
-        * This init is done in SPL, but when chain-loading U-Boot SPL will
-        * have been skipped. Allow the clock driver to check if it needs
-        * setting up.
-        */
-       ret = rockchip_get_clk(&dev);
-       if (ret) {
-               debug("CLK init failed: %d\n", ret);
-               return ret;
-       }
-
-       return 0;
-}
index 19edb18a66590a7bdc685d84f4c8b8b8425ac0f8..361f0e9da224bee45b6463b958d9572091be30e4 100644 (file)
@@ -4,9 +4,29 @@
  */
 
 #include <common.h>
+#include <asm/arch-rockchip/clock.h>
 
 /*
  * We should increase the DDR voltage to 1.2V using the PWM regulator.
  * There is a U-Boot driver for this but it may need to add support for the
  * 'voltage-table' property.
  */
+
+int board_early_init_f(void)
+{
+       struct udevice *dev;
+       int ret;
+
+       /*
+        * This init is done in SPL, but when chain-loading U-Boot SPL will
+        * have been skipped. Allow the clock driver to check if it needs
+        * setting up.
+        */
+       ret = rockchip_get_clk(&dev);
+       if (ret) {
+               debug("CLK init failed: %d\n", ret);
+               return ret;
+       }
+
+       return 0;
+}