diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2013-12-04 12:22:55 +0530 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-12-12 14:54:20 -0500 |
commit | dcc23576384dbb875a4427dcfa9ac8d237230d42 (patch) | |
tree | 802c05c2e8254410ae0b93d8c885e3173200d684 /arch/arm/include/asm | |
parent | 12115c6ad3b91e60b874afd29ce041ef552ed1e1 (diff) | |
download | u-boot-imx-dcc23576384dbb875a4427dcfa9ac8d237230d42.zip u-boot-imx-dcc23576384dbb875a4427dcfa9ac8d237230d42.tar.gz u-boot-imx-dcc23576384dbb875a4427dcfa9ac8d237230d42.tar.bz2 |
ARM: OMAP4: Move TEXT_BASE down to non-HS limit
With the current scenario SPL size is being overlapped with the public
stack and not allowing any OMAP4 device to boot. So the suggestion came
up was to move the TEXT_BASE down to non-HS limit. Fixing the same and
also moving the SRAM_SCRATCH_SPACE_ADDR up to the end of image
downloadable area.
Discussion on this can be seen here:
https://www.mail-archive.com/u-boot@lists.denx.de/msg127147.html
Tested on OMAP4460 PANDA.
Reported-by: Chao Xu <caesarxuchao@gmail.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'arch/arm/include/asm')
-rw-r--r-- | arch/arm/include/asm/arch-omap4/omap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/arch-omap4/omap.h b/arch/arm/include/asm/arch-omap4/omap.h index e35f51c..f66da0d 100644 --- a/arch/arm/include/asm/arch-omap4/omap.h +++ b/arch/arm/include/asm/arch-omap4/omap.h @@ -116,7 +116,7 @@ struct s32ktimer { */ #define NON_SECURE_SRAM_START 0x40304000 #define NON_SECURE_SRAM_END 0x4030E000 /* Not inclusive */ -#define SRAM_SCRATCH_SPACE_ADDR NON_SECURE_SRAM_START +#define SRAM_SCRATCH_SPACE_ADDR 0x4030C000 /* base address for indirect vectors (internal boot mode) */ #define SRAM_ROM_VECT_BASE 0x4030D000 |