diff options
author | Terry Lv <r65388@freescale.com> | 2010-07-16 16:04:29 +0800 |
---|---|---|
committer | Terry Lv <r65388@freescale.com> | 2010-07-16 16:04:29 +0800 |
commit | 592ec82029b2c69386bdf9c82af4614687afe191 (patch) | |
tree | ea0c768467a09aa80445ee142db321e9452c91e8 /include/configs/mx50_arm2_lpddr2.h | |
parent | c5f6bfc5b71f455171b22e7291c75da3a7704974 (diff) | |
download | u-boot-imx-592ec82029b2c69386bdf9c82af4614687afe191.zip u-boot-imx-592ec82029b2c69386bdf9c82af4614687afe191.tar.gz u-boot-imx-592ec82029b2c69386bdf9c82af4614687afe191.tar.bz2 |
ENGR00125174: MX50: change memory configurations
Currently we set mx508 memory as 128M which is not
enough for android running.
Based on hardware team's input, mDDR boards support
512MB totally, while we only mount half of them.
LPDDR2 boards support 512MB.
So we will modify mddr configuration as 256M and
LPDDR2 as 512M.
Signed-off-by: Terry Lv <r65388@freescale.com>
Diffstat (limited to 'include/configs/mx50_arm2_lpddr2.h')
-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 47801f6..505b859 100644 --- a/include/configs/mx50_arm2_lpddr2.h +++ b/include/configs/mx50_arm2_lpddr2.h @@ -218,9 +218,9 @@ /*----------------------------------------------------------------------- * Physical Memory Map */ -#define CONFIG_NR_DRAM_BANKS 1 +#define CONFIG_NR_DRAM_BANKS 2 #define PHYS_SDRAM_1 CSD0_BASE_ADDR -#define PHYS_SDRAM_1_SIZE (128 * 1024 * 1024) +#define PHYS_SDRAM_1_SIZE (256 * 1024 * 1024) #define iomem_valid_addr(addr, size) \ (addr >= PHYS_SDRAM_1 && addr <= (PHYS_SDRAM_1 + PHYS_SDRAM_1_SIZE)) |