1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
3 * This file is subject to the terms and conditions of the GNU General Public
4 * License. See the file "COPYING" in the main directory of this archive
7 * Copyright (C) 1996, 99, 2003 by Ralf Baechle
12 #include <linux/compiler.h>
13 #include <linux/types.h>
15 #define __SWAB_64_THRU_32__
17 #if !defined(__mips16) && \
18 ((defined(__mips_isa_rev) && (__mips_isa_rev >= 2)) || \
19 defined(_MIPS_ARCH_LOONGSON3A))
21 static inline __attribute_const__ __u16
__arch_swab16(__u16 x
)
25 " .set arch=mips32r2 \n"
33 #define __arch_swab16 __arch_swab16
35 static inline __attribute_const__ __u32
__arch_swab32(__u32 x
)
39 " .set arch=mips32r2 \n"
48 #define __arch_swab32 __arch_swab32
51 * Having already checked for MIPS R2, enable the optimized version for
52 * 64-bit kernel on r2 CPUs.
55 static inline __attribute_const__ __u64
__arch_swab64(__u64 x
)
59 " .set arch=mips64r2 \n"
68 #define __arch_swab64 __arch_swab64
70 #endif /* (not __mips16) and (MIPS R2 or newer or Loongson 3A) */
71 #endif /* _ASM_SWAB_H */