blob: 2f13a1d6498ffc2723ba3529821bd2b778197104 [file] [log] [blame]
wdenk591dda52002-11-18 00:14:45 +00001#ifndef _I386_BYTEORDER_H
2#define _I386_BYTEORDER_H
3
4#include <asm/types.h>
5
6#ifdef __GNUC__
7
Graeme Russ2fe2a972008-09-07 07:08:42 +10008static __inline__ __u32 ___arch__swab32(__u32 x)
wdenk591dda52002-11-18 00:14:45 +00009{
wdenk591dda52002-11-18 00:14:45 +000010 __asm__("bswap %0" : "=r" (x) : "0" (x));
Simon Glass59d68202017-01-16 07:04:04 -070011
wdenk591dda52002-11-18 00:14:45 +000012 return x;
13}
14
Simon Glass59d68202017-01-16 07:04:04 -070015#define _constant_swab16(x) ((__u16)( \
16 (((__u16)(x) & (__u16)0x00ffU) << 8) | \
17 (((__u16)(x) & (__u16)0xff00U) >> 8)))
18
Graeme Russ2fe2a972008-09-07 07:08:42 +100019static __inline__ __u16 ___arch__swab16(__u16 x)
wdenk591dda52002-11-18 00:14:45 +000020{
Simon Glass59d68202017-01-16 07:04:04 -070021#if CONFIG_IS_ENABLED(X86_64)
22 return _constant_swab16(x);
23#else
wdenk591dda52002-11-18 00:14:45 +000024 __asm__("xchgb %b0,%h0" /* swap bytes */ \
25 : "=q" (x) \
26 : "0" (x)); \
27 return x;
Simon Glass59d68202017-01-16 07:04:04 -070028#endif
wdenk591dda52002-11-18 00:14:45 +000029}
30
31#define __arch__swab32(x) ___arch__swab32(x)
32#define __arch__swab16(x) ___arch__swab16(x)
33
34#if !defined(__STRICT_ANSI__) || defined(__KERNEL__)
35# define __BYTEORDER_HAS_U64__
36# define __SWAB_64_THRU_32__
37#endif
38
39#endif /* __GNUC__ */
40
41#include <linux/byteorder/little_endian.h>
42
43#endif /* _I386_BYTEORDER_H */