]> git.sur5r.net Git - u-boot/blobdiff - board/assabet/assabet.c
DaVinci: EMAC: Get EMAC_MDIO_PHY_NUM from config files
[u-boot] / board / assabet / assabet.c
index 4f84a58117b6a6069a4278326fa823d240c7c71f..753c8d2435280531233431e7f5915b22962b5378 100644 (file)
@@ -25,6 +25,7 @@
  */
 
 #include <common.h>
+#include <netdev.h>
 #include <SA-1100.h>
 
 DECLARE_GLOBAL_DATA_PTR;
@@ -46,7 +47,7 @@ DECLARE_GLOBAL_DATA_PTR;
 #define ECSR_PWRDWN            0x04
 #define ECSR_INT               0x02
 #define SMC_IO_SHIFT           2
-#define NCR_0                  (*((volatile u_char *)(0x100000a0)))
+#define NCR_0                  (*((volatile u_char *)(0x100000a0)))
 #define NCR_ENET_OSC_EN                (1<<3)
 
 static inline u8
@@ -117,3 +118,14 @@ dram_init(void)
 
        return (0);
 }
+
+#ifdef CONFIG_CMD_NET
+int board_eth_init(bd_t *bis)
+{
+       int rc = 0;
+#ifdef CONFIG_LAN91C96
+       rc = lan91c96_initialize(0, CONFIG_LAN91C96_BASE);
+#endif
+       return rc;
+}
+#endif