[U-Boot] [PATCH 11/12] ARM: uniphier: fix DRAM size of LD21 SoC package

Masahiro Yamada yamada.masahiro at socionext.com
Tue Sep 13 18:06:09 CEST 2016


Each DRAM channel size of LD21 is half of that of LD20.

Signed-off-by: Masahiro Yamada <yamada.masahiro at socionext.com>
---

 arch/arm/mach-uniphier/boards.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-uniphier/boards.c b/arch/arm/mach-uniphier/boards.c
index 20093d8..f54f464 100644
--- a/arch/arm/mach-uniphier/boards.c
+++ b/arch/arm/mach-uniphier/boards.c
@@ -209,12 +209,12 @@ 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] = {
 		.base = 0xc0000000,
-		.size = 0x40000000,
+		.size = 0x20000000,
 		.width = 32,
 	},
 	.flags = UNIPHIER_BD_PACKAGE_LD21,
-- 
1.9.1



More information about the U-Boot mailing list