asmmacro.h 791 B

12345678910111213141516171819202122232425262728
  1. /* Assembler macros for SPARC
  2. *
  3. * (C) Copyright 2007, taken from linux asm-sparc/asmmacro.h
  4. * Daniel Hellstrom, Gaisler Research, daniel@gaisler.com.
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef __SPARC_ASMMACRO_H__
  9. #define __SPARC_ASMMACRO_H__
  10. #include <config.h>
  11. /* All trap entry points _must_ begin with this macro or else you
  12. * lose. It makes sure the kernel has a proper window so that
  13. * c-code can be called.
  14. */
  15. #define SAVE_ALL_HEAD \
  16. sethi %hi(trap_setup+(CONFIG_SYS_RELOC_MONITOR_BASE-CONFIG_SYS_TEXT_BASE)), %l4; \
  17. jmpl %l4 + %lo(trap_setup+(CONFIG_SYS_RELOC_MONITOR_BASE-CONFIG_SYS_TEXT_BASE)), %l6;
  18. #define SAVE_ALL \
  19. SAVE_ALL_HEAD \
  20. nop;
  21. /* All traps low-level code here must end with this macro. */
  22. #define RESTORE_ALL b ret_trap_entry; clr %l6;
  23. #endif