blob: b7b37a40defc82d167a354fd9a8a63aeb4e4cf48 [file] [log] [blame]
Greg Ungerer9863a0b2009-03-16 17:54:49 +10001#ifndef _M68K_SWAB_H
2#define _M68K_SWAB_H
3
Jaswinder Singh Rajput4f308e32009-06-10 18:47:47 +05304#include <linux/types.h>
Greg Ungerer9863a0b2009-03-16 17:54:49 +10005#include <linux/compiler.h>
6
7#define __SWAB_64_THRU_32__
8
9#if defined (__mcfisaaplus__) || defined (__mcfisac__)
10static inline __attribute_const__ __u32 __arch_swab32(__u32 val)
11{
12 __asm__("byterev %0" : "=d" (val) : "0" (val));
13 return val;
14}
15
16#define __arch_swab32 __arch_swab32
Maxim Kuvyrkov14545262009-10-02 12:32:18 +040017#elif !defined(__mcoldfire__)
Greg Ungerer9863a0b2009-03-16 17:54:49 +100018
19static inline __attribute_const__ __u32 __arch_swab32(__u32 val)
20{
21 __asm__("rolw #8,%0; swap %0; rolw #8,%0" : "=d" (val) : "0" (val));
22 return val;
23}
24#define __arch_swab32 __arch_swab32
Harvey Harrison6aeea602009-01-20 17:50:51 -080025#endif
Greg Ungerer9863a0b2009-03-16 17:54:49 +100026
27#endif /* _M68K_SWAB_H */