romimage.h 396 B

1234567891011121314151617181920
  1. /* EcoVec board specific boot code:
  2. * converts the "partner-jet-script.txt" script into assembly
  3. * the assembly code is the first code to be executed in the romImage
  4. */
  5. #include <asm/romimage-macros.h>
  6. #include "partner-jet-setup.txt"
  7. /* execute icbi after enabling cache */
  8. mov.l 1f, r0
  9. icbi @r0
  10. /* jump to cached area */
  11. mova 2f, r0
  12. jmp @r0
  13. nop
  14. .align 2
  15. 1 : .long 0xa8000000
  16. 2 :