diff options
author | Cooper Jr., Franklin <fcooper@ti.com> | 2017-06-16 17:25:22 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-07-10 14:25:58 -0400 |
commit | e6e2435f3993e3a385b5dd85b82eba4eb1d9e56b (patch) | |
tree | 96ba8108a7e4800933db670c010a68c3635eb9bc | |
parent | e5e546aad18a725787e6c6b6aa1383b02eed0723 (diff) | |
download | u-boot-e6e2435f3993e3a385b5dd85b82eba4eb1d9e56b.tar.gz u-boot-e6e2435f3993e3a385b5dd85b82eba4eb1d9e56b.tar.xz u-boot-e6e2435f3993e3a385b5dd85b82eba4eb1d9e56b.zip |
ks2_evm: Add EEPROM based board detection helper functions
Add a function that can be used to determine if the board being ran on is
a K2G Industrial Communication Engine EVM or K2G General Purpose EVM based
on values programmed on the EEPROM.
Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | board/ti/ks2_evm/board.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/board/ti/ks2_evm/board.h b/board/ti/ks2_evm/board.h index 069892182d..b3ad1881fa 100644 --- a/board/ti/ks2_evm/board.h +++ b/board/ti/ks2_evm/board.h @@ -15,6 +15,26 @@ extern struct eth_priv_t eth_priv_cfg[]; +#if defined(CONFIG_TI_I2C_BOARD_DETECT) +static inline int board_is_k2g_gp(void) +{ + return board_ti_is("66AK2GGP"); +} +static inline int board_is_k2g_ice(void) +{ + return board_ti_is("66AK2GIC"); +} +#else +static inline int board_is_k2g_gp(void) +{ + return false; +} +static inline int board_is_k2g_ice(void) +{ + return false; +} +#endif + int get_num_eth_ports(void); void spl_init_keystone_plls(void); |