diff options
author | Tom Rini <trini@ti.com> | 2013-06-05 12:45:34 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-06-05 12:45:34 -0400 |
commit | eecf9e2e78c3af4304740804b3649f3d4b8a922a (patch) | |
tree | 8bdc80b94dc1b9bde7a1c7919072025a99935855 /include/configs/igep0033.h | |
parent | 1318d00e5894ac55bc6b7297f3eda97983b79fae (diff) | |
parent | 4596dcc1d4ea5763e0f92cf5becd9fc7d4c6e674 (diff) | |
download | u-boot-imx-eecf9e2e78c3af4304740804b3649f3d4b8a922a.zip u-boot-imx-eecf9e2e78c3af4304740804b3649f3d4b8a922a.tar.gz u-boot-imx-eecf9e2e78c3af4304740804b3649f3d4b8a922a.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-arm
Diffstat (limited to 'include/configs/igep0033.h')
-rw-r--r-- | include/configs/igep0033.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/configs/igep0033.h b/include/configs/igep0033.h index 1912d7d..afbd549 100644 --- a/include/configs/igep0033.h +++ b/include/configs/igep0033.h @@ -214,8 +214,14 @@ /* Defines for SPL */ #define CONFIG_SPL #define CONFIG_SPL_FRAMEWORK -#define CONFIG_SPL_TEXT_BASE 0x402F0400 -#define CONFIG_SPL_MAX_SIZE (101 * 1024) +/* + * Place the image at the start of the ROM defined image space and leave + * space for SRAM scratch entries (see arch/arm/include/omap_common.h). + * We limit our size to the ROM-defined downloaded image area, and use the + * rest of the space for stack. + */ +#define CONFIG_SPL_TEXT_BASE 0x402F0500 +#define CONFIG_SPL_MAX_SIZE (0x4030C000 - CONFIG_SPL_TEXT_BASE) #define CONFIG_SPL_STACK CONFIG_SYS_INIT_SP_ADDR #define CONFIG_SPL_BSS_START_ADDR 0x80000000 |