diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-09-14 01:06:09 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-09-17 01:28:45 +0900 |
commit | ef70eb54aab8466b3989e83623b5ca4db78b7b2a (patch) | |
tree | 7486be5a630b5d1a1b6549e4fea8459284611665 /arch/arm | |
parent | b291671232a28220b74fa49c744e209f67c234ef (diff) | |
download | u-boot-imx-ef70eb54aab8466b3989e83623b5ca4db78b7b2a.zip u-boot-imx-ef70eb54aab8466b3989e83623b5ca4db78b7b2a.tar.gz u-boot-imx-ef70eb54aab8466b3989e83623b5ca4db78b7b2a.tar.bz2 |
ARM: uniphier: fix DRAM size of LD21 SoC package
The channel 0 DRAM size of LD21 is half of that of LD20.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-uniphier/boards.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-uniphier/boards.c b/arch/arm/mach-uniphier/boards.c index 20093d8..e063555 100644 --- a/arch/arm/mach-uniphier/boards.c +++ b/arch/arm/mach-uniphier/boards.c @@ -209,7 +209,7 @@ static const struct uniphier_board_data uniphier_ld21_data = { .dram_nr_ch = 2, .dram_ch[0] = { .base = 0x80000000, - .size = 0x40000000, + .size = 0x20000000, .width = 32, }, .dram_ch[1] = { |