1 #ifndef _BLACKFIN_SWAB_H
2 #define _BLACKFIN_SWAB_H
4 #include <linux/types.h>
5 #include <linux/compiler.h>
7 #if defined(__GNUC__) && !defined(__STRICT_ANSI__) || defined(__KERNEL__)
8 # define __SWAB_64_THRU_32__
13 static __inline__ __attribute_const__ __u32
__arch_swahb32(__u32 xx
)
16 __asm__("%1 = %0 >> 8 (V);\n\t"
17 "%0 = %0 << 8 (V);\n\t"
19 : "+d"(xx
), "=&d"(tmp
));
22 #define __arch_swahb32 __arch_swahb32
24 static __inline__ __attribute_const__ __u32
__arch_swahw32(__u32 xx
)
27 __asm__("%0 = PACK(%1.L, %1.H);\n\t": "=d"(rv
): "d"(xx
));
30 #define __arch_swahw32 __arch_swahw32
32 static __inline__ __attribute_const__ __u32
__arch_swab32(__u32 xx
)
34 return __arch_swahb32(__arch_swahw32(xx
));
36 #define __arch_swab32 __arch_swab32
38 static __inline__ __attribute_const__ __u16
__arch_swab16(__u16 xx
)
41 __asm__("%0 <<= 8;\n %0.L = %0.L + %0.H (NS);\n": "+d"(xw
));
44 #define __arch_swab16 __arch_swab16
48 #endif /* _BLACKFIN_SWAB_H */