Skip to content
Snippets Groups Projects
Commit 272d2fc2 authored by Mike Frysinger's avatar Mike Frysinger
Browse files

Blackfin: post: setup default CONFIG_SYS_POST_WORD_ADDR


Set the default post word location to an L1 data location for all
Blackfin parts so things "just work" for most people.

Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
parent f9aee4b4
No related branches found
No related tags found
No related merge requests found
...@@ -121,6 +121,9 @@ ...@@ -121,6 +121,9 @@
#ifndef CONFIG_SYS_MEMTEST_END #ifndef CONFIG_SYS_MEMTEST_END
# define CONFIG_SYS_MEMTEST_END (CONFIG_STACKBASE - 8192 + 4) # define CONFIG_SYS_MEMTEST_END (CONFIG_STACKBASE - 8192 + 4)
#endif #endif
#ifndef CONFIG_SYS_POST_WORD_ADDR
# define CONFIG_SYS_POST_WORD_ADDR (L1_DATA_B_SRAM + L1_DATA_B_SRAM_SIZE - 4)
#endif
/* Check to make sure everything fits in external RAM */ /* Check to make sure everything fits in external RAM */
#if CONFIG_SYS_MAX_RAM_SIZE && \ #if CONFIG_SYS_MAX_RAM_SIZE && \
......
...@@ -260,7 +260,6 @@ ...@@ -260,7 +260,6 @@
#define FLASH_START_POST_BLOCK 11 /* Should > = 11 */ #define FLASH_START_POST_BLOCK 11 /* Should > = 11 */
#define FLASH_END_POST_BLOCK 71 /* Should < = 71 */ #define FLASH_END_POST_BLOCK 71 /* Should < = 71 */
#endif #endif
#define CONFIG_SYS_POST_WORD_ADDR 0xFF903FFC
/* These are for board tests */ /* These are for board tests */
#if 0 #if 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment