]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/csb226/csb226.c
PXA: csb226: Fix for reloc
[karo-tx-uboot.git] / board / csb226 / csb226.c
index 6eed9ad676f6593da1aa9f747ae74ab395a48d5a..dd29e626591a83e5ccc6ddd4ad23ea5e41215864 100644 (file)
@@ -69,8 +69,9 @@ int misc_init_r(void)
 
 int board_init (void)
 {
-       /* memory and cpu-speed are setup before relocation */
-       /* so we do _nothing_ here */
+       /* We have RAM, disable cache */
+       dcache_disable();
+       icache_disable();
 
        /* arch number of CSB226 board */
        gd->bd->bi_arch_number = MACH_TYPE_CSB226;
@@ -82,21 +83,20 @@ int board_init (void)
 }
 
 
-/**
- * dram_init: - setup dynamic RAM
- *
- * @return: 0 in case of success
- */
+extern void pxa_dram_init(void);
+int dram_init(void)
+{
+       pxa_dram_init();
+       gd->ram_size = PHYS_SDRAM_1_SIZE;
+       return 0;
+}
 
-int dram_init (void)
+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;
 }
 
-
 /**
  * csb226_set_led: - switch LEDs on or off
  *