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:41:33 +0800
commitc23d37055643f1096185e675940d148a7ba6ce3b (patch)
tree38e581e871674147f8e807d6758e7bbe5133665c
parentf850a8f3ec4bba12e85d3441229dc5a24ab8d4bd (diff)
downloadu-boot-imx-c23d37055643f1096185e675940d148a7ba6ce3b.zip
u-boot-imx-c23d37055643f1096185e675940d148a7ba6ce3b.tar.gz
u-boot-imx-c23d37055643f1096185e675940d148a7ba6ce3b.tar.bz2
MLK-11554 imx: mx6ulevk: Modify the mtest memory end to half of PHYS_SDRAM_SIZErel_imx_3.14.38_6ul_9x9_patchimx_v2015.04_3.14.38_6ul_ga
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> (cherry picked from commit 59e52b92b38a6d387477595eb049aae30328cbce)
-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 cc1df2e..833f2b0 100644
--- a/include/configs/mx6ul_14x14_evk.h
+++ b/include/configs/mx6ul_14x14_evk.h
@@ -293,7 +293,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