drm/panthor: Don't add write fences to the shared BOs
[drm/drm-misc.git] / arch / mips / include / uapi / asm / swab.h
blobd6795fe4ec59c8a21d7ae58e0d4b5e0fe451e9d7
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 /*
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
5 * for more details.
7 * Copyright (C) 1996, 99, 2003 by Ralf Baechle
8 */
9 #ifndef _ASM_SWAB_H
10 #define _ASM_SWAB_H
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)
23 __asm__(
24 " .set push \n"
25 " .set arch=mips32r2 \n"
26 " wsbh %0, %1 \n"
27 " .set pop \n"
28 : "=r" (x)
29 : "r" (x));
31 return x;
33 #define __arch_swab16 __arch_swab16
35 static inline __attribute_const__ __u32 __arch_swab32(__u32 x)
37 __asm__(
38 " .set push \n"
39 " .set arch=mips32r2 \n"
40 " wsbh %0, %1 \n"
41 " rotr %0, %0, 16 \n"
42 " .set pop \n"
43 : "=r" (x)
44 : "r" (x));
46 return x;
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.
54 #ifdef __mips64
55 static inline __attribute_const__ __u64 __arch_swab64(__u64 x)
57 __asm__(
58 " .set push \n"
59 " .set arch=mips64r2 \n"
60 " dsbh %0, %1 \n"
61 " dshd %0, %0 \n"
62 " .set pop \n"
63 : "=r" (x)
64 : "r" (x));
66 return x;
68 #define __arch_swab64 __arch_swab64
69 #endif /* __mips64 */
70 #endif /* (not __mips16) and (MIPS R2 or newer or Loongson 3A) */
71 #endif /* _ASM_SWAB_H */