From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Mon, 13 Feb 2012 08:12:11 +0100 Subject: [U-Boot] [PATCH 1/5] mx31ads: Provide proper range for memtest In-Reply-To: <1329061116-3471-1-git-send-email-festevam@gmail.com> References: <1329061116-3471-1-git-send-email-festevam@gmail.com> Message-ID: <201202130812.11953.marek.vasut@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de > memtest adresses should contain proper DRAM address range. > > Signed-off-by: Fabio Estevam > --- > include/configs/mx31ads.h | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/include/configs/mx31ads.h b/include/configs/mx31ads.h > index 87638a4..fe073ba 100644 > --- a/include/configs/mx31ads.h > +++ b/include/configs/mx31ads.h > @@ -146,8 +146,8 @@ > #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ > #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer > Size */ > > -#define CONFIG_SYS_MEMTEST_START 0 /* memtest works on */ > -#define CONFIG_SYS_MEMTEST_END 0x10000 > +#define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM_1 + PHYS_SDRAM_1_SIZE/2) > +#define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1 + PHYS_SDRAM_1_SIZE) Won't this overwrite teh u-boot at the end of the RAM? > > #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR