]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - board/tb0229/tb0229.c
rename CFG_ macros to CONFIG_SYS
[people/ms/u-boot.git] / board / tb0229 / tb0229.c
index 61c2e9bd36606f00872c90bd082f12b1f223513e..d3f05b2738b06a422e8bc3499515273ccd47e129 100644 (file)
 #include <common.h>
 #include <command.h>
 #include <asm/addrspace.h>
-#include <asm/inca-ip.h>
 #include <asm/io.h>
+#include <asm/reboot.h>
 #include <pci.h>
 
+void _machine_restart(void)
+{
+       void (*f)(void) = (void *) 0xbfc00000;
+
+       f();
+}
+
 #if defined(CONFIG_PCI)
 static struct pci_controller hose;
 
@@ -25,9 +32,9 @@ void pci_init_board (void)
 }
 #endif
 
-long int initdram(int board_type)
+phys_size_t initdram(int board_type)
 {
-       return get_ram_size (CFG_SDRAM_BASE, 0x8000000);
+       return get_ram_size (CONFIG_SYS_SDRAM_BASE, 0x8000000);
 }
 
 int checkboard (void)
@@ -39,3 +46,8 @@ int checkboard (void)
 
        return 0;
 }
+
+int board_eth_init(bd_t *bis)
+{
+       return pci_eth_init(bis);
+}