diff options
author | Jason Liu <r64343@freescale.com> | 2010-08-27 16:26:43 +0800 |
---|---|---|
committer | Jason Liu <r64343@freescale.com> | 2010-08-27 16:31:08 +0800 |
commit | 7bbe5d7a5203a07496ec372ab55563a2e230d03e (patch) | |
tree | 2233cf65d9907259aa6c64ca7a3110db378c12aa | |
parent | 506fc144a37d763fbf87e104f164d58036fa2dd2 (diff) | |
download | u-boot-imx-7bbe5d7a5203a07496ec372ab55563a2e230d03e.zip u-boot-imx-7bbe5d7a5203a07496ec372ab55563a2e230d03e.tar.gz u-boot-imx-7bbe5d7a5203a07496ec372ab55563a2e230d03e.tar.bz2 |
ENGR00126764 MX50: Set the memroy size to 512M on LPDDR2 board
Set the memroy size to 512M on LPDDR2 board
Signed-off-by: Jason Liu <r64343@freescale.com>
-rw-r--r-- | include/configs/mx50_arm2_lpddr2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/mx50_arm2_lpddr2.h b/include/configs/mx50_arm2_lpddr2.h index 6efe6a6..01cbc12 100644 --- a/include/configs/mx50_arm2_lpddr2.h +++ b/include/configs/mx50_arm2_lpddr2.h @@ -253,9 +253,9 @@ /*----------------------------------------------------------------------- * Physical Memory Map */ -#define CONFIG_NR_DRAM_BANKS 2 +#define CONFIG_NR_DRAM_BANKS 1 #define PHYS_SDRAM_1 CSD0_BASE_ADDR -#define PHYS_SDRAM_1_SIZE (256 * 1024 * 1024) +#define PHYS_SDRAM_1_SIZE (512 * 1024 * 1024) #define iomem_valid_addr(addr, size) \ (addr >= PHYS_SDRAM_1 && addr <= (PHYS_SDRAM_1 + PHYS_SDRAM_1_SIZE)) |