]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
ks2_evm: Add EEPROM based board detection
authorCooper Jr., Franklin <fcooper@ti.com>
Fri, 16 Jun 2017 22:25:17 +0000 (17:25 -0500)
committerTom Rini <trini@konsulko.com>
Mon, 10 Jul 2017 18:25:56 +0000 (14:25 -0400)
Some K2G evms have their EEPROM programming while most do not. Therefore,
add EEPROM board detection to be used as the default method and fall back
to the alternative board detection when needed.

Also reorder board configuration. Perform bare minimal configuration
initially since board detection hasn't ran. Finish board configuration
once the board has been identified.

Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
board/ti/ks2_evm/board.h
board/ti/ks2_evm/board_k2g.c

index 2bbd79245baa438983439872db0bb9ca275f1770..069892182d084b327220e9950bb2b899fb337dd1 100644 (file)
@@ -11,6 +11,7 @@
 #define _KS2_BOARD
 
 #include <asm/ti-common/keystone_net.h>
+#include "../common/board_detect.h"
 
 extern struct eth_priv_t eth_priv_cfg[];
 
index 588bfff18393fef7185fd88699630cc800575b06..b4765f7939f2c58078709caf72da2cba66942b1f 100644 (file)
@@ -246,24 +246,6 @@ static int k2g_alt_board_detect(void)
        return 0;
 }
 
-int embedded_dtb_select(void)
-{
-       int rc;
-
-       rc = k2g_alt_board_detect();
-       if (rc) {
-               printf("Unable to do board detection\n");
-               return -1;
-       }
-
-       fdtdec_setup();
-
-       return 0;
-}
-#endif
-
-#ifdef CONFIG_BOARD_EARLY_INIT_F
-
 static void k2g_reset_mux_config(void)
 {
        /* Unlock the reset mux register */
@@ -277,11 +259,20 @@ static void k2g_reset_mux_config(void)
        setbits_le32(KS2_RSTMUX8, RSTMUX_LOCK8_MASK);
 }
 
-int board_early_init_f(void)
+int embedded_dtb_select(void)
 {
-       init_plls();
+       int rc;
+       rc = ti_i2c_eeprom_am_get(CONFIG_EEPROM_BUS_ADDRESS,
+                       CONFIG_EEPROM_CHIP_ADDRESS);
+       if (rc) {
+               rc = k2g_alt_board_detect();
+               if (rc) {
+                       printf("Unable to do board detection\n");
+                       return -1;
+               }
+       }
 
-       k2g_mux_config();
+       fdtdec_setup();
 
        k2g_reset_mux_config();
 
@@ -313,6 +304,17 @@ int board_late_init(void)
 }
 #endif
 
+#ifdef CONFIG_BOARD_EARLY_INIT_F
+int board_early_init_f(void)
+{
+       init_plls();
+
+       k2g_mux_config();
+
+       return 0;
+}
+#endif
+
 #ifdef CONFIG_SPL_BUILD
 void spl_init_keystone_plls(void)
 {