diff options
author | Heiko Schocher <[hs@denx.de]> | 2010-10-20 19:33:26 +0530 |
---|---|---|
committer | prafulla_wadaskar <prafulla@marvell.com> | 2010-10-20 19:33:26 +0530 |
commit | 6b0ccc3b456bcec534620aac93427e4a2207a66a (patch) | |
tree | f28d5a2e9ece66078a4c5b9ceaa50d765250ab1a /include/configs | |
parent | 3ed16071b006dbda65070a4143db74da469f6e30 (diff) | |
download | u-boot-imx-6b0ccc3b456bcec534620aac93427e4a2207a66a.zip u-boot-imx-6b0ccc3b456bcec534620aac93427e4a2207a66a.tar.gz u-boot-imx-6b0ccc3b456bcec534620aac93427e4a2207a66a.tar.bz2 |
arm926ejs, suen3: fix relocation issues
- use internal 2k security SRAM as RAM for early stack.
- do early inits in board_init_f()
Signed-off-by: Heiko Schocher <hs@denx.de>
Cc: Prafulla Wadaskar <prafulla@marvell.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/km_arm.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/configs/km_arm.h b/include/configs/km_arm.h index faa0f50..4b706f1 100644 --- a/include/configs/km_arm.h +++ b/include/configs/km_arm.h @@ -182,6 +182,8 @@ int get_scl (void); /* additions for new relocation code, must be added to all boards */ #define CONFIG_SYS_SDRAM_BASE 0x00000000 -#define CONFIG_SYS_INIT_SP_ADDR (0x00000000 + 0x1000 - /* Fix this */ \ - CONFIG_SYS_GBL_DATA_SIZE) +/* Kirkwood has 2k of Security SRAM, use it for SP */ +#define CONFIG_SYS_INIT_SP_ADDR 0xC8012000 +/* Do early setups now in board_init_f() */ +#define CONFIG_BOARD_EARLY_INIT_F #endif /* _CONFIG_KM_ARM_H */ |