]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - board/palmld/palmld.c
Merge branch 'master' of git://git.denx.de/u-boot-arm
[karo-tx-uboot.git] / board / palmld / palmld.c
index 4f0087ea27b142c74003a0422311721c918578c9..5588fe732f2c04be019612676c3b1138ef37bc9f 100644 (file)
@@ -33,7 +33,11 @@ DECLARE_GLOBAL_DATA_PTR;
 
 int board_init(void)
 {
-       /* arch number of Lubbock-Board */
+       /* We have RAM, disable cache */
+       dcache_disable();
+       icache_disable();
+
+       /* arch number of PalmLD */
        gd->bd->bi_arch_number = MACH_TYPE_PALMLD;
 
        /* adress of boot parameters */
@@ -52,12 +56,18 @@ struct serial_device *default_serial_console(void)
        return &serial_ffuart_device;
 }
 
+extern void pxa_dram_init(void);
 int dram_init(void)
+{
+       pxa_dram_init();
+       gd->ram_size = PHYS_SDRAM_1_SIZE;
+       return 0;
+}
+
+void dram_init_banksize(void)
 {
        gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
        gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
-
-       return 0;
 }
 
 ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info)