Skip to content
Snippets Groups Projects
Commit 6eee21da authored by Reinhard Arlt's avatar Reinhard Arlt Committed by Wolfgang Denk
Browse files

bootvx: Clear and disable data cache, and call vxWorks with parameter.


This patch clear and disable the data cache for vxWorks.

The entry point sysInit(int) intended by Windriver to be called from
the vxWorks bootrom, a very small vxWorks system.
The routine is called by the go() handler in the bootrom, that clears
the cache from start of image to end of usable memory.

The PowerPC implementations only invalidates and disable the cache,
the ARM implementations also flush it.

U-Boot will be on the safe side, if it disables the data cache before
calling vxWorks sysInit(int).

Signed-off-by: default avatarReinhard Arlt <reinhard.arlt@esd.eu>
parent f6add132
No related branches found
No related tags found
No related merge requests found
......@@ -230,7 +230,8 @@ int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
(char *) bootaddr);
printf ("## Starting vxWorks at 0x%08lx ...\n", addr);
((void (*)(void)) addr) ();
dcache_disable();
((void (*)(int)) addr) (0);
puts ("## vxWorks terminated\n");
return 1;
......
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