summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYe.Li <B37916@freescale.com>2015-09-15 20:54:31 +0800
committerYe.Li <B37916@freescale.com>2015-09-16 16:40:01 +0800
commit59e52b92b38a6d387477595eb049aae30328cbce (patch)
treeef66c94fafbc11bfc7dda074a6be12c33a4beef4
parent061d47621c1a849613c390324da2b73a08c74be2 (diff)
downloadu-boot-imx-59e52b92b38a6d387477595eb049aae30328cbce.zip
u-boot-imx-59e52b92b38a6d387477595eb049aae30328cbce.tar.gz
u-boot-imx-59e52b92b38a6d387477595eb049aae30328cbce.tar.bz2
MLK-11554 imx: mx6ulevk: Modify the mtest memory end to half of PHYS_SDRAM_SIZE
Since the mx6ul 9x9 evk has different DDR size with 14x14 evk, change to use the half of PHYS_SDRAM_SIZE for mtest end. Signed-off-by: Ye.Li <B37916@freescale.com>
-rw-r--r--include/configs/mx6ul_14x14_evk.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/mx6ul_14x14_evk.h b/include/configs/mx6ul_14x14_evk.h
index 0ccd984..902207b 100644
--- a/include/configs/mx6ul_14x14_evk.h
+++ b/include/configs/mx6ul_14x14_evk.h
@@ -296,7 +296,7 @@
#define CONFIG_CMD_MEMTEST
#define CONFIG_SYS_MEMTEST_START 0x80000000
-#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x10000000)
+#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + (PHYS_SDRAM_SIZE >> 1))
#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
#define CONFIG_SYS_HZ 1000