diff options
author | Xinyu Chen <xinyu.chen@freescale.com> | 2011-03-17 11:38:41 +0800 |
---|---|---|
committer | Xinyu Chen <xinyu.chen@freescale.com> | 2011-03-17 11:46:23 +0800 |
commit | a7b2f005d5b8a96f8cb0bd3c87aa2dba69aef95a (patch) | |
tree | de79bc41fe5dbf6297ab2e50a551af71e5f5a2d9 /include | |
parent | e015742a17c8cc43d2c24c187b7c4d1ed0ba1eb3 (diff) | |
download | u-boot-imx-a7b2f005d5b8a96f8cb0bd3c87aa2dba69aef95a.zip u-boot-imx-a7b2f005d5b8a96f8cb0bd3c87aa2dba69aef95a.tar.gz u-boot-imx-a7b2f005d5b8a96f8cb0bd3c87aa2dba69aef95a.tar.bz2 |
ENGR00140750 mx53smd: set the default DDR size to 512MB for android configure
Decrease the default DDR size to 512MB in the default android
uboot configuration file. This can align with most customers'
hardware design, and help us to find more issues before release.
Signed-off-by: Xinyu Chen <xinyu.chen@freescale.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/mx53_smd_android.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/configs/mx53_smd_android.h b/include/configs/mx53_smd_android.h index f7f4ceb..dcc2798 100644 --- a/include/configs/mx53_smd_android.h +++ b/include/configs/mx53_smd_android.h @@ -296,10 +296,9 @@ #define PHYS_SDRAM_1 CSD0_BASE_ADDR #define PHYS_SDRAM_1_SIZE (512 * 1024 * 1024) #define PHYS_SDRAM_2 CSD1_BASE_ADDR -#define PHYS_SDRAM_2_SIZE (512 * 1024 * 1024) +#define PHYS_SDRAM_2_SIZE 0 #define iomem_valid_addr(addr, size) \ - ((addr >= PHYS_SDRAM_1 && addr <= (PHYS_SDRAM_1 + PHYS_SDRAM_1_SIZE)) \ - || (addr >= PHYS_SDRAM_2 && addr <= (PHYS_SDRAM_2 + PHYS_SDRAM_2_SIZE))) + (addr >= PHYS_SDRAM_1 && addr <= (PHYS_SDRAM_1 + PHYS_SDRAM_1_SIZE)) /*----------------------------------------------------------------------- * FLASH and environment organization |