Message ID | 20200106075705.3717-4-lokeshvutla@ti.com |
---|---|
State | Superseded |
Headers | show |
Series | board: ti: j721e: Enable I2C and EEPROM support | expand |
diff --git a/board/ti/j721e/evm.c b/board/ti/j721e/evm.c index d822ac81db..101fe1be4e 100644 --- a/board/ti/j721e/evm.c +++ b/board/ti/j721e/evm.c @@ -106,6 +106,19 @@ int do_board_detect(void) return ret; } +int checkboard(void) +{ + struct ti_am6_eeprom *ep = TI_AM6_EEPROM_DATA; + + if (do_board_detect()) + /* EEPROM not populated */ + printf("Board: %s rev %s\n", "J721EX-PM1-SOM", "E2"); + else + printf("Board: %s rev %s\n", ep->name, ep->version); + + return 0; +} + static void setup_board_eeprom_env(void) { char *name = "j721e";
Print the board name and ver along with the DT Model. Signed-off-by: Lokesh Vutla <lokeshvutla at ti.com> --- board/ti/j721e/evm.c | 13 +++++++++++++ 1 file changed, 13 insertions(+)