summaryrefslogtreecommitdiffstats
path: root/board/teejet
diff options
context:
space:
mode:
authorStefano Babic <sbabic@denx.de>2012-11-23 05:19:25 +0000
committerTom Rini <trini@ti.com>2012-12-10 08:56:38 -0700
commit31f5b651fad3d3999d8bd62f228d940bf1b42276 (patch)
treedd7effb6b0aff7c40cc35e4f21051e7cd74b2045 /board/teejet
parentfe2d59a123321f142552212175d3dcb1da659d8c (diff)
downloadblackbird-obmc-uboot-31f5b651fad3d3999d8bd62f228d940bf1b42276.tar.gz
blackbird-obmc-uboot-31f5b651fad3d3999d8bd62f228d940bf1b42276.zip
OMAP3: TAM3517: add macros for reading eeprom
Added macros to read SOM information from the I2C EEPROM. Signed-off-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'board/teejet')
-rw-r--r--board/teejet/mt_ventoux/mt_ventoux.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/board/teejet/mt_ventoux/mt_ventoux.c b/board/teejet/mt_ventoux/mt_ventoux.c
index 98b92f3b38..c516c75a00 100644
--- a/board/teejet/mt_ventoux/mt_ventoux.c
+++ b/board/teejet/mt_ventoux/mt_ventoux.c
@@ -258,21 +258,26 @@ int board_init(void)
return 0;
}
+#ifndef CONFIG_SPL_BUILD
int misc_init_r(void)
{
char *eth_addr;
+ struct tam3517_module_info info;
+ int ret;
+ TAM3517_READ_EEPROM(&info, ret);
dieid_num_r();
- eth_addr = getenv("ethaddr");
- if (eth_addr)
+ if (ret)
return 0;
+ eth_addr = getenv("ethaddr");
+ if (!eth_addr)
+ TAM3517_READ_MAC_FROM_EEPROM(&info);
-#ifndef CONFIG_SPL_BUILD
- TAM3517_READ_MAC_FROM_EEPROM;
-#endif
+ TAM3517_PRINT_SOM_INFO(&info);
return 0;
}
+#endif
/*
* Routine: set_muxconf_regs
OpenPOWER on IntegriCloud