/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */1/*2* This file is subject to the terms and conditions of the GNU General Public3* License. See the file "COPYING" in the main directory of this archive4* for more details.5*6* Copyright (C) 1996, 1999, 2001 Ralf Baechle7* Copyright (C) 1999 Silicon Graphics, Inc.8* Copyright (C) 2001 MIPS Technologies, Inc.9*/10#ifndef __ASM_SGIDEFS_H11#define __ASM_SGIDEFS_H1213/*14* Definitions for the ISA levels15*16* With the introduction of MIPS32 / MIPS64 instruction sets definitions17* MIPS ISAs are no longer subsets of each other. Therefore comparisons18* on these symbols except with == may result in unexpected results and19* are forbidden!20*/21#define _MIPS_ISA_MIPS1 122#define _MIPS_ISA_MIPS2 223#define _MIPS_ISA_MIPS3 324#define _MIPS_ISA_MIPS4 425#define _MIPS_ISA_MIPS5 526#define _MIPS_ISA_MIPS32 627#define _MIPS_ISA_MIPS64 72829/*30* Subprogram calling convention31*/32#define _MIPS_SIM_ABI32 133#define _MIPS_SIM_NABI32 234#define _MIPS_SIM_ABI64 33536#endif /* __ASM_SGIDEFS_H */373839