]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - board/eukrea/cpuat91/cpuat91.c
new at91_emac network driver (NET_MULTI api)
[people/ms/u-boot.git] / board / eukrea / cpuat91 / cpuat91.c
index 1a700b649cce4089b001e07e253317268ff222e5..0017962d4200740d420e6cc86f70f5e785aab449 100644 (file)
  */
 
 #include <common.h>
+#include <netdev.h>
 #include <asm/arch/AT91RM9200.h>
+#include <asm/io.h>
+
+#if defined(CONFIG_DRIVER_ETHER)
 #include <at91rm9200_net.h>
 #include <ks8721.h>
+#endif
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -79,3 +84,12 @@ void at91rm9200_GetPhyInterface(AT91PS_PhyOps p_phyops)
 
 #endif /* CONFIG_CMD_NET */
 #endif /* CONFIG_DRIVER_ETHER */
+#ifdef CONFIG_DRIVER_AT91EMAC
+
+int board_eth_init(bd_t *bis)
+{
+       int rc = 0;
+       rc = at91emac_register(bis, 0);
+       return rc;
+}
+#endif