OMAP: Add new function to check wether there is irq pending
[linux-ginger.git] / arch / blackfin / include / asm / swab.h
blob6403ad2932ebd0efe539f1b16a87325d7aa015a3
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__
9 #endif
11 #ifdef __GNUC__
13 static __inline__ __attribute_const__ __u32 __arch_swahb32(__u32 xx)
15 __u32 tmp;
16 __asm__("%1 = %0 >> 8 (V);\n\t"
17 "%0 = %0 << 8 (V);\n\t"
18 "%0 = %0 | %1;\n\t"
19 : "+d"(xx), "=&d"(tmp));
20 return xx;
22 #define __arch_swahb32 __arch_swahb32
24 static __inline__ __attribute_const__ __u32 __arch_swahw32(__u32 xx)
26 __u32 rv;
27 __asm__("%0 = PACK(%1.L, %1.H);\n\t": "=d"(rv): "d"(xx));
28 return rv;
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)
40 __u32 xw = xx;
41 __asm__("%0 <<= 8;\n %0.L = %0.L + %0.H (NS);\n": "+d"(xw));
42 return (__u16)xw;
44 #define __arch_swab16 __arch_swab16
46 #endif /* __GNUC__ */
48 #endif /* _BLACKFIN_SWAB_H */