diff options
author | Eric Nelson <eric.nelson@boundarydevices.com> | 2013-02-01 08:08:45 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2013-02-12 18:44:54 +0100 |
commit | bec0160e9f5adab1d451ded3a95b0114b14e1970 (patch) | |
tree | bcc7d9b33c01e7bf64d385adbad008ee9cfe6fe6 | |
parent | 2d7237c92f11242cc0c9d7aee84f2852c25c419b (diff) | |
download | u-boot-imx-bec0160e9f5adab1d451ded3a95b0114b14e1970.zip u-boot-imx-bec0160e9f5adab1d451ded3a95b0114b14e1970.tar.gz u-boot-imx-bec0160e9f5adab1d451ded3a95b0114b14e1970.tar.bz2 |
i.MX6Q: mx6qsabre*: Configure to allow CONFIG_SYS_ALT_MEMTEST
In order to use the more thorough memory test, the macro
CONFIG_SYS_MEMTEST_SCRATCH must be defined with a usable
address.
Signed-off-by: Eric Nelson <eric.nelson@boundarydevices.com>
-rw-r--r-- | include/configs/mx6qsabre_common.h | 1 | ||||
-rw-r--r-- | include/configs/mx6qsabrelite.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/mx6qsabre_common.h b/include/configs/mx6qsabre_common.h index d76357c..f7e8779 100644 --- a/include/configs/mx6qsabre_common.h +++ b/include/configs/mx6qsabre_common.h @@ -171,6 +171,7 @@ #define CONFIG_SYS_MEMTEST_START 0x10000000 #define CONFIG_SYS_MEMTEST_END 0x10010000 +#define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR #define CONFIG_SYS_HZ 1000 diff --git a/include/configs/mx6qsabrelite.h b/include/configs/mx6qsabrelite.h index 752f098..c8c3ccc 100644 --- a/include/configs/mx6qsabrelite.h +++ b/include/configs/mx6qsabrelite.h @@ -241,6 +241,7 @@ #define CONFIG_SYS_MEMTEST_START 0x10000000 #define CONFIG_SYS_MEMTEST_END 0x10010000 +#define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR #define CONFIG_SYS_HZ 1000 |