mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
POST: Execute SPR test after relocation
On LWMON5 we now use d-cache as init-ram and stack. The SPR POST test uses self modifying code and this doesn't work with stack in d-cache, since I can't move the code from d-cache to i-cache. We move the SPR test to be executed a little later, after relocation. Then stack is located in SDRAM and this self-modifying code is no problem anymore. Signed-off-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
8f24e0637a
commit
b2e2142c50
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ struct post_test post_list[] =
|
||||||
"SPR test",
|
"SPR test",
|
||||||
"spr",
|
"spr",
|
||||||
"This test checks SPR contents.",
|
"This test checks SPR contents.",
|
||||||
POST_ROM | POST_ALWAYS | POST_PREREL,
|
POST_RAM | POST_ALWAYS,
|
||||||
&spr_post_test,
|
&spr_post_test,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
|
|
Loading…
Reference in a new issue