]> git.sur5r.net Git - u-boot/blobdiff - board/atmel/atngw100/atngw100.c
Merge branch 'master' of /home/wd/git/u-boot/custodians
[u-boot] / board / atmel / atngw100 / atngw100.c
index 4ead5336c65350a94d226a8017b9d3bf9a14de3b..fa1a2aa7c12d69cd2d2b88b0b1e437c1a27c2192 100644 (file)
@@ -26,6 +26,7 @@
 #include <asm/arch/clk.h>
 #include <asm/arch/gpio.h>
 #include <asm/arch/hmatrix.h>
+#include <netdev.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -93,6 +94,15 @@ void board_init_info(void)
        gd->bd->bi_phy_id[1] = 0x03;
 }
 
+#ifdef CONFIG_CMD_NET
+int board_eth_init(bd_t *bi)
+{
+       macb_eth_initialize(0, (void *)MACB0_BASE, bi->bi_phy_id[0]);
+       macb_eth_initialize(1, (void *)MACB1_BASE, bi->bi_phy_id[1]);
+       return 0;
+}
+#endif
+
 /* SPI chip select control */
 #ifdef CONFIG_ATMEL_SPI
 #include <spi.h>