sgidefs.h 1018 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * Copyright (C) 1996, 1999, 2001 Ralf Baechle
  3. * Copyright (C) 1999 Silicon Graphics, Inc.
  4. * Copyright (C) 2001 MIPS Technologies, Inc.
  5. *
  6. * SPDX-License-Identifier: GPL-2.0
  7. */
  8. #ifndef __ASM_SGIDEFS_H
  9. #define __ASM_SGIDEFS_H
  10. /*
  11. * Using a Linux compiler for building Linux seems logic but not to
  12. * everybody.
  13. */
  14. #if 0 /* ndef __linux__ */
  15. #error Use a Linux compiler or give up.
  16. #endif
  17. /*
  18. * Definitions for the ISA levels
  19. *
  20. * With the introduction of MIPS32 / MIPS64 instruction sets definitions
  21. * MIPS ISAs are no longer subsets of each other. Therefore comparisons
  22. * on these symbols except with == may result in unexpected results and
  23. * are forbidden!
  24. */
  25. #define _MIPS_ISA_MIPS1 1
  26. #define _MIPS_ISA_MIPS2 2
  27. #define _MIPS_ISA_MIPS3 3
  28. #define _MIPS_ISA_MIPS4 4
  29. #define _MIPS_ISA_MIPS5 5
  30. #define _MIPS_ISA_MIPS32 6
  31. #define _MIPS_ISA_MIPS64 7
  32. /*
  33. * Subprogram calling convention
  34. */
  35. #define _MIPS_SIM_ABI32 1
  36. #define _MIPS_SIM_NABI32 2
  37. #define _MIPS_SIM_ABI64 3
  38. #endif /* __ASM_SGIDEFS_H */