nds32: Enable two banks of SDRAM on Andes board
[platform/kernel/u-boot.git] / board / AndesTech / adp-ag101p / adp-ag101p.c
index 8dd2043..26d67e2 100644 (file)
@@ -50,7 +50,7 @@ int board_init(void)
 int dram_init(void)
 {
        unsigned long sdram_base = PHYS_SDRAM_0;
-       unsigned long expected_size = PHYS_SDRAM_0_SIZE;
+       unsigned long expected_size = PHYS_SDRAM_0_SIZE + PHYS_SDRAM_1_SIZE;
        unsigned long actual_size;
 
        actual_size = get_ram_size((void *)sdram_base, expected_size);
@@ -65,6 +65,14 @@ int dram_init(void)
        return 0;
 }
 
+void dram_init_banksize(void)
+{
+       gd->bd->bi_dram[0].start = PHYS_SDRAM_0;
+       gd->bd->bi_dram[0].size =  PHYS_SDRAM_0_SIZE;
+       gd->bd->bi_dram[1].start = PHYS_SDRAM_1;
+       gd->bd->bi_dram[1].size =  PHYS_SDRAM_1_SIZE;
+}
+
 int board_eth_init(bd_t *bd)
 {
        return ftmac100_initialize(bd);