/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 2020 Loongson Technologies, Inc. All rights reserved. * Authors: Jun Yi */ #ifndef _ASM_SWAB_H #define _ASM_SWAB_H #include #include #define __SWAB_64_THRU_32__ static inline __attribute_const__ __u16 __arch_swab16(__u16 x) { __asm__( " revb.2h %0, %1 \n" : "=r" (x) : "r" (x)); return x; } #define __arch_swab16 __arch_swab16 static inline __attribute_const__ __u32 __arch_swab32(__u32 x) { __asm__( " revb.2h %0, %1 \n" " rotri.w %0, %0, 16 \n" : "=r" (x) : "r" (x)); return x; } #define __arch_swab32 __arch_swab32 #ifdef __loongarch64 static inline __attribute_const__ __u64 __arch_swab64(__u64 x) { __asm__( " revb.4h %0, %1 \n" " revh.d %0, %0 \n" : "=r" (x) : "r" (x)); return x; } #define __arch_swab64 __arch_swab64 #endif /* __loongarch64 */ #endif /* _ASM_SWAB_H */