diff options
author | Usama Arif <usama.arif@arm.com> | 2021-10-12 13:43:16 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-10-19 11:25:25 -0400 |
commit | b20b16a794b073807ef8d6840772a92788b3e226 (patch) | |
tree | 8d5d8b171e7b216257be100130c843cca8e3ba7c /board | |
parent | 4f03a4c7662e79634bc133a2975cc239486237da (diff) | |
download | u-boot-b20b16a794b073807ef8d6840772a92788b3e226.zip u-boot-b20b16a794b073807ef8d6840772a92788b3e226.tar.gz u-boot-b20b16a794b073807ef8d6840772a92788b3e226.tar.bz2 |
arm: total_compute: increase DRAM to 8GB
The extra 6GB start at 0x8080000000.
Signed-off-by: Usama Arif <usama.arif@arm.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/armltd/total_compute/total_compute.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/board/armltd/total_compute/total_compute.c b/board/armltd/total_compute/total_compute.c index b7eaab0..b7772f7 100644 --- a/board/armltd/total_compute/total_compute.c +++ b/board/armltd/total_compute/total_compute.c @@ -59,6 +59,9 @@ int dram_init_banksize(void) gd->bd->bi_dram[0].start = PHYS_SDRAM_1; gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE; + gd->bd->bi_dram[1].start = PHYS_SDRAM_2; + gd->bd->bi_dram[1].size = PHYS_SDRAM_2_SIZE; + return 0; } |