summaryrefslogtreecommitdiff
path: root/include/configs/omap3_logic.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2016-04-27 22:44:32 (GMT)
committerTom Rini <trini@konsulko.com>2016-04-27 22:44:32 (GMT)
commit2489a7e9f3055da15a8a8a0e54babf29ff5f6f14 (patch)
tree25c01c15f5d9501e089dfad114f4dccca7866578 /include/configs/omap3_logic.h
parente25b369c048b51b1feb79587750e7e160fc0bd73 (diff)
downloadu-boot-2489a7e9f3055da15a8a8a0e54babf29ff5f6f14.tar.xz
omap3: Reduce logic/overo SPL max image size
While the OMAP3 has 64KiB of SRAM, per the TRM the download area is only from 0x40200000 to 0x4020F000 and exceeding that will cause failure to boot. Further, we need to make sure that we don't run into SRAM_SCRATCH_SPACE_ADDR as once SPL is running we will write values there and would corrupt our running image. Cc: Adam Ford <aford173@gmail.com> Cc: Steve Sakoman <sakoman@gmail.com> Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/configs/omap3_logic.h')
-rw-r--r--include/configs/omap3_logic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/omap3_logic.h b/include/configs/omap3_logic.h
index 055dcb7..6c79643 100644
--- a/include/configs/omap3_logic.h
+++ b/include/configs/omap3_logic.h
@@ -34,7 +34,7 @@
#undef CONFIG_SPL_TEXT_BASE
#undef CONFIG_SPL_MAX_SIZE
#define CONFIG_SPL_TEXT_BASE 0x40200000
-#define CONFIG_SPL_MAX_SIZE (64 * 1024)
+#define CONFIG_SPL_MAX_SIZE (SRAM_SCRATCH_SPACE_ADDR - CONFIG_SPL_TEXT_BASE)
/* Display CPU and Board information */