]> git.sur5r.net Git - u-boot/blobdiff - board/davinci/dm355evm/dm355evm.c
TI DaVinci DM646x: Enable NAND on DM6467 EVM
[u-boot] / board / davinci / dm355evm / dm355evm.c
index 398f527759b5fd7514dbb7c24b8885d43159fa88..87f284c4cea251cb2076824f9e3e2b49b8e644d5 100644 (file)
@@ -23,7 +23,8 @@
 #include <asm/arch/emif_defs.h>
 #include <asm/arch/nand_defs.h>
 #include "../common/misc.h"
-
+#include <net.h>
+#include <netdev.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -79,13 +80,20 @@ int board_init(void)
        return 0;
 }
 
+#ifdef CONFIG_DRIVER_DM9000
+int board_eth_init(bd_t *bis)
+{
+       return dm9000_initialize(bis);
+}
+#endif
+
 #ifdef CONFIG_NAND_DAVINCI
 
 static void nand_dm355evm_select_chip(struct mtd_info *mtd, int chip)
 {
        struct nand_chip        *this = mtd->priv;
-       u32                     wbase = (u32) this->IO_ADDR_W;
-       u32                     rbase = (u32) this->IO_ADDR_R;
+       unsigned long           wbase = (unsigned long) this->IO_ADDR_W;
+       unsigned long           rbase = (unsigned long) this->IO_ADDR_R;
 
        if (chip == 1) {
                __set_bit(14, &wbase);